All Versions
22
Latest Version
Avg Release Cycle
196 days
Latest Release
311 days ago
Changelog History
Page 2
Changelog History
Page 2
-
v5.0.0 Changes
February 03, 2015- โ Added support for Rails 4.2, but removed support for every previous version of Rails. This is a backward incompatible change, thus the version is now 5.0.0. (thanks Nico Ritsche and others). #396.
-
v4.0.3 Changes
November 24, 2014- ๐ Fixes a problem where after dup the dup'd model and the original model shared a translation instance, which means that if you mutate a translated field on the dup and save it, the original becomes a clone of the dup. #352.
- Deprecated
with_required_attributes
,required_attributes
, andrequired_translated_attributes
.with_translations
no longer invokeswith_required_attributes
. #355. - โ Removed all usages of
Thread.local
. #374. (thanks Hubert Lee). - Added
available_locales
method. This duplicatestranslated_locales
method, but it doesn't use a separateDISTINCT
query. #339. (thanks Andrew Volozhanin).
-
v4.0.2 Changes
June 29, 2014- Use
reflections
class method soensure_foreign_key_for
works in AR >= 4.1.2, fixes #353. - ๐ Set
touch:true
onbelongs_to
for the globalized model, fixes #330 (thanks shlensky). - Accept optional arguments passed to
where_values_hash
, fixes #354 (thanks felixbuenemann).
- Use
-
v4.0.1 Changes
March 29, 2014- ๐ Fix bug where
with_translations
only works if called afterwhere
in relation chain, fixes #343. - ๐ Use
preload
andjoins
instead ofincludes
inwith_translations
, fixes #329 (thanks Andrew Volozhanin). - โก๏ธ Update
database_cleaner
dependency to 1.2.0. - ๐ Support use of
first
/take
/last
with limit on queries with translated attributes, fixes #322 (thanks prusswan). - Ensure that options are always extracted from
attr_names
inGlobalize::ActiveRecord::ActMacro#translates
, PR #319 (thanks Marek).
- ๐ Fix bug where
-
v4.0.0 Changes
January 04, 2014- Extract all versioning-related code to separate globalize-versioning gem.
-
v3.1.0 Changes
January 25, 2014- ๐ Backport scope support on uniqueness validation from 4.0, drop support for ActiveRecord < 3.1, fixes #324.
-
v3.0.5 Changes
April 24, 2015 -
v3.0.4 Changes
January 08, 2014- Extract all versioning-related code to separate globalize-versioning gem.
-
v3.0.3 Changes
December 26, 2013- ๐ Ensure that foreign key is always set when saving translations (thanks Andrew Feng).
- ๐ Patch I18n to add back I18n.interpolate after it was removed (accidentally?) in v0.5.2 (see svenfuchs/i18n#232. Hopefully this patch will be temporary.
- โ Explicitly test compatibility with FriendlyId to avoid issues like #306.
- Only override ActiveRecord::Base#relation to patch where_values_hash if using AR >= 3.2.1.
-
v3.0.2 Changes
December 07, 2013- Alias
ActiveRecord::Base#relation
and include query method overrides as module, fixes #306 and norman/friendly_id#485.
- Alias