strapi-plugin-magic-sessionmanager 4.5.10 → 4.5.11
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 +7 -0
- package/dist/server/index.js +6 -1
- package/dist/server/index.mjs +6 -1
- package/package.json +1 -1
package/CHANGELOG.md
CHANGED
|
@@ -1,3 +1,10 @@
|
|
|
1
|
+
## [4.5.11](https://github.com/Schero94/Magic-Sessionmanager/compare/v4.5.10...v4.5.11) (2026-04-21)
|
|
2
|
+
|
|
3
|
+
|
|
4
|
+
### Bug Fixes
|
|
5
|
+
|
|
6
|
+
* **rbac:** make plugin::magic-sessionmanager.access visible in role editor ([21779d8](https://github.com/Schero94/Magic-Sessionmanager/commit/21779d824294c962db9b3dc73e8f0ee2036e361c))
|
|
7
|
+
|
|
1
8
|
## [4.5.10](https://github.com/Schero94/Magic-Sessionmanager/compare/v4.5.9...v4.5.10) (2026-04-21)
|
|
2
9
|
|
|
3
10
|
|
package/dist/server/index.js
CHANGED
|
@@ -129,6 +129,11 @@ var register$1 = async ({ strapi: strapi2 }) => {
|
|
|
129
129
|
section: "plugins",
|
|
130
130
|
displayName: "Access the Session Manager plugin",
|
|
131
131
|
uid: "access",
|
|
132
|
+
// Strapi 5's role editor only renders checkboxes for actions that
|
|
133
|
+
// belong to a subCategory. Without this field the permission
|
|
134
|
+
// exists but is invisible in Settings → Roles → Plugins → Session
|
|
135
|
+
// Manager, so admins cannot grant or revoke it.
|
|
136
|
+
subCategory: "General",
|
|
132
137
|
pluginName: "magic-sessionmanager"
|
|
133
138
|
}
|
|
134
139
|
]);
|
|
@@ -12699,7 +12704,7 @@ var session$1 = ({ strapi: strapi2 }) => {
|
|
|
12699
12704
|
}
|
|
12700
12705
|
};
|
|
12701
12706
|
};
|
|
12702
|
-
const version$1 = "4.5.
|
|
12707
|
+
const version$1 = "4.5.10";
|
|
12703
12708
|
const require$$2 = {
|
|
12704
12709
|
version: version$1
|
|
12705
12710
|
};
|
package/dist/server/index.mjs
CHANGED
|
@@ -116,6 +116,11 @@ var register$1 = async ({ strapi: strapi2 }) => {
|
|
|
116
116
|
section: "plugins",
|
|
117
117
|
displayName: "Access the Session Manager plugin",
|
|
118
118
|
uid: "access",
|
|
119
|
+
// Strapi 5's role editor only renders checkboxes for actions that
|
|
120
|
+
// belong to a subCategory. Without this field the permission
|
|
121
|
+
// exists but is invisible in Settings → Roles → Plugins → Session
|
|
122
|
+
// Manager, so admins cannot grant or revoke it.
|
|
123
|
+
subCategory: "General",
|
|
119
124
|
pluginName: "magic-sessionmanager"
|
|
120
125
|
}
|
|
121
126
|
]);
|
|
@@ -12686,7 +12691,7 @@ var session$1 = ({ strapi: strapi2 }) => {
|
|
|
12686
12691
|
}
|
|
12687
12692
|
};
|
|
12688
12693
|
};
|
|
12689
|
-
const version$1 = "4.5.
|
|
12694
|
+
const version$1 = "4.5.10";
|
|
12690
12695
|
const require$$2 = {
|
|
12691
12696
|
version: version$1
|
|
12692
12697
|
};
|
package/package.json
CHANGED