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
5 changes: 4 additions & 1 deletion CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -7,15 +7,18 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0

## [Unreleased]

## [7.1.1] - 18 June 2026
Comment thread
Copilot marked this conversation as resolved.

Comment thread
chrismaddalena marked this conversation as resolved.
### Fixed

* Fixed project collaborative notes failing to load for users with project access
* Fixed project collaborative notes failing to load for users with project access (Fixes #913)
* The collaborative editor JWT is now scoped to the project so assigned users, project invitees, client invitees, managers, and admins can edit shared project notes

### Security

* Fixed an authorization bypass that allowed authenticated users to download client-scoped report templates by direct URL
* Template downloads now use the same client access check as the template detail page
* Please see security advisory for details: [https://github.com/GhostManager/Ghostwriter/security/advisories/GHSA-hx63-6fvp-4rpv](https://github.com/GhostManager/Ghostwriter/security/advisories/GHSA-hx63-6fvp-4rpv)

## [7.1.0] - 16 June 2026

Expand Down
4 changes: 2 additions & 2 deletions SECURITY.md
Original file line number Diff line number Diff line change
Expand Up @@ -6,8 +6,8 @@ The following versions are supported with security updates. In general, you shou

| Version | Supported |
| ------- | ------------------ |
| 6.2.x | :white_check_mark: |
| < 6.2.x | :x: |
| 7.1.x | :white_check_mark: |
| < 7.1.x | :x: |

Comment thread
chrismaddalena marked this conversation as resolved.
## Reporting a Vulnerability

Expand Down
4 changes: 2 additions & 2 deletions VERSION
Original file line number Diff line number Diff line change
@@ -1,2 +1,2 @@
v7.1.0
16 June 2026
v7.1.1
18 June 2026
4 changes: 2 additions & 2 deletions config/settings/base.py
Original file line number Diff line number Diff line change
Expand Up @@ -11,9 +11,9 @@
# 3rd Party Libraries
import environ

__version__ = "7.1.0"
__version__ = "7.1.1"
VERSION = __version__
RELEASE_DATE = "16 June 2026"
RELEASE_DATE = "18 June 2026"

ROOT_DIR = Path(__file__).resolve(strict=True).parent.parent.parent
APPS_DIR = ROOT_DIR / "ghostwriter"
Expand Down
Loading