Skip to content

Commit

Permalink
mark 0.12.1
Browse files Browse the repository at this point in the history
  • Loading branch information
maxcountryman committed Mar 31, 2024
1 parent a8ded49 commit 2a542d8
Show file tree
Hide file tree
Showing 3 changed files with 14 additions and 6 deletions.
8 changes: 8 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,13 @@
# Unreleased

# 0.12.1

**Important Security Update**

- Ensure ID cycling invokes `create`. #188

Because cycling the session ID involves creating a new ID, this must follow the same semantics as normal session creation. Therefore prior to this fix session ID collision could occur through this vector.

# 0.12.0

**Important Security Update**
Expand Down
8 changes: 4 additions & 4 deletions Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ members = [".", "memory-store", "tower-sessions-core"]
resolver = "2"

[workspace.package]
version = "0.12.0"
version = "0.12.1"
edition = "2021"
authors = ["Max Countryman <hello@maxcountryman.com>"]
license = "MIT"
Expand Down Expand Up @@ -40,10 +40,10 @@ signed = ["tower-cookies/signed"]
private = ["tower-cookies/private"]

[workspace.dependencies]
tower-sessions = { version = "=0.12.0", path = ".", default-features = false }
tower-sessions = { version = "=0.12.1", path = ".", default-features = false }

tower-sessions-core = { version = "=0.12.0", path = "tower-sessions-core", default-features = false }
tower-sessions-memory-store = { version = "=0.12.0", path = "memory-store" }
tower-sessions-core = { version = "=0.12.1", path = "tower-sessions-core", default-features = false }
tower-sessions-memory-store = { version = "=0.12.1", path = "memory-store" }

async-trait = "0.1.74"
parking_lot = { version = "0.12.1", features = ["serde"] }
Expand Down
4 changes: 2 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -57,7 +57,7 @@ That said, a number of session store implmentations already exist and may be
useful starting points.

| Crate | Persistent | Description |
|------------------------------------------------------------------------------------------------------------------|------------|-------------------------------------------------------------|
| ---------------------------------------------------------------------------------------------------------------- | ---------- | ----------------------------------------------------------- |
| [`tower-sessions-dynamodb-store`](https://github.com/necrobious/tower-sessions-dynamodb-store) | Yes | DynamoDB session store |
| [`tower-sessions-firestore-store`](https://github.com/AtTheTavern/tower-sessions-firestore-store) | Yes | Firestore session store |
| [`tower-sessions-libsql-store`](https://github.com/daybowbow-dev/tower-sessions-libsql-store) | Yes | libSQL session store |
Expand All @@ -82,7 +82,7 @@ To use the crate in your project, add the following to your `Cargo.toml` file:

```toml
[dependencies]
tower-sessions = "0.12.0"
tower-sessions = "0.12.1"
```

## 🤸 Usage
Expand Down

0 comments on commit 2a542d8

Please sign in to comment.