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

Commit ef963e4

Browse files
committed
Upgrade to version v1.4.6
1 parent 5f17038 commit ef963e4

File tree

10 files changed

+46
-8
lines changed

10 files changed

+46
-8
lines changed

.gitignore

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -65,3 +65,6 @@ source/cdk_solution_helper_py/helpers_cdk/build/*
6565
source/cdk_solution_helper_py/helpers_common/build/*
6666
source/scheduler/common/build/*
6767
source/scheduler/cdk/build/*
68+
69+
# nightswatch test results
70+
.nightswatch/functional/test-results.xml

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.4.6] - 2024-06-26
9+
10+
### Fixed
11+
12+
- Tests failure due to relative import issues
13+
14+
### Changed
15+
16+
- Upgraded requests to 2.32.4
17+
- Upgraded urllib3 to 2.5.0
18+
819
## [1.4.5] - 2024-10-21
920

1021
### Changed
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,3 @@
1-
requests==2.32.0
2-
urllib3==1.26.19
1+
requests==2.32.4
2+
urllib3==2.5.0
33
crhelper==2.0.11

source/cdk_solution_helper_py/helpers_cdk/setup.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -53,7 +53,7 @@ def get_version():
5353
"aws_cdk_lib==2.88.0",
5454
"Click==8.1.3",
5555
"boto3==1.26.47",
56-
"requests==2.32.0",
56+
"requests==2.32.4",
5757
"crhelper==2.0.11",
5858
],
5959
entry_points="""

source/cdk_solution_helper_py/requirements-dev.txt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@ aws_cdk_lib==2.88.0
22
aws-cdk.aws-servicecatalogappregistry-alpha==2.88.0a0
33
black
44
boto3==1.26.47
5-
requests==2.32.0
5+
requests==2.32.4
66
crhelper==2.0.11
77
Click==8.1.3
88
moto==2.3.0

source/requirements-dev.txt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ aws_cdk_lib==2.88.0
55
aws_solutions_constructs.aws_lambda_sns==2.41.0
66
aws-cdk.aws-servicecatalogappregistry-alpha==2.88.0a0
77
cdk-nag==2.27.107
8-
requests==2.32.0
8+
requests==2.32.4
99
crhelper==2.0.11
1010
cronex==0.1.3.1
1111
moto==2.3.0

source/scheduler/cdk/__init__.py

Lines changed: 12 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,12 @@
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+
# ######################################################################################################################
Lines changed: 12 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,12 @@
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+
# ######################################################################################################################

source/scheduler/common/setup.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -49,7 +49,7 @@ def get_version():
4949
"click==8.1.3",
5050
"cronex==0.1.3.1",
5151
"boto3==1.26.47",
52-
"requests==2.32.0",
52+
"requests==2.32.4",
5353
"crhelper==2.0.11",
5454
"rich==12.6.0",
5555
],

source/tests/test_deploy.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -20,8 +20,8 @@
2020
@pytest.fixture
2121
def build_stacks_for_buckets():
2222
"""Ensure parameter ordering is kept"""
23-
from deploy import build_app
24-
from deploy import solution as cdk_solution
23+
from infrastructure.deploy import build_app
24+
from infrastructure.deploy import solution as cdk_solution
2525

2626
cdk_solution.reset()
2727

0 commit comments

Comments
 (0)