@quenty/grouputils 10.19.0 → 10.20.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 CHANGED
@@ -3,6 +3,14 @@
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
+ ## [10.20.1](https://github.com/Quenty/NevermoreEngine/compare/@quenty/grouputils@10.20.0...@quenty/grouputils@10.20.1) (2026-05-30)
7
+
8
+ **Note:** Version bump only for package @quenty/grouputils
9
+
10
+ # [10.20.0](https://github.com/Quenty/NevermoreEngine/compare/@quenty/grouputils@10.19.0...@quenty/grouputils@10.20.0) (2026-05-29)
11
+
12
+ **Note:** Version bump only for package @quenty/grouputils
13
+
6
14
  # [10.19.0](https://github.com/Quenty/NevermoreEngine/compare/@quenty/grouputils@10.18.0...@quenty/grouputils@10.19.0) (2026-05-29)
7
15
 
8
16
  ### Bug Fixes
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@quenty/grouputils",
3
- "version": "10.19.0",
3
+ "version": "10.20.1",
4
4
  "description": "Group utility functions for Roblox",
5
5
  "keywords": [
6
6
  "Roblox",
@@ -30,10 +30,10 @@
30
30
  ],
31
31
  "dependencies": {
32
32
  "@quenty/loader": "10.11.0",
33
- "@quenty/promise": "10.18.0"
33
+ "@quenty/promise": "10.18.1"
34
34
  },
35
35
  "publishConfig": {
36
36
  "access": "public"
37
37
  },
38
- "gitHead": "f4a374a0a294ee8900aa5cb68ab138b0acf3e0ae"
38
+ "gitHead": "598b2b62b36bdcbdbbd56f7db10c399831cc6eba"
39
39
  }
@@ -27,6 +27,7 @@ function GroupUtils.promiseRankInGroup(player: Player, groupId: number): Promise
27
27
  return Promise.spawn(function(resolve, reject)
28
28
  local rank = nil
29
29
  local ok, err = pcall(function()
30
+ -- TODO: Replace with GroupService:GetRolesInGroupAsync() once enabled
30
31
  rank = player:GetRankInGroupAsync(groupId)
31
32
  end)
32
33
 
@@ -56,6 +57,7 @@ function GroupUtils.promiseRoleInGroup(player: Player, groupId: number): Promise
56
57
  return Promise.spawn(function(resolve, reject)
57
58
  local role = nil
58
59
  local ok, err = pcall(function()
60
+ -- TODO: Replace with GroupService:GetRolesInGroupAsync() once enabled
59
61
  role = player:GetRoleInGroupAsync(groupId)
60
62
  end)
61
63