Skip to content

Commit

Permalink
Merge pull request #147 from doorkeeper-gem/release-1-8-0-rc1
Browse files Browse the repository at this point in the history
Release version 1.8.0-rc1
  • Loading branch information
toupeira authored Apr 20, 2021
2 parents 23f94f5 + 22c72e7 commit 88f2df8
Show file tree
Hide file tree
Showing 3 changed files with 13 additions and 3 deletions.
13 changes: 11 additions & 2 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,7 +1,16 @@
## Unreleased

- [#138] Support form_post response mode (This gem now requires Doorkeeper v5.5)
- [#146] Require at least Ruby 2.5
## v1.8.0-rc1 (2021-04-20)

### Upgrading

This gem now requires Doorkeeper 5.5 and Ruby 2.5.

### Changes

- [#138] Support form_post response mode (thanks to @linhdangduy)
- [#144] Support block syntax for `issuer` configuration (thanks to @maxxsnake)
- [#145] Register token flows with the strategy instead of the token class (thanks to @paukul)

## v1.7.5 (2020-12-15)

Expand Down
1 change: 1 addition & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -104,6 +104,7 @@ The following settings are required in `config/initializers/doorkeeper_openid_co

- `issuer`
- Identifier for the issuer of the response (i.e. your application URL). The value is a case sensitive URL using the `https` scheme that contains scheme, host, and optionally, port number and path components and no query or fragment components.
- You can either pass a string value, or a block to generate the issuer dynamically based on the `resource_owner` and `application` passed to the block.
- `subject`
- Identifier for the resource owner (i.e. the authenticated user). A locally unique and never reassigned identifier within the issuer for the end-user, which is intended to be consumed by the client. The value is a case-sensitive string and must not exceed 255 ASCII characters in length.
- The database ID of the user is an acceptable choice if you don't mind leaking that information.
Expand Down
2 changes: 1 addition & 1 deletion lib/doorkeeper/openid_connect/version.rb
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,6 @@

module Doorkeeper
module OpenidConnect
VERSION = '1.7.5'
VERSION = '1.8.0-rc1'
end
end

0 comments on commit 88f2df8

Please sign in to comment.