Skip to content

Commit 4827990

Browse files
authored
chore(deps): upgrade projen and cdk (#1198)
1 parent 3d91734 commit 4827990

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

54 files changed

+406
-302
lines changed

.projen/deps.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.

.projenrc.ts

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -29,7 +29,7 @@ import {
2929
const GITHUB_USER = 'awslabs';
3030
const PUBLICATION_NAMESPACE = 'cdklabs';
3131
const PROJECT_NAME = 'generative-ai-cdk-constructs';
32-
const CDK_VERSION: string = '2.221.1';
32+
const CDK_VERSION: string = '2.230.0';
3333

3434
function camelCaseIt(input: string): string {
3535
// Hypens and dashes to spaces and then CamelCase...
@@ -49,7 +49,7 @@ const project = new awscdk.AwsCdkConstructLibrary({
4949
description:
5050
'AWS Generative AI CDK Constructs is a library for well-architected generative AI patterns.',
5151
cdkVersion: CDK_VERSION,
52-
projenVersion: '~0.98.4',
52+
projenVersion: '~0.98.26',
5353
constructsVersion: '10.3.0',
5454
defaultReleaseBranch: 'main',
5555
jsiiVersion: '~5.9.0',

CHANGELOG.md

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,7 @@
1+
# CDK Generative AI Constructs v0.1.313 (2025-12-01)
2+
3+
Based on CDK library version 2.230.0
4+
15
# CDK Generative AI Constructs v0.1.312 (2025-10-30)
26

37
Based on CDK library version 2.221.1

DEVELOPER_GUIDE.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -16,9 +16,9 @@ Default output format [None]: json
1616
```
1717

1818
- [Node](https://nodejs.org/en) >= v22.0.0
19-
- [AWS CDK](https://github.com/aws/aws-cdk/releases/tag/v2.221.1) >= 2.221.1
19+
- [AWS CDK](https://github.com/aws/aws-cdk/releases/tag/v2.230.0) >= 2.230.0
2020
- [Python](https://www.python.org/downloads/) >=3.9
21-
- [Projen](https://github.com/projen/projen/releases/tag/v0.98.0) >= 0.98.0
21+
- [Projen](https://github.com/projen/projen/releases/tag/v0.98.26) >= 0.98.26
2222
- [Yarn](https://classic.yarnpkg.com/lang/en/docs/cli/install/) >= 1.22.19
2323

2424
You can use the command below to install the dependencies listed above

apidocs/@cdklabs/namespaces/auroraDsql/classes/Cluster.md

Lines changed: 8 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -112,12 +112,14 @@ KMS encryption key associated with this cluster.
112112
> `readonly` **env**: `ResourceEnvironment`
113113
114114
The environment this resource belongs to.
115-
For resources that are created and managed by the CDK
116-
(generally, those created by creating new class instances like Role, Bucket, etc.),
117-
this is always the same as the environment of the stack they belong to;
118-
however, for imported resources
119-
(those obtained from static methods like fromRoleArn, fromBucketName, etc.),
120-
that might be different than the stack they were imported into.
115+
116+
For resources that are created and managed in a Stack (those created by
117+
creating new class instances like `new Role()`, `new Bucket()`, etc.), this
118+
is always the same as the environment of the stack they belong to.
119+
120+
For referenced resources (those obtained from referencing methods like
121+
`Role.fromRoleArn()`, `Bucket.fromBucketName()`, etc.), they might be
122+
different than the stack they were imported into.
121123

122124
#### Inherited from
123125

apidocs/@cdklabs/namespaces/auroraDsql/classes/ClusterBase.md

Lines changed: 8 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -100,12 +100,14 @@ Optional KMS encryption key associated with this cluster.
100100
> `readonly` **env**: `ResourceEnvironment`
101101
102102
The environment this resource belongs to.
103-
For resources that are created and managed by the CDK
104-
(generally, those created by creating new class instances like Role, Bucket, etc.),
105-
this is always the same as the environment of the stack they belong to;
106-
however, for imported resources
107-
(those obtained from static methods like fromRoleArn, fromBucketName, etc.),
108-
that might be different than the stack they were imported into.
103+
104+
For resources that are created and managed in a Stack (those created by
105+
creating new class instances like `new Role()`, `new Bucket()`, etc.), this
106+
is always the same as the environment of the stack they belong to.
107+
108+
For referenced resources (those obtained from referencing methods like
109+
`Role.fromRoleArn()`, `Bucket.fromBucketName()`, etc.), they might be
110+
different than the stack they were imported into.
109111

110112
#### Implementation of
111113

apidocs/@cdklabs/namespaces/auroraDsql/interfaces/ICluster.md

Lines changed: 8 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -57,12 +57,14 @@ Optional KMS encryption key associated with this bucket.
5757
> `readonly` **env**: `ResourceEnvironment`
5858
5959
The environment this resource belongs to.
60-
For resources that are created and managed by the CDK
61-
(generally, those created by creating new class instances like Role, Bucket, etc.),
62-
this is always the same as the environment of the stack they belong to;
63-
however, for imported resources
64-
(those obtained from static methods like fromRoleArn, fromBucketName, etc.),
65-
that might be different than the stack they were imported into.
60+
61+
For resources that are created and managed in a Stack (those created by
62+
creating new class instances like `new Role()`, `new Bucket()`, etc.), this
63+
is always the same as the environment of the stack they belong to.
64+
65+
For referenced resources (those obtained from referencing methods like
66+
`Role.fromRoleArn()`, `Bucket.fromBucketName()`, etc.), they might be
67+
different than the stack they were imported into.
6668

6769
#### Inherited from
6870

apidocs/@cdklabs/namespaces/bedrock/classes/Agent.md

Lines changed: 8 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -135,12 +135,14 @@ The description for the agent.
135135
> `readonly` **env**: `ResourceEnvironment`
136136
137137
The environment this resource belongs to.
138-
For resources that are created and managed by the CDK
139-
(generally, those created by creating new class instances like Role, Bucket, etc.),
140-
this is always the same as the environment of the stack they belong to;
141-
however, for imported resources
142-
(those obtained from static methods like fromRoleArn, fromBucketName, etc.),
143-
that might be different than the stack they were imported into.
138+
139+
For resources that are created and managed in a Stack (those created by
140+
creating new class instances like `new Role()`, `new Bucket()`, etc.), this
141+
is always the same as the environment of the stack they belong to.
142+
143+
For referenced resources (those obtained from referencing methods like
144+
`Role.fromRoleArn()`, `Bucket.fromBucketName()`, etc.), they might be
145+
different than the stack they were imported into.
144146

145147
#### Inherited from
146148

apidocs/@cdklabs/namespaces/bedrock/classes/AgentAlias.md

Lines changed: 8 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -105,12 +105,14 @@ The unique identifier of the agent alias.
105105
> `readonly` **env**: `ResourceEnvironment`
106106
107107
The environment this resource belongs to.
108-
For resources that are created and managed by the CDK
109-
(generally, those created by creating new class instances like Role, Bucket, etc.),
110-
this is always the same as the environment of the stack they belong to;
111-
however, for imported resources
112-
(those obtained from static methods like fromRoleArn, fromBucketName, etc.),
113-
that might be different than the stack they were imported into.
108+
109+
For resources that are created and managed in a Stack (those created by
110+
creating new class instances like `new Role()`, `new Bucket()`, etc.), this
111+
is always the same as the environment of the stack they belong to.
112+
113+
For referenced resources (those obtained from referencing methods like
114+
`Role.fromRoleArn()`, `Bucket.fromBucketName()`, etc.), they might be
115+
different than the stack they were imported into.
114116

115117
#### Inherited from
116118

apidocs/@cdklabs/namespaces/bedrock/classes/AgentAliasBase.md

Lines changed: 8 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -104,12 +104,14 @@ The unique identifier of the agent alias.
104104
> `readonly` **env**: `ResourceEnvironment`
105105
106106
The environment this resource belongs to.
107-
For resources that are created and managed by the CDK
108-
(generally, those created by creating new class instances like Role, Bucket, etc.),
109-
this is always the same as the environment of the stack they belong to;
110-
however, for imported resources
111-
(those obtained from static methods like fromRoleArn, fromBucketName, etc.),
112-
that might be different than the stack they were imported into.
107+
108+
For resources that are created and managed in a Stack (those created by
109+
creating new class instances like `new Role()`, `new Bucket()`, etc.), this
110+
is always the same as the environment of the stack they belong to.
111+
112+
For referenced resources (those obtained from referencing methods like
113+
`Role.fromRoleArn()`, `Bucket.fromBucketName()`, etc.), they might be
114+
different than the stack they were imported into.
113115

114116
#### Implementation of
115117

0 commit comments

Comments
 (0)