devise_cas_authenticatable 2.0.0.alpha1 → 2.0.0

Sign up to get free protection for your applications and to get access to all the features.
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: 52bd61c5ca7ea5f32d066698a57700fdcbd2cb3e6abc66dd59b338667639f29c
4
- data.tar.gz: 9b3d4e96f44399d3e33dc09fea6bb236dc4af323b311c7d9a891e49e367adc41
3
+ metadata.gz: 7a01a1cac03e51d9cb2219c1c34b9e8721d759864c6fd0907c3acc20f800359d
4
+ data.tar.gz: 553fd698f518e914eece655e478c24d635e1e5385a836dc381dbcbf728360dc0
5
5
  SHA512:
6
- metadata.gz: af34a5f2a67bc1649571ec302870892b258224e9908e04b2e3c17827033dff3fecb1fe45b833501beed7a81c98370136bc11f46113dfd2ee26036e62439de1a6
7
- data.tar.gz: e90b704aa8832f25c1b60c109954dc5a5d424374845ed6469796b74c22cbb25a480913e8c66b560e4bcffa8411018a49df215c0cfd5f345aa79236c42ea257ff
6
+ metadata.gz: 642092f9490ef50fc13f86d9626f5815bdeed69955eb3ed5d03696da107f1e8f22b53a9bbe9ec55f251dbaef62c4d8fbb9b4dc9942b05cc893b0b27bd044f15e
7
+ data.tar.gz: 9990e56109d1070f91c51b5395e9f3cacc9b8c69e4db3e3b5f22ef49000fad8cce5783dc6994b20e4f699cf509f3d1b12ba21c6f310f1ad5ef30b79c775c900f
data/CHANGELOG.md CHANGED
@@ -1,148 +1,154 @@
1
- # Changelog for devise\_cas\_authenticatable
1
+ # Changelog for devise_cas_authenticatable
2
2
 
3
- ## Version 2.0.0.alpha1 - TBD
3
+ ## Version 2.0.0 - January 3, 2022
4
4
 
5
- * Switch from RubyCAS-client, which is deprecated, to rack-cas
6
- * Remove Devise.cas_client and cas_client_config_options as a result of this change
5
+ - No changes from 2.0.0.alpha1. This version has been successfully tested by two developers in
6
+ production apps. (If you do run into issues, please report them in this Github project!)
7
+
8
+ ## Version 2.0.0.alpha1 - May 25, 2021
9
+
10
+ - Switch from RubyCAS-client, which is deprecated, to rack-cas
11
+ - Remove Devise.cas_client, Devise.cas_login_url, Devise.cas_logout_url, Devise.cas_validate_url, and cas_client_config_options as a result of this change
12
+ - Remove single sign out support (since rack-cas supports it natively)
7
13
 
8
14
  ## Version 1.10.4 - April 26, 2019
9
15
 
10
- * Fixes for single sign out on Redis session store using newer Redis gems (thanks @ledestin!)
16
+ - Fixes for single sign out on Redis session store using newer Redis gems (thanks @ledestin!)
11
17
 
12
18
  ## Version 1.10.3 - July 28, 2017
13
19
 
14
- * Rails 5.1 deprecation fix (thanks @jamgregory!)
20
+ - Rails 5.1 deprecation fix (thanks @jamgregory!)
15
21
 
16
22
  ## Version 1.10.2 - July 28, 2017
17
23
 
18
- * Correct an issue where the single sign-out logs would incorrectly state the session was found (thanks @hugohernani!)
19
- * Document how to change the SSO strategy (thanks again @hugohernani!)
24
+ - Correct an issue where the single sign-out logs would incorrectly state the session was found (thanks @hugohernani!)
25
+ - Document how to change the SSO strategy (thanks again @hugohernani!)
20
26
 
21
27
  ## Version 1.10.1 - July 17, 2017
22
28
 
23
- * Yet another Rails 5 compatibility fix with single sign-out (CacheStore's API for destroying sessions changed)
29
+ - Yet another Rails 5 compatibility fix with single sign-out (CacheStore's API for destroying sessions changed)
24
30
 
25
31
  ## Version 1.10.0 - February 6, 2017
26
32
 
27
- * Support Redis as a single sign-out store (thanks @tubsandcans!)
28
- * More Rails 5 compatibility fixes (thanks @debborafernandess and @drobny!)
33
+ - Support Redis as a single sign-out store (thanks @tubsandcans!)
34
+ - More Rails 5 compatibility fixes (thanks @debborafernandess and @drobny!)
29
35
 
30
36
  ## Version 1.9.2 - July 6, 2016
31
37
 
32
- * Fix middleware syntax for Rails 5 compatibility (thanks @drobny!)
38
+ - Fix middleware syntax for Rails 5 compatibility (thanks @drobny!)
33
39
 
34
40
  ## Version 1.9.1 - May 11, 2016
35
41
 
36
- * Remove Gemfile symlink from built gem; hopefully this will make installation easier on Windows
42
+ - Remove Gemfile symlink from built gem; hopefully this will make installation easier on Windows
37
43
 
38
44
  ## Version 1.9.0 - May 10, 2016
39
45
 
40
- * No longer requires net/telnet in order to work properly, so Ruby 2.3 can work out-of-the-box
46
+ - No longer requires net/telnet in order to work properly, so Ruby 2.3 can work out-of-the-box
41
47
 
42
48
  ## Version 1.8.0 - May 4, 2016
43
49
 
44
- * May the 4th be with you!
45
- * Prevent redirect loops when using memcached as a session store (thanks @fabioperrella!)
50
+ - May the 4th be with you!
51
+ - Prevent redirect loops when using memcached as a session store (thanks @fabioperrella!)
46
52
 
47
53
  ## Version 1.7.1 - February 2, 2016
48
54
 
49
- * Work around weird `#try` behavior on older Rails versions
55
+ - Work around weird `#try` behavior on older Rails versions
50
56
 
51
57
  ## Version 1.7.0 - December 18, 2015
52
58
 
53
- * Support RedisSessionStore (thanks @dandyn!)
54
- * Suppress warnings about `Devise.secret_key` not being set in production mode (thanks @joraff!)
59
+ - Support RedisSessionStore (thanks @dandyn!)
60
+ - Suppress warnings about `Devise.secret_key` not being set in production mode (thanks @joraff!)
55
61
 
56
62
  ## Version 1.6.1 - December 18, 2015
57
63
 
58
- * Allow single sign-out code to find the app's session store when NewRelic is in the middleware stack (thanks @brendancarney!)
64
+ - Allow single sign-out code to find the app's session store when NewRelic is in the middleware stack (thanks @brendancarney!)
59
65
 
60
66
  ## Version 1.6.0 - October 21, 2015
61
67
 
62
- * Add support for the Dalli session store (thanks @bonyiii!)
68
+ - Add support for the Dalli session store (thanks @bonyiii!)
63
69
 
64
70
  ## Version 1.5.0 - July 27, 2015
65
71
 
66
- * Generation of cas_action_url is now done by a customizable class, so you can use Rails routes to provide this (thanks to @eturino again!)
72
+ - Generation of cas_action_url is now done by a customizable class, so you can use Rails routes to provide this (thanks to @eturino again!)
67
73
 
68
74
  ## Version 1.4.1 - July 23, 2015
69
75
 
70
- * Internal refactor to avoid conflicting with common route names, specifically logout_url (thanks to @eturino!)
76
+ - Internal refactor to avoid conflicting with common route names, specifically logout_url (thanks to @eturino!)
71
77
 
72
78
  ## Version 1.4.0 - May 8, 2015
73
79
 
74
- * Allow changing the CAS response field used as the unique key for finding users (thanks once again to @gmoore!)
80
+ - Allow changing the CAS response field used as the unique key for finding users (thanks once again to @gmoore!)
75
81
 
76
82
  ## Version 1.3.8 - April 24, 2015
77
83
 
78
- * Remove a deprecated dependency (thanks to @gmoore)
79
- * Fix a wrong variable name that could break debug logging (thanks again to @gmoore)
84
+ - Remove a deprecated dependency (thanks to @gmoore)
85
+ - Fix a wrong variable name that could break debug logging (thanks again to @gmoore)
80
86
 
81
87
  ## Version 1.3.7 - July 17, 2014
82
88
 
83
- * Be less verbose in the log during single sign-out (thanks to @liudangyi)
89
+ - Be less verbose in the log during single sign-out (thanks to @liudangyi)
84
90
 
85
91
  ## Version 1.0.1 - July 6, 2014
86
92
 
87
- * Backport the 1.1.x series' logout_url features to the 1.0.x series for super-old apps
93
+ - Backport the 1.1.x series' logout_url features to the 1.0.x series for super-old apps
88
94
 
89
95
  ## Version 1.3.6 - February 5, 2014
90
96
 
91
- * Better single sign-out support for ActiveRecord session store users and README fixes (thanks to @fernandomantoan)
97
+ - Better single sign-out support for ActiveRecord session store users and README fixes (thanks to @fernandomantoan)
92
98
 
93
99
  ## Version 1.3.5 - January 30, 2014
94
100
 
95
- * Don't redirect to the (probably useless) Devise login page when the user is unauthorized - this is the CAS server's responsibility. (thanks to @kylejginavan)
101
+ - Don't redirect to the (probably useless) Devise login page when the user is unauthorized - this is the CAS server's responsibility. (thanks to @kylejginavan)
96
102
 
97
103
  ## Version 1.3.4 - January 10, 2014
98
104
 
99
- * Redirect to CAS logout URL when Warden receives the :inactive status, which should allow using active_for_authentication? (thanks to @bentoncreation)
105
+ - Redirect to CAS logout URL when Warden receives the :inactive status, which should allow using active_for_authentication? (thanks to @bentoncreation)
100
106
 
101
107
  ## Version 1.3.3 - December 13, 2013
102
108
 
103
- * Bug fix for single sign out when using Rack >= 1.5 (thanks to @activars)
109
+ - Bug fix for single sign out when using Rack >= 1.5 (thanks to @activars)
104
110
 
105
111
  ## Version 1.3.2 - August 16, 2013
106
112
 
107
- * Rails 4 deprecation warning fix (thanks to @reidmix)
113
+ - Rails 4 deprecation warning fix (thanks to @reidmix)
108
114
 
109
115
  ## Version 1.3.1 - July 29, 2013
110
116
 
111
- * Rails 4 compatibility fix (thanks to @McRipper)
117
+ - Rails 4 compatibility fix (thanks to @McRipper)
112
118
 
113
119
  ## Version 1.3.0 - May 12, 2013
114
120
 
115
- * Drop support for Rails 2.3, Devise 1.0 and 1.1
116
- * Custom failure class for optional redirecting to logout url upon timeout (thanks to @geoffroh and @kylejginavan)
121
+ - Drop support for Rails 2.3, Devise 1.0 and 1.1
122
+ - Custom failure class for optional redirecting to logout url upon timeout (thanks to @geoffroh and @kylejginavan)
117
123
 
118
124
  ## Version 1.2.1 - April 16, 2013
119
125
 
120
- * Bug fix: use Devise.sign_out_via to configure the HTTP verb sign_out will accept.
126
+ - Bug fix: use Devise.sign_out_via to configure the HTTP verb sign_out will accept.
121
127
 
122
128
  ## Version 1.2.0 - March 6, 2013
123
129
 
124
- * Rewrite of the single sign-out module to improve compatibility with newer Devise versions, other ORMs, and be less complex overall (thanks [Jeremy Haile](https://github.com/jeremyhaile) and [Endel Dreyer](https://github.com/endel)!)
130
+ - Rewrite of the single sign-out module to improve compatibility with newer Devise versions, other ORMs, and be less complex overall (thanks [Jeremy Haile](https://github.com/jeremyhaile) and [Endel Dreyer](https://github.com/endel)!)
125
131
 
126
132
  ## Version 1.1.4 - January 23, 2013
127
133
 
128
- * Bug fix: don't modify request.protocol when generating a logout_url (thanks [Tse-Ching Ho](https://github.com/tsechingho)!)
134
+ - Bug fix: don't modify request.protocol when generating a logout_url (thanks [Tse-Ching Ho](https://github.com/tsechingho)!)
129
135
 
130
136
  ## Version 1.1.3 - January 15, 2013
131
137
 
132
- * Rails 4 compatibility fixes (thanks [Aaron Patterson](https://github.com/tenderlove)!)
133
- * Support the service_url parameter in rubycas-client on logout (thanks [Kyle Ginavan](https://github.com/kylejginavan)!)
138
+ - Rails 4 compatibility fixes (thanks [Aaron Patterson](https://github.com/tenderlove)!)
139
+ - Support the service_url parameter in rubycas-client on logout (thanks [Kyle Ginavan](https://github.com/kylejginavan)!)
134
140
 
135
141
  ## Version 1.1.2 - May 23, 2012
136
142
 
137
- * Only do schema stuff if using Devise 2.0.x or below
143
+ - Only do schema stuff if using Devise 2.0.x or below
138
144
 
139
145
  ## Version 1.1.1 - April 2, 2012
140
146
 
141
- * Add cas_client_config_options so that users can add unsupported RubyCAS options such as encode_extra_attributes_as
147
+ - Add cas_client_config_options so that users can add unsupported RubyCAS options such as encode_extra_attributes_as
142
148
 
143
149
  ## Version 1.1.0 - March 5, 2012
144
150
 
145
- * Add configurable destination and follow URL support (thanks [Dyson Simmons](https://github.com/dyson)!)
146
- * Allow applications deployed at sub-URIs to work (thanks [Tod Detre](https://github.com/tod)!)
147
- * Only add trailing slash to base URI if it's not already present (thanks [joe81](https://github.com/joe81)!)
148
- * Some documentation updates.
151
+ - Add configurable destination and follow URL support (thanks [Dyson Simmons](https://github.com/dyson)!)
152
+ - Allow applications deployed at sub-URIs to work (thanks [Tod Detre](https://github.com/tod)!)
153
+ - Only add trailing slash to base URI if it's not already present (thanks [joe81](https://github.com/joe81)!)
154
+ - Some documentation updates.
data/README.md CHANGED
@@ -1,4 +1,4 @@
1
- devise_cas_authenticatable [![Build Status](https://secure.travis-ci.org/nbudin/devise_cas_authenticatable.png)](http://travis-ci.org/nbudin/devise_cas_authenticatable)
1
+ devise_cas_authenticatable [![Ruby](https://github.com/nbudin/devise_cas_authenticatable/actions/workflows/ruby.yml/badge.svg)](https://github.com/nbudin/devise_cas_authenticatable/actions/workflows/ruby.yml) [![Gem Version](https://badge.fury.io/rb/devise_cas_authenticatable.svg)](https://badge.fury.io/rb/devise_cas_authenticatable)
2
2
  ==========================
3
3
 
4
4
  Written by Nat Budin<br/>
@@ -1,6 +1,6 @@
1
1
  Gem::Specification.new do |s|
2
2
  s.name = 'devise_cas_authenticatable'
3
- s.version = '2.0.0.alpha1'
3
+ s.version = '2.0.0'
4
4
 
5
5
  s.required_rubygems_version = Gem::Requirement.new('> 1.3.1') if s.respond_to? :required_rubygems_version=
6
6
  s.authors = ['Nat Budin', 'Jeremy Haile']
metadata CHANGED
@@ -1,15 +1,15 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: devise_cas_authenticatable
3
3
  version: !ruby/object:Gem::Version
4
- version: 2.0.0.alpha1
4
+ version: 2.0.0
5
5
  platform: ruby
6
6
  authors:
7
7
  - Nat Budin
8
8
  - Jeremy Haile
9
- autorequire:
9
+ autorequire:
10
10
  bindir: bin
11
11
  cert_chain: []
12
- date: 2021-05-25 00:00:00.000000000 Z
12
+ date: 2022-01-03 00:00:00.000000000 Z
13
13
  dependencies:
14
14
  - !ruby/object:Gem::Dependency
15
15
  name: devise
@@ -199,7 +199,7 @@ homepage: http://github.com/nbudin/devise_cas_authenticatable
199
199
  licenses:
200
200
  - MIT
201
201
  metadata: {}
202
- post_install_message:
202
+ post_install_message:
203
203
  rdoc_options: []
204
204
  require_paths:
205
205
  - lib
@@ -214,8 +214,8 @@ required_rubygems_version: !ruby/object:Gem::Requirement
214
214
  - !ruby/object:Gem::Version
215
215
  version: 1.3.1
216
216
  requirements: []
217
- rubygems_version: 3.0.3
218
- signing_key:
217
+ rubygems_version: 3.1.6
218
+ signing_key:
219
219
  specification_version: 4
220
220
  summary: CAS authentication module for Devise
221
221
  test_files: