Skip to content

Commit cd45e96

Browse files
committed
Bump solid_queue to 0.8.0
And add instructions about this upgrade.
1 parent 564047d commit cd45e96

File tree

4 files changed

+9
-4
lines changed

4 files changed

+9
-4
lines changed

Gemfile.lock

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
PATH
22
remote: .
33
specs:
4-
solid_queue (0.7.1)
4+
solid_queue (0.8.0)
55
activejob (>= 7.1)
66
activerecord (>= 7.1)
77
concurrent-ruby (>= 1.3.1)

UPGRADING.md

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,6 @@
1+
# Upgrading to version 0.8.x
2+
*IMPORTANT*: This version collapsed all migrations into a single `db/queue_schema.rb`, that will use a separate `queue` database. If you're upgrading from a version < 0.6.0, you need to upgrade to 0.6.0 first, ensure all migrations are up-to-date, and then upgrade further.
3+
14
# Upgrading to version 0.7.x
25

36
This version removed the new async mode introduced in version 0.4.0 and introduced a new binstub that can be used to start Solid Queue's supervisor.

lib/solid_queue/version.rb

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,3 @@
11
module SolidQueue
2-
VERSION = "0.7.1"
2+
VERSION = "0.8.0"
33
end

solid_queue.gemspec

Lines changed: 4 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -11,9 +11,11 @@ Gem::Specification.new do |spec|
1111
spec.license = "MIT"
1212

1313
spec.post_install_message = <<~MESSAGE
14-
Upgrading to Solid Queue 0.4.x, 0.5.x, 0.6.x or 0.7.x? There are some breaking changes about how Solid Queue is started,
15-
configuration and new migrations. Check https://github.com/rails/solid_queue/blob/main/UPGRADING.md
14+
Upgrading to Solid Queue 0.8.0 from < 0.6.0? You need to upgrade to 0.6.0 first. Check https://github.com/rails/solid_queue/blob/main/UPGRADING.md
1615
for upgrade instructions.
16+
17+
Upgrading to Solid Queue 0.4.x, 0.5.x, 0.6.x or 0.7.x? There are some breaking changes about how Solid Queue is started,
18+
configuration and new migrations.
1719
MESSAGE
1820

1921
spec.metadata["homepage_uri"] = spec.homepage

0 commit comments

Comments
 (0)