doorkeeper 2.0.0 → 2.0.1
Sign up to get free protection for your applications and to get access to all the features.
Potentially problematic release.
This version of doorkeeper might be problematic. Click here for more details.
- checksums.yaml +4 -4
- data/CHANGELOG.md +11 -2
- data/lib/doorkeeper/config.rb +1 -1
- data/lib/doorkeeper/version.rb +1 -1
- metadata +2 -2
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA1:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: e5697ec3a04462d5358c1551c6f680db931b8c8c
|
4
|
+
data.tar.gz: 56ca7ac02a951739cbb542f196846348c70ec9a6
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: a2d526b396039082b9d44088e9ea4f6fd2e93768bd0902c0c2db5a13acad465a833c3fc51e892677c414ff6eda1b3009270e640a7527c9f93d036e09c45a2adf
|
7
|
+
data.tar.gz: c289752a5643c475821720211e1d0251ddd1c434c77a67b1a7f57072830d0597bc6cd98e9d8d1c1244be165e74aee65331f9107d765cb70715ecb8a608f3f45d
|
data/CHANGELOG.md
CHANGED
@@ -1,5 +1,9 @@
|
|
1
1
|
# Changelog
|
2
2
|
|
3
|
+
## 2.0.1
|
4
|
+
|
5
|
+
- [#525, #526, #527] Fix `ActiveRecord::NoDatabaseError` on gem load.
|
6
|
+
|
3
7
|
## 2.0.0
|
4
8
|
|
5
9
|
### Backward incompatible changes
|
@@ -25,7 +29,7 @@
|
|
25
29
|
- Removes `test_redirect_uri` option. It is now called `native_redirect_uri`.
|
26
30
|
- [#446] Removes `mount Doorkeeper::Engine`. Now we use `use_doorkeeper`.
|
27
31
|
|
28
|
-
###
|
32
|
+
### Others
|
29
33
|
|
30
34
|
- [#484] Performance improvement - avoid performing order_by when not required.
|
31
35
|
- [#450] When password is invalid in Password Credentials Grant, Doorkeeper
|
@@ -40,10 +44,15 @@
|
|
40
44
|
- [#496] Tests with Rails 4.2.
|
41
45
|
- [#489] Adds `force_ssl_in_redirect_uri` to force the usage of the HTTPS
|
42
46
|
protocol in non-native redirect uris.
|
43
|
-
- [#516] Adds `protect_from_forgery` to `Doorkeeper::ApplicationController`
|
47
|
+
- [#516] SECURITY: Adds `protect_from_forgery` to `Doorkeeper::ApplicationController`
|
44
48
|
- [#518] Fix random failures in mongodb.
|
45
49
|
|
46
50
|
|
51
|
+
## 1.4.1
|
52
|
+
|
53
|
+
- [#516] SECURITY: Adds `protect_from_forgery` to `Doorkeeper::ApplicationController`
|
54
|
+
|
55
|
+
|
47
56
|
## 1.4.0
|
48
57
|
|
49
58
|
- internals
|
data/lib/doorkeeper/config.rb
CHANGED
@@ -26,7 +26,7 @@ If you are using ActiveRecord run `rails generate doorkeeper:application_scopes
|
|
26
26
|
&& rake db:migrate` to add it.
|
27
27
|
MSG
|
28
28
|
end
|
29
|
-
rescue ActiveRecord::StatementInvalid
|
29
|
+
rescue ActiveRecord::StatementInvalid, ActiveRecord::NoDatabaseError
|
30
30
|
# trap error when DB is not yet setup
|
31
31
|
end
|
32
32
|
|
data/lib/doorkeeper/version.rb
CHANGED
metadata
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: doorkeeper
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 2.0.
|
4
|
+
version: 2.0.1
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- Felipe Elias Philipp
|
@@ -9,7 +9,7 @@ authors:
|
|
9
9
|
autorequire:
|
10
10
|
bindir: bin
|
11
11
|
cert_chain: []
|
12
|
-
date: 2014-12-
|
12
|
+
date: 2014-12-17 00:00:00.000000000 Z
|
13
13
|
dependencies:
|
14
14
|
- !ruby/object:Gem::Dependency
|
15
15
|
name: railties
|