diff --git a/packages/react/changelog.md b/packages/react/changelog.md index 85aa16fba..f0c43cd24 100644 --- a/packages/react/changelog.md +++ b/packages/react/changelog.md @@ -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. diff --git a/packages/web-js/changelog.md b/packages/web-js/changelog.md index 0439e4b40..1035618bd 100644 --- a/packages/web-js/changelog.md +++ b/packages/web-js/changelog.md @@ -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.