Skip to content

Commit cd492e1

Browse files
committed
Update dependencies.
- Update dependencies. - `@digitalbazaar/bitstring@3.1.0`. - **BREAKING**: `@digitalbazaar/cborld@7.2.0`. - Major update from 5.x. Check project changelog. - Consider backwards compatibility issues. - **BREAKING**: `@digitalbazaar/minimal-cipher@6.0.0`. - `canonicalize@2.1.0`. - `cit-context@2.0.1`. - `p-limit@6.2.0`. - Update peer dependencies. - `@bedrock/core@6.3.0`. - `@bedrock/did-io@10.4.0`. - `@bedrock/https-agent@4.1.0`. - **BREAKING**: `@bedrock/mongodb@11`. - Use MongoDB driver 6.x and update error names and details. - See changelog for details. - **BREAKING**: `@bedrock/tokenizer@11`. - Updated for `@bedrock/mongodb@11`. - `@digitalbazaar/webkms-client@14`. - Update dev dependencies. - Update test dependencies.
1 parent 4ef4d01 commit cd492e1

File tree

5 files changed

+71
-57
lines changed

5 files changed

+71
-57
lines changed

.eslintrc.cjs

Lines changed: 4 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -1,9 +1,5 @@
11
module.exports = {
22
root: true,
3-
parserOptions: {
4-
// this is required for dynamic import()
5-
ecmaVersion: 2020
6-
},
73
env: {
84
node: true
95
},
@@ -12,5 +8,8 @@ module.exports = {
128
'digitalbazaar/jsdoc',
139
'digitalbazaar/module'
1410
],
15-
ignorePatterns: ['node_modules/']
11+
ignorePatterns: ['node_modules/'],
12+
rules: {
13+
'unicorn/prefer-node-protocol': 'error'
14+
}
1615
};

CHANGELOG.md

Lines changed: 25 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,30 @@
11
# bedrock-tokenization ChangeLog
22

3+
## 23.0.0 - 2025-03-xx
4+
5+
### Changed
6+
- Update dependencies.
7+
- `@digitalbazaar/bitstring@3.1.0`.
8+
- **BREAKING**: `@digitalbazaar/cborld@7.2.0`.
9+
- Major update from 5.x. Check project changelog.
10+
- Consider backwards compatibility issues.
11+
- **BREAKING**: `@digitalbazaar/minimal-cipher@6.0.0`.
12+
- `canonicalize@2.1.0`.
13+
- `cit-context@2.0.1`.
14+
- `p-limit@6.2.0`.
15+
- Update peer dependencies.
16+
- `@bedrock/core@6.3.0`.
17+
- `@bedrock/did-io@10.4.0`.
18+
- `@bedrock/https-agent@4.1.0`.
19+
- **BREAKING**: `@bedrock/mongodb@11`.
20+
- Use MongoDB driver 6.x and update error names and details.
21+
- See changelog for details.
22+
- **BREAKING**: `@bedrock/tokenizer@11`.
23+
- Updated for `@bedrock/mongodb@11`.
24+
- `@digitalbazaar/webkms-client@14`.
25+
- Update dev dependencies.
26+
- Update test dependencies.
27+
328
## 22.1.2 - 2025-03-04
429

530
### Fixed

package.json

Lines changed: 15 additions & 16 deletions
Original file line numberDiff line numberDiff line change
@@ -25,31 +25,30 @@
2525
},
2626
"homepage": "https://github.com/digitalbazaar/bedrock-tokenization",
2727
"dependencies": {
28-
"@digitalbazaar/bitstring": "^3.0.0",
29-
"@digitalbazaar/cborld": "^5.0.0",
30-
"@digitalbazaar/minimal-cipher": "^5.1.1",
28+
"@digitalbazaar/bitstring": "^3.1.0",
29+
"@digitalbazaar/cborld": "^7.2.0",
30+
"@digitalbazaar/minimal-cipher": "^6.0.0",
3131
"assert-plus": "^1.0.0",
3232
"base58-universal": "^2.0.0",
3333
"base64url-universal": "^2.0.0",
3434
"bnid": "^3.0.0",
35-
"canonicalize": "^1.0.8",
36-
"cit-context": "^2.0.0",
35+
"canonicalize": "^2.1.0",
36+
"cit-context": "^2.0.1",
3737
"lru-cache": "^6.0.0",
38-
"p-limit": "^4.0.0"
38+
"p-limit": "^6.2.0"
3939
},
4040
"peerDependencies": {
41-
"@bedrock/core": "^6.0.1",
42-
"@bedrock/did-io": "^10.0.0",
43-
"@bedrock/https-agent": "^4.0.0",
44-
"@bedrock/mongodb": "^10.0.0",
45-
"@bedrock/tokenizer": "^10.0.0"
41+
"@bedrock/core": "^6.3.0",
42+
"@bedrock/did-io": "^10.4.0",
43+
"@bedrock/https-agent": "^4.1.0",
44+
"@bedrock/mongodb": "^11.0.0",
45+
"@bedrock/tokenizer": "^11.0.0"
4646
},
4747
"devDependencies": {
48-
"eslint": "^8.47.0",
49-
"eslint-config-digitalbazaar": "^5.0.1",
50-
"eslint-plugin-jsdoc": "^46.5.0",
51-
"eslint-plugin-unicorn": "^48.0.1",
52-
"jsdoc-to-markdown": "^8.0.0"
48+
"eslint": "^8.57.1",
49+
"eslint-config-digitalbazaar": "^5.2.0",
50+
"eslint-plugin-jsdoc": "^50.6.8",
51+
"eslint-plugin-unicorn": "^56.0.1"
5352
},
5453
"directories": {
5554
"lib": "./lib"

test/.eslintrc.cjs

Lines changed: 1 addition & 10 deletions
Original file line numberDiff line numberDiff line change
@@ -4,15 +4,6 @@ module.exports = {
44
assertNoError: true
55
},
66
env: {
7-
node: true,
87
mocha: true
9-
},
10-
parserOptions: {
11-
// this is required for dynamic import()
12-
ecmaVersion: 2020
13-
},
14-
extends: [
15-
'digitalbazaar'
16-
],
17-
ignorePatterns: ['node_modules/']
8+
}
189
};

test/package.json

Lines changed: 26 additions & 26 deletions
Original file line numberDiff line numberDiff line change
@@ -11,37 +11,37 @@
1111
},
1212
"dependencies": {
1313
"@bedrock/app-identity": "^4.0.0",
14-
"@bedrock/core": "^6.0.1",
15-
"@bedrock/did-context": "^5.0.0",
16-
"@bedrock/did-io": "^10.0.0",
17-
"@bedrock/express": "^8.0.0",
18-
"@bedrock/https-agent": "^4.0.0",
19-
"@bedrock/jsonld-document-loader": "^4.0.0",
20-
"@bedrock/kms": "^14.0.0",
21-
"@bedrock/kms-http": "^18.0.0",
22-
"@bedrock/ledger-context": "^24.0.0",
23-
"@bedrock/meter": "^5.0.0",
24-
"@bedrock/meter-http": "^12.0.0",
25-
"@bedrock/meter-usage-reporter": "^9.0.0",
26-
"@bedrock/mongodb": "^10.0.0",
14+
"@bedrock/core": "^6.3.0",
15+
"@bedrock/did-context": "^6.0.0",
16+
"@bedrock/did-io": "^10.4.0",
17+
"@bedrock/express": "^8.3.1",
18+
"@bedrock/https-agent": "^4.1.0",
19+
"@bedrock/jsonld-document-loader": "^5.2.0",
20+
"@bedrock/kms": "^16.0.0",
21+
"@bedrock/kms-http": "^22.0.0",
22+
"@bedrock/ledger-context": "^25.0.0",
23+
"@bedrock/meter": "^6.0.0",
24+
"@bedrock/meter-http": "^14.0.0",
25+
"@bedrock/meter-usage-reporter": "^10.0.0",
26+
"@bedrock/mongodb": "^11.0.0",
2727
"@bedrock/package-manager": "^3.0.0",
28-
"@bedrock/security-context": "^8.0.0",
29-
"@bedrock/server": "^5.0.0",
30-
"@bedrock/ssm-mongodb": "^10.0.0",
31-
"@bedrock/test": "^8.0.5",
28+
"@bedrock/security-context": "^9.0.0",
29+
"@bedrock/server": "^5.1.0",
30+
"@bedrock/ssm-mongodb": "^13.0.0",
31+
"@bedrock/test": "^8.2.0",
3232
"@bedrock/tokenization": "file:..",
33-
"@bedrock/tokenizer": "^10.0.0",
34-
"@bedrock/validation": "^7.0.0",
35-
"@bedrock/veres-one-context": "^15.0.0",
36-
"@bedrock/zcap-storage": "^8.0.0",
37-
"@digitalbazaar/minimal-cipher": "^5.0.0",
38-
"@digitalbazaar/x25519-key-agreement-key-2020": "^3.0.0",
33+
"@bedrock/tokenizer": "^11.0.0",
34+
"@bedrock/validation": "^7.1.1",
35+
"@bedrock/veres-one-context": "^16.0.0",
36+
"@bedrock/zcap-storage": "^9.0.0",
37+
"@digitalbazaar/minimal-cipher": "^6.0.0",
38+
"@digitalbazaar/x25519-key-agreement-key-2020": "^3.0.1",
3939
"base58-universal": "^2.0.0",
4040
"bnid": "^3.0.0",
41-
"c8": "^7.11.3",
42-
"canonicalize": "^1.0.8",
41+
"c8": "^10.1.3",
42+
"canonicalize": "^2.1.0",
4343
"cross-env": "^7.0.3",
44-
"sinon": "^14.0.0"
44+
"sinon": "^19.0.2"
4545
},
4646
"c8": {
4747
"excludeNodeModules": false,

0 commit comments

Comments
 (0)