@quenty/tie 10.13.1 → 10.14.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.14.0](https://github.com/Quenty/NevermoreEngine/compare/@quenty/tie@10.13.1...@quenty/tie@10.14.0) (2024-11-06)
7
+
8
+
9
+ ### Features
10
+
11
+ * Specifically check for symbols ([374df56](https://github.com/Quenty/NevermoreEngine/commit/374df56f1692ff707d9f25b85f92a37c972dd089))
12
+
13
+
14
+
15
+
16
+
6
17
  ## [10.13.1](https://github.com/Quenty/NevermoreEngine/compare/@quenty/tie@10.13.0...@quenty/tie@10.13.1) (2024-11-04)
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.13.1",
3
+ "version": "10.14.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": "^14.11.1",
31
+ "@quenty/attributeutils": "^14.12.0",
32
32
  "@quenty/baseobject": "^10.7.1",
33
- "@quenty/brio": "^14.11.1",
34
- "@quenty/collectionserviceutils": "^8.11.1",
35
- "@quenty/instanceutils": "^13.11.1",
33
+ "@quenty/brio": "^14.12.0",
34
+ "@quenty/collectionserviceutils": "^8.12.0",
35
+ "@quenty/instanceutils": "^13.12.0",
36
36
  "@quenty/loader": "^10.7.1",
37
37
  "@quenty/maid": "^3.4.0",
38
- "@quenty/rx": "^13.11.1",
39
- "@quenty/rxsignal": "^7.11.1",
40
- "@quenty/statestack": "^14.12.1",
38
+ "@quenty/rx": "^13.12.0",
39
+ "@quenty/rxsignal": "^7.12.0",
40
+ "@quenty/statestack": "^14.13.0",
41
41
  "@quenty/string": "^3.3.0",
42
- "@quenty/symbol": "^3.2.0",
42
+ "@quenty/symbol": "^3.3.0",
43
43
  "@quenty/table": "^3.6.0",
44
44
  "@quenty/tuple": "^1.4.1",
45
- "@quenty/valuebaseutils": "^13.11.1",
46
- "@quenty/valueobject": "^13.11.1"
45
+ "@quenty/valuebaseutils": "^13.12.0",
46
+ "@quenty/valueobject": "^13.12.0"
47
47
  },
48
48
  "devDependencies": {
49
- "@quenty/promise": "^10.7.1",
50
- "@quenty/signal": "^7.8.1"
49
+ "@quenty/promise": "^10.8.0",
50
+ "@quenty/signal": "^7.9.0"
51
51
  },
52
52
  "publishConfig": {
53
53
  "access": "public"
54
54
  },
55
- "gitHead": "01c43a0ddd3c5e0cb2d9027313dbfa9852eedef1"
55
+ "gitHead": "00e6f71716216dd6ecbc8505ad898a1ab7f72756"
56
56
  }
@@ -2,6 +2,10 @@
2
2
  @class TieUtils
3
3
  ]=]
4
4
 
5
+ local require = require(script.Parent.loader).load(script)
6
+
7
+ local Symbol = require("Symbol")
8
+
5
9
  local TieUtils = {}
6
10
 
7
11
  --[=[
@@ -16,7 +20,8 @@ function TieUtils.encode(...)
16
20
  for i=1, results.n do
17
21
  if type(results[i]) == "table"
18
22
  or type(results[i]) == "function"
19
- or typeof(results[i]) == "userdata" then -- newproxy() symbols
23
+ or typeof(results[i]) == "userdata" -- newproxy() symbols
24
+ or Symbol.isSymbol(results[i]) then
20
25
 
21
26
  local saved = results[i]
22
27
  results[i] = function()