Skip to content

Commit

Permalink
Merge pull request #2893 from mainmatter/v7-guide
Browse files Browse the repository at this point in the history
doc: v7 release guide
  • Loading branch information
BobrImperator authored Dec 29, 2024
2 parents b14546a + 997c347 commit d00cf14
Show file tree
Hide file tree
Showing 2 changed files with 11 additions and 0 deletions.
2 changes: 2 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -53,6 +53,7 @@ authorization mechanisms__.

* [Managing a current User](guides/managing-current-user.md)
* [GitHub authorization with torii](guides/auth-torii-with-github.md)
* [Upgrading to v7](guides/upgrade-to-v7.md)
* [Upgrading to v4](guides/upgrade-to-v4.md)
* [Upgrading to v3](guides/upgrade-to-v3.md)

Expand Down Expand Up @@ -718,6 +719,7 @@ If you're an `ember-mocha` user, we can recommend to check out this
## Other guides

* [Managing current User](guides/managing-current-user.md)
* [Upgrading to v7](guides/upgrade-to-v7.md)
* [Upgrading to v4](guides/upgrade-to-v4.md)
* [Upgrading to v3](guides/upgrade-to-v3.md)

Expand Down
9 changes: 9 additions & 0 deletions guides/upgrade-to-v7.md
Original file line number Diff line number Diff line change
Expand Up @@ -59,3 +59,12 @@ import AdaptiveStore from 'ember-simple-auth/session-stores/adaptive';

export default class SessionStore extends AdaptiveStore {}
```

## Removed RSVP

Async APIs were built on top of RSVP.Promise, we're no longer relying on it and use the native Promise instead.

## Deprecated `responseJSON` and `responseText` fields returned by OAuth2PasswordGrantAuthenticator.

For historical reasons, when Ajax was still in use. OAuth2PasswordGrantAuthenticator adds `responseJSON` and `responseText` properties to the response returned by its #authenticated method.
These properties are deprecated and will be removed with later releases.

0 comments on commit d00cf14

Please sign in to comment.