Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
7 changes: 7 additions & 0 deletions changelog.md
Original file line number Diff line number Diff line change
Expand Up @@ -9,6 +9,13 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0

## [Unreleased]

### Fixed

- Marked `CBCsrf` as `threadSafe` so WireBox publishes the singleton only after
autowiring it. Concurrent requests hitting a cold singleton cache (right after a
framework reinit, for instance) could otherwise get a half-wired instance and fail
with `variable [CACHESTORAGE] doesn't exist`.

## [3.2.0] - 2025-02-19

### Added
Expand Down
2 changes: 1 addition & 1 deletion models/cbcsrf.cfc
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@
* ---
* Service that encapsulates token security against cross site request forgery (csrf)
*/
component accessors="true" singleton {
component accessors="true" singleton threadSafe {

/* *********************************************************************
** DI
Expand Down
Loading