Skip to content

Commit 86fa4f7

Browse files
Merge remote-tracking branch 'origin/aea-5081-latest-header' into aea-5081-latest-header
2 parents 5078eae + 0741a9c commit 86fa4f7

File tree

26 files changed

+32
-31
lines changed

26 files changed

+32
-31
lines changed

.tool-versions

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
nodejs 22.12.0
1+
nodejs 24.11.1
22
python 3.12.7
33
poetry 1.8.3
44
shellcheck 0.10.0

package-lock.json

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

packages/CIS2SignOutLambda/jest.config.ts

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,9 +1,9 @@
1-
import defaultConfig from "../../jest.default.config"
1+
import defaultConfig from "../../jest.default.config.ts"
22
import type {JestConfigWithTsJest} from "ts-jest"
33

44
const jestConfig: JestConfigWithTsJest = {
55
...defaultConfig,
6-
rootDir: __dirname,
6+
"rootDir": "./",
77
setupFiles: ["<rootDir>/.jest/setEnvVars.js"],
88
moduleNameMapper: {"@/(.*)$": ["<rootDir>/src/$1"]}
99
}

packages/cdk/jest.config.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
import type {JestConfigWithTsJest} from "ts-jest"
2-
import defaultConfig from "../../jest.default.config"
2+
import defaultConfig from "../../jest.default.config.ts"
33

44
const jestConfig: JestConfigWithTsJest = {
55
...defaultConfig,

packages/cdk/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@
77
"check-licenses": "license-checker --failOn GPL --failOn LGPL --start ../.."
88
},
99
"dependencies": {
10-
"aws-cdk-lib": "^2.221.1",
10+
"aws-cdk-lib": "^2.227.0",
1111
"cdk-nag": "^2.37.55",
1212
"constructs": "^10.4.4"
1313
},

packages/cdk/resources/LambdaFunction/helpers.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -26,7 +26,7 @@ interface DefaultLambdaOptionsParams {
2626
function getDefaultLambdaOptions(options: DefaultLambdaOptionsParams): NodejsFunctionProps {
2727
const defaultOptions: NodejsFunctionProps = {
2828
functionName: options.functionName,
29-
runtime: Runtime.NODEJS_22_X,
29+
runtime: Runtime.NODEJS_24_X,
3030
entry: join(baseDir, options.packageBasePath, options.entryPoint),
3131
projectRoot: baseDir,
3232
memorySize: 256,

packages/cdk/tests/functionConstruct.test.ts

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -108,7 +108,7 @@ describe("functionConstruct works correctly", () => {
108108
test("it has the correct lambda", () => {
109109
template.hasResourceProperties("AWS::Lambda::Function", {
110110
Handler: "index.handler",
111-
Runtime: "nodejs22.x",
111+
Runtime: "nodejs24.x",
112112
FunctionName: "testServiceName-testLambda",
113113
MemorySize: 256,
114114
Architectures: ["x86_64"],
@@ -159,7 +159,7 @@ describe("functionConstruct works correctly with environment variables", () => {
159159

160160
test("environment variables are added correctly", () => {
161161
template.hasResourceProperties("AWS::Lambda::Function", {
162-
Runtime: "nodejs22.x",
162+
Runtime: "nodejs24.x",
163163
FunctionName: "testServiceName-testLambda",
164164
Environment: {Variables: {foo: "bar"}}
165165
})

packages/cloudfrontFunctions/jest.config.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
import type {JestConfigWithTsJest} from "ts-jest"
2-
import defaultConfig from "../../jest.default.config"
2+
import defaultConfig from "../../jest.default.config.ts"
33

44
const jestConfig: JestConfigWithTsJest = {
55
...defaultConfig,

packages/cognito/jest.config.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
import defaultConfig from "../../jest.default.config"
1+
import defaultConfig from "../../jest.default.config.ts"
22
import type {JestConfigWithTsJest} from "ts-jest"
33

44
const jestConfig: JestConfigWithTsJest = {

packages/common/authFunctions/jest.config.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
import defaultConfig from "../../../jest.default.config"
1+
import defaultConfig from "../../../jest.default.config.ts"
22
import type {JestConfigWithTsJest} from "ts-jest"
33

44
const jestConfig: JestConfigWithTsJest = {

0 commit comments

Comments
 (0)