diff --git a/CHANGELOG.md b/CHANGELOG.md index 63b1b93be..510b692fa 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -2,6 +2,23 @@ ## [Unreleased](https://github.com/rpush/rpush/tree/HEAD) +[Full Changelog](https://github.com/rpush/rpush/compare/v7.0.0...HEAD) + +## [v7.0.0](https://github.com/rpush/rpush/tree/HEAD) + +[Full Changelog](https://github.com/rpush/rpush/compare/v6.0.1...v7.0.0) + +**Merged pull requests:** + +- Test with Ruby 3.1 [\#632](https://github.com/rpush/rpush/pull/632) ([aried3r](https://github.com/aried3r)) +- Resolves Rails 7 Time.now.to\_s deprecation warning [\#630](https://github.com/rpush/rpush/pull/630) ([gregblake](https://github.com/gregblake)) +- Adds Rails 7 Support [\#629](https://github.com/rpush/rpush/pull/629) ([gregblake](https://github.com/gregblake)) +- Test with Rails 7.0.0.alpha2 [\#626](https://github.com/rpush/rpush/pull/626) ([aried3r](https://github.com/aried3r)) + +**Breaking:** + +- Drop support for Ruby 2.3 [\#631](https://github.com/rpush/rpush/pull/631) ([aried3r](https://github.com/aried3r)) + ## [v6.0.1](https://github.com/rpush/rpush/tree/v6.0.1) (2021-10-08) [Full Changelog](https://github.com/rpush/rpush/compare/v6.0.0...v6.0.1) diff --git a/Gemfile.lock b/Gemfile.lock index ab8db6842..3f8f0e0cc 100644 --- a/Gemfile.lock +++ b/Gemfile.lock @@ -1,7 +1,7 @@ PATH remote: . specs: - rpush (6.0.1) + rpush (7.0.0) activesupport (>= 5.2) jwt (>= 1.5.6) multi_json (~> 1.0) @@ -45,7 +45,7 @@ GEM byebug (11.0.1) codeclimate-test-reporter (1.0.7) simplecov - concurrent-ruby (1.1.8) + concurrent-ruby (1.1.9) connection_pool (2.2.5) crass (1.0.6) database_cleaner (1.7.0) @@ -54,16 +54,17 @@ GEM erubi (1.10.0) hkdf (0.3.0) http-2 (0.11.0) - i18n (1.8.10) + i18n (1.8.11) concurrent-ruby (~> 1.0) jaro_winkler (1.5.4) json (2.3.1) - jwt (2.2.3) - loofah (2.9.1) + jwt (2.3.0) + loofah (2.13.0) crass (~> 1.0.2) nokogiri (>= 1.5.9) method_source (1.0.0) - minitest (5.14.4) + mini_portile2 (2.7.1) + minitest (5.15.0) modis (4.0.0) activemodel (>= 5.2) activesupport (>= 5.2) @@ -77,20 +78,21 @@ GEM connection_pool (~> 2.2) net-http2 (0.18.4) http-2 (~> 0.11) - nokogiri (1.11.3-x86_64-darwin) + nokogiri (1.13.1) + mini_portile2 (~> 2.7.0) racc (~> 1.4) parallel (1.19.1) parser (2.7.0.2) ast (~> 2.4.0) pg (1.2.3) - racc (1.5.2) + racc (1.6.0) rack (2.2.3) rack-test (1.1.0) rack (>= 1.0, < 3) rails-dom-testing (2.0.3) activesupport (>= 4.2.0) nokogiri (>= 1.6) - rails-html-sanitizer (1.3.0) + rails-html-sanitizer (1.4.2) loofah (~> 2.3) railties (6.1.3.2) actionpack (= 6.1.3.2) @@ -98,8 +100,8 @@ GEM method_source rake (>= 0.8.7) thor (~> 1.0) - rainbow (3.0.0) - rake (13.0.3) + rainbow (3.1.1) + rake (13.0.6) redis (4.2.5) rexml (3.2.5) rpush-redis (1.2.0) @@ -135,7 +137,7 @@ GEM simplecov-html (0.10.2) sqlite3 (1.4.0) stackprof (0.2.12) - thor (1.1.0) + thor (1.2.1) timecop (0.9.1) tzinfo (2.0.4) concurrent-ruby (~> 1.0) @@ -143,7 +145,7 @@ GEM webpush (1.1.0) hkdf (~> 0.2) jwt (~> 2.0) - zeitwerk (2.4.2) + zeitwerk (2.5.3) PLATFORMS ruby @@ -168,4 +170,4 @@ DEPENDENCIES timecop BUNDLED WITH - 2.2.17 + 2.2.32 diff --git a/lib/rpush/version.rb b/lib/rpush/version.rb index a0463cbfc..7974630f3 100644 --- a/lib/rpush/version.rb +++ b/lib/rpush/version.rb @@ -1,8 +1,8 @@ module Rpush module VERSION - MAJOR = 6 + MAJOR = 7 MINOR = 0 - TINY = 1 + TINY = 0 PRE = nil STRING = [MAJOR, MINOR, TINY, PRE].compact.join(".").freeze