Skip to content

Commit

Permalink
Merge remote-tracking branch 'remotes/origin/release/2.0'
Browse files Browse the repository at this point in the history
  • Loading branch information
pablothedude committed Jan 21, 2019
2 parents b56dedc + cd7d037 commit dc97780
Show file tree
Hide file tree
Showing 3 changed files with 8 additions and 2 deletions.
8 changes: 8 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,13 @@
## Next release

## 2.0.1

The main focus of this release was to fix some minor bugs to make a production ready release.

**Bugfixes:**
- Fix use of dump method in twig template
- Fix setting entityId from clientId for OIDC entities from manage response.

## 2.0.0

This release sees the actual addition of OpenID Connect support (OIDC) in SP Dashboard. In release 1.5.x we already
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -442,7 +442,6 @@ public static function fromManageResponse(
$entity->setClientSecret($oidcClient->getClientSecret());
$entity->setRedirectUris($oidcClient->getRedirectUris());
$entity->setGrantType(new OidcGrantType($oidcClient->getGrantType()));
$entity->setEntityId($oidcClient->getClientId());
$entity->setProtocol(Entity::TYPE_OPENID_CONNECT);
self::setRedirectUrisFromManageResponse($entity, $manageEntity, $environment, $playGroundUriTest, $playGroundUriProd);
}
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,6 @@ Hi,<br/>

<pre>
{{ exception.message }}
{{ dump(exception.trace) }}
</pre>

<p>
Expand Down

0 comments on commit dc97780

Please sign in to comment.