passbolt-browser-extension 5.0.0 → 5.0.1
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/CHANGELOG.md +8 -1
- package/Gruntfile.js +1 -1
- package/RELEASE_NOTES.md +6 -38
- package/package.json +5 -2
- package/src/all/webAccessibleResources/passbolt-iframe-app.html +41 -43
- package/src/chrome/manifest.json +1 -1
- package/src/chrome-mv3/manifest.json +1 -1
- package/src/firefox/manifest.json +1 -1
- package/src/safari/manifest.json +1 -1
package/CHANGELOG.md
CHANGED
|
@@ -4,6 +4,12 @@ This project adheres to [Semantic Versioning](http://semver.org/).
|
|
|
4
4
|
|
|
5
5
|
## [Unreleased]
|
|
6
6
|
|
|
7
|
+
## [5.0.1] - 2025-04-14
|
|
8
|
+
### Fixed
|
|
9
|
+
- PB-41438 Prevent users from migrating encrypted notes to cleartext descriptions when editing a resource
|
|
10
|
+
- PB-41540 Display the v5 redesign skeleton while the application is loading
|
|
11
|
+
- PB-41541 Display an ellipsis for long names and usernames on the user badge
|
|
12
|
+
|
|
7
13
|
## [5.0.0] - 2025-04-09
|
|
8
14
|
### Added
|
|
9
15
|
PB-33425 Allow users to reset resource grid columns to default factory settings through the columns settings dropdown
|
|
@@ -2074,7 +2080,8 @@ self registration settings option in the left-side bar
|
|
|
2074
2080
|
- LU: Logged in user
|
|
2075
2081
|
|
|
2076
2082
|
## [4.12.0] - 2024-03-10
|
|
2077
|
-
[Unreleased]: https://github.com/passbolt/passbolt_browser_extension/compare/v5.0.
|
|
2083
|
+
[Unreleased]: https://github.com/passbolt/passbolt_browser_extension/compare/v5.0.1...HEAD
|
|
2084
|
+
[5.0.1]: https://github.com/passbolt/passbolt_browser_extension/compare/v5.0.0...v5.0.1
|
|
2078
2085
|
[5.0.0]: https://github.com/passbolt/passbolt_browser_extension/compare/v4.12.0...v5.0.0
|
|
2079
2086
|
[4.12.0]: https://github.com/passbolt/passbolt_browser_extension/compare/v4.11.0...v4.12.0
|
|
2080
2087
|
[4.11.0]: https://github.com/passbolt/passbolt_browser_extension/compare/v4.10.2...v4.11.0
|
package/Gruntfile.js
CHANGED
|
@@ -38,7 +38,7 @@ module.exports = function (grunt) {
|
|
|
38
38
|
* Import package.json file content
|
|
39
39
|
*/
|
|
40
40
|
var pkg = grunt.file.readJSON('package.json');
|
|
41
|
-
var manifestVersion = pkg.version.replace(/-.*(\.\d*)$/,'$1');
|
|
41
|
+
var manifestVersion = pkg.version.replace(/-.*(\.\d*)$/, '$1');
|
|
42
42
|
|
|
43
43
|
/**
|
|
44
44
|
* Load and enable Tasks
|
package/RELEASE_NOTES.md
CHANGED
|
@@ -1,42 +1,10 @@
|
|
|
1
|
-
Song: https://www.youtube.com/watch?v=
|
|
1
|
+
Song: https://www.youtube.com/watch?v=vdunmVWTxMI
|
|
2
2
|
|
|
3
|
-
|
|
3
|
+
Passbolt v5.0.1 is a maintenance release addressing issues introduced in the major v5.0.0 update, specifically a regression related to the migration of encrypted notes into cleartext descriptions. This behavior has been reverted to align with the v4 approach, as it could reduce the confidentiality of existing resources. Looking ahead, v5.2 will introduce support for having both a secure note and a searchable description, hang tight, we’re almost there.
|
|
4
4
|
|
|
5
|
-
|
|
6
|
-
|
|
7
|
-
Of course, with each major version come the inevitable breaking changes, which we strive to minimize as much as possible. With this release, the minimum server requirement has changed to PHP 8.2 or greater, so be sure to check out our latest blog article on [how to upgrade to PHP 8.2](https://www.passbolt.com/blog/preparing-for-passbolt-v5-php-8-2-requirement). Additionally this is a perfect moment to back up your server data and prepare for the unexpected.
|
|
8
|
-
|
|
9
|
-
Thank you to the community for all your feedback, testing, and support in making this milestone possible. We hope you’ll enjoy what Passbolt v5.0 has to offer and look forward to hearing from you.
|
|
10
|
-
|
|
11
|
-
|
|
12
|
-
### Added
|
|
13
|
-
PB-33425 Allow users to reset resource grid columns to default factory settings through the columns settings dropdown
|
|
14
|
-
PB-35232 Add a resource grid filter to display only private resources
|
|
15
|
-
PB-37332 Rename encrypted description to note and clearly differentiate between the metadata description and the secret note
|
|
16
|
-
PB-37620 Allow users to resize and reorder the users grid
|
|
17
|
-
PB-37638 Add a details sidebar for multiple grid resource selections to allow users to review their selection
|
|
18
|
-
PB-38938 Redirect administrator to a home page instead of the first available settings page
|
|
19
|
-
PB-38940 Organize the administration menu into meaningful sections
|
|
20
|
-
PB-39415 Redesign the application
|
|
21
|
-
PB-39464 Introduce unified and modular resource creation and editing dialogs to support upcoming resource types
|
|
22
|
-
PB-40150 Display a default resource icon in the grid
|
|
5
|
+
As always, thank you to the community for your feedback.
|
|
23
6
|
|
|
24
7
|
### Fixed
|
|
25
|
-
PB-
|
|
26
|
-
PB-
|
|
27
|
-
PB-
|
|
28
|
-
PB-39995 Ease identification of generated organization recovery key file name by including the GPG key identifier
|
|
29
|
-
PB-40268 Display a pending changes banner after modifying administration internationalization settings
|
|
30
|
-
PB-40270 Display a pending changes banner after modifying administration email server settings
|
|
31
|
-
PB-40271 Display a pending changes banner after modifying administration RBAC settings
|
|
32
|
-
PB-40272 Display a pending changes banner after modifying administration users directory settings
|
|
33
|
-
PB-40273 Display a pending changes banner after modifying administration SSO settings
|
|
34
|
-
PB-40669 Display loading feedback in the folder navigation tree during folder loading
|
|
35
|
-
PB-40186 WP6-7.5 Validate the object_type property of v5 secrets to mitigate unwanted content decryption attacks
|
|
36
|
-
PB-40576 Reposition the expiry item in resources grid column settings to reflect its lower display priority in the grid
|
|
37
|
-
PB-41275 Display the complete folder path in sidebar details
|
|
38
|
-
|
|
39
|
-
### Maintenance
|
|
40
|
-
PB-40117 Upgrade browser extensions repositories to node 22
|
|
41
|
-
PB-40687 Upgrade vulnerable library babel and relative
|
|
42
|
-
PB-40688 Upgrade vulnerable library i18next-parser and relative
|
|
8
|
+
- PB-41438 Prevent users from migrating encrypted notes to cleartext descriptions when editing a resource
|
|
9
|
+
- PB-41540 Display the v5 redesign skeleton while the application is loading
|
|
10
|
+
- PB-41541 Display an ellipsis for long names and usernames on the user badge
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "passbolt-browser-extension",
|
|
3
|
-
"version": "5.0.
|
|
3
|
+
"version": "5.0.1",
|
|
4
4
|
"license": "AGPL-3.0",
|
|
5
5
|
"copyright": "Copyright 2025 Passbolt SA",
|
|
6
6
|
"description": "Passbolt web extension for the open source password manager for teams",
|
|
@@ -21,7 +21,7 @@
|
|
|
21
21
|
"locutus": "~2.0.9",
|
|
22
22
|
"openpgp": "^5.11.1",
|
|
23
23
|
"papaparse": "^5.2.0",
|
|
24
|
-
"passbolt-styleguide": "^5.0.
|
|
24
|
+
"passbolt-styleguide": "^5.0.1",
|
|
25
25
|
"react": "17.0.2",
|
|
26
26
|
"react-dom": "17.0.2",
|
|
27
27
|
"secrets-passbolt": "github:passbolt/secrets.js#v2.0.1",
|
|
@@ -69,6 +69,9 @@
|
|
|
69
69
|
"overrides": {
|
|
70
70
|
"web-ext": {
|
|
71
71
|
"@babel/runtime": "^7.27.0"
|
|
72
|
+
},
|
|
73
|
+
"addons-linter": {
|
|
74
|
+
"image-size": "^2.0.2"
|
|
72
75
|
}
|
|
73
76
|
},
|
|
74
77
|
"scripts": {
|
|
@@ -9,56 +9,54 @@
|
|
|
9
9
|
<div id="temporary-skeleton" class="temporary skeleton">
|
|
10
10
|
<div class="page password">
|
|
11
11
|
<div id="app" class="app ready" tabindex="1000">
|
|
12
|
-
<div class="
|
|
13
|
-
<
|
|
14
|
-
|
|
15
|
-
|
|
16
|
-
|
|
17
|
-
|
|
18
|
-
|
|
19
|
-
|
|
20
|
-
|
|
21
|
-
<path d="M12.1114 26.4938V52.609h7.4182c4.9203 0 8.3266-1.0597 10.3704-3.1035 2.0438-2.0438 3.0278-5.5258 3.0278-10.2947 0-4.6175-.9083-7.8724-2.8007-9.7648-1.8924-2.0438-5.0717-2.9522-9.6891-2.9522h-8.3266zM0 16.5776h23.3144c7.0398 0 12.4899 2.0438 16.4261 6.2071 3.9362 4.1633 5.9043 9.9162 5.9043 17.2588 0 3.0278-.3785 5.8286-1.2111 8.3265-.8327 2.498-2.0438 4.8446-3.7091 6.8884-1.9681 2.498-4.3904 4.3147-7.1155 5.4501-2.8007 1.0598-6.4342 1.5896-11.0516 1.5896H12.1114v16.5775H0v-62.298zM70.0188 53.1389H85.158v-9.462H70.9272c-2.8008 0-4.7689.3785-5.8287 1.1354-1.0597.757-1.5896 2.1195-1.5896 4.0119 0 1.5896.4542 2.7251 1.2869 3.4063.8326.6056 2.5736.9084 5.223.9084zM53.9712 16.5776h24.7527c6.2827 0 10.9759 1.4383 14.1551 4.3147 3.1793 2.8765 4.7689 7.1155 4.7689 12.7927v28.6888H65.0985c-4.5417 0-8.0994-1.1354-10.5217-3.4063s-3.6334-5.5258-3.6334-9.7648c0-5.223 1.3625-8.9322 4.1633-11.203 2.8007-2.2709 7.4939-3.4064 14.0794-3.4064h15.8962v-1.1354c0-2.7251-.8326-4.6175-2.4222-5.7529-1.5897-1.1355-4.3904-1.6653-8.5537-1.6653H53.9712v-9.4621zM107.488 52.8356h25.51c2.271 0 3.936-.3784 4.92-1.0597 1.06-.6813 1.59-1.8167 1.59-3.4063 0-1.5897-.53-2.7251-1.59-3.4064-1.059-.7569-2.725-1.1354-4.92-1.1354h-10.446c-6.207 0-10.37-.9841-12.566-2.8765-2.195-1.8924-3.255-5.2987-3.255-10.0676 0-4.9202 1.287-8.5536 3.937-10.9002 2.649-2.3466 6.737-3.482 12.187-3.482h25.964v9.5377h-21.347c-3.482 0-5.753.3028-6.812.9083-1.06.6056-1.59 1.6654-1.59 3.255 0 1.4382.454 2.498 1.362 3.1035.909.6813 2.423.9841 4.391.9841h10.976c4.996 0 8.856 1.2111 11.43 3.5577 2.649 2.3466 3.936 5.6772 3.936 10.0676 0 4.239-1.211 7.721-3.558 10.3704-2.346 2.6493-5.298 4.0119-9.007 4.0119h-31.112v-9.4621zM159.113 52.8356h25.51c2.271 0 3.936-.3784 4.92-1.0597 1.06-.6813 1.59-1.8167 1.59-3.4063 0-1.5897-.53-2.7251-1.59-3.4064-1.059-.7569-2.725-1.1354-4.92-1.1354h-10.446c-6.207 0-10.37-.9841-12.566-2.8765-2.195-1.8924-3.255-5.2987-3.255-10.0676 0-4.9202 1.287-8.5536 3.937-10.9002 2.649-2.3466 6.737-3.482 12.187-3.482h25.964v9.5377h-21.347c-3.482 0-5.753.3028-6.812.9083-1.06.6056-1.59 1.6654-1.59 3.255 0 1.4382.454 2.498 1.362 3.1035.909.6813 2.423.9841 4.391.9841h10.976c4.996 0 8.856 1.2111 11.43 3.5577 2.649 2.3466 3.936 5.6772 3.936 10.0676 0 4.239-1.211 7.721-3.558 10.3704-2.346 2.6493-5.298 4.0119-9.007 4.0119h-31.263v-9.4621h.151zM223.607 0v16.5775h10.37c4.617 0 8.251.5298 11.052 1.6653 2.8 1.0597 5.147 2.8764 7.115 5.3744 1.665 2.1195 2.876 4.3904 3.709 6.9641.833 2.4979 1.211 5.2987 1.211 8.3265 0 7.3426-1.968 13.0955-5.904 17.2588-3.936 4.1633-9.386 6.2071-16.426 6.2071h-23.315V0h12.188zm7.342 26.4937h-7.418v26.1152h8.326c4.618 0 7.873-.9841 9.69-2.8765 1.892-1.9681 2.8-5.223 2.8-9.9162 0-4.7689-1.059-8.1752-3.103-10.219-1.968-2.1195-5.45-3.1035-10.295-3.1035zM274.172 39.5132c0 4.3904.984 7.721 3.027 10.219 2.044 2.4223 4.845 3.6334 8.554 3.6334 3.633 0 6.434-1.2111 8.554-3.6334 2.044-2.4223 3.103-5.8286 3.103-10.219s-1.059-7.721-3.103-10.1433c-2.044-2.4222-4.845-3.6334-8.554-3.6334-3.633 0-6.434 1.2112-8.554 3.6334-2.043 2.4223-3.027 5.8286-3.027 10.1433zm35.88 0c0 7.1912-2.196 12.9441-6.586 17.2588-4.39 4.2389-10.219 6.4341-17.637 6.4341-7.418 0-13.323-2.1195-17.713-6.4341-4.391-4.3147-6.586-9.9919-6.586-17.1831 0-7.1911 2.195-12.944 6.586-17.2587 4.39-4.3147 10.295-6.5099 17.713-6.5099 7.342 0 13.247 2.1952 17.637 6.5099 4.39 4.239 6.586 9.9919 6.586 17.183zM329.884 62.3737h-12.565V0h12.565v62.3737zM335.712 16.5775h8.554V0h12.111v16.5775h12.793v9.1592h-12.793v18.4699c0 3.4063.606 5.7529 1.742 7.1154 1.135 1.2869 3.179 1.9681 6.055 1.9681h4.996v9.1593h-11.127c-4.466 0-7.873-1.2112-10.295-3.7091-2.346-2.498-3.558-6.0557-3.558-10.6732V25.7367h-8.553v-9.1592h.075z" fill="var(--icon-color)"></path>
|
|
22
|
-
<path d="M446.532 30.884L419.433 5.52579c-2.347-2.19519-6.056-2.19519-8.478 0L393.923 21.4977c4.466 1.6653 7.948 5.3744 9.235 9.9919h23.012c1.211 0 2.119.984 2.119 2.1195v3.482c0 1.2111-.984 2.1195-2.119 2.1195h-2.649v4.9202c0 1.2112-.985 2.1195-2.12 2.1195h-5.829c-1.211 0-2.119-.984-2.119-2.1195v-4.9202h-10.219c-1.287 4.6932-4.769 8.478-9.311 10.0676l17.108 15.9719c2.346 2.1952 6.055 2.1952 8.478 0l27.023-25.3582c2.574-2.4223 2.574-6.5099 0-9.0079z" fill="#E10600"></path>
|
|
23
|
-
<path d="M388.927 28.3862c-1.135 0-2.195.3028-3.179.757-2.271 1.1354-3.86 3.482-3.86 6.2071 0 2.6493 1.438 4.9202 3.633 6.1314.984.5298 2.12.8326 3.331.8326 3.86 0 6.964-3.1035 6.964-6.964.151-3.7848-3.028-6.9641-6.889-6.9641z" fill="#E10600"></path>
|
|
24
|
-
</g>
|
|
25
|
-
<defs>
|
|
26
|
-
<clipPath id="clip0">
|
|
27
|
-
<path fill="#fff" d="M0 0h448.5v78.9511H0z"></path>
|
|
28
|
-
</clipPath>
|
|
29
|
-
</defs>
|
|
30
|
-
</svg>
|
|
12
|
+
<div class="panel main">
|
|
13
|
+
<div class="panel left">
|
|
14
|
+
<div class="sidebar-content">
|
|
15
|
+
<div class="top-bar-left">
|
|
16
|
+
</div>
|
|
17
|
+
<div class="main-action-wrapper">
|
|
18
|
+
</div>
|
|
19
|
+
<div class="sidebar-content-left">
|
|
20
|
+
</div>
|
|
31
21
|
</div>
|
|
32
22
|
</div>
|
|
33
|
-
<div class="
|
|
34
|
-
<
|
|
35
|
-
<div class="
|
|
36
|
-
|
|
37
|
-
|
|
38
|
-
<div class="
|
|
39
|
-
<
|
|
40
|
-
<
|
|
41
|
-
<
|
|
42
|
-
|
|
43
|
-
|
|
44
|
-
|
|
23
|
+
<div class="panel middle">
|
|
24
|
+
<div class="header">
|
|
25
|
+
<div class="header-left">
|
|
26
|
+
</div>
|
|
27
|
+
<div class="header-right">
|
|
28
|
+
<div class="profile-wrapper">
|
|
29
|
+
<div class="user profile dropdown">
|
|
30
|
+
<button type="button" class="avatar-with-name button avatar-button">
|
|
31
|
+
<span class="avatar user-avatar">
|
|
32
|
+
<span class="default-avatar">
|
|
33
|
+
<svg xmlns="http://www.w3.org/2000/svg" width="42" height="42" viewBox="0 0 42 42" fill="none">
|
|
34
|
+
<circle id="background" cx="21" cy="21" r="21" fill="var(--Avatar-Avatar-background)"/>
|
|
35
|
+
</svg>
|
|
36
|
+
</span>
|
|
37
|
+
</span>
|
|
38
|
+
</button>
|
|
39
|
+
</div>
|
|
45
40
|
</div>
|
|
46
41
|
</div>
|
|
47
|
-
</
|
|
48
|
-
|
|
49
|
-
|
|
50
|
-
|
|
51
|
-
|
|
52
|
-
|
|
53
|
-
|
|
54
|
-
|
|
55
|
-
|
|
42
|
+
</div>
|
|
43
|
+
<div class="middle-right">
|
|
44
|
+
<div class="breadcrumbs-and-grid">
|
|
45
|
+
<div class="top-bar">
|
|
46
|
+
<div class="breadcrumbs">
|
|
47
|
+
</div>
|
|
48
|
+
<div class="action-bar">
|
|
49
|
+
</div>
|
|
50
|
+
</div>
|
|
51
|
+
<div class="tableview-content">
|
|
52
|
+
</div>
|
|
53
|
+
</div>
|
|
54
|
+
<div class="panel aside">
|
|
55
|
+
</div>
|
|
56
|
+
</div>
|
|
56
57
|
</div>
|
|
57
58
|
</div>
|
|
58
59
|
</div>
|
|
59
|
-
<footer>
|
|
60
|
-
<div class="footer"></div>
|
|
61
|
-
</footer>
|
|
62
60
|
</div>
|
|
63
61
|
</div>
|
|
64
62
|
<script src="js/dist/app.js"></script>
|
package/src/chrome/manifest.json
CHANGED