que 1.3.0 → 1.3.1

Sign up to get free protection for your applications and to get access to all the features.
Files changed (5) hide show
  1. checksums.yaml +4 -4
  2. data/CHANGELOG.md +16 -1
  3. data/lib/que/version.rb +1 -1
  4. data/lib/que.rb +2 -1
  5. metadata +1 -1
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: 382e70b455239bf58eda4d83e5772400b55055f98857d2b83fdfc7f36f26d856
4
- data.tar.gz: dfad699d5bb996c965e3216de224fc9248a3cb2be70cce04f8407ed9b5ee0651
3
+ metadata.gz: 935bd86044462d53952ebcaa287b1922956a031d02849326a73ed5358fb367c8
4
+ data.tar.gz: 999cda08420fedef6900e515701f939cbc25c63a9c2a9bf3e8f1946ee1ac7e3d
5
5
  SHA512:
6
- metadata.gz: d1c34fc4b2ff8ce02b9b70f8fe9e9d361c8e4e701e36987690464a5f62263905e29453c9dbcb65bce9bda19d511d1430b1e235f1ad8e86cbd1e136e189e71015
7
- data.tar.gz: 9cb2182726f813fb53c3cb6f2a41dc4bb482810448673a8f8e704860db119e1ad44a64613f3d688df1085f0686ff51ea74a0d1b46bc7353d79d81945cf3555e8
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 the result of `Que.job_schema_version` into the `job_schema_version` column rather than continue to rely on its default of `1`.
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
@@ -1,7 +1,7 @@
1
1
  # frozen_string_literal: true
2
2
 
3
3
  module Que
4
- VERSION = '1.3.0'
4
+ VERSION = '1.3.1'
5
5
 
6
6
  def self.job_schema_version
7
7
  1
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
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: que
3
3
  version: !ruby/object:Gem::Version
4
- version: 1.3.0
4
+ version: 1.3.1
5
5
  platform: ruby
6
6
  authors:
7
7
  - Chris Hanks