activejob 5.0.0.rc2 → 5.0.0
Sign up to get free protection for your applications and to get access to all the features.
Potentially problematic release.
This version of activejob might be problematic. Click here for more details.
- checksums.yaml +4 -4
- data/CHANGELOG.md +1 -22
- data/lib/active_job/gem_version.rb +1 -1
- metadata +6 -6
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA1:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: c767070a32e34c300e06f4c666a4d073ecf95fbf
|
4
|
+
data.tar.gz: 4c74731245e49008319747843daa57ad03289720
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: a856a1dc82f6d82621b94af24a4601b2df3cae4059b596d62dc4e4676dcd5ccecf02d9c0f6ff04d93412ebf4a442af6c001e5f8ff39155302bb4d1ffd7b357b9
|
7
|
+
data.tar.gz: 4be9ec5c01bb9a631f2b1a9ac60372524ffd3ed45ace9a1c1ac973bc58d80c001d9fa0522f8f8daa6a45359150e92cb44ab2f7a86f99b9626a819f5d951e1cbf
|
data/CHANGELOG.md
CHANGED
@@ -1,14 +1,4 @@
|
|
1
|
-
## Rails 5.0.0
|
2
|
-
|
3
|
-
* No changes.
|
4
|
-
|
5
|
-
|
6
|
-
## Rails 5.0.0.rc1 (May 06, 2016) ##
|
7
|
-
|
8
|
-
* No changes.
|
9
|
-
|
10
|
-
|
11
|
-
## Rails 5.0.0.beta4 (April 27, 2016) ##
|
1
|
+
## Rails 5.0.0 (June 30, 2016) ##
|
12
2
|
|
13
3
|
* Enable class reloading prior to job dispatch, and ensure Active Record
|
14
4
|
connections are returned to the pool when jobs are run in separate threads.
|
@@ -21,23 +11,12 @@
|
|
21
11
|
|
22
12
|
*Jeremy Daer*
|
23
13
|
|
24
|
-
|
25
|
-
## Rails 5.0.0.beta3 (February 24, 2016) ##
|
26
|
-
|
27
14
|
* Change the default adapter from inline to async. It's a better default as tests will then not mistakenly
|
28
15
|
come to rely on behavior happening synchronously. This is especially important with things like jobs kicked off
|
29
16
|
in Active Record lifecycle callbacks.
|
30
17
|
|
31
18
|
*DHH*
|
32
19
|
|
33
|
-
|
34
|
-
## Rails 5.0.0.beta2 (February 01, 2016) ##
|
35
|
-
|
36
|
-
* No changes.
|
37
|
-
|
38
|
-
|
39
|
-
## Rails 5.0.0.beta1 (December 18, 2015) ##
|
40
|
-
|
41
20
|
* Fixed serializing `:at` option for `assert_enqueued_with`
|
42
21
|
and `assert_performed_with`.
|
43
22
|
|
metadata
CHANGED
@@ -1,14 +1,14 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: activejob
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 5.0.0
|
4
|
+
version: 5.0.0
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- David Heinemeier Hansson
|
8
8
|
autorequire:
|
9
9
|
bindir: bin
|
10
10
|
cert_chain: []
|
11
|
-
date: 2016-06-
|
11
|
+
date: 2016-06-30 00:00:00.000000000 Z
|
12
12
|
dependencies:
|
13
13
|
- !ruby/object:Gem::Dependency
|
14
14
|
name: activesupport
|
@@ -16,14 +16,14 @@ dependencies:
|
|
16
16
|
requirements:
|
17
17
|
- - '='
|
18
18
|
- !ruby/object:Gem::Version
|
19
|
-
version: 5.0.0
|
19
|
+
version: 5.0.0
|
20
20
|
type: :runtime
|
21
21
|
prerelease: false
|
22
22
|
version_requirements: !ruby/object:Gem::Requirement
|
23
23
|
requirements:
|
24
24
|
- - '='
|
25
25
|
- !ruby/object:Gem::Version
|
26
|
-
version: 5.0.0
|
26
|
+
version: 5.0.0
|
27
27
|
- !ruby/object:Gem::Dependency
|
28
28
|
name: globalid
|
29
29
|
requirement: !ruby/object:Gem::Requirement
|
@@ -96,9 +96,9 @@ required_ruby_version: !ruby/object:Gem::Requirement
|
|
96
96
|
version: 2.2.2
|
97
97
|
required_rubygems_version: !ruby/object:Gem::Requirement
|
98
98
|
requirements:
|
99
|
-
- - "
|
99
|
+
- - ">="
|
100
100
|
- !ruby/object:Gem::Version
|
101
|
-
version:
|
101
|
+
version: '0'
|
102
102
|
requirements: []
|
103
103
|
rubyforge_project:
|
104
104
|
rubygems_version: 2.6.4
|