-
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.
Release v4.0.0: Bump python version to 3.12, new features and big fix…
…es (#49) ## v4.0.0 - 2024-10-22 ### What's Changed **Full Changelog**: v3.0.2...v4.0.0 by @obervinov in #46 #### 💥 Breaking Changes * bump python version to `3.12` * some arguments of the `Users` class and the `Storage` class have been replaced. Detailed information can be found in the DEPRECATEDv3.md file #### 🚀 Features * bump all dependencies to the latest versions * bump workflows version to `2.0.0` * #44 * #47 #### 🐛 Bug Fixes * #48 * #40
- Loading branch information
Showing
13 changed files
with
359 additions
and
675 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 |
---|---|---|
|
@@ -10,17 +10,8 @@ on: # yamllint disable-line rule:truthy | |
- '!main' | ||
|
||
jobs: | ||
changelog: | ||
uses: obervinov/_templates/.github/workflows/[email protected] | ||
|
||
pylint: | ||
uses: obervinov/_templates/.github/workflows/[email protected] | ||
|
||
pytest: | ||
uses: obervinov/_templates/.github/workflows/[email protected] | ||
pr: | ||
uses: obervinov/_templates/.github/workflows/[email protected] | ||
|
||
pyproject: | ||
uses: obervinov/_templates/.github/workflows/[email protected] | ||
|
||
pr: | ||
uses: obervinov/_templates/.github/workflows/[email protected] | ||
uses: obervinov/_templates/.github/workflows/[email protected] |
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 |
---|---|---|
|
@@ -9,22 +9,5 @@ on: # yamllint disable-line rule:truthy | |
- closed | ||
|
||
jobs: | ||
changelog: | ||
uses: obervinov/_templates/.github/workflows/[email protected] | ||
|
||
pylint: | ||
uses: obervinov/_templates/.github/workflows/[email protected] | ||
|
||
pytest: | ||
uses: obervinov/_templates/.github/workflows/[email protected] | ||
|
||
pyproject: | ||
uses: obervinov/_templates/.github/workflows/[email protected] | ||
|
||
create-release: | ||
uses: obervinov/_templates/.github/workflows/[email protected] | ||
needs: [changelog, pylint, pytest, pyproject] | ||
|
||
milestone: | ||
uses: obervinov/_templates/.github/workflows/[email protected] | ||
needs: [create-release] | ||
release: | ||
uses: obervinov/_templates/.github/workflows/[email protected] |
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
File renamed without changes.
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,6 @@ | ||
|
||
## Deprecated Arguments | ||
| Method | Reason for Deprecation | Date of Deprecation | Old Argument | New Argument | | ||
| ------------------------------------ | ------------------------------------------------------------------------ | ------------------------------------ | -------------------------------------- | -------------------------------------- | | ||
| `Users()` | The `Users` class now expects new argument instead of `storage` dictionary | 2024-10-18 | `storage: dict` | `storage_connection` is psycopg2 connection object | | ||
| `Storage()` | The `Storage` class now expects new argument instead of `db_role` and `vault_client` | 2024-10-18 | `db_role: str`, `vault_client: VaultClient` | `db_connection` is psycopg2 connection object | |
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.