Skip to content

Commit 7ab6b37

Browse files
committed
Merge pull request #20 from js-data/v3
3.0
2 parents 3c6861a + 412af56 commit 7ab6b37

29 files changed

+3500
-1989
lines changed

.bowerrc

Lines changed: 0 additions & 3 deletions
This file was deleted.

.github/CONTRIBUTING.md

Lines changed: 27 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,27 @@
1+
# Contributing
2+
3+
[Read the Contributing Guide](http://js-data.io/docs/contributing).
4+
5+
## Support
6+
7+
[Find out how to Get Support](http://js-data.io/docs/support).
8+
9+
## Community
10+
11+
[Explore the Community](http://js-data.io/docs/community).
12+
13+
### Have write access?
14+
15+
To cut a release:
16+
17+
1. Checkout master
18+
1. Bump version in `package.json` appropriately
19+
1. Run `npm run release`
20+
1. Update `CHANGELOG.md` appropriately
21+
1. Commit and push changes, including the `dist/` folder
22+
1. Make a GitHub release
23+
- set tag name to version
24+
- set release name to version
25+
- set release body to changelog entry for the version
26+
- attach the files in the `dist/` folder
27+
1. `npm publish .`

.github/ISSUE_TEMPLATE.md

Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,7 @@
1+
(delete this line) GitHub Issues are NOT for support questions.
2+
(delete this line) GitHub Issues ARE for bug reports, feature requests, and other issues.
3+
(delete this line) Find out how to Get Support here: http://js-data.io/docs/support.
4+
5+
<your detailed, discussable, actionable, and helpful text goes here>
6+
7+
Thanks!

.github/PULL_REQUEST_TEMPLATE.md

Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,8 @@
1+
Fixes #<issue_number_goes_here> (it's a good idea to open an issue first for discussion)
2+
3+
- [ ] - `npm test` succeeds
4+
- [ ] - Pull request has been squashed into 1 commit
5+
- [ ] - I did NOT commit changes to `dist/`
6+
- [ ] - Code coverage does not decrease (if any source code was changed)
7+
- [ ] - Appropriate JSDoc comments were updated in source code (if applicable)
8+
- [ ] - Approprate changes to js-data.io docs have been suggested ("Suggest Edits" button)

.gitignore

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,4 +9,5 @@ coverage/
99

1010
npm-debug.log
1111
junit/
12-
dist/karma.start.js
12+
dist/karma.start.js
13+
doc/

.mailmap

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
Jason Dobry <[email protected]> Jason Dobry <[email protected]>

.npmignore

Lines changed: 0 additions & 36 deletions
This file was deleted.

AUTHORS

Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,8 @@
1+
# This is the official list of js-data-rethinkdb project authors.
2+
#
3+
# Names are formatted as:
4+
# Name or Organization <email address>
5+
#
6+
# The email address is not required for organizations.
7+
#
8+
Jason Dobry <[email protected]>

CHANGELOG.md

Lines changed: 67 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,70 @@
1+
##### 3.0.0-beta.1 - 30 April 2016
2+
3+
Official v3 beta release
4+
5+
###### Breaking changes
6+
- How you must now import in ES2015:
7+
8+
```js
9+
import LocalStorageAdapter from 'js-data-localstorage'
10+
const adapter = new LocalStorageAdapter()
11+
```
12+
or
13+
```js
14+
import {LocalStorageAdapter, version} from 'js-data-localstorage'
15+
console.log(version)
16+
const adapter = new LocalStorageAdapter()
17+
```
18+
19+
- How you must now import in ES5:
20+
21+
```js
22+
var JSDataLocalStorage = require('js-data-localstorage')
23+
var LocalStorageAdapter = JSDataLocalStorage.LocalStorageAdapter
24+
var adapter = new LocalStorageAdapter()
25+
```
26+
27+
- Moved some `dist` files to `release` to reduce noise
28+
29+
###### Other
30+
- Upgraded dependencies
31+
- Improved JSDoc comments
32+
- Now using js-data JSDoc template
33+
34+
##### 3.0.0-alpha.7 - 18 March 2016
35+
36+
###### Backwards compatible API changes
37+
- Added count and sum methods
38+
39+
##### 3.0.0-alpha.6 - 10 March 2016
40+
41+
###### Other
42+
- Now using js-data-repo-tools
43+
- Now using js-data-adapter
44+
45+
##### 3.0.0-alpha.5 - 26 February 2016
46+
47+
- Couple of fixes
48+
49+
##### 3.0.0-alpha.4 - 23 February 2016
50+
51+
- Improved find, destroy, and update methods
52+
- Upgraded to js-data-adapter-tests@2.0.0-alpha.6
53+
54+
##### 3.0.0-alpha.3 - 23 February 2016
55+
56+
- Upgraded dependencies
57+
- Updated Readme
58+
59+
##### 3.0.0-alpha.2 - 13 February 2016
60+
61+
- Now making use of JSData.utils.forEachRelation
62+
63+
##### 3.0.0-alpha.1 - 13 February 2016
64+
65+
- Added support for `raw` option
66+
- Added lifecycle hooks
67+
168
##### 2.3.2 - 12 December 2015
269

370
###### Backwards compatible bug fixes

CONTRIBUTING.md

Lines changed: 0 additions & 24 deletions
This file was deleted.

0 commit comments

Comments
 (0)