-
Notifications
You must be signed in to change notification settings - Fork 8
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #18 from yoyowallet/fix_test_cases
Release 1.1.0
- Loading branch information
Showing
36 changed files
with
2,518 additions
and
1,491 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,13 +1,12 @@ | ||
[bumpversion] | ||
current_version = 1.0.3 | ||
current_version = 1.1.0 | ||
commit = False | ||
tag = False | ||
|
||
[bumpversion:file:setup.py] | ||
search = version='{current_version}' | ||
replace = version='{new_version}' | ||
search = version="{current_version}" | ||
replace = version="{new_version}" | ||
|
||
[bumpversion:file:Makefile] | ||
search = django-idempotency-key-{current_version}.tar.gz | ||
replace = django-idempotency-key-{new_version}.tar.gz | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,62 @@ | ||
# Changes Log | ||
|
||
This file lists the changes made to the Django idempotency key package. | ||
|
||
## Tags | ||
Tags may be specified for each release as an indicator for the changes that were made | ||
for the reader can see at a glance. | ||
|
||
**[Security updates]** - Some dependant packages required security updates and required | ||
updating. | ||
|
||
**[Dropped support]** - Support for required package version(s) have been dropped. | ||
|
||
**[Added support]** - Support for required package versions(s) have been added. | ||
|
||
**[Bug fixes]** - Some bugs have been fixed in this release. | ||
|
||
**[New features]** - There are new features in this release. | ||
|
||
**[Breaking changes]** - There are changes that break existing compatibility. | ||
|
||
--- | ||
# 1.1.0 | ||
**[Security updates]** | ||
|
||
**[Dropped support]** | ||
|
||
**[Added support]** | ||
|
||
**[New features]** | ||
|
||
**[Breaking changes]** | ||
|
||
- The following classes have moved to a new namespace and need to be changed in your | ||
settings and code where appropriate. | ||
<pre> | ||
idempotency_key.locks.IdempotencyKeyLock -> <strong>idempotency_key.locks.basic.IdempotencyKeyLock</strong> | ||
|
||
idempotency_key.locks.ThreadLock -> <strong>idempotency_key.locks.basic.ThreadLock</strong> | ||
|
||
idempotency_key.locks.MultiProcessRedisLock -> <strong>idempotency_key.locks.redis.MultiProcessRedisLock</strong> | ||
</pre> | ||
|
||
- Drop support for Django (1.9, 1.10, 1.11) | ||
- 1.11 was dropped because of security issues and is near to end of life support. | ||
|
||
- Added support for Django (2.2) | ||
|
||
- Added testing with django rest framework (3.10, 3.11) | ||
|
||
- Added optional flag so that clients can choose to use idempotency keys on an API that | ||
is used to expect it. | ||
|
||
- Updated packages with security issues: | ||
Django (>=2.x) | ||
bleach (>=3.1.4) | ||
urllib3 (>=1.24.2) | ||
|
||
--- | ||
# 1.0.3 | ||
|
||
- Initial release (as an Alpha) |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.