Skip to content

Commit b9ae522

Browse files
authored
Merge branch 'main' into quenting/better-logging
2 parents 295436a + 8aec560 commit b9ae522

File tree

9 files changed

+34
-34
lines changed

9 files changed

+34
-34
lines changed

.github/workflows/build.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -270,7 +270,7 @@ jobs:
270270
type=sha
271271
272272
- name: Setup Cosign
273-
uses: sigstore/[email protected].1
273+
uses: sigstore/[email protected].2
274274

275275
- name: Set up Docker Buildx
276276
uses: docker/[email protected]

.github/workflows/coverage.yaml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -33,7 +33,7 @@ jobs:
3333
run: make coverage
3434

3535
- name: Upload to codecov.io
36-
uses: codecov/[email protected].0
36+
uses: codecov/[email protected].2
3737
with:
3838
token: ${{ secrets.CODECOV_TOKEN }}
3939
files: policies/coverage.json
@@ -60,7 +60,7 @@ jobs:
6060
run: npm run coverage
6161

6262
- name: Upload to codecov.io
63-
uses: codecov/[email protected].0
63+
uses: codecov/[email protected].2
6464
with:
6565
token: ${{ secrets.CODECOV_TOKEN }}
6666
directory: frontend/coverage/
@@ -127,7 +127,7 @@ jobs:
127127
grcov . --binary-path ./target/debug/deps/ -s . -t lcov --branch --ignore-not-existing --ignore '../*' --ignore "/*" -o target/coverage/tests.lcov
128128
129129
- name: Upload to codecov.io
130-
uses: codecov/[email protected].0
130+
uses: codecov/[email protected].2
131131
with:
132132
token: ${{ secrets.CODECOV_TOKEN }}
133133
files: target/coverage/*.lcov

Cargo.lock

Lines changed: 10 additions & 10 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

Cargo.toml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -124,7 +124,7 @@ features = ["serde", "clock"]
124124

125125
# CLI argument parsing
126126
[workspace.dependencies.clap]
127-
version = "4.5.36"
127+
version = "4.5.37"
128128
features = ["derive"]
129129

130130
# Cron expressions
@@ -309,7 +309,7 @@ features = ["oid"]
309309

310310
# Query builder
311311
[workspace.dependencies.sea-query]
312-
version = "0.32.3"
312+
version = "0.32.4"
313313
features = ["derive", "attr", "with-uuid", "with-chrono", "postgres-array"]
314314

315315
# Query builder

crates/cli/src/commands/manage.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -67,7 +67,7 @@ enum Subcommand {
6767
/// Add an email address to the specified user
6868
AddEmail { username: String, email: String },
6969

70-
/// \[DEPRECATED\] Mark email address as verified
70+
/// (DEPRECATED) Mark email address as verified
7171
VerifyEmail { username: String, email: String },
7272

7373
/// Set a user password

crates/handlers/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -76,7 +76,7 @@ hex.workspace = true
7676
governor.workspace = true
7777
indexmap.workspace = true
7878
pkcs8.workspace = true
79-
psl = "2.1.100"
79+
psl = "2.1.102"
8080
sha2.workspace = true
8181
time = "0.3.41"
8282
url.workspace = true

crates/keystore/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@ workspace = true
1414
[dependencies]
1515
aead = { version = "0.5.2", features = ["std"] }
1616
const-oid = { version = "0.9.6", features = ["std"] }
17-
der = { version = "0.7.9", features = ["std"] }
17+
der = { version = "0.7.10", features = ["std"] }
1818
elliptic-curve.workspace = true
1919
k256.workspace = true
2020
p256.workspace = true

frontend/package-lock.json

Lines changed: 12 additions & 12 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

frontend/package.json

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -34,7 +34,7 @@
3434
"react": "^19.1.0",
3535
"react-dom": "^19.1.0",
3636
"react-i18next": "^15.4.1",
37-
"swagger-ui-dist": "^5.20.7",
37+
"swagger-ui-dist": "^5.21.0",
3838
"valibot": "^1.0.0",
3939
"vaul": "^1.1.2"
4040
},
@@ -62,7 +62,7 @@
6262
"@types/react": "19.1.1",
6363
"@types/react-dom": "19.1.2",
6464
"@types/swagger-ui-dist": "^3.30.5",
65-
"@vitejs/plugin-react": "^4.4.0",
65+
"@vitejs/plugin-react": "^4.4.1",
6666
"@vitest/coverage-v8": "^3.1.1",
6767
"autoprefixer": "^10.4.21",
6868
"browserslist-to-esbuild": "^2.1.1",
@@ -80,7 +80,7 @@
8080
"storybook-react-i18next": "^3.2.1",
8181
"tailwindcss": "^3.4.17",
8282
"typescript": "^5.8.3",
83-
"vite": "6.3.0",
83+
"vite": "6.3.2",
8484
"vite-plugin-compression": "^0.5.1",
8585
"vite-plugin-graphql-codegen": "^3.5.0",
8686
"vite-plugin-manifest-sri": "^0.2.0",

0 commit comments

Comments
 (0)