From 45ddb64186e310a004acaf0f3d2766d00841f7f8 Mon Sep 17 00:00:00 2001 From: James Cole Date: Mon, 15 Jul 2019 16:50:18 +0200 Subject: [PATCH] Fix #2335 --- .sandstorm/changelog.md | 3 +++ .sandstorm/sandstorm-pkgdef.capnp | 4 ++-- .travis.yml | 2 +- changelog.md | 4 ++++ config/firefly.php | 2 +- 5 files changed, 11 insertions(+), 4 deletions(-) diff --git a/.sandstorm/changelog.md b/.sandstorm/changelog.md index bd03a0689c..6ffcc52bc5 100644 --- a/.sandstorm/changelog.md +++ b/.sandstorm/changelog.md @@ -1,3 +1,6 @@ +# 4.7.17.1 (API 0.9.2) +- XSS bug in budget title. + # 4.7.17 (API 0.9.2) - Support for Norwegian! - Clear cache during install routine. diff --git a/.sandstorm/sandstorm-pkgdef.capnp b/.sandstorm/sandstorm-pkgdef.capnp index 6a6dda0bf5..d78701e8aa 100644 --- a/.sandstorm/sandstorm-pkgdef.capnp +++ b/.sandstorm/sandstorm-pkgdef.capnp @@ -15,8 +15,8 @@ const pkgdef :Spk.PackageDefinition = ( manifest = ( appTitle = (defaultText = "Firefly III"), - appVersion = 27, - appMarketingVersion = (defaultText = "4.7.17"), + appVersion = 28, + appMarketingVersion = (defaultText = "4.7.17.1"), actions = [ # Define your "new document" handlers here. diff --git a/.travis.yml b/.travis.yml index 5c1ea0c91c..0a9aa870af 100644 --- a/.travis.yml +++ b/.travis.yml @@ -1,7 +1,7 @@ sudo: required language: bash env: - - VERSION=4.7.17 + - VERSION=4.7.17.1 dist: xenial diff --git a/changelog.md b/changelog.md index df390e83b1..7a0b68b7b6 100644 --- a/changelog.md +++ b/changelog.md @@ -2,6 +2,10 @@ All notable changes to this project will be documented in this file. This project adheres to [Semantic Versioning](http://semver.org/). +## [4.7.17.1 (API 0.9.2)] - 2019-07-15 + +- XSS bug in budget title. + ## [4.7.17 (API 0.9.2)] - 2019-03-17 ### Added diff --git a/config/firefly.php b/config/firefly.php index 2e0ba14d01..bddb70e10c 100644 --- a/config/firefly.php +++ b/config/firefly.php @@ -93,7 +93,7 @@ return [ 'is_demo_site' => false, ], 'encryption' => null === env('USE_ENCRYPTION') || env('USE_ENCRYPTION') === true, - 'version' => '4.7.17', + 'version' => '4.7.17.1', 'api_version' => '0.9.2', 'db_version' => 10, 'maxUploadSize' => 15242880,