Skip to content

Commit

Permalink
Merge pull request #794 from umccr/bump-deps-20241224
Browse files Browse the repository at this point in the history
Bumped dependencies
  • Loading branch information
victorskl authored Dec 24, 2024
2 parents 3b51ec5 + e7bde62 commit efb00d8
Show file tree
Hide file tree
Showing 16 changed files with 1,705 additions and 1,867 deletions.
7 changes: 4 additions & 3 deletions .pre-commit-config.yaml
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
repos:

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

- repo: https://github.com/Yelp/detect-secrets
rev: v1.4.0
rev: v1.5.0
hooks:
- id: detect-secrets
name: detect secrets
args: [ '--baseline', '.secrets.baseline' ]
exclude: ^(yarn.lock|.yarn/|.yarnrc.yml)

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

# FIXME: plugin repo is public archived. To follow up for replacement. ~victor
- repo: https://github.com/pre-commit/mirrors-prettier
rev: v2.7.1
hooks:
Expand Down
2 changes: 1 addition & 1 deletion .secrets.baseline
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
{
"version": "1.4.0",
"version": "1.5.0",
"plugins_used": [
{
"name": "ArtifactoryDetector"
Expand Down
614 changes: 307 additions & 307 deletions .yarn/releases/yarn-4.5.1.cjs → .yarn/releases/yarn-4.5.3.cjs

Large diffs are not rendered by default.

2 changes: 1 addition & 1 deletion .yarnrc.yml
Original file line number Diff line number Diff line change
Expand Up @@ -9,4 +9,4 @@ plugins:
path: .yarn/plugins/@yarnpkg/plugin-outdated.cjs
spec: "https://go.mskelton.dev/yarn-outdated/v4"

yarnPath: .yarn/releases/yarn-4.5.1.cjs
yarnPath: .yarn/releases/yarn-4.5.3.cjs
6 changes: 3 additions & 3 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -158,14 +158,14 @@ _Setting up baseline toolchain_

```
docker --version
Docker version 27.2.0, build 3ab4256
Docker version 27.4.0, build bde2b89
node -v
v20.18.0
v20.18.1
npm i -g yarn
yarn -v
4.5.1
4.5.3
```

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.
Expand Down
2 changes: 1 addition & 1 deletion lib/workload/stateful/stacks/postgres-manager/Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ down:
@docker compose down

suite:
yarn test --silent --forceExit
@yarn test --silent --forceExit

# The default outer `tests` target only run the top level cdk application unit tests under `./test`
test: install up suite down
19 changes: 11 additions & 8 deletions lib/workload/stateful/stacks/postgres-manager/package.json
Original file line number Diff line number Diff line change
@@ -1,23 +1,26 @@
{
"name": "postgres-manager",
"packageManager": "yarn@4.4.1",
"packageManager": "yarn@4.5.3",
"scripts": {
"test": "tsc && jest",
"build": "esbuild function/index.ts --bundle --minify --sourcemap --platform=node --target=es2020 --outfile=dist/index.js",
"clean": "rm -rf ./dist",
"audit": "yarn npm audit"
},
"dependencies": {
"@aws-sdk/client-secrets-manager": "^3.649.0",
"pg": "^8.12.0"
"@aws-sdk/client-secrets-manager": "^3.716.0",
"pg": "^8.13.1"
},
"devDependencies": {
"@types/aws-lambda": "^8.10.145",
"@types/jest": "^29.5.12",
"@types/pg": "^8.11.9",
"esbuild": "^0.23.1",
"@types/aws-lambda": "^8.10.146",
"@types/jest": "^29.5.14",
"@types/pg": "^8.11.10",
"esbuild": "^0.24.2",
"jest": "^29.7.0",
"ts-jest": "^29.2.5",
"typescript": "^5.6.2"
"typescript": "^5.7.2"
},
"resolutions": {
"cross-spawn": "^7.0.6"
}
}
Loading

0 comments on commit efb00d8

Please sign in to comment.