ipld-schema-describer 3.0.19 → 3.0.21

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.
@@ -10,9 +10,9 @@ jobs:
10
10
  runs-on: ${{ matrix.os }}
11
11
  steps:
12
12
  - name: Checkout Repository
13
- uses: actions/checkout@v5
13
+ uses: actions/checkout@v6
14
14
  - name: Use Node.js ${{ matrix.node }}
15
- uses: actions/setup-node@v6.0.0
15
+ uses: actions/setup-node@v6.2.0
16
16
  with:
17
17
  node-version: ${{ matrix.node }}
18
18
  - name: Install Dependencies
@@ -26,15 +26,19 @@ jobs:
26
26
  needs: test
27
27
  runs-on: ubuntu-latest
28
28
  if: github.event_name == 'push' && github.ref == 'refs/heads/master'
29
+ permissions:
30
+ contents: write
31
+ id-token: write
29
32
  steps:
30
33
  - name: Checkout
31
- uses: actions/checkout@v5
34
+ uses: actions/checkout@v6
32
35
  with:
33
36
  fetch-depth: 0
34
37
  - name: Setup Node.js
35
- uses: actions/setup-node@v6.0.0
38
+ uses: actions/setup-node@v6.2.0
36
39
  with:
37
40
  node-version: lts/*
41
+ registry-url: 'https://registry.npmjs.org'
38
42
  - name: Install dependencies
39
43
  run: |
40
44
  npm install --no-progress --no-package-lock --no-save
@@ -55,6 +59,6 @@ jobs:
55
59
  - name: Release
56
60
  env:
57
61
  GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
58
- NPM_TOKEN: ${{ secrets.NPM_TOKEN }}
62
+ NPM_CONFIG_PROVENANCE: true
59
63
  run: npx semantic-release
60
64
 
package/CHANGELOG.md CHANGED
@@ -1,3 +1,17 @@
1
+ ## [3.0.21](https://github.com/rvagg/js-ipld-schema-describer/compare/v3.0.20...v3.0.21) (2026-01-21)
2
+
3
+ ### Trivial Changes
4
+
5
+ * **ci:** OIDC ([#62](https://github.com/rvagg/js-ipld-schema-describer/issues/62)) ([4dd0f3b](https://github.com/rvagg/js-ipld-schema-describer/commit/4dd0f3bf40f1b531cec8d300df9ac200a6ec0216))
6
+ * **deps:** bump actions/setup-node from 6.1.0 to 6.2.0 ([#61](https://github.com/rvagg/js-ipld-schema-describer/issues/61)) ([44746dc](https://github.com/rvagg/js-ipld-schema-describer/commit/44746dc2acdc763afa323c1eb2ad48618794b425))
7
+
8
+ ## [3.0.20](https://github.com/rvagg/js-ipld-schema-describer/compare/v3.0.19...v3.0.20) (2025-12-04)
9
+
10
+ ### Trivial Changes
11
+
12
+ * **deps:** bump actions/checkout from 5 to 6 ([#59](https://github.com/rvagg/js-ipld-schema-describer/issues/59)) ([b17d185](https://github.com/rvagg/js-ipld-schema-describer/commit/b17d1859ab277aee5f55b2a2bd96f657efc95064))
13
+ * **deps:** bump actions/setup-node from 6.0.0 to 6.1.0 ([#60](https://github.com/rvagg/js-ipld-schema-describer/issues/60)) ([d1be84a](https://github.com/rvagg/js-ipld-schema-describer/commit/d1be84ad91e29bfa8d2f72e8cb1159394473f95d))
14
+
1
15
  ## [3.0.19](https://github.com/rvagg/js-ipld-schema-describer/compare/v3.0.18...v3.0.19) (2025-10-14)
2
16
 
3
17
  ### Trivial Changes
package/README.md CHANGED
@@ -1,5 +1,9 @@
1
1
  # ipld-schema-describer
2
2
 
3
+ [![CI](https://github.com/rvagg/js-ipld-schema-describe/actions/workflows/test-and-release.yml/badge.svg)](https://github.com/rvagg/js-ipld-schema-describe/actions/workflows/test-and-release.yml)
4
+
5
+ [![NPM](https://nodei.co/npm/ipld-schema-describer.svg?style=flat&data=n,v&color=blue)](https://nodei.co/npm/ipld-schema-describer/)
6
+
3
7
  Describe JavaScript object forms using [IPLD Schemas](https://specs.ipld.io/schemas/).
4
8
 
5
9
  ## Example
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "ipld-schema-describer",
3
- "version": "3.0.19",
3
+ "version": "3.0.21",
4
4
  "description": "IPLD Schema Describer",
5
5
  "main": "ipld-schema-describer.js",
6
6
  "type": "module",