Skip to content

Commit 930dca5

Browse files
authored
Upgrade to version v1.1.0
Upgrade to version v1.1.0
2 parents 7573a29 + 08cd332 commit 930dca5

File tree

49 files changed

+3968
-103
lines changed

Some content is hidden

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

49 files changed

+3968
-103
lines changed

CHANGELOG.md

Lines changed: 11 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -5,6 +5,17 @@ All notable changes to this project will be documented in this file.
55
The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/),
66
and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html).
77

8+
## [1.1.0] - 2023-11-02
9+
10+
### Added
11+
12+
- Markdown rendering in Chat UI LLM responses
13+
14+
### Updated
15+
16+
- Increased prompt and chat input limits to 2000 and 2500 characters respectively
17+
- Updated package versions to resolve security vulnerabilities
18+
819
## [1.0.1] - 2023-10-26
920

1021
### Updated

NOTICE.txt

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -42,6 +42,7 @@ This software includes third party software subject to the following copyrights:
4242
@cloudscape-design/global-styles Apache-2.0
4343
@middy/core MIT
4444
@smithy/types Apache-2.0
45+
@tabler/icons-react MIT
4546
@tailwindcss/typography MIT
4647
@testing-library/jest-dom MIT
4748
@testing-library/react MIT
@@ -53,6 +54,7 @@ This software includes third party software subject to the following copyrights:
5354
@types/node MIT
5455
@types/npmlog MIT
5556
@types/prettier MIT
57+
@types/react-syntax-highlighter MIT
5658
@types/react-test-renderer MIT
5759
@types/uuid MIT
5860
@typescript-eslint/eslint-plugin MIT
@@ -142,10 +144,14 @@ pytest-env MIT
142144
pytest-mock MIT
143145
python-dateutil Apache 2.0, BSD License
144146
react-bootstrap MIT
147+
react-markdown MIT
145148
react-router-dom MIT
146149
react-scripts MIT
150+
react-syntax-highlighter MIT
147151
react-tabs MIT
148152
react-test-renderer MIT
153+
remark-gfm MIT
154+
remark-math MIT
149155
requests Apache-2.0
150156
responses Apache-2.0
151157
s3transfer Apache-2.0

source/infrastructure/cdk.json

Lines changed: 4 additions & 10 deletions
Original file line numberDiff line numberDiff line change
@@ -1,9 +1,7 @@
11
{
22
"app": "../pre-build-lambda-layers.sh && npx ts-node --prefer-ts-exts bin/gen-ai-app-builder.ts",
33
"watch": {
4-
"include": [
5-
"**"
6-
],
4+
"include": ["**"],
75
"exclude": [
86
"README.md",
97
"cdk*.json",
@@ -27,16 +25,12 @@
2725
"@aws-cdk/aws-ec2:uniqueImdsv2TemplateName": true,
2826
"@aws-cdk/core:checkSecretUsage": true,
2927
"@aws-cdk/aws-iam:minimizePolicies": true,
30-
"@aws-cdk/core:target-partitions": [
31-
"aws",
32-
"aws-cn",
33-
"aws-us-gov"
34-
],
28+
"@aws-cdk/core:target-partitions": ["aws", "aws-cn", "aws-us-gov"],
3529
"solution_id": "SO0276",
3630
"solution_name": "generative-ai-application-builder-on-aws",
37-
"solution_version": "v1.0.1",
31+
"solution_version": "v1.1.0",
3832
"app_registry_name": "GAAB",
3933
"application_type": "AWS-Solutions",
4034
"application_trademark_name": "Generative AI Application Builder on AWS"
4135
}
42-
}
36+
}

source/infrastructure/lib/use-case-management/management-stack.ts

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -641,7 +641,8 @@ const buildCfnDeployRole = (scope: Construct): iam.Role => {
641641
'cognito-idp:CreateUserPoolClient',
642642
'cognito-idp:DeleteUserPoolClient',
643643
'cognito-idp:AdminAddUserToGroup',
644-
'cognito-idp:AdminRemoveUserFromGroup'
644+
'cognito-idp:AdminRemoveUserFromGroup',
645+
'cognito-idp:AdminListGroupsForUser'
645646
],
646647
resources: [
647648
`arn:${cdk.Aws.PARTITION}:cognito-idp:${cdk.Aws.REGION}:${cdk.Aws.ACCOUNT_ID}:userpool/*`

source/infrastructure/lib/utils/lambda-aspect.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -191,7 +191,7 @@ export class LambdaAspects extends Construct implements cdk.IAspect {
191191
node.addLayers(this.getOrCreateNodeUserAgent(node), this.getOrCreateAwsNodeSdkLibLayer(node));
192192
node.addEnvironment(
193193
'AWS_SDK_USER_AGENT',
194-
`{ "customUserAgent": "AwsSolution/${solutionID}/${solutionVersion}" }`
194+
`{ "customUserAgent": [["AwsSolution/${solutionID}/${solutionVersion}"]] }`
195195
);
196196
node.addEnvironment('AWS_NODEJS_CONNECTION_REUSE_ENABLED', '1');
197197
}

source/infrastructure/package-lock.json

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

source/infrastructure/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "gen-ai-app-builder-on-aws-infrastructure",
3-
"version": "1.0.1",
3+
"version": "1.1.0",
44
"bin": {
55
"infrastructure": "bin/gen-ai-app-builder.js"
66
},

source/infrastructure/test/mock-lambda-func/node-lambda/package-lock.json

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

source/infrastructure/test/mock-lambda-func/node-lambda/package.json

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "node-lambda",
3-
"version": "1.0.1",
3+
"version": "1.1.0",
44
"description": "A mock lambda implementation for CDK infrastructure unit",
55
"main": "index.js",
66
"scripts": {
@@ -17,4 +17,4 @@
1717
"url": "https://aws.amazon.com/solutions"
1818
},
1919
"license": "Apache-2.0"
20-
}
20+
}

source/infrastructure/test/mock-lambda-func/typescript-lambda/package-lock.json

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

0 commit comments

Comments
 (0)