ipld-schema-describer 2.0.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.
|
@@ -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,25 @@
|
|
|
1
|
+
## [3.0.0](https://github.com/rvagg/js-ipld-schema-describer/compare/v2.0.1...v3.0.0) (2023-07-07)
|
|
2
|
+
|
|
3
|
+
|
|
4
|
+
### ⚠ BREAKING CHANGES
|
|
5
|
+
|
|
6
|
+
* drop node 14.x support, add 18.x and current
|
|
7
|
+
|
|
8
|
+
### Trivial Changes
|
|
9
|
+
|
|
10
|
+
* **deps-dev:** bump typescript from 4.9.5 to 5.0.2 ([0ebf508](https://github.com/rvagg/js-ipld-schema-describer/commit/0ebf5085a1427f198ce35179d7fcd7e2d871ead2))
|
|
11
|
+
* **deps:** bump actions/setup-node from 3.6.0 to 3.7.0 ([51a2712](https://github.com/rvagg/js-ipld-schema-describer/commit/51a27122849a2e0e2761cb3866db2f2c853492f4))
|
|
12
|
+
* drop node 14.x support, add 18.x and current ([313d283](https://github.com/rvagg/js-ipld-schema-describer/commit/313d2832e0019afb471bca1e4a2d4459172bac4e))
|
|
13
|
+
|
|
14
|
+
## [2.0.1](https://github.com/rvagg/js-ipld-schema-describer/compare/v2.0.0...v2.0.1) (2023-01-06)
|
|
15
|
+
|
|
16
|
+
|
|
17
|
+
### Trivial Changes
|
|
18
|
+
|
|
19
|
+
* **deps:** bump actions/setup-node from 3.5.1 to 3.6.0 ([#33](https://github.com/rvagg/js-ipld-schema-describer/issues/33)) ([b45e364](https://github.com/rvagg/js-ipld-schema-describer/commit/b45e364442418099df87c9a1d0032ba449913021))
|
|
20
|
+
* **no-release:** bump actions/setup-node from 3.4.1 to 3.5.0 ([#31](https://github.com/rvagg/js-ipld-schema-describer/issues/31)) ([b2eab03](https://github.com/rvagg/js-ipld-schema-describer/commit/b2eab0361f064db9971876624dbcd7b8647d4988))
|
|
21
|
+
* **no-release:** bump actions/setup-node from 3.5.0 to 3.5.1 ([#32](https://github.com/rvagg/js-ipld-schema-describer/issues/32)) ([4e66571](https://github.com/rvagg/js-ipld-schema-describer/commit/4e665713a6c464e834f21e474239c496ac7e9e69))
|
|
22
|
+
|
|
1
23
|
## [2.0.0](https://github.com/rvagg/js-ipld-schema-describer/compare/v1.0.10...v2.0.0) (2022-08-16)
|
|
2
24
|
|
|
3
25
|
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "ipld-schema-describer",
|
|
3
|
-
"version": "
|
|
3
|
+
"version": "3.0.0",
|
|
4
4
|
"description": "IPLD Schema Describer",
|
|
5
5
|
"main": "ipld-schema-describer.js",
|
|
6
6
|
"type": "module",
|
|
@@ -39,7 +39,7 @@
|
|
|
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"
|