@quenty/binder 14.46.0 → 14.47.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,16 @@
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.47.1](https://github.com/Quenty/NevermoreEngine/compare/@quenty/binder@14.47.0...@quenty/binder@14.47.1) (2026-09-24)
7
+
8
+ **Note:** Version bump only for package @quenty/binder
9
+
10
+ # [14.47.0](https://github.com/Quenty/NevermoreEngine/compare/@quenty/binder@14.46.0...@quenty/binder@14.47.0) (2026-09-23)
11
+
12
+ ### Bug Fixes
13
+
14
+ - Binder cleans up during construct/deconstruct moment ([404160e](https://github.com/Quenty/NevermoreEngine/commit/404160efddacbdf95eba0ede5e15066c5d71ed64))
15
+
6
16
  # [14.46.0](https://github.com/Quenty/NevermoreEngine/compare/@quenty/binder@14.45.0...@quenty/binder@14.46.0) (2026-09-02)
7
17
 
8
18
  ### Features
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@quenty/binder",
3
- "version": "14.46.0",
3
+ "version": "14.47.1",
4
4
  "description": "Utility object to Bind a class to Roblox object, and associated helper methods",
5
5
  "keywords": [
6
6
  "Roblox",
@@ -28,24 +28,24 @@
28
28
  "Quenty"
29
29
  ],
30
30
  "dependencies": {
31
- "@quenty/baseobject": "10.16.0",
32
- "@quenty/brio": "14.37.0",
33
- "@quenty/canceltoken": "11.25.0",
34
- "@quenty/instanceutils": "13.37.0",
35
- "@quenty/jestutils": "1.1.0",
36
- "@quenty/linkutils": "13.38.0",
37
- "@quenty/loader": "10.11.1",
38
- "@quenty/maid": "3.12.0",
39
- "@quenty/nevermore-test-runner": "1.6.0",
40
- "@quenty/promise": "10.24.0",
41
- "@quenty/rx": "13.34.0",
42
- "@quenty/servicebag": "11.21.0",
43
- "@quenty/signal": "7.13.2",
31
+ "@quenty/baseobject": "10.16.1",
32
+ "@quenty/brio": "14.37.1",
33
+ "@quenty/canceltoken": "11.25.1",
34
+ "@quenty/instanceutils": "13.37.1",
35
+ "@quenty/jestutils": "1.1.1",
36
+ "@quenty/linkutils": "13.38.1",
37
+ "@quenty/loader": "10.11.2",
38
+ "@quenty/maid": "3.12.1",
39
+ "@quenty/nevermore-test-runner": "1.6.1",
40
+ "@quenty/promise": "10.24.1",
41
+ "@quenty/rx": "13.34.1",
42
+ "@quenty/servicebag": "11.21.1",
43
+ "@quenty/signal": "7.13.3",
44
44
  "@quenty/table": "3.9.2",
45
45
  "@quentystudios/jest-lua": "3.10.0-quenty.2"
46
46
  },
47
47
  "publishConfig": {
48
48
  "access": "public"
49
49
  },
50
- "gitHead": "278f4ca25486a8ba0601704b27a11da8c77499c9"
50
+ "gitHead": "7ab0297833aa73c193d8c20dc23332280439af7c"
51
51
  }
@@ -698,6 +698,12 @@ function Binder._add<T>(self: Binder<T>, inst: Instance)
698
698
  tostring(type(constructor) == "table" and constructor.ClassName or constructor)
699
699
  )
700
700
  )
701
+ if MaidTaskUtils.isValidTask(class) then
702
+ task.spawn(function()
703
+ MaidTaskUtils.doTask(class)
704
+ end)
705
+ end
706
+
701
707
  return
702
708
  end
703
709