@quenty/binder 14.6.1-canary.497.9e2859c.0 → 14.6.1-canary.499.60b3012.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,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.9e2859c.0](https://github.com/Quenty/NevermoreEngine/compare/@quenty/binder@14.6.0...@quenty/binder@14.6.1-canary.497.9e2859c.0) (2024-09-24)
6
+ ## [14.6.1-canary.499.60b3012.0](https://github.com/Quenty/NevermoreEngine/compare/@quenty/binder@14.6.0...@quenty/binder@14.6.1-canary.499.60b3012.0) (2024-09-24)
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.9e2859c.0",
3
+ "version": "14.6.1-canary.499.60b3012.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.9e2859c.0",
29
- "@quenty/brio": "14.5.1-canary.497.9e2859c.0",
30
- "@quenty/instanceutils": "13.5.1-canary.497.9e2859c.0",
31
- "@quenty/linkutils": "13.5.1-canary.497.9e2859c.0",
32
- "@quenty/loader": "10.4.1-canary.497.9e2859c.0",
28
+ "@quenty/baseobject": "10.4.0",
29
+ "@quenty/brio": "14.5.1-canary.499.60b3012.0",
30
+ "@quenty/instanceutils": "13.5.1-canary.499.60b3012.0",
31
+ "@quenty/linkutils": "13.5.1-canary.499.60b3012.0",
32
+ "@quenty/loader": "10.4.0",
33
33
  "@quenty/maid": "3.3.0",
34
- "@quenty/promise": "10.4.1-canary.497.9e2859c.0",
35
- "@quenty/rx": "13.5.1-canary.497.9e2859c.0",
36
- "@quenty/signal": "7.4.1-canary.497.9e2859c.0",
37
- "@quenty/valueobject": "13.5.1-canary.497.9e2859c.0"
34
+ "@quenty/promise": "10.4.0",
35
+ "@quenty/rx": "13.5.1-canary.499.60b3012.0",
36
+ "@quenty/signal": "7.4.0",
37
+ "@quenty/valueobject": "13.5.1-canary.499.60b3012.0"
38
38
  },
39
39
  "publishConfig": {
40
40
  "access": "public"
41
41
  },
42
- "gitHead": "9e2859c1924d409f38f9f8e8e822abd8b4ebdb55"
42
+ "gitHead": "60b3012c35a2bf7c3c6a01ec440f9d639b9ad0cc"
43
43
  }
@@ -144,7 +144,7 @@ function Binder:Init(...)
144
144
  end
145
145
 
146
146
  self._maid._warning = task.delay(5, function()
147
- warn(string.format("Binder %q is not loaded. Call :Start() on it!", self._tagName))
147
+ warn(("Binder %q is not loaded. Call :Start() on it!"):format(self._tagName))
148
148
  end)
149
149
  end
150
150
 
@@ -450,7 +450,8 @@ end
450
450
  ]=]
451
451
  function Binder:Bind(inst)
452
452
  if RunService:IsClient() then
453
- warn(string.format("[Binder.Bind] - Bindings '%s' done on the client! Will be disrupted upon server replication! %s", self._tagName, debug.traceback()))
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)
@@ -500,7 +501,8 @@ function Binder:Unbind(inst)
500
501
  assert(typeof(inst) == "Instance", "Bad inst'")
501
502
 
502
503
  if RunService:IsClient() then
503
- warn(string.format("[Binder.Bind] - Unbinding '%s' done on the client! Might be disrupted upon server replication! %s", self._tagName, debug.traceback()))
504
+ warn(("[Binder.Bind] - Unbinding '%s' done on the client! Might be disrupted upon server replication! %s")
505
+ :format(self._tagName, debug.traceback()))
504
506
  end
505
507
 
506
508
  CollectionService:RemoveTag(inst, self._tagName)
@@ -518,7 +520,8 @@ end
518
520
  ]=]
519
521
  function Binder:BindClient(inst)
520
522
  if not RunService:IsClient() then
521
- warn(string.format("[Binder.BindClient] - Bindings '%s' done on the server! Will be replicated!", self._tagName))
523
+ warn(("[Binder.BindClient] - Bindings '%s' done on the server! Will be replicated!")
524
+ :format(self._tagName))
522
525
  end
523
526
 
524
527
  CollectionService:AddTag(inst, self._tagName)
@@ -604,7 +607,8 @@ function Binder:_add(inst)
604
607
  if self._pendingInstSet[inst] ~= true then
605
608
  -- Got GCed in the process of loading?!
606
609
  -- Constructor probably yields. Yikes.
607
- warn(string.format("[Binder._add] - Failed to load instance %q of %q, removed while loading!",
610
+ warn(("[Binder._add] - Failed to load instance %q of %q, removed while loading!")
611
+ :format(
608
612
  inst:GetFullName(),
609
613
  tostring(type(self._constructor) == "table" and self._constructor.ClassName or self._constructor)))
610
614
  return
@@ -62,7 +62,7 @@ function BinderGroupProvider:__index(index)
62
62
  return BinderGroupProvider[index]
63
63
  end
64
64
 
65
- error(string.format("%q Not a valid index", tostring(index)))
65
+ error(("%q Not a valid index"):format(tostring(index)))
66
66
  end
67
67
 
68
68
  --[=[
@@ -158,7 +158,7 @@ function BinderUtils.getLinkedChildren(binder, linkName, parent)
158
158
  seen[obj] = true
159
159
  table.insert(objects, obj)
160
160
  else
161
- warn(string.format("[BinderUtils.getLinkedChildren] - Double linked children at %q", item:GetFullName()))
161
+ warn(("[BinderUtils.getLinkedChildren] - Double linked children at %q"):format(item:GetFullName()))
162
162
  end
163
163
  end
164
164
  end
@@ -44,7 +44,8 @@ return function(binder, inst, cancelToken)
44
44
 
45
45
  task.delay(5, function()
46
46
  if promise:IsPending() then
47
- warn(string.format("[promiseBoundClass] - Infinite yield possible on %q for binder %q\n", inst:GetFullName(), binder:GetTag()))
47
+ warn(("[promiseBoundClass] - Infinite yield possible on %q for binder %q\n")
48
+ :format(inst:GetFullName(), binder:GetTag()))
48
49
  end
49
50
  end)
50
51