Skip to content

Commit 92e4052

Browse files
committed
3.0.0-alpha.3
1 parent 2b099cc commit 92e4052

21 files changed

+170
-210
lines changed

.github/CONTRIBUTING.md

+27
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

+7
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

+8
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)

.mailmap

+1
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
Jason Dobry <[email protected]> Jason Dobry <[email protected]>

AUTHORS

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

CHANGELOG.md

+5
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,8 @@
1+
##### 3.0.0-alpha.3 - 23 February 2016
2+
3+
- Upgraded dependencies
4+
- Updated Readme
5+
16
##### 3.0.0-alpha.2 - 13 February 2016
27

38
- Now making use of JSData.utils.forEachRelation

CONTRIBUTING.md

-46
This file was deleted.

CONTRIBUTORS

+7
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,7 @@
1+
# People who have contributed to the js-data-localstorage project.
2+
#
3+
# This file is controlled by scripts/authors.js
4+
#
5+
# Names should be added to this file as:
6+
# [commit count] Name <email address>
7+
59 Jason Dobry <[email protected]>

LICENSE

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
The MIT License (MIT)
22

3-
Copyright (c) 2014-2016 Jason Dobry
3+
Copyright (c) 2014-2016 js-data-localstorage project authors
44

55
Permission is hereby granted, free of charge, to any person obtaining a copy
66
of this software and associated documentation files (the "Software"), to deal

README.md

+20-63
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@ Tested on IE9, Chrome 46, Firefox 41 & Safari 7.1 using
1717
## Table of contents
1818

1919
* [Quick start](#quick-start)
20-
* [Documentation](#documentation)
20+
* [Guides and Tutorials](#guides-and-tutorials)
2121
* [API Reference](#api-reference)
2222
* [Demo](#demo)
2323
* [Support](#support)
@@ -66,82 +66,39 @@ var sessionAdapter = new LocalStorageAdapter({
6666
});
6767
```
6868

69-
## Documentation
70-
- [Getting Started with js-data](http://www.js-data.io/docs/home)
71-
- [js-data-http](http://www.js-data.io/docs/js-data-localstorage)
72-
- [CHANGELOG.md](https://github.com/js-data/js-data-localstorage/blob/master/CHANGELOG.md)
69+
## Guides and Tutorials
7370

74-
## API Reference
75-
- [js-data](http://api.js-data.io/js-data/)
76-
- [js-data-localstorage](http://api.js-data.io/js-data-localstorage/)
71+
[Get started at http://js-data.io](http://js-data.io)
7772

78-
## Demo
79-
[https://js-data-localstorage.firebaseapp.com/](https://js-data-localstorage.firebaseapp.com/)
73+
## API Reference Docs
8074

81-
## Support
75+
[Visit http://api.js-data.io](http://api.js-data.io).
8276

83-
Support questions are handled via [StackOverflow][so], [Slack][slack], and the
84-
[Mailing List][ml]. Ask your questions there.
77+
## Demo
78+
79+
https://js-data-localstorage.firebaseapp.com/
8580

8681
## Community
87-
- [StackOverflow Channel][so]
88-
- [Slack Chat][slack] [![Slack Status][sl_b]][slack]
89-
- [Announcements](http://www.js-data.io/blog)
90-
- [Mailing List](ml)
91-
- [Issues Tracker](https://github.com/js-data/js-data/issues)
92-
- [GitHub](https://github.com/js-data/js-data)
93-
- [Contributing Guide](https://github.com/js-data/js-data/blob/master/CONTRIBUTING.md)
82+
83+
[Explore the Community](http://js-data.io/docs/community).
84+
85+
## Support
86+
87+
[Find out how to Get Support](http://js-data.io/docs/support).
9488

9589
## Contributing
9690

97-
When submitting bug reports or feature requests on GitHub, please include _as
98-
much detail as possible_.
99-
100-
- good - Your versions of Angular, JSData, etc, relevant console logs, stack
101-
traces, code examples that revealed the issue, etc.
102-
- better - A [plnkr](http://plnkr.co/), [fiddle](http://jsfiddle.net/), or
103-
[bin](http://jsbin.com/?html,output) that demonstrates the issue
104-
- best - A Pull Request that fixes the issue, including test coverage for the
105-
issue and the fix
106-
107-
### Pull Requests
108-
109-
1. Contribute to the issue/discussion that is the reason you'll be developing in
110-
the first place
111-
1. Fork js-data
112-
1. `git clone [email protected]:<you>/js-data-localstorage.git`
113-
1. `cd js-data-localstorage; npm install;`
114-
1. Write your code, including relevant documentation and tests
115-
1. Run `npm test` (build and test)
116-
1. Your code will be linted and checked for formatting, the tests will be run
117-
1. The `dist/` folder & files will be generated, do NOT commit `dist/*`! They
118-
will be committed when a release is cut.
119-
1. Submit your PR and we'll review!
120-
1. Thanks!
91+
[Read the Contributing Guide](http://js-data.io/docs/contributing).
12192

12293
## License
12394

12495
The MIT License (MIT)
12596

126-
Copyright (c) 2014-2016 Jason Dobry
127-
128-
Permission is hereby granted, free of charge, to any person obtaining a copy
129-
of this software and associated documentation files (the "Software"), to deal
130-
in the Software without restriction, including without limitation the rights
131-
to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
132-
copies of the Software, and to permit persons to whom the Software is
133-
furnished to do so, subject to the following conditions:
134-
135-
The above copyright notice and this permission notice shall be included in all
136-
copies or substantial portions of the Software.
137-
138-
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
139-
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
140-
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
141-
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
142-
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
143-
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
144-
SOFTWARE.
97+
Copyright (c) 2014-2016 js-data-http project authors
98+
99+
* [LICENSE](https://github.com/js-data/js-data-localstorage/blob/master/LICENSE)
100+
* [AUTHORS](https://github.com/js-data/js-data-localstorage/blob/master/AUTHORS)
101+
* [CONTRIBUTORS](https://github.com/js-data/js-data-localstorage/blob/master/CONTRIBUTORS)
145102

146103
[sl_b]: http://slack.js-data.io/badge.svg
147104
[sl_l]: http://slack.js-data.io

bower.json

+2-6
Original file line numberDiff line numberDiff line change
@@ -1,16 +1,12 @@
11
{
22
"name": "js-data-localstorage",
33
"description": "localStorage adapter for js-data.",
4-
"homepage": "http://www.js-data.io/docs/js-data-localstorage",
4+
"homepage": "https://github.com/js-data/js-data-localstorage",
55
"repository": {
66
"type": "git",
77
"url": "https://github.com/js-data/js-data-localstorage.git"
88
},
9-
"author": {
10-
"name": "Jason Dobry",
11-
"url": "http://www.pseudobry.com",
12-
"email": "[email protected]"
13-
},
9+
"author": "js-data-localstorage project authors",
1410
"main": "./dist/js-data-localstorage.js",
1511
"ignore": [
1612
".idea/",

dist/js-data-localstorage.js

+3-39
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

dist/js-data-localstorage.js.map

+1-1
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

0 commit comments

Comments
 (0)