Movatterモバイル変換


[0]ホーム

URL:


Skip to content

Navigation Menu

Sign in
Appearance settings

Search code, repositories, users, issues, pull requests...

Provide feedback

We read every piece of feedback, and take your input very seriously.

Saved searches

Use saved searches to filter your results more quickly

Sign up
Appearance settings

Commit7b2a250

Browse files
committed
3.2.0
Fixes#347Fixes#353Fixes#356
1 parent4a41c1c commit7b2a250

32 files changed

+746
-565
lines changed

‎.babelrc

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,3 @@
1+
{
2+
"presets": ["es2015"]
3+
}

‎.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 & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -26,3 +26,5 @@ build_examples/browserify/bundle.js
2626
build_examples/webpack/bundle.js
2727
build_examples/webpack_es6/bundle.js
2828
build_examples/webpack_es6_2/bundle.js
29+
.js-data-http.js
30+
.js-data-http/

‎.mailmap

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,5 @@
1+
InternalFX <bryan@internalfx.com> Bryan <bryan@internalfx.com>
2+
InternalFX <bryan@internalfx.com> Bryan Morris <bryan@internalfx.com>
3+
Jason Dobry <jason.dobry@gmail.com> Jason Dobry <jmdobry@users.noreply.github.com>
4+
Kent C. Dodds <kent@doddsfamily.us> Kent C. Dodds <kent+github@doddsfamily.us>
5+
Robert Porter <rob@Roberts-MacBook-Pro.local> Robert P <rob@Roberts-MacBook-Pro.local>

‎.npmignore

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -8,3 +8,8 @@ bower_components/
88
karma*
99
guide/
1010
doc/
11+
webpack.config.js
12+
circle.yml
13+
14+
.js-data-http.js
15+
.js-data-http/

‎AUTHORS

Lines changed: 24 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,24 @@
1+
# This is the official list of js-data-angular project authors.
2+
#
3+
# Names are formatted as:
4+
# Name or Organization <email address>
5+
# The email address is not required for organizations.
6+
Andre Deutmeyer <a.deutmeyer@gmail.com>
7+
Artemy Tregubenko <me@arty.name>
8+
Asaf Katz <asf.ktz@gmail.com>
9+
Chase Noel <chase.i.noel@gmail.com>
10+
Clark Pan <clark.pan@ansarada.com>
11+
David Tang <dtang859@gmail.com>
12+
Gabo Esquivel <contact@gaboesquivel.com>
13+
Jason Aden <jasonaden@gmail.com>
14+
Jason Dobry <jason.dobry@gmail.com>
15+
Kent C. Dodds <kent@doddsfamily.us>
16+
Loïc Mahieu <mahieuloic@gmail.com>
17+
Nikolay <garmash.nikolay@gmail.com>
18+
Peter Dave Hello <PeterDaveHello@users.noreply.github.com>
19+
Shai Reznik <shai.reznik@gmail.com>
20+
thorn0 <thorn.mailbox@gmail.com>
21+
Tim Chen <timchen1@gmail.com>
22+
Timothy Krell <timothykrell@gmail.com>
23+
vollnhals <lion.vollnhals@googlemail.com>
24+
Wes Cruver <chieffancypants@gmail.com>

‎CHANGELOG.md

Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,10 @@
1+
#####3.2.0 - 17 March 2016
2+
3+
######Backwards compatible bug fixes
4+
-#347 - BindOne recomputing computed properties
5+
-#353 - jshint or standard?
6+
-#356 - Multiple parents isn't working
7+
18
#####3.1.1 - 20 September 2015
29

310
Stable Version 3.1.0

0 commit comments

Comments
 (0)

[8]ページ先頭

©2009-2025 Movatter.jp