You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
### Security
- Upgraded urllib3 to `2.5.0`
- Upgraded requests to `2.32.4`
- Upgraded brace-expansion to `2.0.2`
### Added
- Support for Kendra GenAI Index backed Bedrock knowledge bases.
### Changed
- Deployment UI to show an error when a regular user attempts to log in.
- Custom Resource IAM Role to be scoped down to only necessary DynamoDB Tables.
### Fixed
- Bug where CloudFormation deployment would fail using existing Cognito resources due to user/group creation conflict. ([#193](#193)).
- Bug where history in prompt for SageMaker models was being replaced by LangChain BaseMessage objects instead of just the content of the messages.
- Bug where context in prompt was being replaced by LangChain Document objects instead of the content of the documents.
- Bug where Langchain layer poetry lock wasn't being respected.
Copy file name to clipboardExpand all lines: CHANGELOG.md
+24Lines changed: 24 additions & 0 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -5,6 +5,30 @@ All notable changes to this project will be documented in this file.
5
5
The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/),
6
6
and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html).
7
7
8
+
## [3.0.1] - 2025-06-26
9
+
10
+
### Security
11
+
12
+
- Upgraded urllib3 to `2.5.0`
13
+
- Upgraded requests to `2.32.4`
14
+
- Upgraded brace-expansion to `2.0.2`
15
+
16
+
### Added
17
+
18
+
- Support for Kendra GenAI Index backed Bedrock knowledge bases.
19
+
20
+
### Changed
21
+
22
+
- Deployment UI to show an error when a regular user attempts to log in.
23
+
- Custom Resource IAM Role to be scoped down to only necessary DynamoDB Tables.
24
+
25
+
### Fixed
26
+
27
+
- Bug where CloudFormation deployment would fail using existing Cognito resources due to user/group creation conflict. ([#193](https://github.com/aws-solutions/generative-ai-application-builder-on-aws/issues/193)).
28
+
- Bug where history in prompt for SageMaker models was being replaced by LangChain BaseMessage objects instead of just the content of the messages.
29
+
- Bug where context in prompt was being replaced by LangChain Document objects instead of the content of the documents.
30
+
- Bug where Langchain layer poetry lock wasn't being respected.
Copy file name to clipboardExpand all lines: README.md
+1-1Lines changed: 1 addition & 1 deletion
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -9,7 +9,7 @@ The [Generative AI Application Builder on AWS](https://aws.amazon.com/solutions/
9
9
10
10
The Generative AI Application Builder is published under an Apache 2.0 license and is targeted for novice to experienced users who want to experiment and productionize different Gen AI use cases. The solution uses [LangChain](https://www.langchain.com/) open-source software (OSS) to configure connections to your choice of Large Language Models (LLMs) for different use cases. The first release of GAAB allows users to deploy chat use cases which allow the ability to query over users' enterprise data in a chatbot-style User Interface (UI), along with an API to support custom end-user implementations.
11
11
12
-
Some of the features of GAAB are:
12
+
Some of the features of GAAB are:
13
13
14
14
- Rapid experimentation with ability to productionize at scale
15
15
- Extendable and modularized architecture using nested [Amazon CloudFormation](https://aws.amazon.com/cloudformation/) stacks
description: 'Email required to create the default user for the admin platform',
77
-
allowedPattern: MANDATORY_EMAIL_REGEX_PATTERN,
76
+
description: 'Optional - Email used to create the default cognito user for the admin platform. If empty, the Cognito User, Group and Attachment will not be created.',
77
+
allowedPattern: OPTIONAL_EMAIL_REGEX_PATTERN,
78
78
constraintDescription: 'Please provide a valid email'
79
79
});
80
80
@@ -148,15 +148,15 @@ export class DeploymentPlatformStack extends BaseStack {
148
148
existingParameterGroups.push({
149
149
Label: {
150
150
default:
151
-
'Optional: If you would like to provide a Cognito UserPool and UserPoolClient, you can pass their IDs here. Otherwise, a new pool and client will be created for you'
151
+
'Optional: Provide existing Cognito UserPool and UserPoolClient IDs if you want to use your own managed resources. If left empty, the solution will manage these resources for you. Note: To prevent the creation of Cognito resources within the user pool (Users/Groups), simply leave the AdminUserEmail parameter empty.'
0 commit comments