Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
10 changes: 10 additions & 0 deletions packages/react/changelog.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,13 @@
## 3.0.0

### Major changes

- The deprecated `setShortSessionCookie` prop to `CorbadoAuth` has been removed (option to configure if the old short-term session value should be stored as a cookie)
- The deprecated `cbo_short_session` cookie has been removed. Migration guide:
- Use `cbo_session_token` cookie instead (if your frontend or backend relies on the `cbo_short_session` cookie)
- The local-storage entries with keys `cbo_session_token` and `cbo_short_session` are not written anymore. Migration guide:
- Use `cbo_session_token` cookie to retrieve the session-token (if your frontend relies on local-storage entries)

## 2.19.0

- Add `initialAutoFocus` prop to `CorbadoAuth` component to disable automatic focus of input fields in signup-init and login-init blocks.
Expand Down
10 changes: 10 additions & 0 deletions packages/web-js/changelog.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,13 @@
## 3.0.0

### Major changes

- The deprecated `setShortSessionCookie` prop to `Corbado.mountAuthUI` has been removed (option to configure if the old short-term session value should be stored as a cookie)
- The deprecated `cbo_short_session` cookie has been removed. Migration guide:
- Use `cbo_session_token` cookie instead (if your frontend or backend relies on the `cbo_short_session` cookie)
- The local-storage entries with keys `cbo_session_token` and `cbo_short_session` are not written anymore. Migration guide:
- Use `cbo_session_token` cookie to retrieve the session-token (if your frontend relies on local-storage entries)

## 2.19.0

- Add `initialAutoFocus` prop to `Corbado.mountAuthUI` to disable automatic focus of input fields in signup-init and login-init blocks.
Expand Down
Loading