Skip to content

Tags: zappa/Zappa

Tags

0.59.0

Toggle 0.59.0's commit message

Verified

This commit was created on GitHub.com and signed with GitHub’s verified signature.
Prepare for version 0.59.0 release (#1328)

0.58.0

Toggle 0.58.0's commit message

Verified

This commit was created on GitHub.com and signed with GitHub’s verified signature. The key has expired.
Prepare CHANGELOG/VERSION for 0.58.0 release (#1271)

* ✏️ update version 0.57.0 -> 0.58.0
✏️ update CHANGELOG.md with issues addressed in 0.58.0

* 🔧 attempt to fix "AttributeError: 'String' object has no attribute 'update'" pip/pipenv error.

* 🔧 attempt to fix "AttributeError: 'String' object has no attribute 'update'" pip/pipenv error" -> Upgrade pip/pipenv

* 🔧 attempt to fix "AttributeError: 'String' object has no attribute 'update'" pip/pipenv error" -> Upgrade pip in Makefile

* 🔧 attempt to fix "AttributeError: 'String' object has no attribute 'update'" pip/pipenv error" -> Set pipenv<2023.8.19

* 📝 add python 3.11 support issue to CHANGELOG

* 🔥 remove unnecessary update pip/pipenv section

* 🔥 remove `pipenv` from Pipfile (as recommended by pipenv dev team (pypa/pipenv#5927)

---------

Co-authored-by: shane <shane.cousins@kiconiaworks.com>

0.57.0

Toggle 0.57.0's commit message

Verified

This commit was created on GitHub.com and signed with GitHub’s verified signature. The key has expired.
📝 CHANGELOG.md update for 0.57.0 (#1246)

📝 Update version number for release 0.56.1 -> 0.57.0
📝 CHANGELOG update for next release

Co-authored-by: shane <shane.cousins@kiconiaworks.com>

0.56.1

Toggle 0.56.1's commit message

Verified

This commit was created on GitHub.com and signed with GitHub’s verified signature. The key has expired.
Alternative way to check if running in Docker (#1204)

* Update setup.py

* Update __init__.py

* 🐛 fix FileNotFoundError in running_in_docker (#1201)

* Remove version constraints

* Changed the way Docker is determined

* Reference to ticket 1140

* Added documentation for ZAPPA_RUNNING_IN_DOCKER flag

* Fixed indentation

* Removed log file

* Added strtobool and re-added MINIMUM_SUPPORTED_MIINOR_VERSION

* updated version

* Added #1201 to CHANGELOG.md, reformatted code

* Reformatted by black due to line length

* Removed unnecessary comment

Co-authored-by: monkut <shane.cousins@gmail.com>

0.56.0

Toggle 0.56.0's commit message

Verified

This commit was created on GitHub.com and signed with GitHub’s verified signature. The key has expired.
📝 CHANGELOG.md update for 0.56.0 release (#1187)

* 📝 CHANGELOG.md update for 0.55.1 release

* 📝 add merged PR (#1177) related issues to CHANGELOG.

* 📝 add #1117 to list after merge.

* 📝 adding resolved issue to CHANGELOG

* 🔧 0.55.1 -> 0.56.0
📝 add merged issue to changelog.

* 📝 add #1190

* 🔧 `Pipfile` (pipenv) now used in place of requirements.txt, test_requirements.txt, requirements.in test_requirements.in. Replacing in MANIFEST.in.

Related Issue:
#1199

* 🔧 Add resolved issue #1199

0.55.0

Toggle 0.55.0's commit message

Verified

This commit was created on GitHub.com and signed with GitHub’s verified signature. The key has expired.
Review/Cleanup of master for release prep (#1147)

* 🔧 update for case where expected metadata for given package does not contain 'releases'

* :penicl: add warning for case where expected `package_version` is not found.

* 🔧 change pipenv req to version greater than previously reported problem version.

* 🙈 Add `Pipfile.lock` to `.gitignore` (When supporting multiple versions of python with pipenv don't include the lock file.

* 🔧 fix pipenv version restriction.

* 🎨 run black on `core.py`

* 🎨 fix flake8, run black

* 🔧 adjust caching (requirements.txt no longer used.

* 🐛 fix Pipfile typo

* 🔥 The python3.6 runtime is deprecated by aws (July 18, 2022 [phase-1], Aug 17, 2022 [phase-2]) remove from tests for next release candidate

* 🎨 run black
🔧 update black check command.

* 🎨 run isort

* 📝 change version 0.54.1 -> 0.55.1
🔥 remove 3.6 from SUPPORTED_VERSIONS

* 🔥 remove 3.6 support

* 🔀 merge with `0.54.2-release` branch to apply 3.9 support documentation updates.
🔥 remove 3.6 support from README

* 🔀 merge with `0.54.2-release` branch to apply 3.9 support documentation updates.

* ⏪️revert __version__ back to available pypi version

Without a pypi available release the `test_slim_handler` testcase fails.

```
ERROR: No matching distribution found for zappa==0.55.1
E...................
======================================================================
ERROR: test_slim_handler (tests.tests.TestZappa)
----------------------------------------------------------------------
Traceback (most recent call last):
  File "/home/runner/work/Zappa/Zappa/tests/tests.py", line 2211, in test_slim_handler
    zappa_cli.create_package()
  File "/home/runner/work/Zappa/Zappa/zappa/cli.py", line 2430, in create_package
    venv=self.zappa.create_handler_venv(),
  File "/home/runner/work/Zappa/Zappa/zappa/core.py", line 494, in create_handler_venv
    raise EnvironmentError("Pypi lookup failed")
OSError: Pypi lookup failed
-------------------- >> begin captured stdout << ---------------------
```

* 📝 update CHANGELOG with committed changes since last release (5b6e241)

* 🔥 remove 3.6 from docs

* 🔧 address review comments

* ✨ change release to 0.55.1

* ♻️ Update to allow specification of the latest pypi version for `test_slim_handler()`

* ✅ update `test_slim_handler()` so that lastest pypi version is *not* hardcoded (get from "git tags" result)

* 🎨 run black/isort

* 🔧 attempt to update github action to retrieve the latest tags.

* 🔧 fix bad ci command definition

* 📝 created and added issue for python3.6 support removal.

* ✨ add `python_requires` to setup().

* 📝 fix issue #900

* 📝 add link to https://slackautoinviter.herokuapp.com to join slack. (the zappateam.slack may be private?)

* 🔥 remove `future` (past) requirements basestring usage, replacing with isinstance(x, str)
🔧 change usage of utcnow() -> datetime.datetime.now(datetime.timezone.utc)

* 🔥 Remove 'futures' package requirement (#826)

* 📝 fix issue #900

* 🔥 remove unnecessary __future__ import
🔧 Start versioning at 0; 0.55.1 -> 0.55.0

* 🎨 fix flake8

* 🐛 fix cd.yaml to only run on push of tag meeting the release tag criteria. (#1152)

* 📝 add 1152 to CHANGELOG

0.54.2

Toggle 0.54.2's commit message
🔧 upgrade __version__ from 0.54.1 -> 0.54.2

0.54.1

Toggle 0.54.1's commit message

Verified

This commit was created on GitHub.com and signed with GitHub’s verified signature. The key has expired.
Release 'Zappa' v0.54.1 (#1070)

Co-authored-by: Alex DelVecchio <javulticat@users.noreply.github.com>

0.54.0

Toggle 0.54.0's commit message

Verified

This tag was signed with the committer’s verified signature. The key has expired.
wrboyce Will Boyce
v0.54.0

* Pin troposphere version and update to 3.x (#1029)
* Relax stage name restrictions when not using apigateway (#993)
* Wait for lambda to become active during deploy/update (#992)
* add support for Python 3.9 (#1026)

0.53.0

Toggle 0.53.0's commit message

Verified

This commit was created on GitHub.com and signed with GitHub’s verified signature. The key has expired.
Merge pull request #967 from ian-whitestone/add-docker-support

Update/deploy a lambda using a Docker container image