Skip to content

Commit

Permalink
configurable session cookie path
Browse files Browse the repository at this point in the history
closes #239
  • Loading branch information
aogier committed Jun 23, 2024
1 parent 6eaf16e commit c2bd546
Show file tree
Hide file tree
Showing 6 changed files with 160 additions and 84 deletions.
1 change: 1 addition & 0 deletions .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -177,3 +177,4 @@ dmypy.json

# End of https://www.gitignore.io/api/python,eclipse
.env
.mise.toml
9 changes: 8 additions & 1 deletion CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -5,6 +5,12 @@ All notable changes to this project will be documented in this file.
The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/),
and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html).

## [0.2.0] - 2024-06-23

### Added

- configurable session cookie path - [#239](https://github.com/aogier/starlette-authlib/issues/239)

## [0.1.40] - 2024-04-14

### Changed
Expand Down Expand Up @@ -287,7 +293,8 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0

- Correctly implemented ES* and RS* algorithms.

[Unreleased]: https://github.com/aogier/starlette-authlib/compare/0.1.40...HEAD
[Unreleased]: https://github.com/aogier/starlette-authlib/compare/0.2.0...HEAD
[0.2.0]: https://github.com/aogier/starlette-authlib/compare/0.1.40...0.2.0
[0.1.40]: https://github.com/aogier/starlette-authlib/compare/0.1.39...0.1.40
[0.1.39]: https://github.com/aogier/starlette-authlib/compare/0.1.38...0.1.39
[0.1.38]: https://github.com/aogier/starlette-authlib/compare/0.1.37...0.1.38
Expand Down
113 changes: 47 additions & 66 deletions poetry.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion pyproject.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[tool.poetry]
name = "starlette-authlib"
version = "0.1.40"
version = "0.2.0"
description = "A drop-in replacement for Starlette session middleware, using authlib's jwt"
authors = ["Alessandro Ogier <alessandro.ogier@gmail.com>"]
readme = "README.md"
Expand Down
Loading

0 comments on commit c2bd546

Please sign in to comment.