Skip to content

Commit 844feba

Browse files
authored
Merge pull request #451 from unity-sds/develop
release/8.1.1
2 parents c4f169a + fd87b63 commit 844feba

File tree

141 files changed

+378
-11644
lines changed

Some content is hidden

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

141 files changed

+378
-11644
lines changed

.github/workflows/makefile.yml

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -22,6 +22,8 @@ jobs:
2222
python3 -m pip install -r "${GITHUB_WORKSPACE}/requirements.txt"
2323
- run: |
2424
python3 "${GITHUB_WORKSPACE}/setup.py" install_lib
25+
- run: |
26+
python3 -m pip uninstall botocore boto3 -y
2527
- run: |
2628
# make file runnable, might not be necessary
2729
chmod +x "${GITHUB_WORKSPACE}/ci.cd/create_aws_lambda_zip.sh"

CHANGELOG.md

Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -5,6 +5,14 @@ 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+
## [8.1.1] - 2024-10-16
9+
### Fixed
10+
- [#449](https://github.com/unity-sds/unity-data-services/pull/449) fix: use dlq to avoid sqs bottleneck + ignore both none & empty array in validation
11+
12+
## [8.1.0] - 2024-10-10
13+
### Changed
14+
- [#438](https://github.com/unity-sds/unity-data-services/pull/438) feat: import uds lib for core logic
15+
816
## [8.0.0] - 2024-09-09
917
### Added
1018
- [#415](https://github.com/unity-sds/unity-data-services/pull/415) breaking change : auxiliary files stage out

cumulus_lambda_functions/cumulus_auth_crud/auth_crud.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -3,11 +3,11 @@
33

44
from cumulus_lambda_functions.lib.authorization.uds_authorizer_abstract import UDSAuthorizorAbstract
55
from cumulus_lambda_functions.lib.authorization.uds_authorizer_factory import UDSAuthorizerFactory
6-
from cumulus_lambda_functions.lib.json_validator import JsonValidator
6+
from mdps_ds_lib.lib.utils.json_validator import JsonValidator
77

88
from cumulus_lambda_functions.lib.lambda_logger_generator import LambdaLoggerGenerator
99
from cumulus_lambda_functions.lib.uds_db.db_constants import DBConstants
10-
from cumulus_lambda_functions.lib.utils.lambda_api_gateway_utils import LambdaApiGatewayUtils
10+
from mdps_ds_lib.lib.utils.lambda_api_gateway_utils import LambdaApiGatewayUtils
1111

1212
LOGGER = LambdaLoggerGenerator.get_logger(__name__, LambdaLoggerGenerator.get_level_from_env())
1313

cumulus_lambda_functions/cumulus_es_setup/es_setup.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -2,9 +2,9 @@
22

33
from cumulus_lambda_functions.lib.lambda_logger_generator import LambdaLoggerGenerator
44

5-
from cumulus_lambda_functions.lib.aws.es_abstract import ESAbstract
5+
from mdps_ds_lib.lib.aws.es_abstract import ESAbstract
66

7-
from cumulus_lambda_functions.lib.aws.es_factory import ESFactory
7+
from mdps_ds_lib.lib.aws.es_factory import ESFactory
88

99
from cumulus_lambda_functions.lib.uds_db.db_constants import DBConstants
1010
from cumulus_lambda_functions.cumulus_es_setup import es_mappings

cumulus_lambda_functions/cumulus_stac/__init__.py

Whitespace-only changes.

0 commit comments

Comments
 (0)