Skip to content

Commit

Permalink
Merge branch 'feature/PB-33598_Bump-to-version-481' into 'release'
Browse files Browse the repository at this point in the history
PB-33598 - Bump to version 4.8.1

See merge request passbolt/passbolt-browser-extension!884
  • Loading branch information
cedricalfonsi committed May 17, 2024
2 parents ce79251 + 364e4db commit be4e7e6
Show file tree
Hide file tree
Showing 8 changed files with 19 additions and 20 deletions.
7 changes: 6 additions & 1 deletion CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,10 @@ All notable changes to this project will be documented in this file.
This project adheres to [Semantic Versioning](http://semver.org/).

## [Unreleased]
## [4.8.1] - 2024-05-17
### Fix
- 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
### Maintenance
- PB-33541 Chrome Extension Manifest upgrade to version 3
Expand Down Expand Up @@ -1619,7 +1623,8 @@ 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.0...HEAD
[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
[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
Expand Down
18 changes: 6 additions & 12 deletions RELEASE_NOTES.md
Original file line number Diff line number Diff line change
@@ -1,17 +1,11 @@
Song: https://www.youtube.com/watch?v=hbe3CQamF8k

Passbolt v4.8.0 is a maintenance release focusing on the migration of the browser extension to the latest MV3 architecture and adding tools for administrators to help them manage their instance.

This release marks the introduction of the first version of the MV3 extension for Chrome. The transition to MV3 has been in progress since last year, with changes rolled out progressively until now. The base code between MV2 and MV3 is nearly identical, and both extensions will continue to be maintained in parallel. A detailed blog post explaining our migration process will be coming soon.

A new feature allowing administrators to purge audit logs from the command line was added. This will help reclaim database space for logs that are no longer relevant, improving the performance of long-running instances while keeping necessary logs for forensic and audit activities.

A new command has also been added to help administrators debug issues with their SMTP server. Email functionality is crucial for Passbolt, and diagnosing connection problems is not always straightforward. This new command aims to simplify the process when connecting to a new SMTP server as well as understand errors that could occur on existing integration.

As passbolt moves towards supporting more content types this year, significant work has been done to enhance performance across the entire stack, from the database to the API and the browser extension. This release includes some of these improvements, with more enhancements on the way in the next coming release v4.9.0.
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.

We hope these updates enhance your experience with Passbolt. Your feedback is always valuable to us.

## [4.8.0] - 2024-05-16
### Maintenance
- PB-33541 Chrome Extension Manifest upgrade to version 3
## [4.8.1] - 2024-05-17
### 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 changes: 2 additions & 2 deletions package-lock.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "passbolt-browser-extension",
"version": "4.8.0",
"version": "4.8.1-rc.0",
"license": "AGPL-3.0",
"copyright": "Copyright 2022 Passbolt SA",
"description": "Passbolt web extension for the open source password manager for teams",
Expand Down
2 changes: 1 addition & 1 deletion src/chrome-mv3/manifest.json
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
"manifest_version": 3,
"name": "__MSG_appName__",
"short_name": "passbolt",
"version": "4.8.0",
"version": "4.8.1",
"description": "__MSG_appDescription__",
"default_locale": "en",
"externally_connectable": {
Expand Down
2 changes: 1 addition & 1 deletion src/chrome/manifest.json
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
"manifest_version": 2,
"name": "__MSG_appName__",
"short_name": "passbolt",
"version": "4.8.0",
"version": "4.8.1",
"description": "__MSG_appDescription__",
"default_locale": "en",
"externally_connectable": {},
Expand Down
2 changes: 1 addition & 1 deletion src/firefox/manifest.json
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
"manifest_version": 2,
"name": "__MSG_appName__",
"short_name": "passbolt",
"version": "4.8.0",
"version": "4.8.1",
"description": "__MSG_appDescription__",
"default_locale": "en",
"browser_specific_settings": {
Expand Down
2 changes: 1 addition & 1 deletion src/safari/manifest.json
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
"manifest_version": 3,
"name": "__MSG_appName__",
"short_name": "passbolt",
"version": "4.8.0",
"version": "4.8.1",
"description": "__MSG_appDescription__",
"default_locale": "en",
"externally_connectable": {},
Expand Down

0 comments on commit be4e7e6

Please sign in to comment.