public
Fork of datamapper/dm-core
Description: DataMapper - Core
Homepage: http://datamapper.org/
Clone URL: git://github.com/dkubb/dm-core.git
dm-core / History.txt
100644 53 lines (33 sloc) 1.385 kb
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
=== 0.9.11 / 2009-03-29
 
* 1 major enhancement:
 
  * Added deprecation warning for inferred child_key naming convention change
 
* 6 bug fixes:
 
  * Removed unecessary code from SEL
  * 1.9.1 fix for Logger to use Array#join instead of Array#to_s
  * 1.9.1 fix for specs to pass
  * Fix for multiple join models to create correct SQL
  * Fix for STI and lazy loading
  * Fixed Resource#eql?
 
=== 0.9.10 / 2009-01-19
 
* 1 major enhancement:
 
  * Ruby 1.9.1 compatibility
 
* 1 minor enhancement:
 
  * Updated Resource marshaling to be more thorough
 
=== 0.9.9 / 2009-01-04
 
* 1 minor enhancement:
 
  * Updated Resource and Collection to be serializable with Marshal
 
* 1 bug fix:
 
  * Fixed Model#copy to copy properties that are the same in both
    repositories.
 
=== 0.9.8 / 2008-12-07
 
* 3 minor enhancements:
 
  * Updated Resource#inspect to not lazy-load unloaded attributes.
  * Updated ManyToOne::Proxy to delegate #class to parent. This will
    allow the Merb resource() route helper method to use the association
    proxy to generate the URL.
  * Updated Resource#attributes= to respect method visibility. This means
    that only public mutators will set the attribute value.
 
* 1 bug fix:
 
  * Fixed regression where an update to a resource with a lazy property
    could cause the record to reload when accessing the lazy property,
    clobbering any changes made prior.