@quenty/tie 10.29.1 → 10.30.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
+ # [10.30.0](https://github.com/Quenty/NevermoreEngine/compare/@quenty/tie@10.29.1...@quenty/tie@10.30.0) (2026-01-11)
7
+
8
+
9
+ ### Bug Fixes
10
+
11
+ * Ensure that the name gets asssigned almost immediately ([2a5eba9](https://github.com/Quenty/NevermoreEngine/commit/2a5eba9dd2072a303fa7aaa8d5651ebbb5a1e7c7))
12
+
13
+
14
+
15
+
16
+
6
17
  ## [10.29.1](https://github.com/Quenty/NevermoreEngine/compare/@quenty/tie@10.29.0...@quenty/tie@10.29.1) (2026-01-10)
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.29.1",
3
+ "version": "10.30.0",
4
4
  "description": "Tie allows interfaces to be defined between Lua OOP and Roblox objects.",
5
5
  "keywords": [
6
6
  "Roblox",
@@ -56,5 +56,5 @@
56
56
  "publishConfig": {
57
57
  "access": "public"
58
58
  },
59
- "gitHead": "76f1dfb1936388838b2fd734e263a6af2ae9277b"
59
+ "gitHead": "81c784a368ebbb258d918ada6b7e359c2c9dd4a3"
60
60
  }
@@ -57,6 +57,7 @@ function TieImplementation.new<T>(
57
57
  self._implementationTieRealm = assert(implementationTieRealm, "Bad implementationTieRealm")
58
58
 
59
59
  self._implParent = self._maid:Add(Instance.new(tieDefinition:GetNewImplClass(implementationTieRealm)))
60
+ self._implParent.Name = self._tieDefinition:GetNewContainerName(self._implementationTieRealm)
60
61
  self._implParent.Archivable = false
61
62
 
62
63
  self._memberImplementations = {}
@@ -170,8 +171,6 @@ function TieImplementation._buildMemberImplementations<T>(self: TieImplementatio
170
171
  )
171
172
  self._memberImplementations[memberDefinition:GetMemberName()] = memberImplementation
172
173
  end
173
-
174
- self._implParent.Name = self._tieDefinition:GetNewContainerName(self._implementationTieRealm)
175
174
  end
176
175
 
177
176
  function TieImplementation._getErrorMessageForNotAllowedMember<T>(self: TieImplementation<T>, memberDefinition)