diff --git a/CHANGELOG.md b/CHANGELOG.md index 5f1b9f2e..472d9de0 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -3,8 +3,16 @@ All notable changes to this project will be documented in this file. This project adheres to [Semantic Versioning](http://semver.org/). ## [Unreleased] +## [4.8.2] - 2024-06-13 +### Improved +- PB-33686 As a user I should be signed out after browser update + +### Fixed +- PB-33727 Fix session extension, service worker awaken and user instance storage not set +- PB-33801 Remove active account cache in memory + ## [4.8.1] - 2024-05-18 -### Fix +### Fixed - PB-33595 As a user running an instance serving an invalid certificate I should be able to sync the gpgkeyring ## [4.8.0] - 2024-05-16 @@ -1623,8 +1631,9 @@ self registration settings option in the left-side bar - AP: User with plugin installed - LU: Logged in user -[Unreleased]: https://github.com/passbolt/passbolt_browser_extension/compare/v4.8.1...HEAD -[4.8.0]: https://github.com/passbolt/passbolt_browser_extension/compare/v4.8.0...4.8.1 +[Unreleased]: https://github.com/passbolt/passbolt_browser_extension/compare/v4.8.2...HEAD +[4.8.2]: https://github.com/passbolt/passbolt_browser_extension/compare/v4.8.1...4.8.2 +[4.8.1]: https://github.com/passbolt/passbolt_browser_extension/compare/v4.8.0...4.8.1 [4.8.0]: https://github.com/passbolt/passbolt_browser_extension/compare/v4.7.8...4.8.0 [4.7.8]: https://github.com/passbolt/passbolt_browser_extension/compare/v4.7.7...v4.7.8 [4.7.7]: https://github.com/passbolt/passbolt_browser_extension/compare/v4.7.6...v4.7.7 diff --git a/RELEASE_NOTES.md b/RELEASE_NOTES.md index 96fba600..e8f311f9 100644 --- a/RELEASE_NOTES.md +++ b/RELEASE_NOTES.md @@ -1,11 +1,13 @@ -Song: https://www.youtube.com/watch?v=hbe3CQamF8k +Song: https://www.youtube.com/watch?v=OypXGyN6OZw -Passbolt v4.8.1 is a maintenance update that addresses issues related to servers serving invalid SSL certificates, which affected the accessibility of the API with certain user journeys. +Passbolt v4.8.2 is a maintenance update that addresses issues related to MV3. We hope these updates enhance your experience with Passbolt. Your feedback is always valuable to us. -## [4.8.1] - 2024-05-18 -### Fix -- PB-33595 As a user running an instance serving an invalid certificate I should be able to sync the gpgkeyring -- PB-33596 As a user running an instance serving an invalid certificate I cannot sync my account settings -- PB-33597 As a user running an instance serving an invalid certificate I cannot install passbolt extension using an API < v3 +## [4.8.2] - 2024-06-13 +### Improved +- PB-33686 As a user I should be signed out after browser update + +### Fixed +- PB-33727 Fix session extension, service worker awaken and user instance storage not set +- PB-33801 Remove active account cache in memory diff --git a/package-lock.json b/package-lock.json index 82b58af6..534e214b 100644 --- a/package-lock.json +++ b/package-lock.json @@ -1,12 +1,12 @@ { "name": "passbolt-browser-extension", - "version": "4.8.1", + "version": "4.8.2-rc.0", "lockfileVersion": 2, "requires": true, "packages": { "": { "name": "passbolt-browser-extension", - "version": "4.8.1", + "version": "4.8.2-rc.0", "license": "AGPL-3.0", "dependencies": { "await-lock": "^2.1.0", diff --git a/package.json b/package.json index 3e2755e4..44820cc0 100644 --- a/package.json +++ b/package.json @@ -1,6 +1,6 @@ { "name": "passbolt-browser-extension", - "version": "4.8.1", + "version": "4.8.2-rc.0", "license": "AGPL-3.0", "copyright": "Copyright 2022 Passbolt SA", "description": "Passbolt web extension for the open source password manager for teams", diff --git a/src/chrome-mv3/manifest.json b/src/chrome-mv3/manifest.json index eac3eb9b..61d8006b 100644 --- a/src/chrome-mv3/manifest.json +++ b/src/chrome-mv3/manifest.json @@ -2,7 +2,7 @@ "manifest_version": 3, "name": "__MSG_appName__", "short_name": "passbolt", - "version": "4.8.1", + "version": "4.8.2", "description": "__MSG_appDescription__", "default_locale": "en", "externally_connectable": { diff --git a/src/chrome/manifest.json b/src/chrome/manifest.json index 1c2976ae..1ae62da8 100644 --- a/src/chrome/manifest.json +++ b/src/chrome/manifest.json @@ -2,7 +2,7 @@ "manifest_version": 2, "name": "__MSG_appName__", "short_name": "passbolt", - "version": "4.8.1", + "version": "4.8.2", "description": "__MSG_appDescription__", "default_locale": "en", "externally_connectable": {}, diff --git a/src/firefox/manifest.json b/src/firefox/manifest.json index d68ce042..bb9bbfc6 100644 --- a/src/firefox/manifest.json +++ b/src/firefox/manifest.json @@ -2,7 +2,7 @@ "manifest_version": 2, "name": "__MSG_appName__", "short_name": "passbolt", - "version": "4.8.1", + "version": "4.8.2", "description": "__MSG_appDescription__", "default_locale": "en", "browser_specific_settings": { diff --git a/src/safari/manifest.json b/src/safari/manifest.json index 241058a0..2094db4f 100644 --- a/src/safari/manifest.json +++ b/src/safari/manifest.json @@ -2,7 +2,7 @@ "manifest_version": 3, "name": "__MSG_appName__", "short_name": "passbolt", - "version": "4.8.1", + "version": "4.8.2", "description": "__MSG_appDescription__", "default_locale": "en", "externally_connectable": {},