Skip to content

Commit ae4803e

Browse files
committed
Merge branch 'renovate/major-jest' of https://github.com/bitwarden/clients into renovate/major-jest
2 parents 18a8e3d + aa32367 commit ae4803e

File tree

204 files changed

+1703
-833
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

204 files changed

+1703
-833
lines changed

.github/workflows/build-web.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -334,7 +334,7 @@ jobs:
334334
- name: Scan Docker image
335335
if: ${{ needs.setup.outputs.has_secrets == 'true' }}
336336
id: container-scan
337-
uses: anchore/scan-action@1638637db639e0ade3258b51db49a9a137574c3e # v6.5.1
337+
uses: anchore/scan-action@568b89d27fc18c60e56937bff480c91c772cd993 # v7.1.0
338338
with:
339339
image: ${{ steps.image-name.outputs.name }}
340340
fail-build: false

.github/workflows/crowdin-pull.yml

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -54,6 +54,8 @@ jobs:
5454
with:
5555
app-id: ${{ steps.get-kv-secrets.outputs.BW-GHAPP-ID }}
5656
private-key: ${{ steps.get-kv-secrets.outputs.BW-GHAPP-KEY }}
57+
permission-contents: write # for creating, committing to, and pushing new branches
58+
permission-pull-requests: write # for generating pull requests
5759

5860
- name: Checkout repo
5961
uses: actions/checkout@08c6903cd8c0fde910a37f88322edcfb5dd907a8 # v5.0.0

.github/workflows/lint.yml

Lines changed: 23 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -98,12 +98,27 @@ jobs:
9898
with:
9999
persist-credentials: false
100100

101+
- name: Install Rust
102+
uses: dtolnay/rust-toolchain@6d653acede28d24f02e3cd41383119e8b1b35921 # stable
103+
with:
104+
toolchain: stable
105+
components: rustfmt, clippy
106+
107+
- name: Install Rust nightly
108+
uses: dtolnay/rust-toolchain@6d653acede28d24f02e3cd41383119e8b1b35921 # stable
109+
with:
110+
toolchain: nightly
111+
components: rustfmt
112+
101113
- name: Check Rust version
102114
run: rustup --version
103115

116+
- name: Cache cargo registry
117+
uses: Swatinem/rust-cache@f0deed1e0edfc6a9be95417288c0e1099b1eeec3 # v2.7.7
118+
104119
- name: Run cargo fmt
105120
working-directory: ./apps/desktop/desktop_native
106-
run: cargo fmt --check
121+
run: cargo +nightly fmt --check
107122

108123
- name: Run Clippy
109124
working-directory: ./apps/desktop/desktop_native
@@ -118,6 +133,13 @@ jobs:
118133
working-directory: ./apps/desktop/desktop_native
119134
run: cargo sort --workspace --check
120135

136+
- name: Install cargo-udeps
137+
run: cargo install cargo-udeps --version 0.1.57 --locked
138+
139+
- name: Cargo udeps
140+
working-directory: ./apps/desktop/desktop_native
141+
run: cargo +nightly udeps --workspace --all-features --all-targets
142+
121143
- name: Install cargo-deny
122144
uses: taiki-e/install-action@81ee1d48d9194cdcab880cbdc7d36e87d39874cb # v2.62.45
123145
with:

.github/workflows/publish-web.yml

Lines changed: 5 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -157,11 +157,10 @@ jobs:
157157
- name: Log out of Docker
158158
run: docker logout
159159

160-
self-host-unified-build:
161-
name: Trigger self-host unified build
160+
bitwarden-lite-build:
161+
name: Trigger Bitwarden Lite build
162162
runs-on: ubuntu-22.04
163-
needs:
164-
- setup
163+
needs: setup
165164
permissions:
166165
id-token: write
167166
steps:
@@ -182,15 +181,15 @@ jobs:
182181
- name: Log out from Azure
183182
uses: bitwarden/gh-actions/azure-logout@main
184183

185-
- name: Trigger self-host build
184+
- name: Trigger Bitwarden Lite build
186185
uses: actions/github-script@ed597411d8f924073f98dfc5c65a23a2325f34cd # v8.0.0
187186
with:
188187
github-token: ${{ steps.retrieve-secret-pat.outputs.github-pat-bitwarden-devops-bot-repo-scope }}
189188
script: |
190189
await github.rest.actions.createWorkflowDispatch({
191190
owner: 'bitwarden',
192191
repo: 'self-host',
193-
workflow_id: 'build-unified.yml',
192+
workflow_id: 'build-bitwarden-lite.yml',
194193
ref: 'main',
195194
inputs: {
196195
use_latest_core_version: true

.github/workflows/sdk-breaking-change-check.yml

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -58,6 +58,8 @@ jobs:
5858
with:
5959
app-id: ${{ steps.get-kv-secrets.outputs.BW-GHAPP-ID }}
6060
private-key: ${{ steps.get-kv-secrets.outputs.BW-GHAPP-KEY }}
61+
permission-actions: read # for reading and downloading the artifacts for a workflow run
62+
6163
- name: Log out from Azure
6264
uses: bitwarden/gh-actions/azure-logout@main
6365

.github/workflows/test.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -71,7 +71,7 @@ jobs:
7171
fail-on-error: true
7272

7373
- name: Upload results to codecov.io
74-
uses: codecov/test-results-action@f2dba722c67b86c6caa034178c6e4d35335f6706 # v1.1.0
74+
uses: codecov/test-results-action@47f89e9acb64b76debcd5ea40642d25a4adced9f # v1.1.1
7575

7676
- name: Upload test coverage
7777
uses: actions/upload-artifact@65c4c4a1ddee5b72f698fdd19549f0f0fb45cf08 # v4.6.0

.github/workflows/version-auto-bump.yml

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -36,6 +36,7 @@ jobs:
3636
with:
3737
app-id: ${{ steps.get-kv-secrets.outputs.BW-GHAPP-ID }}
3838
private-key: ${{ steps.get-kv-secrets.outputs.BW-GHAPP-KEY }}
39+
permission-contents: write # for committing and pushing to the current branch
3940

4041
- name: Check out target ref
4142
uses: actions/checkout@08c6903cd8c0fde910a37f88322edcfb5dd907a8 # v5.0.0

apps/browser/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@bitwarden/browser",
3-
"version": "2025.11.0",
3+
"version": "2025.11.1",
44
"scripts": {
55
"build": "npm run build:chrome",
66
"build:bit": "npm run build:bit:chrome",

apps/browser/src/_locales/ar/messages.json

Lines changed: 9 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -5809,6 +5809,15 @@
58095809
"upgradeToPremium": {
58105810
"message": "Upgrade to Premium"
58115811
},
5812+
"upgradeCompleteSecurity": {
5813+
"message": "Upgrade for complete security"
5814+
},
5815+
"premiumGivesMoreTools": {
5816+
"message": "Premium gives you more tools to stay secure, work efficiently, and stay in control."
5817+
},
5818+
"explorePremium": {
5819+
"message": "Explore Premium"
5820+
},
58125821
"loadingVault": {
58135822
"message": "Loading vault"
58145823
},

apps/browser/src/_locales/az/messages.json

Lines changed: 10 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -595,7 +595,7 @@
595595
"message": "Hamısına bax"
596596
},
597597
"viewLess": {
598-
"message": "View less"
598+
"message": "Daha azına bax"
599599
},
600600
"viewLogin": {
601601
"message": "Girişə bax"
@@ -5809,6 +5809,15 @@
58095809
"upgradeToPremium": {
58105810
"message": "\"Premium\"a yüksəlt"
58115811
},
5812+
"upgradeCompleteSecurity": {
5813+
"message": "Upgrade for complete security"
5814+
},
5815+
"premiumGivesMoreTools": {
5816+
"message": "Premium gives you more tools to stay secure, work efficiently, and stay in control."
5817+
},
5818+
"explorePremium": {
5819+
"message": "Explore Premium"
5820+
},
58125821
"loadingVault": {
58135822
"message": "Seyf yüklənir"
58145823
},

0 commit comments

Comments
 (0)