Skip to content

Commit

Permalink
Merge pull request #493 from epam/develop
Browse files Browse the repository at this point in the history
1.16.2
  • Loading branch information
bohdan-onsha authored Jan 24, 2025
2 parents 7ecc0f2 + fd534ed commit d204576
Show file tree
Hide file tree
Showing 3 changed files with 8 additions and 5 deletions.
3 changes: 3 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,9 @@ 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).

# [1.16.2] - 2025-01-24
- Fixed an issue related to modification operations event synchronization

# [1.16.1] - 2025-01-21
- Added sync project state to the project state initialization
- Fixed an issue related to `build_project_mapping` resolving for `appsync`, `swagger_ui`, and `lambda` functions with runtime .NET resources
Expand Down
2 changes: 1 addition & 1 deletion setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -27,7 +27,7 @@

setup(
name='aws-syndicate',
version='1.16.1',
version='1.16.2',
packages=find_packages(),
include_package_data=True,
install_requires=[
Expand Down
8 changes: 4 additions & 4 deletions syndicate/core/handlers.py
Original file line number Diff line number Diff line change
Expand Up @@ -253,9 +253,9 @@ def transform(bundle_name, dsl, output_dir):

@syndicate.command(name=DEPLOY_ACTION)
@return_code_manager
@sync_lock(lock_type=MODIFICATION_LOCK)
@timeit(action_name=DEPLOY_ACTION)
@failed_status_code_on_exception
@sync_lock(lock_type=MODIFICATION_LOCK)
@click.option('--deploy_name', '-d', callback=resolve_default_value,
help='Name of the deploy. Default value: name of the project')
@click.option('--bundle_name', '-b', callback=resolve_default_value,
Expand Down Expand Up @@ -350,9 +350,9 @@ def deploy(

@syndicate.command(name=UPDATE_ACTION)
@return_code_manager
@sync_lock(lock_type=MODIFICATION_LOCK)
@timeit(action_name=UPDATE_ACTION)
@failed_status_code_on_exception
@sync_lock(lock_type=MODIFICATION_LOCK)
@click.option('--bundle_name', '-b', callback=resolve_default_value,
help='Name of the bundle to deploy. '
'Default value: name of the latest built bundle')
Expand Down Expand Up @@ -440,9 +440,9 @@ def update(

@syndicate.command(name=CLEAN_ACTION)
@return_code_manager
@sync_lock(lock_type=MODIFICATION_LOCK)
@timeit(action_name=CLEAN_ACTION)
@failed_status_code_on_exception
@sync_lock(lock_type=MODIFICATION_LOCK)
@click.option('--deploy_name', '-d', nargs=1, callback=resolve_default_value,
help='Name of the deploy. This parameter allows the framework '
'to decide,which exactly output file should be used. The '
Expand Down Expand Up @@ -577,9 +577,9 @@ def status(events, resources):

@syndicate.command(name=WARMUP_ACTION)
@return_code_manager
@sync_lock(lock_type=WARMUP_LOCK)
@timeit(action_name=WARMUP_ACTION)
@failed_status_code_on_exception
@sync_lock(lock_type=WARMUP_LOCK)
@click.option('--bundle_name', '-b', nargs=1, callback=resolve_default_value,
help='Name of the bundle. If not specified, resolves the latest '
'bundle name')
Expand Down

0 comments on commit d204576

Please sign in to comment.