forked from active-hash/active_hash
-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathCHANGELOG
105 lines (82 loc) · 5.04 KB
/
CHANGELOG
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
2011-04-19
- better dependency management and compatibility with ActiveSupport 2.x (thanks vandrijevik!)
2011-01-22
- improved method_missing errors for dynamic finders
- prevent users from trying to overwrite :attributes (https://github.com/zilkey/active_hash/issues/#issue/33)
2010-12-08
- ruby 1.9.2 compatibility
2010-12-06
- added dependency on ActiveModel
- add persisted? method to ActiveHash::Base
- ActiveHash::Base#save takes *args to be compatible with ActiveModel
- ActiveHash::Base#to_param returns nil if the object hasn't been saved
2010-11-09
- Use Ruby's definition of "word character" (numbers, underscores) when forming ActiveHash::Enum constants (tstuart)
2010-11-07
- Get ActiveHash::Associations to return a scope for has_many active record relationships (mocoso)
2010-10-20
- Allow find_by_* methods to accept an options hash, so rails associations don't blow up
2010-10-07
- Add conditions to ActiveHash#all (Ryan Garver)
- Add #cache_key to ActiveHash::Base (Tom Stuart)
- Add banged dynamic finder support to ActiveHash::Base (Tom Stuart)
2010-09-16
- Enum format now uses underscores instead of removing all characters
- Removed test dependency on acts_as_fu
2010-05-26
- Silence metaclass deprecation warnings in active support 2.3.8
2010-05-04
- When calling ActiveFile::Base.reload do not actually perform the reload if nothing has been modified unless you call reload(true) to force (Michael Schubert)
2010-04-25
- When ActiveRecord model belongs_to an ActiveHash and the associated id is nil, returns nil instead of raising RecordNotFound (Jeremy Weiskotten)
- Merged Nakajima's "add" alias for "create" - gotta save those ASCII characters :)
2010-03-01
- Removed "extend"-related deprecations - they didn't play well with rails class loading
2010-01-18
- Added stub for #destroyed? method, since Rails associations now depend on it
2009-12-19
- Added ActiveHash::Enum (John Pignata)
- Deprecated include ActiveHash::Associations in favor of extend ActiveHash::Associations
- Fixed bug where you can't set nil to an association
- Calling #belongs_to now creates the underlying field if it's not already there (belongs_to :city will create the :city_id field)
2009-12-10
- Fixed a bug where belongs_to associations would raise an error instead of returning nil when the parent object didn't exist.
- Added #[] and #[]= accessors for more ActiveRecord-esque-ness. (Pat Nakajima & Dave Yeu)
2009-12-01
- Add marked_for_destruction? to be compatible with nested attributes (Brandon Keene)
- Added second parameter to respond_to? and cleaned up specs (Brian Takita)
- Find with an id that does not exist now raises a RecordNotFound exception to mimic ActiveRecord (Pat Nakajima)
2009-10-22
- added setters to ActiveHash::Base for all fields
- instantiating an ActiveHash object with a hash calls the setter methods on the object
- boolean default values now work
2009-10-21
- Removed auto-reloading of files based on mtime - maybe it will come back later
- Made ActiveFile::Base.all a bit more sane
2009-10-13
- added ActiveHash::Base.has_many, which works with ActiveRecord or ActiveHash classes (thanks to baldwindavid)
- added ActiveHash::Base.belongs_to, which works with ActiveRecord or ActiveHash classes (thanks to baldwindavid)
- added .delete_all method that clears the in-memory array
- added support for Hash-style yaml (think, Rails fixtures)
- added setter for parent object on belongs_to ( city = City.new; city.state = State.first; city.state_id == State.first.id )
2009-10-12
- auto-assign fields after calling data= instead of after calling .all
- remove require 'rubygems', so folks with non-gem setups can still use AH
- added more specific activesupport dependency to ensure that metaclass is available
- AH no longer calls to_i on ids. If you pass in a string as an id, you'll get a string back
- Fancy finders, such as find_all_by_id_and_name, will compare the to_s values of the fields, so you can pass in strings
- You can now use ActiveHash models as the parents of polymorphic belongs_to associations
- save, save!, create and create! now add items to the in-memory collection, and naively adds autoincrementing id
- new_record? returns false if the record is part of the collection
- ActiveHash now works with Fixjour!
2009-08-19
- Added custom finders for multiple fields, such as .find_all_by_name_and_age
2009-07-23
- Added support for auto-defining methods based on hash keys in ActiveHash::Base
- Changed the :field and :fields API so that they don't overwrite existing methods (useful when ActiveHash auto-defines methods)
- Fixed a bug where ActiveFile incorrectly set the root_path to be the path in the gem directory, not the current working directory
2009-07-24
- ActiveFile no longer reloads files by default
- Added ActiveFile.reload_active_file= so you can cause ActiveFile to reload
- Setting data to nil correctly causes .all to return an empty array
- Added reload(force) method, so that you can force a reload from files in ActiveFile, useful for tests