passbolt-browser-extension 4.7.0-rc.0 → 4.7.0

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/RELEASE_NOTES.md CHANGED
@@ -1,8 +1,16 @@
1
1
  Song: https://www.youtube.com/watch?v=3L4YrGaR8E4
2
2
 
3
- Passbolt is pleased to announce that the v4.7.0 Release Candidate is officially available for testing. This is a maintenance release containing bug fixes for issues reported by the community and preparing the browser extension migration to the manifest version 3. As always, your feedback is invaluable, please share and report any issues you come across.
3
+ Passbolt v4.7 is a maintenance release that resolves multiple issues identified by the community.
4
+ Furthermore, this release supports the commitment to improving customization options and integration features, making it easier for organizations to tailor the system to their specific needs.
4
5
 
5
- Thank you for your support! ♥️
6
+ A key enhancement in this release is the ability for administrators to use custom SSL certificates for SMTP and Users directory server connections (PRO only).
7
+ These long-awaited features are particularly beneficial for organizations operating in air-gapped environments or those using their own root CAs, enabling passbolt to more securely integrate with internal communication tools.
8
+ All of these customizations are visible in the API status report of the administration workspace, providing a clear and manageable overview for administrators.
9
+
10
+ Moreover, the integration with user directories has been enhanced, now enabling the synchronization of user accounts using multiple fields as email identifiers.
11
+ This allows organizations with heterogeneous data environments to synchronize more seamlessly with Passbolt.
12
+ This improvement is part of a broader initiative aimed at modernizing the integration with your user directories.
13
+ Stay tuned, more enhancements are planned for future releases.
6
14
 
7
15
  ## [4.7.0] - 2024-04-26
8
16
  ### Added
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "passbolt-browser-extension",
3
- "version": "4.7.0-rc.0",
3
+ "version": "4.7.0",
4
4
  "license": "AGPL-3.0",
5
5
  "copyright": "Copyright 2022 Passbolt SA",
6
6
  "description": "Passbolt web extension for the open source password manager for teams",
@@ -19,7 +19,7 @@ import PassphraseStorageService from "../session_storage/passphraseStorageServic
19
19
  const topLevelAlarmMapping = {
20
20
  [StartLoopAuthSessionCheckService.ALARM_NAME]: StartLoopAuthSessionCheckService.handleAuthStatusCheckAlarm,
21
21
  [PassphraseStorageService.ALARM_NAME]: PassphraseStorageService.handleFlushEvent,
22
- [KeepSessionAliveService.ALARM_NAME]: KeepSessionAliveService.stop,
22
+ [KeepSessionAliveService.ALARM_NAME]: KeepSessionAliveService.handleKeepSessionAlive,
23
23
  };
24
24
 
25
25
  /**