Skip to content

Commit

Permalink
Prepare version 9.2.8 for release
Browse files Browse the repository at this point in the history
  • Loading branch information
mvz committed May 14, 2022
1 parent b48604e commit d254b06
Show file tree
Hide file tree
Showing 9 changed files with 42 additions and 5 deletions.
18 changes: 18 additions & 0 deletions CHANGELOG.md
Expand Up @@ -2,6 +2,24 @@

See the changelogs for the individual engines for more details for releases 9.0 and up

## 9.2.8 / 2022-05-14

This release fixes several security issues:

* Disallow comments on draft articles [#1048](https://github.com/publify/publify/pull/1048)
* Disallow images in comments [#1054](https://github.com/publify/publify/pull/1054)
* Hide bodies of password-protected articles in search results [#1057](https://github.com/publify/publify/pull/1057)
* Do not create article meta description for password-protected articles [#1061](https://github.com/publify/publify/pull/1061)

Additionally, it includes the following changes:

* Clean up Feedback validation [#1051](https://github.com/publify/publify/pull/1051)
* Bump mimimum puma and Rails versions [#1050](https://github.com/publify/publify/pull/1050)
* Fix password reset process [#1055](https://github.com/publify/publify/pull/1055)
* Fix password protected article reveal [#1049](https://github.com/publify/publify/pull/1049)
* Provide correct `article_id` input in bulkops form [#1058](https://github.com/publify/publify/pull/1058)
* Bump minimum required Rails version [#1062](https://github.com/publify/publify/pull/1062)

## 9.2.7 / 2022-02-07

This release fixes a security issue:
Expand Down
4 changes: 4 additions & 0 deletions publify_amazon_sidebar/CHANGELOG.md
@@ -1,5 +1,9 @@
# Changelog

## 9.2.8 / 2022-05-14

* Depend on `publify_core` 9.2.7

## 9.2.7 / 2022-02-07

* Depend on `publify_core` 9.2.7
Expand Down
@@ -1,5 +1,5 @@
# frozen_string_literal: true

module PublifyAmazonSidebar
VERSION = "9.2.7"
VERSION = "9.2.8"
end
2 changes: 1 addition & 1 deletion publify_amazon_sidebar/publify_amazon_sidebar.gemspec
Expand Up @@ -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.7"
s.add_dependency "publify_core", "~> 9.2.8"

s.add_development_dependency "rspec-rails", "~> 4.0"
s.add_development_dependency "simplecov", "~> 0.18.5"
Expand Down
11 changes: 11 additions & 0 deletions publify_core/CHANGELOG.md
@@ -1,5 +1,16 @@
# Changelog

## 9.2.8 / 2022-05-14

* Fix password protected article reveal [#1049](https://github.com/publify/publify/pull/1049)
* Disallow comments on draft articles [#1048](https://github.com/publify/publify/pull/1048)
* Clean up Feedback validation [#1051](https://github.com/publify/publify/pull/1051)
* Disallow images in comments [#1054](https://github.com/publify/publify/pull/1054)
* Fix password reset process [#1055](https://github.com/publify/publify/pull/1055)
* Hide bodies of password-protected articles in search results [#1057](https://github.com/publify/publify/pull/1057)
* Provide correct `article_id` input in bulkops form [#1058](https://github.com/publify/publify/pull/1058)
* Do not create article meta description for password-protected articles [#1061](https://github.com/publify/publify/pull/1061)

## 9.2.7 / 2022-02-07

* Fix setting the article password from the Admin [#1044](https://github.com/publify/publify/pull/1044)
Expand Down
2 changes: 1 addition & 1 deletion publify_core/lib/publify_core/version.rb
@@ -1,5 +1,5 @@
# frozen_string_literal: true

module PublifyCore
VERSION = "9.2.7"
VERSION = "9.2.8"
end
4 changes: 4 additions & 0 deletions publify_textfilter_code/CHANGELOG.md
@@ -1,5 +1,9 @@
# Changelog

## 9.2.8 / 2022-05-14

* Depend on `publify_core` 9.2.8

## 9.2.7 / 2022-02-07

* Depend on `publify_core` 9.2.7
Expand Down
@@ -1,5 +1,5 @@
# frozen_string_literal: true

module PublifyTextfilterCode
VERSION = "9.2.7"
VERSION = "9.2.8"
end
2 changes: 1 addition & 1 deletion publify_textfilter_code/publify_textfilter_code.gemspec
Expand Up @@ -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.7"
s.add_dependency "publify_core", "~> 9.2.8"

s.add_development_dependency "rspec-rails", "~> 4.0"
s.add_development_dependency "simplecov", "~> 0.18.5"
Expand Down

0 comments on commit d254b06

Please sign in to comment.