cborg 4.3.0 → 4.3.2

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.1.0
16
16
  with:
17
17
  node-version: ${{ matrix.node }}
18
18
  - name: Install Dependencies
@@ -31,11 +31,11 @@ jobs:
31
31
  if: github.event_name == 'push' && github.ref == 'refs/heads/master'
32
32
  steps:
33
33
  - name: Checkout
34
- uses: actions/checkout@v5
34
+ uses: actions/checkout@v6
35
35
  with:
36
36
  fetch-depth: 0
37
37
  - name: Setup Node.js
38
- uses: actions/setup-node@v6.0.0
38
+ uses: actions/setup-node@v6.1.0
39
39
  with:
40
40
  node-version: lts/*
41
41
  - name: Install dependencies
package/CHANGELOG.md CHANGED
@@ -1,3 +1,15 @@
1
+ ## [4.3.2](https://github.com/rvagg/cborg/compare/v4.3.1...v4.3.2) (2025-12-04)
2
+
3
+ ### Trivial Changes
4
+
5
+ * **deps:** bump actions/setup-node from 6.0.0 to 6.1.0 ([#152](https://github.com/rvagg/cborg/issues/152)) ([03ac095](https://github.com/rvagg/cborg/commit/03ac0954aa574c2d99fdefce329f5bf6baf27044))
6
+
7
+ ## [4.3.1](https://github.com/rvagg/cborg/compare/v4.3.0...v4.3.1) (2025-11-24)
8
+
9
+ ### Trivial Changes
10
+
11
+ * **deps:** bump actions/checkout from 5 to 6 ([#151](https://github.com/rvagg/cborg/issues/151)) ([13b5cb2](https://github.com/rvagg/cborg/commit/13b5cb2df50864032dfe14fa6a1a42a443a32fea))
12
+
1
13
  ## [4.3.0](https://github.com/rvagg/cborg/compare/v4.2.18...v4.3.0) (2025-11-05)
2
14
 
3
15
  ### Features
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "cborg",
3
- "version": "4.3.0",
3
+ "version": "4.3.2",
4
4
  "description": "Fast CBOR with a focus on strictness",
5
5
  "main": "cborg.js",
6
6
  "type": "module",