Skip to content

Commit b19bcc2

Browse files
dependabot[bot]tlhunter
authored andcommitted
chore(deps): bump the test-versions group across 1 directory with 7 updates (#9449)
* chore(deps): bump the test-versions group across 1 directory with 7 updates Bumps the test-versions group with 7 updates in the /packages/dd-trace/test/plugins/versions directory: | Package | From | To | | --- | --- | --- | | [@anthropic-ai/claude-agent-sdk](https://github.com/anthropics/claude-agent-sdk-typescript) | `0.3.207` | `0.3.214` | | [@aws/durable-execution-sdk-js](https://github.com/aws/aws-durable-execution-sdk-js/tree/HEAD/packages/aws-durable-execution-sdk-js) | `2.1.0` | `2.2.0` | | [@datadog/openfeature-node-server](https://github.com/DataDog/openfeature-js-client/tree/HEAD/packages/node-server) | `2.0.0` | `2.0.1` | | [mercurius](https://github.com/mercurius-js/mercurius) | `16.9.0` | `16.10.0` | | [pnpm](https://github.com/pnpm/pnpm/tree/HEAD/pnpm11/pnpm) | `11.12.0` | `11.15.0` | | [protobufjs](https://github.com/protobufjs/protobuf.js) | `8.7.0` | `8.7.1` | | [stripe](https://github.com/stripe/stripe-node) | `22.3.1` | `22.3.2` | Updates `@anthropic-ai/claude-agent-sdk` from 0.3.207 to 0.3.214 - [Release notes](https://github.com/anthropics/claude-agent-sdk-typescript/releases) - [Changelog](https://github.com/anthropics/claude-agent-sdk-typescript/blob/main/CHANGELOG.md) - [Commits](anthropics/claude-agent-sdk-typescript@v0.3.207...v0.3.214) Updates `@aws/durable-execution-sdk-js` from 2.1.0 to 2.2.0 - [Release notes](https://github.com/aws/aws-durable-execution-sdk-js/releases) - [Changelog](https://github.com/aws/aws-durable-execution-sdk-js/blob/main/CHANGELOG.md) - [Commits](https://github.com/aws/aws-durable-execution-sdk-js/commits/HEAD/packages/aws-durable-execution-sdk-js) Updates `@datadog/openfeature-node-server` from 2.0.0 to 2.0.1 - [Release notes](https://github.com/DataDog/openfeature-js-client/releases) - [Changelog](https://github.com/DataDog/openfeature-js-client/blob/main/CHANGELOG.md) - [Commits](https://github.com/DataDog/openfeature-js-client/commits/@datadog/openfeature-node-server@2.0.1/packages/node-server) Updates `mercurius` from 16.9.0 to 16.10.0 - [Release notes](https://github.com/mercurius-js/mercurius/releases) - [Commits](https://github.com/mercurius-js/mercurius/commits/v16.10.0) Updates `pnpm` from 11.12.0 to 11.15.0 - [Release notes](https://github.com/pnpm/pnpm/releases) - [Commits](https://github.com/pnpm/pnpm/commits/v11.15.0/pnpm11/pnpm) Updates `protobufjs` from 8.7.0 to 8.7.1 - [Release notes](https://github.com/protobufjs/protobuf.js/releases) - [Changelog](https://github.com/protobufjs/protobuf.js/blob/master/CHANGELOG.md) - [Commits](protobufjs/protobuf.js@protobufjs-v8.7.0...protobufjs-v8.7.1) Updates `stripe` from 22.3.1 to 22.3.2 - [Release notes](https://github.com/stripe/stripe-node/releases) - [Changelog](https://github.com/stripe/stripe-node/blob/master/CHANGELOG.md) - [Commits](stripe/stripe-node@v22.3.1...v22.3.2) --- updated-dependencies: - dependency-name: "@anthropic-ai/claude-agent-sdk" dependency-version: 0.3.214 dependency-type: direct:production update-type: version-update:semver-patch dependency-group: test-versions - dependency-name: "@aws/durable-execution-sdk-js" dependency-version: 2.2.0 dependency-type: direct:production update-type: version-update:semver-minor dependency-group: test-versions - dependency-name: "@datadog/openfeature-node-server" dependency-version: 2.0.1 dependency-type: direct:production update-type: version-update:semver-patch dependency-group: test-versions - dependency-name: mercurius dependency-version: 16.10.0 dependency-type: direct:production update-type: version-update:semver-minor dependency-group: test-versions - dependency-name: pnpm dependency-version: 11.14.0 dependency-type: direct:production update-type: version-update:semver-minor dependency-group: test-versions - dependency-name: protobufjs dependency-version: 8.7.1 dependency-type: direct:production update-type: version-update:semver-patch dependency-group: test-versions - dependency-name: stripe dependency-version: 22.3.2 dependency-type: direct:production update-type: version-update:semver-patch dependency-group: test-versions ... Signed-off-by: dependabot[bot] <support@github.com> * @aws/durable-execution-sdk-js@2.2.0 renames getNextStepId() to peekStepId() --------- Signed-off-by: dependabot[bot] <support@github.com> Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com> Co-authored-by: Thomas Hunter II <tlhunter@datadog.com>
1 parent 7217651 commit b19bcc2

2 files changed

Lines changed: 9 additions & 8 deletions

File tree

  • packages
    • datadog-plugin-aws-durable-execution-sdk-js/src
    • dd-trace/test/plugins/versions

packages/datadog-plugin-aws-durable-execution-sdk-js/src/util.js

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,8 @@ const REPLAYED_STATUSES = new Set(['SUCCEEDED', 'FAILED'])
1616
* @returns {{ stepId: string | undefined, stepData: object | undefined }}
1717
*/
1818
function getStepDataForNext (ctxImpl) {
19-
const stepId = ctxImpl?.getNextStepId?.()
19+
// @aws/durable-execution-sdk-js@2.2.0 renames .getNextStepId() to .peekStepId()
20+
const stepId = ctxImpl?.peekStepId?.() ?? ctxImpl?.getNextStepId?.()
2021
const stepData = stepId ? ctxImpl?._executionContext?.getStepData?.(stepId) : undefined
2122
return { stepId, stepData }
2223
}

packages/dd-trace/test/plugins/versions/package.json

Lines changed: 7 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -8,12 +8,12 @@
88
"@ai-sdk/anthropic": "4.0.16",
99
"@ai-sdk/google": "4.0.18",
1010
"@ai-sdk/openai": "4.0.16",
11-
"@anthropic-ai/claude-agent-sdk": "0.3.207",
11+
"@anthropic-ai/claude-agent-sdk": "0.3.214",
1212
"@anthropic-ai/sdk": "0.112.3",
1313
"@apollo/gateway": "2.14.0",
1414
"@apollo/server": "5.5.1",
1515
"@apollo/subgraph": "2.14.0",
16-
"@aws/durable-execution-sdk-js": "2.1.0",
16+
"@aws/durable-execution-sdk-js": "2.2.0",
1717
"@aws/durable-execution-sdk-js-testing": "1.1.3",
1818
"@aws-sdk/client-bedrock-runtime": "3.1090.0",
1919
"@aws-sdk/client-dynamodb": "3.1090.0",
@@ -33,7 +33,7 @@
3333
"@babel/preset-typescript": "7.28.5",
3434
"@confluentinc/kafka-javascript": "1.10.0",
3535
"@cucumber/cucumber": "13.2.0",
36-
"@datadog/openfeature-node-server": "2.0.0",
36+
"@datadog/openfeature-node-server": "2.0.1",
3737
"@elastic/elasticsearch": "9.4.2",
3838
"@elastic/transport": "9.3.7",
3939
"@electron/packager": "20.0.0",
@@ -164,7 +164,7 @@
164164
"loopback": "3.28.0",
165165
"mariadb": "3.4.5",
166166
"memcached": "2.2.2",
167-
"mercurius": "16.9.0",
167+
"mercurius": "16.10.0",
168168
"microgateway-core": "3.3.7",
169169
"middie": "7.1.0",
170170
"mocha": "11.7.6",
@@ -201,11 +201,11 @@
201201
"pino-pretty": "13.1.3",
202202
"playwright": "1.61.0",
203203
"playwright-core": "1.61.0",
204-
"pnpm": "11.12.0",
204+
"pnpm": "11.15.0",
205205
"prisma": "7.8.0",
206206
"promise": "8.3.0",
207207
"promise-js": "0.0.7",
208-
"protobufjs": "8.7.0",
208+
"protobufjs": "8.7.1",
209209
"pug": "3.0.4",
210210
"q": "2.0.3",
211211
"react": "19.2.6",
@@ -220,7 +220,7 @@
220220
"sharedb": "6.0.1",
221221
"sinon": "22.0.0",
222222
"sqlite3": "6.0.1",
223-
"stripe": "22.3.1",
223+
"stripe": "22.3.2",
224224
"tedious": "20.0.0",
225225
"tinypool": "2.1.0",
226226
"typescript": "6.0.3",

0 commit comments

Comments
 (0)