forked from pool/python-aws-sam-translator
Accepting request 1031518 from home:dgarcia:branches:devel:languages:python:aws
- Update to 1.53.0 * Verify profile variables have been replaced (#264) * Fix integ tests for feature toggle related to custom domain (#266) * feat: Event filtering for MQ, MSK, SMK (#134) (#265) * Fixed indentation in custom_domains_edge yaml file (#273) * Always copy profile (#274) * Increase api_with_authorizer retry delay (#275) * Add retry-once to connector tests (#276) * Use node14 runtime in connector integ tests (#278) * add a step to clean up unused network interfaces in the precreated subnets * Do not retry on SkipTest (#280) - Update to 1.52.0 * fix: Update Slack Invite link by @jfuss in #2490 * feat: adding support for SSM Parameters (string) as Type by @LautaroJayat in #2469 * chore: Updated maintainers by @lucashuy in #2494 * Release 1.51.0 (to develop) by @aws-sam-cli-bot in #2500 * docs: update README by @hoffa in #2501 * feat: Add State Property to EventBridgeRule EventSource in Function by @nallenscott in #2497 * feat: Added UserAttributeUpdateSettings to Cognito by @lucashuy in #2503 * chore: Use pre-created SAR app during integration tests by @mndeveci in #2507 * chore: Add test name to request logging and remove default region from pytest.ini by @qingchm in #2513 * chore: Only do request logging when internal flag is provided by @qingchm in #2514 OBS-URL: https://build.opensuse.org/request/show/1031518 OBS-URL: https://build.opensuse.org/package/show/devel:languages:python:aws/python-aws-sam-translator?expand=0&rev=34
This commit is contained in:
parent
5985fcd1d7
commit
2011303b27
@ -1,3 +1,34 @@
|
||||
-------------------------------------------------------------------
|
||||
Thu Oct 27 09:58:47 UTC 2022 - Daniel Garcia <daniel.garcia@suse.com>
|
||||
|
||||
- Update to 1.53.0
|
||||
* Verify profile variables have been replaced (#264)
|
||||
* Fix integ tests for feature toggle related to custom domain (#266)
|
||||
* feat: Event filtering for MQ, MSK, SMK (#134) (#265)
|
||||
* Fixed indentation in custom_domains_edge yaml file (#273)
|
||||
* Always copy profile (#274)
|
||||
* Increase api_with_authorizer retry delay (#275)
|
||||
* Add retry-once to connector tests (#276)
|
||||
* Use node14 runtime in connector integ tests (#278)
|
||||
* add a step to clean up unused network interfaces in the precreated subnets
|
||||
* Do not retry on SkipTest (#280)
|
||||
- Update to 1.52.0
|
||||
* fix: Update Slack Invite link by @jfuss in #2490
|
||||
* feat: adding support for SSM Parameters (string) as Type by @LautaroJayat
|
||||
in #2469
|
||||
* chore: Updated maintainers by @lucashuy in #2494
|
||||
* Release 1.51.0 (to develop) by @aws-sam-cli-bot in #2500
|
||||
* docs: update README by @hoffa in #2501
|
||||
* feat: Add State Property to EventBridgeRule EventSource in Function by
|
||||
@nallenscott in #2497
|
||||
* feat: Added UserAttributeUpdateSettings to Cognito by @lucashuy in #2503
|
||||
* chore: Use pre-created SAR app during integration tests by @mndeveci in
|
||||
#2507
|
||||
* chore: Add test name to request logging and remove default region from
|
||||
pytest.ini by @qingchm in #2513
|
||||
* chore: Only do request logging when internal flag is provided by @qingchm
|
||||
in #2514
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Tue Sep 20 13:22:01 UTC 2022 - John Paul Adrian Glaubitz <adrian.glaubitz@suse.com>
|
||||
|
||||
|
@ -28,7 +28,7 @@
|
||||
%define skip_python2 1
|
||||
%endif
|
||||
Name: python-aws-sam-translator
|
||||
Version: 1.51.0
|
||||
Version: 1.53.0
|
||||
Release: 0
|
||||
Summary: AWS SAM template to AWS CloudFormation template translator
|
||||
License: Apache-2.0
|
||||
@ -38,11 +38,8 @@ Patch0: skip-tests-require-network.patch
|
||||
BuildRequires: %{python_module setuptools}
|
||||
BuildRequires: fdupes
|
||||
BuildRequires: python-rpm-macros
|
||||
Requires: python-PyYAML >= 4.2
|
||||
Requires: python-boto3 >= 1.5
|
||||
Requires: python-docopt >= 0.6.2
|
||||
Requires: python-jsonschema >= 3.0
|
||||
Requires: python-six >= 1.11
|
||||
Requires: python-boto3 >= 1.19.5
|
||||
Requires: python-jsonschema >= 3.2
|
||||
Requires(post): update-alternatives
|
||||
Requires(postun):update-alternatives
|
||||
BuildArch: noarch
|
||||
@ -50,23 +47,15 @@ BuildArch: noarch
|
||||
BuildRequires: python
|
||||
%endif
|
||||
# SECTION test requirements
|
||||
BuildRequires: %{python_module PyYAML >= 5.1}
|
||||
BuildRequires: %{python_module boto3 >= 1.5}
|
||||
BuildRequires: %{python_module coverage >= 4.4.0}
|
||||
BuildRequires: %{python_module PyYAML >= 5.4}
|
||||
BuildRequires: %{python_module boto3 >= 1.19.5}
|
||||
BuildRequires: %{python_module coverage >= 5.3}
|
||||
BuildRequires: %{python_module docopt >= 0.6.2}
|
||||
BuildRequires: %{python_module jsonschema >= 3.0}
|
||||
BuildRequires: %{python_module parameterized >= 0.6.1}
|
||||
BuildRequires: %{python_module jsonschema >= 3.2}
|
||||
BuildRequires: %{python_module parameterized >= 0.7.4}
|
||||
BuildRequires: %{python_module pytest >= 3.0.7}
|
||||
BuildRequires: %{python_module pytest-cov >= 2.4.0}
|
||||
BuildRequires: %{python_module requests >= 2.20.0}
|
||||
BuildRequires: %{python_module six >= 1.11}
|
||||
%if %{with python2}
|
||||
BuildRequires: python-enum34 >= 1.1
|
||||
%endif
|
||||
# /SECTION
|
||||
%ifpython2
|
||||
Requires: python-enum34 >= 1.1
|
||||
%endif
|
||||
BuildRequires: %{python_module pytest-cov >= 2.10.1}
|
||||
BuildRequires: %{python_module requests >= 2.24.0}
|
||||
%python_subpackages
|
||||
|
||||
%description
|
||||
@ -74,8 +63,7 @@ AWS SAM Translator is a library that transform SAM
|
||||
templates into AWS CloudFormation templates
|
||||
|
||||
%prep
|
||||
%setup -q -n serverless-application-model-%{version}
|
||||
%patch0 -p1
|
||||
%autosetup -p1 -n serverless-application-model-%{version}
|
||||
sed -i -e 's:~=:>=:g' requirements/base.txt
|
||||
|
||||
%build
|
||||
@ -109,6 +97,7 @@ export LANG=en_US.UTF8
|
||||
%doc README.md
|
||||
%license LICENSE
|
||||
%python_alternative %{_bindir}/sam-translate
|
||||
%{python_sitelib}/*
|
||||
%{python_sitelib}/samtranslator
|
||||
%{python_sitelib}/aws_sam_translator-%{version}*-info
|
||||
|
||||
%changelog
|
||||
|
@ -1,3 +0,0 @@
|
||||
version https://git-lfs.github.com/spec/v1
|
||||
oid sha256:34f668dfea6aae4856fb3f845ca6093667226f20811fecefc29d316346f2dbec
|
||||
size 1107033
|
3
serverless-application-model-1.53.0.tar.gz
Normal file
3
serverless-application-model-1.53.0.tar.gz
Normal file
@ -0,0 +1,3 @@
|
||||
version https://git-lfs.github.com/spec/v1
|
||||
oid sha256:79b2117a14207c440ac1a8a5c48072038ea417dc0afe2e93e2c5ebbce8973d12
|
||||
size 1158682
|
Loading…
Reference in New Issue
Block a user