Skip to content
This repository was archived by the owner on Oct 10, 2025. It is now read-only.

Commit 1ce03cb

Browse files
authored
Upgrade to version v1.5.0
### Fixed - Deprecation warnings arising from aws-cdk-lib - Bucket Notifications Handler Lambda to use Python 3.11 runtime ### Changed - Removed use of AWS Service Catalog AppRegistry - Standardized license headers across source files
2 parents fb7fc9f + d1d941d commit 1ce03cb

File tree

279 files changed

+740
-3615
lines changed

Some content is hidden

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

279 files changed

+740
-3615
lines changed

.gitignore

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,3 @@
1-
# Modified based on https://www.gitignore.io/api/visualstudiocode,python
2-
31
# compiled output
42
**/global-s3-assets
53
**/regional-s3-assets
@@ -68,3 +66,6 @@ source/scheduler/cdk/build/*
6866

6967
# nightswatch test results
7068
.nightswatch/functional/test-results.xml
69+
70+
# Brazil Build files
71+
/build

CHANGELOG.md

Lines changed: 12 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -5,6 +5,18 @@ 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.5.0] - 2025-10-02
9+
10+
### Fixed
11+
12+
- Deprecation warnings arising from aws-cdk-lib
13+
- Bucket Notifications Handler Lambda to use Python 3.11 runtime
14+
15+
### Changed
16+
17+
- Removed use of AWS Service Catalog AppRegistry
18+
- Standardized license headers across source files
19+
820
## [1.4.6] - 2025-06-26
921

1022
### Fixed

NOTICE.txt

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,6 @@ AWS Lambda Java Support Libraries under the Apache-2.0 license
1717
aws-lambda-powertools under the MIT No Attribution license
1818
aws_cdk_lib under the Apache-2.0 license under the Apache-2.0 license
1919
aws_solutions_constructs.aws_lambda_sns under the Apache-2.0 license
20-
aws-cdk.aws-servicecatalogappregistry-alpha under the Apache-2.0 license
2120
cdk-nag under the Apache-2.0 license
2221
AWS SDK under the Apache-2.0 license
2322
boto3 under the Apache-2.0 license
@@ -64,5 +63,7 @@ OPEN SOURCE LICENSES
6463

6564
0BSD - https://opensource.org/licenses/0BSD
6665
Apache-2.0 - https://opensource.org/licenses/Apache-2.0
66+
BSD-3-Clause - https://spdx.org/licenses/BSD-3-Clause.html
67+
EPL-2.0 - https://spdx.org/licenses/EPL-2.0.html
6768
MIT - https://opensource.org/licenses/MIT
68-
MIT-0 - https://opensource.org/licenses/MIT-0
69+
MIT-0 - https://opensource.org/licenses/MIT-0

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
# Maintaining Personalized Experiences with Machine Learning
22

3-
⚠️🚨⚠️ **Important: [The Maintaining Personalized Experiences with Machine Learning](https://aws.amazon.com/solutions/implementations/maintaining-personalized-experiences-with-ml/) solution will retire in October 2025. Deployments (via CloudFormation or GitHub) will remain operational, but customers will assume responsibility for maintenance and API-related updates after support ends. Customers can explore using [Amazon Personalize](https://aws.amazon.com/personalize/) to deliver hyper-personalized user experiences in real-time at scale to improve user engagement, customer loyalty, and business results.** ⚠️🚨⚠️
3+
⚠️🚨⚠️ __Important: [The Maintaining Personalized Experiences with Machine Learning](https://aws.amazon.com/solutions/implementations/maintaining-personalized-experiences-with-ml/) solution will retire in October 2025. Deployments (via CloudFormation or GitHub) will remain operational, but customers will assume responsibility for maintenance and API-related updates after support ends. Customers can explore using [Amazon Personalize](https://aws.amazon.com/personalize/) to deliver hyper-personalized user experiences in real-time at scale to improve user engagement, customer loyalty, and business results.__ ⚠️🚨⚠️
44

55
The Maintaining Personalized Experiences with Machine Learning solution provides a mechanism to automate much of the
66
workflow around Amazon Personalize. This includes dataset group creation, dataset creation and import, solution

deployment/run-unit-tests.sh

Lines changed: 1 addition & 11 deletions
Original file line numberDiff line numberDiff line change
@@ -1,16 +1,6 @@
11
#!/bin/bash
2-
#
32
# Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved.
4-
#
5-
# Licensed under the Apache License, Version 2.0 (the "License"). You may not use this file except in compliance
6-
# with the License. You may obtain a copy of the License at
7-
#
8-
# http://www.apache.org/licenses/LICENSE-2.0
9-
#
10-
# Unless required by applicable law or agreed to in writing, software distributed under the License is distributed
11-
# on an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the License for
12-
# the specific language governing permissions and limitations under the License.
13-
#
3+
# SPDX-License-Identifier: Apache-2.0
144

155
#
166
# This assumes all of the OS-level configuration has been completed and git repo has already been cloned

source/aws_lambda/__init__.py

Lines changed: 2 additions & 12 deletions
Original file line numberDiff line numberDiff line change
@@ -1,12 +1,2 @@
1-
# ######################################################################################################################
2-
# Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved. #
3-
# #
4-
# Licensed under the Apache License, Version 2.0 (the "License"). You may not use this file except in compliance #
5-
# with the License. You may obtain a copy of the License at #
6-
# #
7-
# http://www.apache.org/licenses/LICENSE-2.0 #
8-
# #
9-
# Unless required by applicable law or agreed to in writing, software distributed under the License is distributed #
10-
# on an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the License for #
11-
# the specific language governing permissions and limitations under the License. #
12-
# ######################################################################################################################
1+
# Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved.
2+
# SPDX-License-Identifier: Apache-2.0
Lines changed: 2 additions & 12 deletions
Original file line numberDiff line numberDiff line change
@@ -1,12 +1,2 @@
1-
# ######################################################################################################################
2-
# Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved. #
3-
# #
4-
# Licensed under the Apache License, Version 2.0 (the "License"). You may not use this file except in compliance #
5-
# with the License. You may obtain a copy of the License at #
6-
# #
7-
# http://www.apache.org/licenses/LICENSE-2.0 #
8-
# #
9-
# Unless required by applicable law or agreed to in writing, software distributed under the License is distributed #
10-
# on an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the License for #
11-
# the specific language governing permissions and limitations under the License. #
12-
# ######################################################################################################################
1+
# Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved.
2+
# SPDX-License-Identifier: Apache-2.0

source/aws_lambda/create_batch_inference_job/handler.py

Lines changed: 2 additions & 12 deletions
Original file line numberDiff line numberDiff line change
@@ -1,15 +1,5 @@
1-
# ######################################################################################################################
2-
# Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved. #
3-
# #
4-
# Licensed under the Apache License, Version 2.0 (the "License"). You may not use this file except in compliance #
5-
# with the License. You may obtain a copy of the License at #
6-
# #
7-
# http://www.apache.org/licenses/LICENSE-2.0 #
8-
# #
9-
# Unless required by applicable law or agreed to in writing, software distributed under the License is distributed #
10-
# on an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the License for #
11-
# the specific language governing permissions and limitations under the License. #
12-
# ######################################################################################################################
1+
# Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved.
2+
# SPDX-License-Identifier: Apache-2.0
133

144
from typing import Dict, Any
155

Lines changed: 2 additions & 12 deletions
Original file line numberDiff line numberDiff line change
@@ -1,12 +1,2 @@
1-
# ######################################################################################################################
2-
# Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved. #
3-
# #
4-
# Licensed under the Apache License, Version 2.0 (the "License"). You may not use this file except in compliance #
5-
# with the License. You may obtain a copy of the License at #
6-
# #
7-
# http://www.apache.org/licenses/LICENSE-2.0 #
8-
# #
9-
# Unless required by applicable law or agreed to in writing, software distributed under the License is distributed #
10-
# on an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the License for #
11-
# the specific language governing permissions and limitations under the License. #
12-
# ######################################################################################################################
1+
# Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved.
2+
# SPDX-License-Identifier: Apache-2.0

source/aws_lambda/create_batch_segment_job/handler.py

Lines changed: 2 additions & 12 deletions
Original file line numberDiff line numberDiff line change
@@ -1,15 +1,5 @@
1-
# ######################################################################################################################
2-
# Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved. #
3-
# #
4-
# Licensed under the Apache License, Version 2.0 (the "License"). You may not use this file except in compliance #
5-
# with the License. You may obtain a copy of the License at #
6-
# #
7-
# http://www.apache.org/licenses/LICENSE-2.0 #
8-
# #
9-
# Unless required by applicable law or agreed to in writing, software distributed under the License is distributed #
10-
# on an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the License for #
11-
# the specific language governing permissions and limitations under the License. #
12-
# ######################################################################################################################
1+
# Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved.
2+
# SPDX-License-Identifier: Apache-2.0
133

144
from typing import Dict, Any
155

0 commit comments

Comments
 (0)