diff --git a/CHANGELOG.md b/CHANGELOG.md index 69c6a3fdf3..6b11ae48e3 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -2,6 +2,12 @@ See the changelogs for the individual engines for more details for releases 9.0 and up +## 9.2.7 / 2022-02-07 + +This release fixes a security issue: + +* Fix setting the article password from the Admin [#1044](https://github.com/publify/publify/pull/1044) + ## 9.2.6 / 2022-01-07 This release fixes a minor security issue: diff --git a/publify_amazon_sidebar/CHANGELOG.md b/publify_amazon_sidebar/CHANGELOG.md index e2d66c43d4..19a905849f 100644 --- a/publify_amazon_sidebar/CHANGELOG.md +++ b/publify_amazon_sidebar/CHANGELOG.md @@ -1,16 +1,21 @@ # Changelog +## 9.2.7 / 2022-02-07 + +* Depend on `publify_core` 9.2.7 + ## 9.2.6 / 2022-01-07 -* No changes +* Depend on `publify_core` 9.2.6 ## 9.2.5 / 2021-10-11 -* No changes +* Depend on `publify_core` 9.2.5 ## 9.2.4 / 2021-10-02 * Drop support for Ruby 2.4 since it is incompatible with nokogiri 1.12.5 +* Depend on `publify_core` 9.2.4 ## 9.2.3 / 2021-05-22 diff --git a/publify_amazon_sidebar/lib/publify_amazon_sidebar/version.rb b/publify_amazon_sidebar/lib/publify_amazon_sidebar/version.rb index e391e4d671..920f92f0db 100644 --- a/publify_amazon_sidebar/lib/publify_amazon_sidebar/version.rb +++ b/publify_amazon_sidebar/lib/publify_amazon_sidebar/version.rb @@ -1,5 +1,5 @@ # frozen_string_literal: true module PublifyAmazonSidebar - VERSION = "9.2.6" + VERSION = "9.2.7" end diff --git a/publify_amazon_sidebar/publify_amazon_sidebar.gemspec b/publify_amazon_sidebar/publify_amazon_sidebar.gemspec index e55084d456..da280d79aa 100644 --- a/publify_amazon_sidebar/publify_amazon_sidebar.gemspec +++ b/publify_amazon_sidebar/publify_amazon_sidebar.gemspec @@ -20,7 +20,7 @@ Gem::Specification.new do |s| s.files = File.open("Manifest.txt").readlines.map(&:chomp) - s.add_dependency "publify_core", "~> 9.2.6" + s.add_dependency "publify_core", "~> 9.2.7" s.add_development_dependency "rspec-rails", "~> 4.0" s.add_development_dependency "simplecov", "~> 0.18.5" diff --git a/publify_core/CHANGELOG.md b/publify_core/CHANGELOG.md index 72fcc799db..95a9ddecff 100644 --- a/publify_core/CHANGELOG.md +++ b/publify_core/CHANGELOG.md @@ -1,5 +1,9 @@ # Changelog +## 9.2.7 / 2022-02-07 + +* Fix setting the article password from the Admin [#1044](https://github.com/publify/publify/pull/1044) + ## 9.2.6 / 2022-01-07 * Add documentation about use of the media library diff --git a/publify_core/lib/publify_core/version.rb b/publify_core/lib/publify_core/version.rb index aca67b0e26..9cf8a2bf30 100644 --- a/publify_core/lib/publify_core/version.rb +++ b/publify_core/lib/publify_core/version.rb @@ -1,5 +1,5 @@ # frozen_string_literal: true module PublifyCore - VERSION = "9.2.6" + VERSION = "9.2.7" end diff --git a/publify_textfilter_code/CHANGELOG.md b/publify_textfilter_code/CHANGELOG.md index 6d47cff268..3899586fab 100644 --- a/publify_textfilter_code/CHANGELOG.md +++ b/publify_textfilter_code/CHANGELOG.md @@ -1,8 +1,12 @@ # Changelog +## 9.2.7 / 2022-02-07 + +* Depend on `publify_core` 9.2.7 + ## 9.2.6 / 2022-01-07 -* No changes +* Depend on `publify_core` 9.2.6 ## 9.2.5 / 2021-10-11 @@ -11,6 +15,7 @@ ## 9.2.4 / 2021-10-02 * Drop support for Ruby 2.4 since it is incompatible with nokogiri 1.12.5 +* Depend on `publify_core` 9.2.5 ## 9.2.3 / 2021-05-22 diff --git a/publify_textfilter_code/lib/publify_textfilter_code/version.rb b/publify_textfilter_code/lib/publify_textfilter_code/version.rb index 75e1021a2e..9ade079159 100644 --- a/publify_textfilter_code/lib/publify_textfilter_code/version.rb +++ b/publify_textfilter_code/lib/publify_textfilter_code/version.rb @@ -1,5 +1,5 @@ # frozen_string_literal: true module PublifyTextfilterCode - VERSION = "9.2.6" + VERSION = "9.2.7" end diff --git a/publify_textfilter_code/publify_textfilter_code.gemspec b/publify_textfilter_code/publify_textfilter_code.gemspec index f2146a40a1..7dd4ff1537 100644 --- a/publify_textfilter_code/publify_textfilter_code.gemspec +++ b/publify_textfilter_code/publify_textfilter_code.gemspec @@ -22,7 +22,7 @@ Gem::Specification.new do |s| s.add_dependency "coderay", "~> 1.1.0" s.add_dependency "htmlentities", "~> 4.3" - s.add_dependency "publify_core", "~> 9.2.6" + s.add_dependency "publify_core", "~> 9.2.7" s.add_development_dependency "rspec-rails", "~> 4.0" s.add_development_dependency "simplecov", "~> 0.18.5"