@quenty/humanoiddescriptionutils 10.12.0 → 10.12.1-canary.3afc9b0.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,6 +3,17 @@
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.12.1-canary.3afc9b0.0](https://github.com/Quenty/NevermoreEngine/compare/@quenty/humanoiddescriptionutils@10.12.0...@quenty/humanoiddescriptionutils@10.12.1-canary.3afc9b0.0) (2025-12-11)
7
+
8
+
9
+ ### Bug Fixes
10
+
11
+ * Fix dependencies and linting within Roblox's typechecking ([#611](https://github.com/Quenty/NevermoreEngine/issues/611)) ([92011ea](https://github.com/Quenty/NevermoreEngine/commit/92011eac0f2ff31c1434e3642bd63f49025ee982))
12
+
13
+
14
+
15
+
16
+
6
17
  # [10.12.0](https://github.com/Quenty/NevermoreEngine/compare/@quenty/humanoiddescriptionutils@10.11.1...@quenty/humanoiddescriptionutils@10.12.0) (2025-08-29)
7
18
 
8
19
  **Note:** Version bump only for package @quenty/humanoiddescriptionutils
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@quenty/humanoiddescriptionutils",
3
- "version": "10.12.0",
3
+ "version": "10.12.1-canary.3afc9b0.0",
4
4
  "description": "Handles actions involving HumanoidDescription objects, including loading character appearance.",
5
5
  "keywords": [
6
6
  "Roblox",
@@ -25,13 +25,13 @@
25
25
  "Quenty"
26
26
  ],
27
27
  "dependencies": {
28
- "@quenty/insertserviceutils": "^10.12.0",
29
- "@quenty/loader": "^10.9.0",
30
- "@quenty/playersservicepromises": "^10.12.0",
31
- "@quenty/promise": "^10.12.0"
28
+ "@quenty/insertserviceutils": "10.12.0",
29
+ "@quenty/loader": "10.9.0",
30
+ "@quenty/playersservicepromises": "10.12.0",
31
+ "@quenty/promise": "10.12.0"
32
32
  },
33
33
  "publishConfig": {
34
34
  "access": "public"
35
35
  },
36
- "gitHead": "5f62fff9bdc4089be64a8380e8deafa77647c85a"
36
+ "gitHead": "3afc9b0003899b888e482d912f9fd285e4534b1c"
37
37
  }
@@ -25,7 +25,7 @@ function HumanoidDescriptionUtils.promiseApplyDescription(humanoid: Humanoid, de
25
25
 
26
26
  return Promise.spawn(function(resolve, reject)
27
27
  local ok, err = pcall(function()
28
- humanoid:ApplyDescription(description)
28
+ humanoid:ApplyDescriptionAsync(description)
29
29
  end)
30
30
  if not ok then
31
31
  reject(err)
@@ -53,7 +53,7 @@ function HumanoidDescriptionUtils.promiseApplyDescriptionReset(
53
53
 
54
54
  return Promise.spawn(function(resolve, reject)
55
55
  local ok, err = pcall(function()
56
- humanoid:ApplyDescriptionReset(description, assetTypeVerification)
56
+ humanoid:ApplyDescriptionResetAsync(description, assetTypeVerification)
57
57
  end)
58
58
  if not ok then
59
59
  reject(err)