-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
* removes returns from get_client and create * removes returns from list_files * removes returns from list_buckets * removes returns from delete, delete_file, get(bucket) and upload_file * removes rest of returns dependencies * change from deprecated download_as_string -> download_as_bytes * Fix tests * bump dependencies * add 3.9 and 3.10 to python versions * removes unused class variable * Bumps storage-bucket version and also creates changelog.md
- Loading branch information
1 parent
076356c
commit df25971
Showing
21 changed files
with
1,023 additions
and
1,097 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
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,23 @@ | ||
# Changelog | ||
|
||
| Change | Bumps | | ||
| - | - | | ||
| Breaking | major | | ||
| New Feature | minor | | ||
| otherwise | patch | | ||
|
||
## Latest Changes | ||
|
||
## 2.0.0 - Return to life before `returns` | ||
|
||
This change has been on my mind a while. Using Returns library and especially wanting to use its latest releases creates a dependency hell since every release is breaking. We don't really need it so until its mature enough, lets stop using it. | ||
|
||
### Breaking changes | ||
|
||
* Remove `returns` dependency | ||
* One can no longer use `.map`, `.bind`, `.failure` etc after calling the Callable objects like `DeleteFile()().bind(...)`. | ||
* Instead use the normal snake_case functions like: `delete_file()` | ||
|
||
### Fixes | ||
|
||
* Test workflows in github are now working again after some key changes. |
Oops, something went wrong.