1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396 397 398 399 400 401 402 403 404 405 406 407 408 409 410 411 412 413 414 415 416 417 418 419 420 421 422 423 424 425 426 427 428 429 430 431 432 433 434 435 436 437 438 439 440 441 442 443 444 445 446 447 448 449 450 451 452 453 454 455 456 457 458 459
|
# Changelog
All notable changes to this project will be documented in this file.
## 1.2.2 - Unreleased
### Added
- Ruby 4.0 support in CI.
### Deprecated
- Nothing.
### Removed
- Unused `IMAGE_SIZE_REGEXP` constant.
- Dead `skip_friends` and `skip_image_info` options (Google+ was shut down in 2019).
- `CGI.parse` dependency replaced with `URI.decode_www_form` for Ruby 4.0 compatibility.
### Fixed
- Updated gemspec description to reference OmniAuth instead of OmniAuth 1.x.
- Modernized CI: bumped actions/checkout to v6, rake to 13.3, and rubocop to latest.
## 1.2.1 - 2025-01-18
### Added
- Use jwt v2.9.2's public claims verification API - https://github.com/zquestz/omniauth-google-oauth2/pull/465
### Deprecated
- Nothing.
### Removed
- Support for jwt < 2.9.2.
### Fixed
- Nothing.
## 1.2.0 - 2024-09-15
### Added
- jwt 2.9.0 support for their updated claims code.
### Deprecated
- Nothing.
### Removed
- Ruby 2.3 and 2.4 support.
- Support for jwt < 2.9.0.
### Fixed
- Fixed image sizing code.
- Rubocop configuration updates.
## 1.1.3 - 2024-08-29
### Added
- Updated to use POST instead of GET for tokeninfo endpoint.
### Deprecated
- Nothing.
### Removed
- Nothing.
### Fixed
- Documentation typos.
- Rubocop configuration updates.
## 1.1.2 - 2024-03-28
### Added
- Add support for enable_granular_consent option (#455)
### Deprecated
- Nothing.
### Removed
- Nothing.
### Fixed
- Nothing.
## 1.1.1 - 2022-09-05
### Added
- Nothing.
### Deprecated
- Nothing.
### Removed
- Nothing.
### Fixed
- Fixed JWT decoding issue. (Invalid segment encoding) [#431](https://github.com/zquestz/omniauth-google-oauth2/pull/431)
## 1.1.0 - 2022-09-03
### Added
- `overridable_authorize_options` has been added to restrict overriding authorize_options by request params. [#423](https://github.com/zquestz/omniauth-google-oauth2/pull/423)
- Support for oauth2 2.0.x. [#429](https://github.com/zquestz/omniauth-google-oauth2/pull/429)
### Deprecated
- Nothing.
### Removed
- Nothing.
### Fixed
- Nothing.
## 1.0.1 - 2022-03-10
### Added
- Output granted scopes in credentials block of the auth hash.
- Migrated to GitHub actions.
### Deprecated
- Nothing.
### Removed
- Nothing.
### Fixed
- Overriding the `redirect_uri` via params or JSON request body.
## 1.0.0 - 2021-03-14
### Added
- Support for Omniauth 2.x!
### Deprecated
- Nothing.
### Removed
- Support for Omniauth 1.x.
### Fixed
- Nothing.
## 0.8.2 - 2021-03-14
### Added
- Constrains the version to Omniauth 1.x.
### Deprecated
- Nothing.
### Removed
- Nothing.
### Fixed
- Nothing.
## 0.8.1 - 2020-12-12
### Added
- Support reading the access token from a json request body.
### Deprecated
- Nothing.
### Removed
- No longer verify the iat claim for JWT.
### Fixed
- A few minor issues with .rubocop.yml.
- Issues with image resizing code when the image came with size information from Google.
## 0.8.0 - 2019-08-21
### Added
- Updated omniauth-oauth2 to v1.6.0 for security fixes.
### Deprecated
- Nothing.
### Removed
- Ruby 2.1 support.
### Fixed
- Nothing.
## 0.7.0 - 2019-06-03
### Added
- Ensure `info[:email]` is always verified, and include `unverified_email`
### Deprecated
- Nothing.
### Removed
- Nothing.
### Fixed
- Nothing.
## 0.6.1 - 2019-03-07
### Added
- Return `email` and `email_verified` keys in response.
### Deprecated
- Nothing.
### Removed
- Nothing.
### Fixed
- Nothing.
## 0.6.0 - 2018-12-28
### Added
- Support for JWT 2.x.
### Deprecated
- Nothing.
### Removed
- Support for JWT 1.x.
- Support for `raw_friend_info` and `raw_image_info`.
- Stop using Google+ API endpoints.
### Fixed
- Nothing.
## 0.5.4 - 2018-12-07
### Added
- New recommended endpoints for Google OAuth.
### Deprecated
- Nothing.
### Removed
- Nothing.
### Fixed
- Nothing.
## 0.5.3 - 2018-01-25
### Added
- Added support for the JWT 2.x gem.
- Now fully qualifies the `JWT` class to prevent conflicts with the `Omniauth::JWT` strategy.
### Deprecated
- Nothing.
### Removed
- Removed the `multijson` dependency.
- Support for versions of `omniauth-oauth2` < 1.5.
### Fixed
- Nothing.
## 0.5.2 - 2017-07-30
### Added
- Nothing.
### Deprecated
- Nothing.
### Removed
- New `authorize_url` and `token_url` endpoints are reverted until JWT 2.0 ships.
### Fixed
- Nothing.
## 0.5.1 - 2017-07-19
### Added
- *Breaking* JWT iss verification can be enabled/disabled with the `verify_iss` flag - see the README for more details.
- Authorize options now includes `device_id` and `device_name` for private ip ranges.
### Deprecated
- Nothing.
### Removed
- Nothing.
### Fixed
- Updated `authorize_url` and `token_url` to new endpoints.
## 0.5.0 - 2017-05-29
### Added
- Rubocop checks to specs.
- Defaulted dev environment to ruby 2.3.4.
### Deprecated
- Nothing.
### Removed
- Testing support for older versions of ruby not supported by OmniAuth 1.5.
- Key `[:urls]['Google']` no longer exists, it has been renamed to `[:urls][:google]`.
### Fixed
- Updated all code to rubocop conventions. This includes the Ruby 1.9 hash syntax when appropriate.
- Example javascript flow now picks up ENV vars for google key and secret.
## 0.4.1 - 2016-03-14
### Added
- Nothing.
### Deprecated
- Nothing.
### Removed
- Nothing.
### Fixed
- Fixed JWT iat leeway by requiring ruby-jwt 1.5.2
## 0.4.0 - 2016-03-11
### Added
- Addedd ability to specify multiple hosted domains.
- Added a default leeway of 1 minute to JWT token validation.
- Now requires ruby-jwt 1.5.x.
### Deprecated
- Nothing.
### Removed
- Removed support for ruby 1.9.3 as ruby-jwt 1.5.x does not support it.
### Fixed
- Nothing.
## 0.3.1 - 2016-01-28
### Added
- Verify Hosted Domain if hd is set in options.
### Deprecated
- Nothing.
### Removed
- Dependency on addressable.
### Fixed
- Nothing.
## 0.3.0 - 2016-01-09
### Added
- Updated verify_token to use the v3 tokeninfo endpoint.
### Deprecated
- Nothing.
### Removed
- Nothing.
### Fixed
- Compatibility with omniauth-oauth2 1.4.0
## 0.2.10 - 2015-11-05
### Added
- Nothing.
### Deprecated
- Nothing.
### Removed
- Removed some checks on the id_token. Now only parses the id_token in the JWT processing.
### Fixed
- Nothing.
## 0.2.9 - 2015-10-29
### Added
- Nothing.
### Deprecated
- Nothing.
### Removed
- Nothing.
### Fixed
- Issue with omniauth-oauth2 where redirect_uri was handled improperly. We now lock the dependency to ~> 1.3.1
## 0.2.8 - 2015-10-01
### Added
- Added skip_jwt option to bypass JWT decoding in case you get decoding errors.
### Deprecated
- Nothing.
### Removed
- Nothing.
### Fixed
- Resolved JWT::InvalidIatError. https://github.com/zquestz/omniauth-google-oauth2/issues/195
## 0.2.7 - 2015-09-25
### Added
- Now strips out the 'sz' parameter from profile image urls.
- Now uses 'addressable' gem for URI actions.
- Added image data to extras hash.
- Override validation on JWT token for open_id token.
- Handle authorization codes coming from an installed applications.
### Deprecated
- Nothing.
### Removed
- Nothing.
### Fixed
- Fixes double slashes in google image urls.
## 0.2.6 - 2014-10-26
### Added
- Nothing.
### Deprecated
- Nothing.
### Removed
- Nothing.
### Fixed
- Hybrid authorization issues due to bad method alias.
## 0.2.5 - 2014-07-09
### Added
- Support for versions of omniauth past 1.0.x.
### Deprecated
- Nothing.
### Removed
- Nothing.
### Fixed
- Nothing.
## 0.2.4 - 2014-04-25
### Added
- Now requiring the "Contacts API" and "Google+ API" to be enabled in your Google API console.
### Deprecated
- The old Google OAuth API support was removed without deprecation.
### Removed
- Support for the old Google OAuth API. `OAuth2::Error` will be thrown and state that access is not configured when you attempt to authenticate using the old API. See Added section for this release.
### Fixed
- Nothing.
|