@quenty/binder 4.8.0 → 5.0.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
+ # [5.0.0](https://github.com/Quenty/NevermoreEngine/compare/@quenty/binder@4.8.0...@quenty/binder@5.0.0) (2022-03-06)
7
+
8
+
9
+ ### Features
10
+
11
+ * Use task.delay() in promiseBoundClass ([c30ce41](https://github.com/Quenty/NevermoreEngine/commit/c30ce41d49d149d70bf8e99723defd2ce379315a))
12
+
13
+
14
+
15
+
16
+
6
17
  # [4.8.0](https://github.com/Quenty/NevermoreEngine/compare/@quenty/binder@4.7.1...@quenty/binder@4.8.0) (2022-01-17)
7
18
 
8
19
  **Note:** Version bump only for package @quenty/binder
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@quenty/binder",
3
- "version": "4.8.0",
3
+ "version": "5.0.0",
4
4
  "description": "Utility object to Bind a class to Roblox object, and associated helper methods",
5
5
  "keywords": [
6
6
  "Roblox",
@@ -25,18 +25,18 @@
25
25
  "Quenty"
26
26
  ],
27
27
  "dependencies": {
28
- "@quenty/baseobject": "^3.5.0",
29
- "@quenty/brio": "^3.8.0",
30
- "@quenty/instanceutils": "^3.8.0",
31
- "@quenty/linkutils": "^3.8.0",
32
- "@quenty/loader": "^3.4.0",
28
+ "@quenty/baseobject": "^4.0.0",
29
+ "@quenty/brio": "^5.0.0",
30
+ "@quenty/instanceutils": "^4.0.0",
31
+ "@quenty/linkutils": "^4.0.0",
32
+ "@quenty/loader": "^4.0.0",
33
33
  "@quenty/maid": "^2.1.0",
34
- "@quenty/promise": "^3.6.0",
34
+ "@quenty/promise": "^4.0.0",
35
35
  "@quenty/signal": "^2.1.0",
36
- "@quenty/valueobject": "^3.8.0"
36
+ "@quenty/valueobject": "^4.0.0"
37
37
  },
38
38
  "publishConfig": {
39
39
  "access": "public"
40
40
  },
41
- "gitHead": "c094ba8f4e128cdff08919d89de226d3d65247ce"
41
+ "gitHead": "dd428cab58282c975a4c082957dc8f58e3186905"
42
42
  }
@@ -42,7 +42,7 @@ return function(binder, inst, cancelToken)
42
42
  end
43
43
  end))
44
44
 
45
- delay(5, function()
45
+ task.delay(5, function()
46
46
  if promise:IsPending() then
47
47
  warn(("[promiseBoundClass] - Infinite yield possible on %q for binder %q\n")
48
48
  :format(inst:GetFullName(), binder:GetTag()))