Skip to content

Commit 2512216

Browse files
committed
Merge pull request #103 from afeld/changelog
move changelog to its own file
2 parents 0f802c6 + c9db000 commit 2512216

File tree

2 files changed

+38
-41
lines changed

2 files changed

+38
-41
lines changed

CHANGELOG.md

Lines changed: 38 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,38 @@
1+
#### HEAD ([diff](https://github.com/afeld/backbone-nested/compare/v1.1.2...master?w=1))
2+
3+
* fix `remove()` not firing `'remove'` event when last element of array is removed (thanks @Kmandr)
4+
* fix `clear()` and set nested attributes on `changedAttributes()` (thanks @isakb)
5+
* `'change'` events will no longer fire if new value matches the old
6+
7+
#### 1.1.2 ([diff](https://github.com/afeld/backbone-nested/compare/v1.1.1...v1.1.2?w=1))
8+
9+
* `changedAttributes()` should include the nested attribute paths
10+
* remove warnings when retrieving nested objects - more of a nuisance than a convenience
11+
12+
#### 1.1.1 ([diff](https://github.com/afeld/backbone-nested/compare/v1.1.0...v1.1.1?w=1))
13+
14+
* fixed `remove()` to not insert array back into itself
15+
* upgraded test suite to Backbone 0.9.2
16+
17+
#### 1.1.0 ([diff](https://github.com/afeld/backbone-nested/compare/v1.0.3...v1.1.0?w=1))
18+
19+
* Backbone 0.9.1 compatibiity
20+
* fire 'remove' event from remove()
21+
* added add() method
22+
* added [demo pages](https://github.com/afeld/backbone-nested/tree/master/demo)
23+
24+
#### 1.0.3 ([diff](https://github.com/afeld/backbone-nested/compare/v1.0.2...v1.0.3?w=1))
25+
26+
* fixed `toJSON()` ([p3drosola](https://github.com/afeld/backbone-nested/pull/9))
27+
28+
#### 1.0.2 ([diff](https://github.com/afeld/backbone-nested/compare/v1.0.1...v1.0.2?w=1))
29+
30+
* added option to silence `get()` warnings for non-leaf attributes
31+
32+
#### 1.0.1 ([diff](https://github.com/afeld/backbone-nested/compare/v1.0.0...v1.0.1?w=1))
33+
34+
* header and documentation fixes
35+
36+
#### 1.0.0
37+
38+
Initial release!

README.md

Lines changed: 0 additions & 41 deletions
Original file line numberDiff line numberDiff line change
@@ -161,47 +161,6 @@ user.get('addresses').length; //=> 1
161161

162162
Note, this plugin does *not* handle non-embedded relations, which keeps it relatively simple. If you support for more complex relationships between models, see [the Backbone plugin wiki page](https://github.com/jashkenas/backbone/wiki/Extensions,-Plugins,-Resources#relations).
163163

164-
## Changelog
165-
166-
#### HEAD ([diff](https://github.com/afeld/backbone-nested/compare/v1.1.2...master?w=1))
167-
168-
* fix `remove()` not firing `'remove'` event when last element of array is removed (thanks @Kmandr)
169-
* fix `clear()` and set nested attributes on `changedAttributes()` (thanks @isakb)
170-
* `'change'` events will no longer fire if new value matches the old
171-
172-
#### 1.1.2 ([diff](https://github.com/afeld/backbone-nested/compare/v1.1.1...v1.1.2?w=1))
173-
174-
* `changedAttributes()` should include the nested attribute paths
175-
* remove warnings when retrieving nested objects - more of a nuisance than a convenience
176-
177-
#### 1.1.1 ([diff](https://github.com/afeld/backbone-nested/compare/v1.1.0...v1.1.1?w=1))
178-
179-
* fixed `remove()` to not insert array back into itself
180-
* upgraded test suite to Backbone 0.9.2
181-
182-
#### 1.1.0 ([diff](https://github.com/afeld/backbone-nested/compare/v1.0.3...v1.1.0?w=1))
183-
184-
* Backbone 0.9.1 compatibiity
185-
* fire 'remove' event from remove()
186-
* added add() method
187-
* added [demo pages](https://github.com/afeld/backbone-nested/tree/master/demo)
188-
189-
#### 1.0.3 ([diff](https://github.com/afeld/backbone-nested/compare/v1.0.2...v1.0.3?w=1))
190-
191-
* fixed `toJSON()` ([p3drosola](https://github.com/afeld/backbone-nested/pull/9))
192-
193-
#### 1.0.2 ([diff](https://github.com/afeld/backbone-nested/compare/v1.0.1...v1.0.2?w=1))
194-
195-
* added option to silence `get()` warnings for non-leaf attributes
196-
197-
#### 1.0.1 ([diff](https://github.com/afeld/backbone-nested/compare/v1.0.0...v1.0.1?w=1))
198-
199-
* header and documentation fixes
200-
201-
#### 1.0.0
202-
203-
Initial release!
204-
205164
## Contributing
206165

207166
Pull requests are more than welcome - please add tests, which can be run by opening test/index.html. They can also be run from the command-line (requires [PhantomJS](http://phantomjs.org/)):

0 commit comments

Comments
 (0)