Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

[2.3.0] backport changelog to develop and bump version #6375

Merged
merged 4 commits into from
Mar 30, 2022
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
28 changes: 27 additions & 1 deletion changelog.md
Original file line number Diff line number Diff line change
@@ -1,6 +1,32 @@
# Changelog

## 2.3.0~rc1
## 2.4.0~rc1

## 2.3.0

### Web Applications

* Added optional message filtering to allow instances to set a minimum initial message length and block initial messages containing source codenames (#6306, #6340, #6345, #6368)
* Added "skip to notification" link to allow screen-readers to navigate to flashed messages (#6336)
* Updated /generate to improve and simplify instructions on use of the codename (#6330)
* Fixed untranslated string in Read Replies widget (#6321, #6344)
* Updated Source Interface browser security level widget to reflect current Tor Browser UI (#6320)
* Added ARIA annotations for forms in Journalist Interface (#6240)
* Added tor2web detection via URL mangling (#6304)
* Removed unused bulk delete confirmation functionality (#6261)
* Added "skip to main content link" Source Interface base template (#6237)
* Added hidden antispam field to detect some automated submissions (#6302)
* Updated application to redirect to a warning page on detection of a tor2web proxy (#6300, #6335)
* Added Javascript check to detect use of non-torified proxy servers (#6303)
* Added /robots.txt route and meta tags to disallow bots on the Source Interface (#6299)
* Fixed text overflow issue in the "Read Replies" widget (#6301)
* Updated data attributes in the codename widget to be translateable strings (#6288)
* Added support for future user-agent strings with a 3-digit Firefox version (#6309)

### Development

* Updated `make shellcheck` to optionally use podman instead of Docker (#6239)
* Updated `make dev-tor` to set correct v3 address in Source Interface /metadata endpoint (#6308)

## 2.2.1

Expand Down
2 changes: 1 addition & 1 deletion install_files/ansible-base/group_vars/all/securedrop
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
# Variables that apply to both the app and monitor server go in this file
# If the monitor or app server need different values define the variable in
# hosts_vars/app.yml or host_vars/mon.yml
securedrop_version: "2.3.0~rc1"
securedrop_version: "2.4.0~rc1"
securedrop_app_code_sdist_name: "securedrop-app-code-{{ securedrop_version | replace('~', '-') }}.tar.gz"

grsecurity: true
Expand Down
Original file line number Diff line number Diff line change
@@ -1,8 +1,20 @@
securedrop-app-code (2.3.0~rc1+focal) focal; urgency=medium
securedrop-app-code (2.4.0~rc1+focal) focal; urgency=medium

* see changelog.md

-- SecureDrop Team <[email protected]> Wed, 30 Mar 2022 10:18:53 -0400

securedrop-app-code (2.3.0+focal) focal; urgency=medium

* see changelog.md

-- SecureDrop Team <[email protected]> Tue, 29 Mar 2022 19:13:30 -0400

securedrop-app-code (2.2.1+focal) focal; urgency=medium

* See changelog.md

-- SecureDrop Team <[email protected]> Fri, 18 Feb 2022 11:38:54 -0500
-- SecureDrop Team <[email protected]> Thu, 10 Mar 2022 09:34:17 -0800

securedrop-app-code (2.2.0+focal) focal; urgency=medium

Expand Down
2 changes: 1 addition & 1 deletion molecule/builder-focal/tests/vars.yml
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
---
securedrop_version: "2.3.0~rc1"
securedrop_version: "2.4.0~rc1"
ossec_version: "3.6.0"
keyring_version: "0.1.5"
config_version: "0.1.4"
Expand Down
2 changes: 1 addition & 1 deletion molecule/shared/stable.ver
Original file line number Diff line number Diff line change
@@ -1 +1 @@
2.2.0
2.3.0
2 changes: 1 addition & 1 deletion securedrop/version.py
Original file line number Diff line number Diff line change
@@ -1 +1 @@
__version__ = '2.3.0~rc1'
__version__ = '2.4.0~rc1'
2 changes: 1 addition & 1 deletion setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@

setuptools.setup(
name="securedrop-app-code",
version="2.3.0~rc1",
version="2.4.0~rc1",
author="Freedom of the Press Foundation",
author_email="[email protected]",
description="SecureDrop Server",
Expand Down