@quenty/permissionprovider 14.7.2-canary.499.60b3012.0 → 14.7.2-canary.500.0c613a3.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
- ## [14.7.2-canary.499.60b3012.0](https://github.com/Quenty/NevermoreEngine/compare/@quenty/permissionprovider@14.7.1...@quenty/permissionprovider@14.7.2-canary.499.60b3012.0) (2024-09-24)
6
+ ## [14.7.2-canary.500.0c613a3.0](https://github.com/Quenty/NevermoreEngine/compare/@quenty/permissionprovider@14.7.1...@quenty/permissionprovider@14.7.2-canary.500.0c613a3.0) (2024-09-25)
7
7
 
8
- **Note:** Version bump only for package @quenty/permissionprovider
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.7.2-canary.499.60b3012.0",
3
+ "version": "14.7.2-canary.500.0c613a3.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.4.0",
29
- "@quenty/brio": "14.5.1-canary.499.60b3012.0",
30
- "@quenty/grouputils": "10.4.0",
31
- "@quenty/loader": "10.4.0",
28
+ "@quenty/baseobject": "10.4.1-canary.500.0c613a3.0",
29
+ "@quenty/brio": "14.5.1-canary.500.0c613a3.0",
30
+ "@quenty/grouputils": "10.4.1-canary.500.0c613a3.0",
31
+ "@quenty/loader": "10.4.1-canary.500.0c613a3.0",
32
32
  "@quenty/maid": "3.3.0",
33
- "@quenty/playerutils": "8.5.1-canary.499.60b3012.0",
34
- "@quenty/promise": "10.4.0",
35
- "@quenty/remoting": "12.6.1-canary.499.60b3012.0",
36
- "@quenty/rx": "13.5.1-canary.499.60b3012.0",
37
- "@quenty/servicebag": "11.5.1",
33
+ "@quenty/playerutils": "8.5.1-canary.500.0c613a3.0",
34
+ "@quenty/promise": "10.4.1-canary.500.0c613a3.0",
35
+ "@quenty/remoting": "12.6.1-canary.500.0c613a3.0",
36
+ "@quenty/rx": "13.5.1-canary.500.0c613a3.0",
37
+ "@quenty/servicebag": "11.5.2-canary.500.0c613a3.0",
38
38
  "@quenty/table": "3.5.0"
39
39
  },
40
40
  "publishConfig": {
41
41
  "access": "public"
42
42
  },
43
- "gitHead": "60b3012c35a2bf7c3c6a01ec440f9d639b9ad0cc"
43
+ "gitHead": "0c613a3ae0b6ba6a4cda511f572220bfa951c70d"
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"):format(tostring(result))
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"):format(tostring(result)))
141
+ warn(string.format("[BasePermissionProvider] - Failed retrieval due to %q", tostring(result)))
142
142
  return false
143
143
  end
144
144