Skip to content

Commit

Permalink
Missing event EVENT_AFTER_RESPONSE_TO_USER. Event was added back in.
Browse files Browse the repository at this point in the history
  • Loading branch information
dsmrt committed Aug 31, 2020
1 parent ff44352 commit 7648e4a
Show file tree
Hide file tree
Showing 3 changed files with 8 additions and 3 deletions.
5 changes: 5 additions & 0 deletions CHANGELOG.md
@@ -1,5 +1,10 @@
# Release Notes for SAML SP

## 2.4.1 - 2020-08-31

### Fixed
- Missing event `EVENT_AFTER_RESPONSE_TO_USER`. Event was added back in.

## 2.4.0 - 2020-08-25

> {warning} Breaking changes: Changed `\flipbox\saml\sp\services\messages\AuthnRequest::EVENT_AFTER_MESSAGE_CREATED` event to use
Expand Down
4 changes: 2 additions & 2 deletions composer.json
@@ -1,7 +1,7 @@
{
"name": "flipboxfactory/saml-sp",
"description": "SAML Service Provider",
"version": "2.4.0",
"version": "2.4.1",
"type": "craft-plugin",
"license": "proprietary",
"keywords": [
Expand Down Expand Up @@ -41,7 +41,7 @@
},
"extra": {
"name": "SAML Service Provider",
"version":"2.4.0",
"version":"2.4.1",
"schemaVersion":"2.0.2",
"handle": "saml-sp",
"class": "flipbox\\saml\\sp\\Saml",
Expand Down
2 changes: 1 addition & 1 deletion src/services/Login.php
Expand Up @@ -68,7 +68,7 @@ public function transformToUser(
$event->user = $user;

$this->trigger(
static::EVENT_BEFORE_RESPONSE_TO_USER,
static::EVENT_AFTER_RESPONSE_TO_USER,
$event
);

Expand Down

0 comments on commit 7648e4a

Please sign in to comment.