-
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.
- Loading branch information
Showing
9 changed files
with
189 additions
and
58 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
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 |
---|---|---|
|
@@ -63,6 +63,8 @@ target/ | |
.ipynb_checkpoints | ||
venv/* | ||
env/* | ||
.venv/* | ||
.env/* | ||
|
||
address.txt | ||
private_keys.txt | ||
|
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,75 @@ | ||
|
||
|
||
## 0.8.0 (2024-10-17) | ||
|
||
* Add support for python 3.12 and 3.13 (#10) [Pavel Liashkov] | ||
* Update github pipeline [Pavel Liashkov] | ||
* Update version [Pavel Liashkov] | ||
|
||
|
||
## 0.7.0 (2023-08-03) | ||
|
||
* Update pipeline [Pavel Liashkov] | ||
* Update version [Pavel Liashkov] | ||
|
||
|
||
## 0.6.0 (2021-07-26) | ||
|
||
* Relax starlette version [Pavel Liashkov] | ||
|
||
|
||
## 0.5.0 (2021-07-23) | ||
|
||
* Bump starlette from 0.15.0 to 0.16.0 (#8) [dependabot[bot]] | ||
* Update version.py [Pavel Liashkov] | ||
|
||
|
||
## 0.4.0 (2021-06-24) | ||
|
||
* Bump starlette from 0.14.2 to 0.15.0 (#6) [dependabot[bot]] | ||
* Update version.py [Pavel Liashkov] | ||
|
||
|
||
## 0.3.6 (2021-02-23) | ||
|
||
* Add codecov settings [Pavel Liashkov] | ||
|
||
|
||
## 0.3.5 (2021-02-20) | ||
|
||
* Update Makefile [Pavel Liashkov] | ||
* Bump version [Pavel Liashkov] | ||
|
||
|
||
## 0.3.4 (2021-02-12) | ||
|
||
* Update readme (#5) [Pavel Liashkov] | ||
|
||
|
||
## 0.3.3 (2021-02-06) | ||
|
||
* Update readme (#4) [Pavel Liashkov] | ||
* Fix write mistake [Pavel Liashkov] | ||
|
||
|
||
## 0.3.2 (2021-02-04) | ||
|
||
* Bump starlette from 0.14.1 to 0.14.2 (#3) [dependabot[bot]] | ||
* Bump version [Pavel Liashkov] | ||
|
||
|
||
## 0.3.1 (2021-01-23) | ||
|
||
* Fix package format [Pavel Liashkov] | ||
* Fix package description [Pavel Liashkov] | ||
|
||
|
||
## 0.3.0 (2021-01-17) | ||
|
||
* Update readme (#2) [Pavel Liashkov] | ||
|
||
|
||
## 0.2.0 (2021-01-16) | ||
|
||
* Add logger extra factory [pavel.liashkov] | ||
|
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
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 was deleted.
Oops, something went wrong.
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,8 +1,3 @@ | ||
from . import context | ||
|
||
|
||
class RequestIdCtx(context.ContextStorage): | ||
CONTEXT_KEY_NAME = "request_id" | ||
|
||
from request_id_helper import RequestIdCtx | ||
|
||
request_id_ctx = RequestIdCtx() |