ipld-schema-describer 2.0.1 → 3.0.1
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.
|
@@ -5,14 +5,14 @@ jobs:
|
|
|
5
5
|
strategy:
|
|
6
6
|
fail-fast: false
|
|
7
7
|
matrix:
|
|
8
|
-
node: [
|
|
8
|
+
node: [16.x, 18.x, lts/*, current]
|
|
9
9
|
os: [macos-latest, ubuntu-latest, windows-latest]
|
|
10
10
|
runs-on: ${{ matrix.os }}
|
|
11
11
|
steps:
|
|
12
12
|
- name: Checkout Repository
|
|
13
13
|
uses: actions/checkout@v3
|
|
14
14
|
- name: Use Node.js ${{ matrix.node }}
|
|
15
|
-
uses: actions/setup-node@v3.
|
|
15
|
+
uses: actions/setup-node@v3.7.0
|
|
16
16
|
with:
|
|
17
17
|
node-version: ${{ matrix.node }}
|
|
18
18
|
- name: Install Dependencies
|
|
@@ -32,9 +32,9 @@ jobs:
|
|
|
32
32
|
with:
|
|
33
33
|
fetch-depth: 0
|
|
34
34
|
- name: Setup Node.js
|
|
35
|
-
uses: actions/setup-node@v3.
|
|
35
|
+
uses: actions/setup-node@v3.7.0
|
|
36
36
|
with:
|
|
37
|
-
node-version:
|
|
37
|
+
node-version: lts/*
|
|
38
38
|
- name: Install dependencies
|
|
39
39
|
run: |
|
|
40
40
|
npm install --no-progress --no-package-lock --no-save
|
package/CHANGELOG.md
CHANGED
|
@@ -1,3 +1,23 @@
|
|
|
1
|
+
## [3.0.1](https://github.com/rvagg/js-ipld-schema-describer/compare/v3.0.0...v3.0.1) (2023-07-07)
|
|
2
|
+
|
|
3
|
+
|
|
4
|
+
### Trivial Changes
|
|
5
|
+
|
|
6
|
+
* **deps-dev:** bump c8 from 7.14.0 to 8.0.0 ([628899f](https://github.com/rvagg/js-ipld-schema-describer/commit/628899f977117b914bcc1208078d9b4fe8fc5fb0))
|
|
7
|
+
|
|
8
|
+
## [3.0.0](https://github.com/rvagg/js-ipld-schema-describer/compare/v2.0.1...v3.0.0) (2023-07-07)
|
|
9
|
+
|
|
10
|
+
|
|
11
|
+
### ⚠ BREAKING CHANGES
|
|
12
|
+
|
|
13
|
+
* drop node 14.x support, add 18.x and current
|
|
14
|
+
|
|
15
|
+
### Trivial Changes
|
|
16
|
+
|
|
17
|
+
* **deps-dev:** bump typescript from 4.9.5 to 5.0.2 ([0ebf508](https://github.com/rvagg/js-ipld-schema-describer/commit/0ebf5085a1427f198ce35179d7fcd7e2d871ead2))
|
|
18
|
+
* **deps:** bump actions/setup-node from 3.6.0 to 3.7.0 ([51a2712](https://github.com/rvagg/js-ipld-schema-describer/commit/51a27122849a2e0e2761cb3866db2f2c853492f4))
|
|
19
|
+
* drop node 14.x support, add 18.x and current ([313d283](https://github.com/rvagg/js-ipld-schema-describer/commit/313d2832e0019afb471bca1e4a2d4459172bac4e))
|
|
20
|
+
|
|
1
21
|
## [2.0.1](https://github.com/rvagg/js-ipld-schema-describer/compare/v2.0.0...v2.0.1) (2023-01-06)
|
|
2
22
|
|
|
3
23
|
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "ipld-schema-describer",
|
|
3
|
-
"version": "
|
|
3
|
+
"version": "3.0.1",
|
|
4
4
|
"description": "IPLD Schema Describer",
|
|
5
5
|
"main": "ipld-schema-describer.js",
|
|
6
6
|
"type": "module",
|
|
@@ -34,12 +34,12 @@
|
|
|
34
34
|
},
|
|
35
35
|
"homepage": "https://github.com/rvagg/js-ipld-schema-describer#readme",
|
|
36
36
|
"devDependencies": {
|
|
37
|
-
"c8": "^
|
|
37
|
+
"c8": "^8.0.0",
|
|
38
38
|
"chai": "^4.3.6",
|
|
39
39
|
"mocha": "^10.0.0",
|
|
40
40
|
"polendina": "^3.1.0",
|
|
41
41
|
"standard": "^17.0.0",
|
|
42
|
-
"typescript": "^
|
|
42
|
+
"typescript": "^5.0.2"
|
|
43
43
|
},
|
|
44
44
|
"dependencies": {
|
|
45
45
|
"ipld-schema": "^3.0.2"
|