que 1.3.0 → 1.3.1
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- checksums.yaml +4 -4
- data/CHANGELOG.md +16 -1
- data/lib/que/version.rb +1 -1
- data/lib/que.rb +2 -1
- metadata +1 -1
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA256:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: 935bd86044462d53952ebcaa287b1922956a031d02849326a73ed5358fb367c8
|
|
4
|
+
data.tar.gz: 999cda08420fedef6900e515701f939cbc25c63a9c2a9bf3e8f1946ee1ac7e3d
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: 2d9e489f372ab29e6d97673fe95eb4429ac28f5270c644f888314485bc39c641997ff024cd9696532560fdad11b80d0bb1833be6d1b4d0a3cfef57fa7c6719f6
|
|
7
|
+
data.tar.gz: 816c449a67aa15a7eba3177a34a2ffbbc0a85b59d0a2ce48fd44d78343e0bee2bd2b25b05001d5c4168442eb362f4fa97f2fe61b533f07b1f271a4003f53b1c5
|
data/CHANGELOG.md
CHANGED
|
@@ -1,3 +1,10 @@
|
|
|
1
|
+
### 1.3.1 (2022-02-25)
|
|
2
|
+
|
|
3
|
+
Unfortunately, v1.3.0 was broken. Follow its upgrade instructions, but use this version instead.
|
|
4
|
+
|
|
5
|
+
- **Fixed**
|
|
6
|
+
+ Fixed startup error: `undefined method 'job_schema_version' for Que:Module`, in [#343](https://github.com/que-rb/que/pull/343)
|
|
7
|
+
|
|
1
8
|
### 1.3.0 (2022-02-25)
|
|
2
9
|
|
|
3
10
|
**ACTION REQUIRED**
|
|
@@ -29,7 +36,15 @@ You must apply the schema migration and deploy to upgrade all workers.
|
|
|
29
36
|
|
|
30
37
|
No further action is required from you at this stage. The Que 2 release changelog will provide full upgrade instructions for the process briefly described above of simultaneously running both Que 1 & 2 workers. Note that you won't be required to upgrade from Ruby 2.7 to Ruby 3 at the same time as upgrading to Que 2.
|
|
31
38
|
|
|
32
|
-
If you use any Que plugins or custom code that interacts with the `que_jobs` table, before you can upgrade to Que 2, you will need to make sure they are updated for compatibility with Que 2: They'll need to make use of the `kwargs` column, and when inserting jobs, put
|
|
39
|
+
If you use any Que plugins or custom code that interacts with the `que_jobs` table, before you can upgrade to Que 2, you will need to make sure they are updated for compatibility with Que 2: They'll need to make use of the `kwargs` column, and when inserting jobs, put a `2` into the `job_schema_version` column rather than continue to rely on its soon-to-be-removed default of `1`.
|
|
40
|
+
|
|
41
|
+
**Other improvements**:
|
|
42
|
+
|
|
43
|
+
- **Features**:
|
|
44
|
+
+ Log config on startup, in [#337](https://github.com/que-rb/que/pull/337)
|
|
45
|
+
- **Internal**:
|
|
46
|
+
+ Added Git pre-push hook, in [#338](https://github.com/que-rb/que/pull/338)
|
|
47
|
+
+ Documented our gem release process, in [#341](https://github.com/que-rb/que/pull/341)
|
|
33
48
|
|
|
34
49
|
### 1.2.0 (2022-02-23)
|
|
35
50
|
|
data/lib/que/version.rb
CHANGED
data/lib/que.rb
CHANGED
|
@@ -31,6 +31,8 @@ module Que
|
|
|
31
31
|
require_relative 'que/utils/queue_management'
|
|
32
32
|
require_relative 'que/utils/transactions'
|
|
33
33
|
|
|
34
|
+
require_relative 'que/version'
|
|
35
|
+
|
|
34
36
|
require_relative 'que/connection'
|
|
35
37
|
require_relative 'que/connection_pool'
|
|
36
38
|
require_relative 'que/job_methods'
|
|
@@ -41,7 +43,6 @@ module Que
|
|
|
41
43
|
require_relative 'que/migrations'
|
|
42
44
|
require_relative 'que/poller'
|
|
43
45
|
require_relative 'que/result_queue'
|
|
44
|
-
require_relative 'que/version'
|
|
45
46
|
require_relative 'que/worker'
|
|
46
47
|
|
|
47
48
|
class << self
|