forked from levicole/lockdown
-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathHistory.txt
195 lines (140 loc) · 8.2 KB
/
History.txt
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
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
== 0.7.1 2009-01-xx
* Update init.rb with documentation on how to use admin namespaces
== 0.7.0 2009-01-xx
* Removed lockdown as an executable. Will always go through the generator used by the framework.
* Removed references to classy inheritance. Directly coded some of classy inheritance's functionality into User model.
== 0.6.3 2008-12-02
* Fixed: Database sync was failing. Cause of refactor. Apologies
== 0.6.2 2008-12-01
* Fixed: Made call to action_methods instead of calculating controller actions
== 0.6.1 2008-11-21
* Fixed: Named routes were not being honored in link_to
== 0.6.0 2008-11-15
* Big refactor of internals
== 0.5.22 2008-09-14
* Update: Add test for future deprecation: Dependencies to be ActiveSupport::Dependencies
== 0.5.21 2008-09-12
* Updated lockdown to abide by config.active_record.timestamped_migrations introduced in Rails 2.1.1
* Fixed: schlick fixed an issue with the user_groups edit.html.erb. thanks Michael!
== 0.5.20 2008-08-04
* Fixed authorized? method to avoid ActionController::Routing::Routes.recognize_path invalid return values
* Added option[:session_timeout_method]. This method will be called when the session times out.
== 0.5.19 2008-08-01
* Modified the lockdown system to account for permissions added/removed from user groups in init.rb. This will NOT manage user groups defined via the admin screens.
== 0.5.18 2008-07-23
* Changed the generator options to simplify things. The default now is to generate all templates.
== 0.5.17 2008-07-21
* Updated included classy inheritance library 0.6.1.
== 0.5.16 2008-07-18
* Updated included classy inheritance library.
== 0.5.14 2008-07-18
* Change: option no_migration to skip-migrations to mimick other generator options
* Fixed: errant creation of sessions directory in app/controllers
== 0.5.13 2008-07-10
* Add: Support for --namespace option on generator. Use as ./script generate lockdown --all --namespace=admin
== 0.5.12 2008-07-02
* Fix: Added production environment conditional to Dependencies.clear.
== 0.5.11 2008-06-25
* Update: Classy Inheritance to current version 0.4.4
== 0.5.10 2008-06-24
* Modified: Classy Inheritance is now bundled with Lockdown to simplify the user management screens.
* Fixed: Templates: Use m.template with views to test for rails version for action_name issue
* Added: Templates: Missing javascript for do_highlight
* Fixed: Templates: Usage of ul for permissions and user groups.
* Clean: Templates: Removed unnecessary :locals => {:f => f} attribute in _form partials
* Clean: Templates: Changed text_field_tag to text_field.
== 0.5.9 2008-06-19
* Fixed: Added url.strip! to account for spaces. URI::split(url) was bombing if url contained spaces.
== 0.5.8 2008-06-17
* Fixed: External links are no longer restricted by link_to security.
* Modified: Name of migration that adds admin user.
== 0.5.7 2008-06-13
* Fixed: Change password template, removed ajax usage. Issue: http://stonean.com/issues/show/5
== 0.5.6 2008-06-05
* Fixed: Misspelling of respond_to?, for some reason I keep thinking responds_to?
== 0.5.5 2008-06-05
* Fixed: Changed request comparison code. Requests that were supposed to be passing were failing.
== 0.5.4 2008-06-05
* Fixed: Issue with helpers in Rails 2.1, @action_name is no longer accessible, must call action_name method.
* Fixed: Issue with users controller, show method not having user_groups_for_user instance variable
* Modified: The end of the lockdown executable now references stonean.com instead of rubyforge site.
== 0.5.3 2008-06-01
* Fixed: Issue with new timestamped based migrations in rails 2.1. Migration templates created were all done within the same second, therefore having the same timestamp, added a sleep call to the next_migration_string to get around the issue.
* Fixed: User Groups management template had a bug on the show screen. Was not getting @all_permissions instance variable set.
== 0.5.2 2008-05-26
* Fixed: make call to Dependencies.clear after inspecting controllers. Using Dependencies.require_or_load is not sufficient it seems.
== 0.5.1 2008-05-25
* Fixed: bug with namespaced access having identical standard access. e.g. /users and /admin/users
== 0.5.0 2008-05-22
* Added: new generator options for more control over templates
* Fixed: sessions_controller successful_login didn't honor Lockdown::System options setting for :successful_login_path
* Modified: System had [] method which could cause issues in future releases. Use Lockdown::System.fetch(:option) to retrieve options
== 0.4.6 2008-05-08
* Fixed: link_to destroy/show conditionals were in wrong order and therefore not working.
== 0.4.5 2008-05-08
* Rubyforge having an issue with the gem, I'm getting 404 errors trying to install 0.4.4 so I'm deploying a new version. no code changes.
== 0.4.4 2008-05-08
* Modified: refactored the link_to_secured and authorized? code to be more efficient
== 0.4.3 2008-05-08
* Fixed: broken show (and destroy) permission test. also reduced calls to polymorphic path by generating the url once
== 0.4.2 2008-05-08
* Fixed: broken link_to functionality.
== 0.4.1 2008-05-06
* Just some minor tabs-to-spaces formatting and removed unnecessary helper included into the user model.
== 0.4.0 2008-05-04
* Added: Automatically sync definitions in init.rb with database to remove migrations requirement
* Added: Improved notification if invalid user group or permission is referenced in init.rb
* Added: Check in user_groups controller to prevent url hack and modify/destroy user group defined in init.rb
* Modified: Renamed access_rights_for_perm to access_rights_for_permission for consistency sake. Change then method call in permissions_helper if you have this installed
== 0.3.15 2008-05-03
* Fixed: The controller inspection code was short-circuiting the Dependencies reload mechanism while in development mode.
== 0.3.14 2008-05-02
* Fixed: Session keys to use symbols. Wasn't correctly expiring the session.
== 0.3.13 2008-05-02
* Fixed: The users and user_groups controller templates needed user_groups_for_users and all_permissions (respectively) instance variables set if validation failed on update.
== 0.3.12 2008-05-02
* Fixed: The timestamps were being set on created_by and updated_by.
* Changed: The init.rb and lockdown_all interaction to better define where configurations should be placed.
== 0.3.11 2008-05-01
* Modified: Lockdown::System controller inspect to use "load" instead of "require".
== 0.3.10 2008-05-01
* Fixed: users_controller management of user_groups was using outdated methods. this applies only to the stubs produced with the generator
== 0.3.9 2008-05-01
* Modify: changed controller_classes from array to hash to speed up access
== 0.3.8 2008-05-01
* Fixed: corrected class loader to ensure ObjectSpace is used only once
== 0.3.7 2008-05-01
* Fixed: access rights list for permissions. maded modifications to permissions helper as well.
== 0.3.6 2008-04-30
* Fixed: The block in init.rb does not take a parameter. This has been removed from the template.
== 0.3.5 2008-04-30
* Added: Basic configuations to config/lockdown/init.rb when using the generator
== 0.3.4 2008-04-30
* Fixed: Addition of require 'lockdown/init' to config file
== 0.3.3 2008-04-30
* Spoke too soon. Omitted user_group controller change.
== 0.3.2 2008-04-30
* Management screens looking good. Now moving on to testing with starter application.
== 0.3.1 2008-04-29
* Some initital testing done.
== 0.3.0 2008-04-29
* Big change in how the system is installed and configured in the project.
Introduced lib/lockdown/init.rb.
Removed lib/lockdown/access.rb.
Now use more of a Rails-ish initializer functionality. This adds flexibility
and places the core code back in the gem, that's what I was after.
== 0.2.0 2008-04-25
* First full implementation of generate script "lockdown_all". Warranted a bump up of the minor version.
== 0.1.4 2008-04-25
* Uncommented line in config/hoe.rb to hopefully resolved rubigen dependency issue.
== 0.1.3 2008-04-25
* Still Don't have correct dependencies. Added in first crack at lockdown_all generator.
== 0.1.2 2008-04-25
* Didn't have correct dependencies.
== 0.1.1 2008-04-24
* Fixed bug with session cleanup.
== 0.1.0 2008-04-18
* Nearing public release status.
* In bug testing mode now.
== 0.0.1 2008-04-18
* initial add of gem