Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 2 additions & 0 deletions .github/renovate.json5
Original file line number Diff line number Diff line change
Expand Up @@ -177,6 +177,7 @@
"itertools",
"jest",
"jest-diff",
"jest-environment-jsdom",
"jest-junit",
"jest-mock-extended",
"jest-preset-angular",
Expand Down Expand Up @@ -509,6 +510,7 @@
"interprocess",
"jest",
"jest-diff",
"jest-environment-jsdom",
"jest-junit",
"jest-mock-extended",
"jest-preset-angular",
Expand Down
1 change: 0 additions & 1 deletion .github/workflows/build-cli.yml
Original file line number Diff line number Diff line change
Expand Up @@ -72,7 +72,6 @@ jobs:
- name: Get Node Version
id: retrieve-node-version
working-directory: ./
run: |
NODE_NVMRC=$(cat .nvmrc)
NODE_VERSION="${NODE_NVMRC/v/''}"
Expand Down
2 changes: 1 addition & 1 deletion .nvmrc
Original file line number Diff line number Diff line change
@@ -1 +1 @@
v22
v24
1 change: 1 addition & 0 deletions apps/cli/.nvmrc
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
v22
4 changes: 4 additions & 0 deletions apps/cli/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -90,5 +90,9 @@
"semver": "7.7.3",
"tldts": "7.0.28",
"zxcvbn": "4.4.2"
},
"engines": {
"node": "~22",
"npm": "~10"
}
}
2 changes: 1 addition & 1 deletion apps/web/Dockerfile
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
###############################################
# Node.js build stage (alpine) #
###############################################
ARG NODE_VERSION=20
ARG NODE_VERSION=24
FROM --platform=$BUILDPLATFORM node:${NODE_VERSION}-alpine AS node-build

WORKDIR /source
Expand Down
Original file line number Diff line number Diff line change
@@ -1,3 +1,6 @@
// Polyfill for Symbol.dispose required by the service's use of `using` keyword
import "core-js/proposals/explicit-resource-management";

// Mock asUuid to return the input value for test consistency
jest.mock("@bitwarden/common/platform/abstractions/sdk/sdk.service", () => ({
asUuid: (x: any) => x,
Expand Down Expand Up @@ -163,7 +166,6 @@ describe("LoginDecryptionOptionsComponent", () => {
jest.mock("@bitwarden/common/platform/abstractions/sdk/sdk.service", () => ({
asUuid: (x: any) => x,
}));
(Symbol as any).dispose = Symbol("dispose");

mockPrivateKey = "mock-private-key";
mockSignedPublicKey = "mock-signed-public-key";
Expand Down
Loading
Loading