ember-data-resources 2.1.0 → 3.0.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/.github/workflows/ci.yml +2 -2
- package/.github/workflows/lint.yml +2 -0
- package/CHANGELOG.md +12 -0
- package/package.json +3 -3
package/.github/workflows/ci.yml
CHANGED
|
@@ -21,8 +21,8 @@ jobs:
|
|
|
21
21
|
strategy:
|
|
22
22
|
matrix:
|
|
23
23
|
node:
|
|
24
|
-
- "12"
|
|
25
24
|
- "14"
|
|
25
|
+
- "16"
|
|
26
26
|
steps:
|
|
27
27
|
- uses: actions/checkout@v2
|
|
28
28
|
- uses: volta-cli/action@v1
|
|
@@ -81,7 +81,7 @@ jobs:
|
|
|
81
81
|
- uses: actions/checkout@v2
|
|
82
82
|
- uses: volta-cli/action@v1
|
|
83
83
|
with:
|
|
84
|
-
node-version:
|
|
84
|
+
node-version: 14.x
|
|
85
85
|
- name: install dependencies
|
|
86
86
|
run: yarn install
|
|
87
87
|
- name: test
|
package/CHANGELOG.md
CHANGED
|
@@ -1,3 +1,15 @@
|
|
|
1
|
+
# [3.0.0](https://github.com/NullVoxPopuli/ember-data-resources/compare/v2.1.0...v3.0.0) (2022-01-08)
|
|
2
|
+
|
|
3
|
+
|
|
4
|
+
### chore
|
|
5
|
+
|
|
6
|
+
* change node support, add 16, drop 12 ([a4b4404](https://github.com/NullVoxPopuli/ember-data-resources/commit/a4b44042341d462afc9a2271fd90e5d824f7c06d))
|
|
7
|
+
|
|
8
|
+
|
|
9
|
+
### BREAKING CHANGES
|
|
10
|
+
|
|
11
|
+
* node 12 is no longer supported
|
|
12
|
+
|
|
1
13
|
# [2.1.0](https://github.com/NullVoxPopuli/ember-data-resources/compare/v2.0.8...v2.1.0) (2022-01-08)
|
|
2
14
|
|
|
3
15
|
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "ember-data-resources",
|
|
3
|
-
"version": "
|
|
3
|
+
"version": "3.0.0",
|
|
4
4
|
"description": "Resource helpers for reactively (re)fetching data with ember-data",
|
|
5
5
|
"keywords": [
|
|
6
6
|
"ember-addon"
|
|
@@ -92,7 +92,7 @@
|
|
|
92
92
|
"ember-source-channel-url": "^3.0.0",
|
|
93
93
|
"ember-template-lint": "^3.15.0",
|
|
94
94
|
"ember-try": "^2.0.0",
|
|
95
|
-
"eslint": "^
|
|
95
|
+
"eslint": "^7.0.0",
|
|
96
96
|
"eslint-config-prettier": "^8.3.0",
|
|
97
97
|
"eslint-plugin-decorator-position": "^4.0.1",
|
|
98
98
|
"eslint-plugin-ember": "^10.5.8",
|
|
@@ -133,7 +133,7 @@
|
|
|
133
133
|
"yarn": "1.22.17"
|
|
134
134
|
},
|
|
135
135
|
"engines": {
|
|
136
|
-
"node": "
|
|
136
|
+
"node": "14.* || >= 16"
|
|
137
137
|
},
|
|
138
138
|
"ember": {
|
|
139
139
|
"edition": "octane"
|