@adobe/helix-config 4.6.2 → 4.7.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 +14 -0
- package/package.json +1 -1
- package/src/config-view.js +3 -0
package/CHANGELOG.md
CHANGED
|
@@ -1,3 +1,17 @@
|
|
|
1
|
+
## [4.7.1](https://github.com/adobe/helix-config/compare/v4.7.0...v4.7.1) (2024-11-14)
|
|
2
|
+
|
|
3
|
+
|
|
4
|
+
### Bug Fixes
|
|
5
|
+
|
|
6
|
+
* also add unresolved groups ([#213](https://github.com/adobe/helix-config/issues/213)) ([af67827](https://github.com/adobe/helix-config/commit/af67827952f5b55d4d57a63ff08c522192271473))
|
|
7
|
+
|
|
8
|
+
# [4.7.0](https://github.com/adobe/helix-config/compare/v4.6.2...v4.7.0) (2024-11-13)
|
|
9
|
+
|
|
10
|
+
|
|
11
|
+
### Features
|
|
12
|
+
|
|
13
|
+
* keep group information in role for auto-migrate in admin ([#212](https://github.com/adobe/helix-config/issues/212)) ([297c482](https://github.com/adobe/helix-config/commit/297c482ff33ffe3f09da4001f342afc2176178a6))
|
|
14
|
+
|
|
1
15
|
## [4.6.2](https://github.com/adobe/helix-config/compare/v4.6.1...v4.6.2) (2024-11-10)
|
|
2
16
|
|
|
3
17
|
|
package/package.json
CHANGED
package/src/config-view.js
CHANGED
|
@@ -353,6 +353,9 @@ function computeSiteAdminRoles(admin, orgConfig, configGroups = {}) {
|
|
|
353
353
|
if (entry.indexOf('@') > 0) {
|
|
354
354
|
users.add(entry);
|
|
355
355
|
} else if (entry.startsWith('groups/') && entry.endsWith('.json')) {
|
|
356
|
+
// keep entry in list so that admin can auto-migrate updates to the groups json
|
|
357
|
+
// TODO: remove after v4 EOL
|
|
358
|
+
users.add(entry);
|
|
356
359
|
for (const email of resolveGroup(configGroups, entry.substring(7, entry.length - 5))) {
|
|
357
360
|
users.add(email);
|
|
358
361
|
}
|