@quenty/binder 14.6.1-canary.497.476b7c9.0 → 14.6.1-canary.497.496fc5b.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 +2 -5
- package/package.json +11 -11
- package/src/Shared/Binder.lua +4 -2
package/CHANGELOG.md
CHANGED
|
@@ -3,12 +3,9 @@
|
|
|
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.6.1-canary.497.
|
|
6
|
+
## [14.6.1-canary.497.496fc5b.0](https://github.com/Quenty/NevermoreEngine/compare/@quenty/binder@14.6.0...@quenty/binder@14.6.1-canary.497.496fc5b.0) (2024-09-20)
|
|
7
7
|
|
|
8
|
-
|
|
9
|
-
### Bug Fixes
|
|
10
|
-
|
|
11
|
-
* Rename stragglers ([25c8512](https://github.com/Quenty/NevermoreEngine/commit/25c85124769eb0c92ad4d4c51bc950d9c319c994))
|
|
8
|
+
**Note:** Version bump only for package @quenty/binder
|
|
12
9
|
|
|
13
10
|
|
|
14
11
|
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@quenty/binder",
|
|
3
|
-
"version": "14.6.1-canary.497.
|
|
3
|
+
"version": "14.6.1-canary.497.496fc5b.0",
|
|
4
4
|
"description": "Utility object to Bind a class to Roblox object, and associated helper methods",
|
|
5
5
|
"keywords": [
|
|
6
6
|
"Roblox",
|
|
@@ -25,19 +25,19 @@
|
|
|
25
25
|
"Quenty"
|
|
26
26
|
],
|
|
27
27
|
"dependencies": {
|
|
28
|
-
"@quenty/baseobject": "10.4.1-canary.497.
|
|
29
|
-
"@quenty/brio": "14.5.1-canary.497.
|
|
30
|
-
"@quenty/instanceutils": "13.5.1-canary.497.
|
|
31
|
-
"@quenty/linkutils": "13.5.1-canary.497.
|
|
32
|
-
"@quenty/loader": "10.4.1-canary.497.
|
|
28
|
+
"@quenty/baseobject": "10.4.1-canary.497.496fc5b.0",
|
|
29
|
+
"@quenty/brio": "14.5.1-canary.497.496fc5b.0",
|
|
30
|
+
"@quenty/instanceutils": "13.5.1-canary.497.496fc5b.0",
|
|
31
|
+
"@quenty/linkutils": "13.5.1-canary.497.496fc5b.0",
|
|
32
|
+
"@quenty/loader": "10.4.1-canary.497.496fc5b.0",
|
|
33
33
|
"@quenty/maid": "3.3.0",
|
|
34
|
-
"@quenty/promise": "10.4.1-canary.497.
|
|
35
|
-
"@quenty/rx": "13.5.1-canary.497.
|
|
36
|
-
"@quenty/signal": "7.4.1-canary.497.
|
|
37
|
-
"@quenty/valueobject": "13.5.1-canary.497.
|
|
34
|
+
"@quenty/promise": "10.4.1-canary.497.496fc5b.0",
|
|
35
|
+
"@quenty/rx": "13.5.1-canary.497.496fc5b.0",
|
|
36
|
+
"@quenty/signal": "7.4.1-canary.497.496fc5b.0",
|
|
37
|
+
"@quenty/valueobject": "13.5.1-canary.497.496fc5b.0"
|
|
38
38
|
},
|
|
39
39
|
"publishConfig": {
|
|
40
40
|
"access": "public"
|
|
41
41
|
},
|
|
42
|
-
"gitHead": "
|
|
42
|
+
"gitHead": "496fc5bb230a226ec6c86a8dfd025b8e326d92d8"
|
|
43
43
|
}
|
package/src/Shared/Binder.lua
CHANGED
|
@@ -450,7 +450,8 @@ end
|
|
|
450
450
|
]=]
|
|
451
451
|
function Binder:Bind(inst)
|
|
452
452
|
if RunService:IsClient() then
|
|
453
|
-
warn(
|
|
453
|
+
warn(("[Binder.Bind] - Bindings '%s' done on the client! Will be disrupted upon server replication! %s")
|
|
454
|
+
:format(self._tagName, debug.traceback()))
|
|
454
455
|
end
|
|
455
456
|
|
|
456
457
|
CollectionService:AddTag(inst, self._tagName)
|
|
@@ -604,7 +605,8 @@ function Binder:_add(inst)
|
|
|
604
605
|
if self._pendingInstSet[inst] ~= true then
|
|
605
606
|
-- Got GCed in the process of loading?!
|
|
606
607
|
-- Constructor probably yields. Yikes.
|
|
607
|
-
warn(
|
|
608
|
+
warn(("[Binder._add] - Failed to load instance %q of %q, removed while loading!")
|
|
609
|
+
:format(
|
|
608
610
|
inst:GetFullName(),
|
|
609
611
|
tostring(type(self._constructor) == "table" and self._constructor.ClassName or self._constructor)))
|
|
610
612
|
return
|