Skip to content

Commit e885843

Browse files
fix(ci): bump @aws/agentcore-cdk to 0.1.0-alpha.18 and remove snapshot step from release (#850)
* fix(ci): bump @aws/agentcore-cdk to 0.1.0-alpha.18 and remove snapshot step from release Sync the CDK template to the latest npm version and update the asset snapshot. Remove the snapshot update step from the release workflow since it runs the full test suite which requires uv. * fix: use caret range for @aws/agentcore-cdk in CDK template Use ^0.1.0-alpha.18 instead of pinning an exact version so new releases are picked up automatically.
1 parent 37665a3 commit e885843

3 files changed

Lines changed: 2 additions & 7 deletions

File tree

.github/workflows/release.yml

Lines changed: 0 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -141,11 +141,6 @@ jobs:
141141
npx prettier --write schemas/
142142
echo "✓ JSON schema regenerated and formatted"
143143
144-
- name: Update snapshots after CDK sync
145-
run: |
146-
npm run test:update-snapshots
147-
echo "✓ Snapshots updated"
148-
149144
- name: Create release branch and PR
150145
env:
151146
NEW_VERSION: ${{ steps.bump.outputs.version }}

src/assets/__tests__/__snapshots__/assets.snapshot.test.ts.snap

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -357,7 +357,7 @@ exports[`Assets Directory Snapshots > CDK assets > cdk/cdk/package.json should m
357357
"typescript": "~5.9.3"
358358
},
359359
"dependencies": {
360-
"@aws/agentcore-cdk": "0.1.0-alpha.17",
360+
"@aws/agentcore-cdk": "^0.1.0-alpha.18",
361361
"aws-cdk-lib": "^2.248.0",
362362
"constructs": "^10.0.0"
363363
}

src/assets/cdk/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -23,7 +23,7 @@
2323
"typescript": "~5.9.3"
2424
},
2525
"dependencies": {
26-
"@aws/agentcore-cdk": "0.1.0-alpha.17",
26+
"@aws/agentcore-cdk": "^0.1.0-alpha.18",
2727
"aws-cdk-lib": "^2.248.0",
2828
"constructs": "^10.0.0"
2929
}

0 commit comments

Comments
 (0)