Skip to content

Commit

Permalink
Update dependencies.
Browse files Browse the repository at this point in the history
- Update dependencies:
  - `@bedrock/[email protected]
  - `[email protected]`
  - `[email protected]`
  - `[email protected]`
  - development dependencies.
+- Only support Node.js >=18.
  • Loading branch information
davidlehn committed Nov 19, 2024
1 parent 1b1ce09 commit 65a965f
Show file tree
Hide file tree
Showing 2 changed files with 17 additions and 10 deletions.
10 changes: 9 additions & 1 deletion CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,14 +1,22 @@
# bedrock-test ChangeLog

## 9.0.0 - 2023-xx-xx

## 9.0.0 - 2024-xx-xx

### Changed
- Update dependencies:
- `@bedrock/[email protected]
- `[email protected]`
- `[email protected]`
- `[email protected]`
- development dependencies.
- **BREAKING**: Use `bedrock.shutdown()` for an orderly exit on success.
- The previous behavior was to abruptly shut down an app, even after testing
success. Now event handlers will be called while app is shutting down:
- `bedrock.stop`
- `bedrock.stopped`
- `bedrock.exit`
- Only support Node.js >=18.

## 8.2.0 - 2024-02-29

Expand Down
17 changes: 8 additions & 9 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@
"license": "Apache-2.0",
"main": "./lib/index.js",
"engines": {
"node": ">=14"
"node": ">=18"
},
"files": [
"lib/**/*.js"
Expand All @@ -31,21 +31,20 @@
},
"homepage": "https://github.com/digitalbazaar/bedrock-test",
"dependencies": {
"chai": "^4.2.0",
"chai-as-promised": "^7.1.1",
"chai": "^4.5.0",
"chai-as-promised": "^8.0.0",
"cycle": "^1.0.3",
"mocha": "^10.0.0"
"mocha": "^10.8.2"
},
"peerDependencies": {
"@bedrock/core": "^6.2.0"
"@bedrock/core": "^6.3.0"
},
"directories": {
"lib": "./lib"
},
"devDependencies": {
"eslint": "^7.32.0",
"eslint-config-digitalbazaar": "^2.8.0",
"eslint-plugin-jsdoc": "^37.9.7",
"jsdoc-to-markdown": "^7.1.1"
"eslint": "^8.57.1",
"eslint-config-digitalbazaar": "^5.2.0",
"eslint-plugin-jsdoc": "^50.5.0"
}
}

0 comments on commit 65a965f

Please sign in to comment.