Skip to content

release/8.1.1 #451

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Merged
merged 4 commits into from
Oct 16, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 2 additions & 0 deletions .github/workflows/makefile.yml
Original file line number Diff line number Diff line change
Expand Up @@ -22,6 +22,8 @@ jobs:
python3 -m pip install -r "${GITHUB_WORKSPACE}/requirements.txt"
- run: |
python3 "${GITHUB_WORKSPACE}/setup.py" install_lib
- run: |
python3 -m pip uninstall botocore boto3 -y
- run: |
# make file runnable, might not be necessary
chmod +x "${GITHUB_WORKSPACE}/ci.cd/create_aws_lambda_zip.sh"
Expand Down
8 changes: 8 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -5,6 +5,14 @@ All notable changes to this project will be documented in this file.
The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/),
and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html).

## [8.1.1] - 2024-10-16
### Fixed
- [#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

## [8.1.0] - 2024-10-10
### Changed
- [#438](https://github.com/unity-sds/unity-data-services/pull/438) feat: import uds lib for core logic

## [8.0.0] - 2024-09-09
### Added
- [#415](https://github.com/unity-sds/unity-data-services/pull/415) breaking change : auxiliary files stage out
Expand Down
4 changes: 2 additions & 2 deletions cumulus_lambda_functions/cumulus_auth_crud/auth_crud.py
Original file line number Diff line number Diff line change
Expand Up @@ -3,11 +3,11 @@

from cumulus_lambda_functions.lib.authorization.uds_authorizer_abstract import UDSAuthorizorAbstract
from cumulus_lambda_functions.lib.authorization.uds_authorizer_factory import UDSAuthorizerFactory
from cumulus_lambda_functions.lib.json_validator import JsonValidator
from mdps_ds_lib.lib.utils.json_validator import JsonValidator

from cumulus_lambda_functions.lib.lambda_logger_generator import LambdaLoggerGenerator
from cumulus_lambda_functions.lib.uds_db.db_constants import DBConstants
from cumulus_lambda_functions.lib.utils.lambda_api_gateway_utils import LambdaApiGatewayUtils
from mdps_ds_lib.lib.utils.lambda_api_gateway_utils import LambdaApiGatewayUtils

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

Expand Down
4 changes: 2 additions & 2 deletions cumulus_lambda_functions/cumulus_es_setup/es_setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -2,9 +2,9 @@

from cumulus_lambda_functions.lib.lambda_logger_generator import LambdaLoggerGenerator

from cumulus_lambda_functions.lib.aws.es_abstract import ESAbstract
from mdps_ds_lib.lib.aws.es_abstract import ESAbstract

from cumulus_lambda_functions.lib.aws.es_factory import ESFactory
from mdps_ds_lib.lib.aws.es_factory import ESFactory

from cumulus_lambda_functions.lib.uds_db.db_constants import DBConstants
from cumulus_lambda_functions.cumulus_es_setup import es_mappings
Expand Down
Empty file.
Loading
Loading