@quenty/boundlinkutils 14.5.0 → 14.6.1-canary.497.25c8512.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 +16 -0
- package/package.json +8 -8
- package/src/Shared/BoundLinkUtils.lua +1 -1
package/CHANGELOG.md
CHANGED
|
@@ -3,6 +3,22 @@
|
|
|
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.25c8512.0](https://github.com/Quenty/NevermoreEngine/compare/@quenty/boundlinkutils@14.6.0...@quenty/boundlinkutils@14.6.1-canary.497.25c8512.0) (2024-09-20)
|
|
7
|
+
|
|
8
|
+
**Note:** Version bump only for package @quenty/boundlinkutils
|
|
9
|
+
|
|
10
|
+
|
|
11
|
+
|
|
12
|
+
|
|
13
|
+
|
|
14
|
+
# [14.6.0](https://github.com/Quenty/NevermoreEngine/compare/@quenty/boundlinkutils@14.5.0...@quenty/boundlinkutils@14.6.0) (2024-09-12)
|
|
15
|
+
|
|
16
|
+
**Note:** Version bump only for package @quenty/boundlinkutils
|
|
17
|
+
|
|
18
|
+
|
|
19
|
+
|
|
20
|
+
|
|
21
|
+
|
|
6
22
|
# [14.5.0](https://github.com/Quenty/NevermoreEngine/compare/@quenty/boundlinkutils@14.4.0...@quenty/boundlinkutils@14.5.0) (2024-08-09)
|
|
7
23
|
|
|
8
24
|
**Note:** Version bump only for package @quenty/boundlinkutils
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@quenty/boundlinkutils",
|
|
3
|
-
"version": "14.
|
|
3
|
+
"version": "14.6.1-canary.497.25c8512.0",
|
|
4
4
|
"description": "Utility functions involving binders and links",
|
|
5
5
|
"keywords": [
|
|
6
6
|
"Roblox",
|
|
@@ -25,15 +25,15 @@
|
|
|
25
25
|
"Quenty"
|
|
26
26
|
],
|
|
27
27
|
"dependencies": {
|
|
28
|
-
"@quenty/binder": "
|
|
29
|
-
"@quenty/linkutils": "
|
|
30
|
-
"@quenty/loader": "
|
|
31
|
-
"@quenty/maid": "
|
|
32
|
-
"@quenty/promise": "
|
|
33
|
-
"@quenty/signal": "
|
|
28
|
+
"@quenty/binder": "14.6.1-canary.497.25c8512.0",
|
|
29
|
+
"@quenty/linkutils": "13.5.1-canary.497.25c8512.0",
|
|
30
|
+
"@quenty/loader": "10.4.1-canary.497.25c8512.0",
|
|
31
|
+
"@quenty/maid": "3.3.0",
|
|
32
|
+
"@quenty/promise": "10.4.1-canary.497.25c8512.0",
|
|
33
|
+
"@quenty/signal": "7.4.1-canary.497.25c8512.0"
|
|
34
34
|
},
|
|
35
35
|
"publishConfig": {
|
|
36
36
|
"access": "public"
|
|
37
37
|
},
|
|
38
|
-
"gitHead": "
|
|
38
|
+
"gitHead": "25c85124769eb0c92ad4d4c51bc950d9c319c994"
|
|
39
39
|
}
|
|
@@ -133,7 +133,7 @@ function BoundLinkUtils.callMethodOnLinkedClasses(binders, linkName, from, metho
|
|
|
133
133
|
end
|
|
134
134
|
|
|
135
135
|
if called[class] then
|
|
136
|
-
warn(("[BoundLinkUtils.callMethodOnLinkedClasses] - Double-linked class %q for method %q"
|
|
136
|
+
warn(string.format("[BoundLinkUtils.callMethodOnLinkedClasses] - Double-linked class %q for method %q", tag, methodName))
|
|
137
137
|
return
|
|
138
138
|
end
|
|
139
139
|
|