@quenty/tie 10.18.0 → 10.18.1-canary.531.7e0299a.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 +11 -0
- package/package.json +20 -20
- package/src/Shared/Members/TieMemberInterface.lua +3 -1
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
|
+
## [10.18.1-canary.531.7e0299a.0](https://github.com/Quenty/NevermoreEngine/compare/@quenty/tie@10.18.0...@quenty/tie@10.18.1-canary.531.7e0299a.0) (2025-01-22)
|
|
7
|
+
|
|
8
|
+
|
|
9
|
+
### Bug Fixes
|
|
10
|
+
|
|
11
|
+
* Fix retrieval of tie implementation parent ([fe57f31](https://github.com/Quenty/NevermoreEngine/commit/fe57f31301e4cb8b335d583ddf3fe54b77a03658))
|
|
12
|
+
|
|
13
|
+
|
|
14
|
+
|
|
15
|
+
|
|
16
|
+
|
|
6
17
|
# [10.18.0](https://github.com/Quenty/NevermoreEngine/compare/@quenty/tie@10.17.0...@quenty/tie@10.18.0) (2024-12-15)
|
|
7
18
|
|
|
8
19
|
**Note:** Version bump only for package @quenty/tie
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@quenty/tie",
|
|
3
|
-
"version": "10.18.0",
|
|
3
|
+
"version": "10.18.1-canary.531.7e0299a.0",
|
|
4
4
|
"description": "Tie allows interfaces to be defined between Lua OOP and Roblox objects.",
|
|
5
5
|
"keywords": [
|
|
6
6
|
"Roblox",
|
|
@@ -28,29 +28,29 @@
|
|
|
28
28
|
"Quenty"
|
|
29
29
|
],
|
|
30
30
|
"dependencies": {
|
|
31
|
-
"@quenty/attributeutils": "
|
|
32
|
-
"@quenty/baseobject": "
|
|
33
|
-
"@quenty/brio": "
|
|
34
|
-
"@quenty/collectionserviceutils": "
|
|
35
|
-
"@quenty/instanceutils": "
|
|
36
|
-
"@quenty/loader": "
|
|
37
|
-
"@quenty/maid": "
|
|
38
|
-
"@quenty/rx": "
|
|
39
|
-
"@quenty/rxsignal": "
|
|
40
|
-
"@quenty/statestack": "
|
|
41
|
-
"@quenty/string": "
|
|
42
|
-
"@quenty/symbol": "
|
|
43
|
-
"@quenty/table": "
|
|
44
|
-
"@quenty/tuple": "
|
|
45
|
-
"@quenty/valuebaseutils": "
|
|
46
|
-
"@quenty/valueobject": "
|
|
31
|
+
"@quenty/attributeutils": "14.15.0",
|
|
32
|
+
"@quenty/baseobject": "10.7.1",
|
|
33
|
+
"@quenty/brio": "14.15.0",
|
|
34
|
+
"@quenty/collectionserviceutils": "8.15.0",
|
|
35
|
+
"@quenty/instanceutils": "13.15.0",
|
|
36
|
+
"@quenty/loader": "10.7.1",
|
|
37
|
+
"@quenty/maid": "3.4.0",
|
|
38
|
+
"@quenty/rx": "13.15.0",
|
|
39
|
+
"@quenty/rxsignal": "7.15.0",
|
|
40
|
+
"@quenty/statestack": "14.16.0",
|
|
41
|
+
"@quenty/string": "3.3.0",
|
|
42
|
+
"@quenty/symbol": "3.4.0",
|
|
43
|
+
"@quenty/table": "3.7.0",
|
|
44
|
+
"@quenty/tuple": "1.4.1",
|
|
45
|
+
"@quenty/valuebaseutils": "13.15.0",
|
|
46
|
+
"@quenty/valueobject": "13.15.0"
|
|
47
47
|
},
|
|
48
48
|
"devDependencies": {
|
|
49
|
-
"@quenty/promise": "
|
|
50
|
-
"@quenty/signal": "
|
|
49
|
+
"@quenty/promise": "10.9.0",
|
|
50
|
+
"@quenty/signal": "7.9.0"
|
|
51
51
|
},
|
|
52
52
|
"publishConfig": {
|
|
53
53
|
"access": "public"
|
|
54
54
|
},
|
|
55
|
-
"gitHead": "
|
|
55
|
+
"gitHead": "7e0299a593d509175643bc0fc442d7b960a896a9"
|
|
56
56
|
}
|
|
@@ -50,7 +50,9 @@ function TieMemberInterface:GetImplParent()
|
|
|
50
50
|
return nil
|
|
51
51
|
end
|
|
52
52
|
elseif self._adornee then
|
|
53
|
-
|
|
53
|
+
-- TODO: What if there's nothing here?
|
|
54
|
+
-- What if there's more than one?
|
|
55
|
+
return self._tieDefinition:GetImplementationParents(self._adornee, self._interfaceTieRealm)[1]
|
|
54
56
|
else
|
|
55
57
|
error("Must have self._implParent or self._adornee")
|
|
56
58
|
end
|