doorkeeper 2.0.0 → 2.0.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 CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA1:
3
- metadata.gz: bb6985f71c5db8c5a96f9205a290aa6d36956177
4
- data.tar.gz: 4d96f1493d890735bdeaf379c6345a949ecd0857
3
+ metadata.gz: e5697ec3a04462d5358c1551c6f680db931b8c8c
4
+ data.tar.gz: 56ca7ac02a951739cbb542f196846348c70ec9a6
5
5
  SHA512:
6
- metadata.gz: 0efb46569e591675b5a208a7cae0d72eb746a17ea99573359e7788374afdcc9b052ef38577abba6681aecb89ddc95e7d6dc0b09bb7201beeb2ac0c4f671d899f
7
- data.tar.gz: c3786d7fb5f6c2867fddd0d67948bfdc0292451f82aec9fcb1075b08d37c1a439028984c11e2100f1a2cff7ddd8e223e0da8dfb11ae511085bec9fa9b5c1486a
6
+ metadata.gz: a2d526b396039082b9d44088e9ea4f6fd2e93768bd0902c0c2db5a13acad465a833c3fc51e892677c414ff6eda1b3009270e640a7527c9f93d036e09c45a2adf
7
+ data.tar.gz: c289752a5643c475821720211e1d0251ddd1c434c77a67b1a7f57072830d0597bc6cd98e9d8d1c1244be165e74aee65331f9107d765cb70715ecb8a608f3f45d
@@ -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
- ### Other changes/enhancements
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
@@ -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
 
@@ -1,3 +1,3 @@
1
1
  module Doorkeeper
2
- VERSION = '2.0.0'
2
+ VERSION = '2.0.1'
3
3
  end
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.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-16 00:00:00.000000000 Z
12
+ date: 2014-12-17 00:00:00.000000000 Z
13
13
  dependencies:
14
14
  - !ruby/object:Gem::Dependency
15
15
  name: railties