To check out this repository please hg clone the following URL, or open the URL using EasyMercurial or your preferred Mercurial client.

Statistics Download as Zip
| Branch: | Tag: | Revision:

root / lib / plugins / acts_as_versioned / CHANGELOG @ 1298:4f746d8966dd

History | View | Annotate | Download (2.1 KB)

1
*SVN* (version numbers are overrated)
2

    
3
* (5 Oct 2006) Allow customization of #versions association options [Dan Peterson]
4

    
5
*0.5.1*
6

    
7
* (8 Aug 2006) Versioned models now belong to the unversioned model.  @article_version.article.class => Article [Aslak Hellesoy]
8

    
9
*0.5* # do versions even matter for plugins?
10

    
11
* (21 Apr 2006) Added without_locking and without_revision methods.
12

    
13
  Foo.without_revision do
14
    @foo.update_attributes ...
15
  end
16

    
17
*0.4*
18

    
19
* (28 March 2006) Rename non_versioned_fields to non_versioned_columns (old one is kept for compatibility).
20
* (28 March 2006) Made explicit documentation note that string column names are required for non_versioned_columns.
21

    
22
*0.3.1*
23

    
24
* (7 Jan 2006) explicitly set :foreign_key option for the versioned model's belongs_to assocation for STI [Caged]
25
* (7 Jan 2006) added tests to prove has_many :through joins work
26

    
27
*0.3*
28

    
29
* (2 Jan 2006) added ability to share a mixin with versioned class
30
* (2 Jan 2006) changed the dynamic version model to MyModel::Version
31

    
32
*0.2.4*
33

    
34
* (27 Nov 2005) added note about possible destructive behavior of if_changed? [Michael Schuerig]
35

    
36
*0.2.3*
37

    
38
* (12 Nov 2005) fixed bug with old behavior of #blank? [Michael Schuerig]
39
* (12 Nov 2005) updated tests to use ActiveRecord Schema
40

    
41
*0.2.2*
42

    
43
* (3 Nov 2005) added documentation note to #acts_as_versioned [Martin Jul]
44

    
45
*0.2.1*
46

    
47
* (6 Oct 2005) renamed dirty? to changed? to keep it uniform.  it was aliased to keep it backwards compatible.
48

    
49
*0.2* 
50

    
51
* (6 Oct 2005)  added find_versions and find_version class methods.
52

    
53
* (6 Oct 2005)  removed transaction from create_versioned_table().  
54
  this way you can specify your own transaction around a group of operations.
55

    
56
* (30 Sep 2005) fixed bug where find_versions() would order by 'version' twice. (found by Joe Clark)
57

    
58
* (26 Sep 2005) added :sequence_name option to acts_as_versioned to set the sequence name on the versioned model
59

    
60
*0.1.3* (18 Sep 2005)
61

    
62
* First RubyForge release
63

    
64
*0.1.2*
65

    
66
* check if module is already included when acts_as_versioned is called
67

    
68
*0.1.1*
69

    
70
* Adding tests and rdocs
71

    
72
*0.1* 
73

    
74
* Initial transfer from Rails ticket: http://dev.rubyonrails.com/ticket/1974