Skip to content

Commit efb00d8

Browse files
authored
Merge pull request #794 from umccr/bump-deps-20241224
Bumped dependencies
2 parents 3b51ec5 + e7bde62 commit efb00d8

File tree

16 files changed

+1705
-1867
lines changed

16 files changed

+1705
-1867
lines changed

.pre-commit-config.yaml

+4-3
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
repos:
22

33
- repo: https://github.com/pre-commit/pre-commit-hooks
4-
rev: v4.4.0
4+
rev: v5.0.0
55
hooks:
66
- id: check-added-large-files
77
exclude: ^(yarn.lock|.yarn/)
@@ -15,19 +15,20 @@ repos:
1515
args: [ --branch, main, --branch, master, --pattern, release/.* ]
1616

1717
- repo: https://github.com/Yelp/detect-secrets
18-
rev: v1.4.0
18+
rev: v1.5.0
1919
hooks:
2020
- id: detect-secrets
2121
name: detect secrets
2222
args: [ '--baseline', '.secrets.baseline' ]
2323
exclude: ^(yarn.lock|.yarn/|.yarnrc.yml)
2424

2525
- repo: https://github.com/pre-commit/mirrors-eslint
26-
rev: v9.5.0
26+
rev: v9.17.0
2727
hooks:
2828
- id: eslint
2929
exclude: ^(skel/|yarn.lock|.yarn/|.local/|docs/|openapi/)
3030

31+
# FIXME: plugin repo is public archived. To follow up for replacement. ~victor
3132
- repo: https://github.com/pre-commit/mirrors-prettier
3233
rev: v2.7.1
3334
hooks:

.secrets.baseline

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
{
2-
"version": "1.4.0",
2+
"version": "1.5.0",
33
"plugins_used": [
44
{
55
"name": "ArtifactoryDetector"

.yarn/releases/yarn-4.5.1.cjs renamed to .yarn/releases/yarn-4.5.3.cjs

+307-307
Large diffs are not rendered by default.

.yarnrc.yml

+1-1
Original file line numberDiff line numberDiff line change
@@ -9,4 +9,4 @@ plugins:
99
path: .yarn/plugins/@yarnpkg/plugin-outdated.cjs
1010
spec: "https://go.mskelton.dev/yarn-outdated/v4"
1111

12-
yarnPath: .yarn/releases/yarn-4.5.1.cjs
12+
yarnPath: .yarn/releases/yarn-4.5.3.cjs

README.md

+3-3
Original file line numberDiff line numberDiff line change
@@ -158,14 +158,14 @@ _Setting up baseline toolchain_
158158

159159
```
160160
docker --version
161-
Docker version 27.2.0, build 3ab4256
161+
Docker version 27.4.0, build bde2b89
162162
163163
node -v
164-
v20.18.0
164+
v20.18.1
165165
166166
npm i -g yarn
167167
yarn -v
168-
4.5.1
168+
4.5.3
169169
```
170170

171171
Additionally, we expect the following common tools be installed and available in your system shell PATH. We provide [Brewfile](Brewfile) as an example. You may manage these common tools in any other way as see fit for your local setup.

lib/workload/stateful/stacks/postgres-manager/Makefile

+1-1
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@ down:
1010
@docker compose down
1111

1212
suite:
13-
yarn test --silent --forceExit
13+
@yarn test --silent --forceExit
1414

1515
# The default outer `tests` target only run the top level cdk application unit tests under `./test`
1616
test: install up suite down
Original file line numberDiff line numberDiff line change
@@ -1,23 +1,26 @@
11
{
22
"name": "postgres-manager",
3-
"packageManager": "yarn@4.4.1",
3+
"packageManager": "yarn@4.5.3",
44
"scripts": {
55
"test": "tsc && jest",
66
"build": "esbuild function/index.ts --bundle --minify --sourcemap --platform=node --target=es2020 --outfile=dist/index.js",
77
"clean": "rm -rf ./dist",
88
"audit": "yarn npm audit"
99
},
1010
"dependencies": {
11-
"@aws-sdk/client-secrets-manager": "^3.649.0",
12-
"pg": "^8.12.0"
11+
"@aws-sdk/client-secrets-manager": "^3.716.0",
12+
"pg": "^8.13.1"
1313
},
1414
"devDependencies": {
15-
"@types/aws-lambda": "^8.10.145",
16-
"@types/jest": "^29.5.12",
17-
"@types/pg": "^8.11.9",
18-
"esbuild": "^0.23.1",
15+
"@types/aws-lambda": "^8.10.146",
16+
"@types/jest": "^29.5.14",
17+
"@types/pg": "^8.11.10",
18+
"esbuild": "^0.24.2",
1919
"jest": "^29.7.0",
2020
"ts-jest": "^29.2.5",
21-
"typescript": "^5.6.2"
21+
"typescript": "^5.7.2"
22+
},
23+
"resolutions": {
24+
"cross-spawn": "^7.0.6"
2225
}
2326
}

0 commit comments

Comments
 (0)