@quenty/permissionprovider 14.7.2-canary.499.60b3012.0 → 14.8.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/CHANGELOG.md
CHANGED
|
@@ -3,9 +3,13 @@
|
|
|
3
3
|
All notable changes to this project will be documented in this file.
|
|
4
4
|
See [Conventional Commits](https://conventionalcommits.org) for commit guidelines.
|
|
5
5
|
|
|
6
|
-
|
|
6
|
+
# [14.8.0](https://github.com/Quenty/NevermoreEngine/compare/@quenty/permissionprovider@14.7.1...@quenty/permissionprovider@14.8.0) (2024-09-25)
|
|
7
7
|
|
|
8
|
-
|
|
8
|
+
|
|
9
|
+
### Bug Fixes
|
|
10
|
+
|
|
11
|
+
* Fix renaming errors ([db49cf5](https://github.com/Quenty/NevermoreEngine/commit/db49cf5177c834efe284e3e4e4a0d97490866b03))
|
|
12
|
+
* Fix syntax error ([496fc5b](https://github.com/Quenty/NevermoreEngine/commit/496fc5bb230a226ec6c86a8dfd025b8e326d92d8))
|
|
9
13
|
|
|
10
14
|
|
|
11
15
|
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@quenty/permissionprovider",
|
|
3
|
-
"version": "14.
|
|
3
|
+
"version": "14.8.0",
|
|
4
4
|
"description": "Permission provider for Roblox, including authenticating against group membership",
|
|
5
5
|
"keywords": [
|
|
6
6
|
"Roblox",
|
|
@@ -25,20 +25,20 @@
|
|
|
25
25
|
"Quenty"
|
|
26
26
|
],
|
|
27
27
|
"dependencies": {
|
|
28
|
-
"@quenty/baseobject": "10.
|
|
29
|
-
"@quenty/brio": "14.
|
|
30
|
-
"@quenty/grouputils": "10.
|
|
31
|
-
"@quenty/loader": "10.
|
|
32
|
-
"@quenty/maid": "3.3.0",
|
|
33
|
-
"@quenty/playerutils": "8.
|
|
34
|
-
"@quenty/promise": "10.
|
|
35
|
-
"@quenty/remoting": "12.
|
|
36
|
-
"@quenty/rx": "13.
|
|
37
|
-
"@quenty/servicebag": "11.
|
|
38
|
-
"@quenty/table": "3.5.0"
|
|
28
|
+
"@quenty/baseobject": "^10.5.0",
|
|
29
|
+
"@quenty/brio": "^14.6.0",
|
|
30
|
+
"@quenty/grouputils": "^10.5.0",
|
|
31
|
+
"@quenty/loader": "^10.5.0",
|
|
32
|
+
"@quenty/maid": "^3.3.0",
|
|
33
|
+
"@quenty/playerutils": "^8.6.0",
|
|
34
|
+
"@quenty/promise": "^10.5.0",
|
|
35
|
+
"@quenty/remoting": "^12.7.0",
|
|
36
|
+
"@quenty/rx": "^13.6.0",
|
|
37
|
+
"@quenty/servicebag": "^11.6.0",
|
|
38
|
+
"@quenty/table": "^3.5.0"
|
|
39
39
|
},
|
|
40
40
|
"publishConfig": {
|
|
41
41
|
"access": "public"
|
|
42
42
|
},
|
|
43
|
-
"gitHead": "
|
|
43
|
+
"gitHead": "41715b15e2b48b2d22ff4f5277a8d4b7a0d32ef3"
|
|
44
44
|
}
|
|
@@ -73,7 +73,7 @@ function BasePermissionProvider:IsPermissionLevel(player, permissionLevel)
|
|
|
73
73
|
|
|
74
74
|
local ok, result = promise:Yield()
|
|
75
75
|
if not ok then
|
|
76
|
-
warn("[BasePermissionProvider] - %s"
|
|
76
|
+
warn(string.format("[BasePermissionProvider] - %s", tostring(result)))
|
|
77
77
|
return false
|
|
78
78
|
end
|
|
79
79
|
|
|
@@ -138,7 +138,7 @@ function BasePermissionProvider:_onServerInvoke(player)
|
|
|
138
138
|
local promise = self:PromiseIsAdmin(player)
|
|
139
139
|
local ok, result = promise:Yield()
|
|
140
140
|
if not ok then
|
|
141
|
-
warn(("[BasePermissionProvider] - Failed retrieval due to %q"
|
|
141
|
+
warn(string.format("[BasePermissionProvider] - Failed retrieval due to %q", tostring(result)))
|
|
142
142
|
return false
|
|
143
143
|
end
|
|
144
144
|
|