diff --git a/CHANGELOG b/CHANGELOG index b2d10b9c..f9ddfb2a 100644 --- a/CHANGELOG +++ b/CHANGELOG @@ -1,4 +1,4 @@ -= master += 3.83.0 (2024-08-12) * Add assume_ssl plugin for making request ssl? method always return true (jeremyevans) diff --git a/doc/release_notes/3.83.0.txt b/doc/release_notes/3.83.0.txt new file mode 100644 index 00000000..77dc5775 --- /dev/null +++ b/doc/release_notes/3.83.0.txt @@ -0,0 +1,6 @@ += New Features + +* An assume_ssl plugin has been added. This plugin is designed for + cases where the application is being fronted by an SSL-terminating + reverse proxy that does not set the X-Forwarded-Proto or similar + header to indicate it is forwarding an SSL request. diff --git a/lib/roda/version.rb b/lib/roda/version.rb index 637ad2dd..9a3733bb 100644 --- a/lib/roda/version.rb +++ b/lib/roda/version.rb @@ -4,7 +4,7 @@ class Roda RodaMajorVersion = 3 # The minor version of Roda, updated for new feature releases of Roda. - RodaMinorVersion = 82 + RodaMinorVersion = 83 # The patch version of Roda, updated only for bug fixes from the last # feature release.