Skip to content

Commit 1f48440

Browse files
authored
chore(deps): bump the test-versions group across 3 directories with 7 updates
Recreates the reverted PR #7371 with fixed CI
1 parent e12c195 commit 1f48440

File tree

4 files changed

+10
-9
lines changed

4 files changed

+10
-9
lines changed

integration-tests/appsec/iast-esbuild-cjs/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@
1414
"author": "Carles Capell <[email protected]>",
1515
"license": "ISC",
1616
"dependencies": {
17-
"esbuild": "^0.25.9",
17+
"esbuild": "^0.27.2",
1818
"express": "^4.21.2"
1919
}
2020
}

integration-tests/appsec/iast-esbuild-esm/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@
1616
"author": "Carles Capell <[email protected]>",
1717
"license": "ISC",
1818
"dependencies": {
19-
"esbuild": "^0.25.9",
19+
"esbuild": "^0.27.2",
2020
"express": "^4.21.2"
2121
}
2222
}

integration-tests/esbuild/build-and-test-koa.mjs

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -29,10 +29,11 @@ try {
2929
if (NODE_MAJOR >= 22) {
3030
// it is resolved as ESM module only in node 22+, becaues the require.resolve accepts conditions in node 22+
3131
assert.match(data, /register.*koa.mjs".*"koa"\);$/m, 'Bundle should contain the koa ESM instrumentation')
32+
assert.match(data, /register.*@koa\/router.*".*"@koa\/router"\);$/m, 'Bundle should contain the @koa/router instrumentation')
3233
} else {
3334
assert.match(data, /^ {8}package: "koa",$/m, 'Bundle should contain the koa CJS instrumentation')
35+
assert.match(data, /^ {8}package: "@koa\/router",$/m, 'Bundle should contain the @koa/router instrumentation')
3436
}
35-
assert.match(data, /^ {8}package: "@koa\/router",$/m, 'Bundle should contain the @koa/router instrumentation')
3637

3738
console.log('ok') // eslint-disable-line no-console
3839
} finally {

integration-tests/esbuild/package.json

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -20,13 +20,13 @@
2020
"author": "Thomas Hunter II <[email protected]>",
2121
"license": "ISC",
2222
"dependencies": {
23-
"@apollo/server": "5.2.0",
24-
"@koa/router": "14.0.0",
25-
"aws-sdk": "2.1692.0",
26-
"axios": "1.13.2",
27-
"express": "4.21.2",
23+
"@apollo/server": "5.3.0",
24+
"@koa/router": "15.3.0",
25+
"aws-sdk": "2.1693.0",
26+
"axios": "1.13.3",
27+
"express": "4.22.1",
2828
"knex": "3.1.0",
2929
"koa": "3.1.1",
30-
"openai": "6.9.1"
30+
"openai": "6.16.0"
3131
}
3232
}

0 commit comments

Comments
 (0)