signet 0.8.0 → 0.8.1
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +4 -4
- data/CHANGELOG.md +36 -30
- data/lib/signet/version.rb +1 -1
- data/signet.gemspec +1 -1
- metadata +3 -3
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA1:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: f858d637b4719f2d27e40d16e8c689d93b3d3d65
|
4
|
+
data.tar.gz: 7ccf68a7582ddde1819df1c2aa9d6a439682801d
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 2c43038b3e32e0fd3deeae112f5e3662feed641d5b0b90f79715a7caf69cad1075d71ebfb8bf9b5fc5bcd1ea409bf766131eedc081fb6808801e71aee94fe417
|
7
|
+
data.tar.gz: 104297c55f4719756ade6ddca8e04276f22ceb338e0071b1d9e187d2dbe829ef1e2c5628b017450127fcd357f12e4304da4b17500b865d4026d9731c058b5e3e
|
data/CHANGELOG.md
CHANGED
@@ -1,4 +1,8 @@
|
|
1
|
-
|
1
|
+
## 0.8.1 (2017-10-13)
|
2
|
+
|
3
|
+
* Restore support for Ruby 1.9.3
|
4
|
+
|
5
|
+
## 0.8.0 (2017-10-12)
|
2
6
|
|
3
7
|
* Ensure the "expires_at" attribute is recalculated on refresh (chutzimir)
|
4
8
|
* Fix warnings on Ruby 2.4 (koic)
|
@@ -6,20 +10,21 @@
|
|
6
10
|
* Provide signature verification algorithm for compatibility with ruby-jwt 2.0 (jurriaan)
|
7
11
|
* Signet::OAuth2::Client#decoded_id_token can take a keyfinder block (mvastola)
|
8
12
|
|
9
|
-
|
13
|
+
## 0.7.3 (2016-06-20)
|
10
14
|
|
11
15
|
* Fix timestamp parsing on 32-bit systems
|
12
16
|
* Fix expiration check when issue/expiry times are nil
|
13
17
|
|
14
|
-
|
18
|
+
## 0.7.2 (2015-12-21)
|
15
19
|
|
16
20
|
* Don't assume Faraday form encoding middleware is present
|
17
21
|
|
18
|
-
|
22
|
+
## 0.7.1 (2015-12-17)
|
19
23
|
|
20
24
|
* Fix an issue with date parsing
|
21
25
|
|
22
|
-
|
26
|
+
## 0.7 (2015-12-06)
|
27
|
+
|
23
28
|
* No longer overwrite SSL environment variables.
|
24
29
|
* Tighten up date & URL (de)serialization for OAuth2 client
|
25
30
|
* Allow Hurley as a connection
|
@@ -27,21 +32,22 @@
|
|
27
32
|
* Add expires_within(sec) method to oauth2 client to facilitate proactive
|
28
33
|
refreshes
|
29
34
|
|
30
|
-
|
35
|
+
## 0.6.1 (2015-06-08)
|
36
|
+
|
31
37
|
* Fix language warnings for unused & shadowed variables ((@blowmage)[])
|
32
38
|
* Update SSL cert path for OSX ((@gambaroff)[])
|
33
39
|
* Update JWT library and fix broken tests
|
34
40
|
* Fix incorrect parameter name in OAuth2 client docs ((@samuelreh)[])
|
35
41
|
* Fix symbolization of URL parameter keys ((@swifthand)[])
|
36
42
|
|
37
|
-
|
43
|
+
## 0.6.0 (2014-12-05)
|
38
44
|
|
39
45
|
* Drop support for ruby versions < 1.9.3
|
40
46
|
* Update gem dependencies and lock down versions tighter
|
41
47
|
* Allow form encoded responses when exchanging OAuth 2 authorization codes
|
42
48
|
* Normalize options keys for indifferent access
|
43
49
|
|
44
|
-
|
50
|
+
## 0.5.1 (2014-06-08)
|
45
51
|
|
46
52
|
* Allow Hash objects to be used to initialize authorization URI
|
47
53
|
* Added PLAINTEXT and RSA-SHA1 signature methods to OAuth 1 support
|
@@ -49,53 +55,53 @@
|
|
49
55
|
* The `approval_prompt` option no longer defaults to `:force`
|
50
56
|
* The `approval_prompt` and `prompt` are now mutually exclusive.
|
51
57
|
|
52
|
-
|
58
|
+
## 0.5.0 (2013-05-31)
|
53
59
|
|
54
60
|
* Switched to faraday 0.9.0
|
55
61
|
* Added `expires_at` option
|
56
62
|
|
57
|
-
|
63
|
+
## 0.4.5
|
58
64
|
|
59
65
|
* Minor documentation fixes
|
60
66
|
* Allow postmessage as a valid redirect_uri in OAuth 2
|
61
67
|
|
62
|
-
|
68
|
+
## 0.4.4
|
63
69
|
|
64
70
|
* Add support for assertion profile
|
65
71
|
|
66
|
-
|
72
|
+
## 0.4.3
|
67
73
|
|
68
74
|
* Added method to clear credentials
|
69
75
|
|
70
|
-
|
76
|
+
## 0.4.2
|
71
77
|
|
72
78
|
* Backwards compatibility for MultiJson
|
73
79
|
|
74
|
-
|
80
|
+
## 0.4.1
|
75
81
|
|
76
82
|
* Updated Launchy dependency
|
77
83
|
|
78
|
-
|
84
|
+
## 0.4.0
|
79
85
|
|
80
86
|
* Added OAuth 1 server implementation
|
81
87
|
* Updated Faraday dependency
|
82
88
|
|
83
|
-
|
89
|
+
## 0.3.4
|
84
90
|
|
85
91
|
* Attempts to auto-detect CA cert location
|
86
92
|
|
87
|
-
|
93
|
+
## 0.3.3
|
88
94
|
|
89
95
|
* Request objects no longer recreated during processing
|
90
96
|
* Faraday middleware now supported
|
91
97
|
* Streamed requests now supported
|
92
98
|
* Fixed assertion profiles; client ID/secret omission no longer an error
|
93
99
|
|
94
|
-
|
100
|
+
## 0.3.2
|
95
101
|
|
96
102
|
* Added audience security check for ID tokens
|
97
103
|
|
98
|
-
|
104
|
+
## 0.3.1
|
99
105
|
|
100
106
|
* Fixed a warning while determining grant type
|
101
107
|
* Removed requirement that a connection be supplied when authorizing requests
|
@@ -103,52 +109,52 @@
|
|
103
109
|
* Fixed some documentation stuff around markdown formatting
|
104
110
|
* Added support for Google Code wiki format output when generating docs
|
105
111
|
|
106
|
-
|
112
|
+
## 0.3.0
|
107
113
|
|
108
114
|
* Replaced httpadapter gem dependency with faraday
|
109
115
|
* Replaced json gem dependency with multi_json
|
110
116
|
* Updated to OAuth 2.0 draft 22
|
111
117
|
* Complete test coverage
|
112
118
|
|
113
|
-
|
119
|
+
## 0.2.4
|
114
120
|
|
115
121
|
* Updated to incorporate changes to the Google OAuth endpoints
|
116
122
|
|
117
|
-
|
123
|
+
## 0.2.3
|
118
124
|
|
119
125
|
* Added support for JWT-formatted ID tokens.
|
120
126
|
* Added :issued_at option to #update_token! method.
|
121
127
|
|
122
|
-
|
128
|
+
## 0.2.2
|
123
129
|
|
124
130
|
* Lowered requirements for json gem
|
125
131
|
|
126
|
-
|
132
|
+
## 0.2.1
|
127
133
|
|
128
134
|
* Updated to keep in sync with the new httpadapter changes
|
129
135
|
|
130
|
-
|
136
|
+
## 0.2.0
|
131
137
|
|
132
138
|
* Added support for OAuth 2.0 draft 10
|
133
139
|
|
134
|
-
|
140
|
+
## 0.1.4
|
135
141
|
|
136
142
|
* Added support for a two-legged authorization flow
|
137
143
|
|
138
|
-
|
144
|
+
## 0.1.3
|
139
145
|
|
140
146
|
* Fixed issue with headers passed in as a Hash
|
141
147
|
* Fixed incompatibilities with Ruby 1.8.6
|
142
148
|
|
143
|
-
|
149
|
+
## 0.1.2
|
144
150
|
|
145
151
|
* Fixed bug with overzealous normalization
|
146
152
|
|
147
|
-
|
153
|
+
## 0.1.1
|
148
154
|
|
149
155
|
* Fixed bug with missing StringIO require
|
150
156
|
* Fixed issue with dependency on unreleased features of addressable
|
151
157
|
|
152
|
-
|
158
|
+
## 0.1.0
|
153
159
|
|
154
160
|
* Initial release
|
data/lib/signet/version.rb
CHANGED
data/signet.gemspec
CHANGED
@@ -22,7 +22,7 @@ Gem::Specification.new do |s|
|
|
22
22
|
s.homepage = "https://github.com/google/signet/"
|
23
23
|
s.rdoc_options = ["--main", "README.md"]
|
24
24
|
s.summary = "Signet is an OAuth 1.0 / OAuth 2.0 implementation."
|
25
|
-
s.required_ruby_version = ">=
|
25
|
+
s.required_ruby_version = ">= 1.9.3"
|
26
26
|
|
27
27
|
s.add_runtime_dependency 'addressable', '~> 2.3'
|
28
28
|
s.add_runtime_dependency 'faraday', '~> 0.9'
|
metadata
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: signet
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 0.8.
|
4
|
+
version: 0.8.1
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- Bob Aman
|
@@ -9,7 +9,7 @@ authors:
|
|
9
9
|
autorequire:
|
10
10
|
bindir: bin
|
11
11
|
cert_chain: []
|
12
|
-
date: 2017-10-
|
12
|
+
date: 2017-10-13 00:00:00.000000000 Z
|
13
13
|
dependencies:
|
14
14
|
- !ruby/object:Gem::Dependency
|
15
15
|
name: addressable
|
@@ -219,7 +219,7 @@ required_ruby_version: !ruby/object:Gem::Requirement
|
|
219
219
|
requirements:
|
220
220
|
- - ">="
|
221
221
|
- !ruby/object:Gem::Version
|
222
|
-
version:
|
222
|
+
version: 1.9.3
|
223
223
|
required_rubygems_version: !ruby/object:Gem::Requirement
|
224
224
|
requirements:
|
225
225
|
- - ">="
|