Skip to content

Commit 6fe96aa

Browse files
committed
Add upgrade instructions to UPGRADING
1 parent 3f9b089 commit 6fe96aa

File tree

1 file changed

+15
-1
lines changed

1 file changed

+15
-1
lines changed

UPGRADING.md

Lines changed: 15 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,18 @@
1-
# Upgrading to version 1.x
1+
# Upgrading to version 1.3
2+
There's a new migration in this version that can be installed via
3+
```bash
4+
bin/rails solid_queue:update
5+
```
6+
which is a new generator to facilitate updates.
7+
8+
Then, the migration needs to be run with
9+
```bash
10+
bin/rails db:migrate
11+
```
12+
13+
The migration affects the tables `solid_queue_claimed_executions` and `solid_queue_processes` tables. It's not mandatory: everything will continue working as before without it, only a deprecation warning will be emitted. The migration will be mandatory in the next major version (2.0).
14+
15+
# Upgrading to version >=1.0, < 1.3
216
The value returned for `enqueue_after_transaction_commit?` has changed to `true`, and it's no longer configurable. If you want to change this, you need to use Active Job's configuration options.
317

418
# Upgrading to version 0.9.x

0 commit comments

Comments
 (0)