@quenty/rogue-properties 11.24.1-canary.b24222e.0 → 11.24.2-canary.39d0eda.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,7 +3,18 @@
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
- ## [11.24.1-canary.b24222e.0](https://github.com/Quenty/NevermoreEngine/compare/@quenty/rogue-properties@11.24.0...@quenty/rogue-properties@11.24.1-canary.b24222e.0) (2025-07-14)
6
+ ## [11.24.2-canary.39d0eda.0](https://github.com/Quenty/NevermoreEngine/compare/@quenty/rogue-properties@11.24.1...@quenty/rogue-properties@11.24.2-canary.39d0eda.0) (2025-08-29)
7
+
8
+
9
+ ### Bug Fixes
10
+
11
+ * Index handling has better errors ([b092117](https://github.com/Quenty/NevermoreEngine/commit/b092117e032db8a6b0ed9b680507e80515bb8193))
12
+
13
+
14
+
15
+
16
+
17
+ ## [11.24.1](https://github.com/Quenty/NevermoreEngine/compare/@quenty/rogue-properties@11.24.0...@quenty/rogue-properties@11.24.1) (2025-07-14)
7
18
 
8
19
  **Note:** Version bump only for package @quenty/rogue-properties
9
20
 
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@quenty/rogue-properties",
3
- "version": "11.24.1-canary.b24222e.0",
3
+ "version": "11.24.2-canary.39d0eda.0",
4
4
  "description": "Roguelike properties which can be modified by external provides",
5
5
  "keywords": [
6
6
  "Roblox",
@@ -24,33 +24,33 @@
24
24
  "Quenty"
25
25
  ],
26
26
  "dependencies": {
27
- "@quenty/adorneedata": "7.19.1-canary.b24222e.0",
27
+ "@quenty/adorneedata": "7.19.2-canary.39d0eda.0",
28
28
  "@quenty/baseobject": "10.9.0",
29
- "@quenty/binder": "14.21.0",
30
- "@quenty/brio": "14.18.0",
29
+ "@quenty/binder": "14.21.1-canary.39d0eda.0",
30
+ "@quenty/brio": "14.18.1-canary.39d0eda.0",
31
31
  "@quenty/defaultvalueutils": "1.2.2",
32
32
  "@quenty/ducktype": "5.9.0",
33
- "@quenty/instanceutils": "13.18.0",
34
- "@quenty/jsonutils": "10.11.0",
35
- "@quenty/linkutils": "13.18.0",
33
+ "@quenty/instanceutils": "13.18.1-canary.39d0eda.0",
34
+ "@quenty/jsonutils": "10.11.1-canary.39d0eda.0",
35
+ "@quenty/linkutils": "13.18.1-canary.39d0eda.0",
36
36
  "@quenty/loader": "10.9.0",
37
37
  "@quenty/maid": "3.5.0",
38
- "@quenty/observablecollection": "12.21.0",
39
- "@quenty/rx": "13.18.0",
40
- "@quenty/rxbinderutils": "14.21.0",
41
- "@quenty/rxsignal": "7.18.0",
42
- "@quenty/servicebag": "11.13.0",
43
- "@quenty/signal": "7.11.0",
38
+ "@quenty/observablecollection": "12.21.1-canary.39d0eda.0",
39
+ "@quenty/rx": "13.18.1-canary.39d0eda.0",
40
+ "@quenty/rxbinderutils": "14.21.1-canary.39d0eda.0",
41
+ "@quenty/rxsignal": "7.18.1-canary.39d0eda.0",
42
+ "@quenty/servicebag": "11.13.1-canary.39d0eda.0",
43
+ "@quenty/signal": "7.11.1-canary.39d0eda.0",
44
44
  "@quenty/spring": "10.9.0",
45
45
  "@quenty/string": "3.3.3",
46
46
  "@quenty/table": "3.8.0",
47
- "@quenty/tie": "10.21.0",
48
- "@quenty/valuebaseutils": "13.18.0",
49
- "@quenty/valueobject": "13.18.0",
47
+ "@quenty/tie": "10.21.1-canary.39d0eda.0",
48
+ "@quenty/valuebaseutils": "13.18.1-canary.39d0eda.0",
49
+ "@quenty/valueobject": "13.18.1-canary.39d0eda.0",
50
50
  "@quentystudios/t": "^3.0.0"
51
51
  },
52
52
  "publishConfig": {
53
53
  "access": "public"
54
54
  },
55
- "gitHead": "b24222e512ed2ada0afa98daeb36388313a1eed5"
55
+ "gitHead": "39d0edaa45d0c4812b43f2a64ad543fac3f79423"
56
56
  }
@@ -212,16 +212,16 @@ function RoguePropertyTable:__newindex(index, value)
212
212
  elseif index == "Changed" then
213
213
  error("Cannot set .Changed event")
214
214
  elseif RoguePropertyTable[index] then
215
- error(string.format("Cannot set %q", tostring(index)))
215
+ error(string.format("Cannot set %q on %s", tostring(index), self._definition:GetFullName()))
216
216
  elseif type(index) == "string" then
217
217
  local property = self:GetRogueProperty(index)
218
218
  if not property then
219
- error(string.format("Bad index %q", tostring(index)))
219
+ error(string.format("Bad index %q on %s", tostring(index), self._definition:GetFullName()))
220
220
  end
221
221
 
222
222
  error(string.format("Use RoguePropertyTable.%s.Value to assign", index))
223
223
  else
224
- error(string.format("Bad index %q", tostring(index)))
224
+ error(string.format("Bad index %q on %s", tostring(index), self._definition:GetFullName()))
225
225
  end
226
226
  end
227
227
 
@@ -239,7 +239,7 @@ function RoguePropertyTable:__index(index)
239
239
  elseif type(index) == "string" then
240
240
  local property = self:GetRogueProperty(index)
241
241
  if not property then
242
- error(string.format("Bad index %q", tostring(index)))
242
+ error(string.format("Bad index %q on %s", tostring(index), self._definition:GetFullName()))
243
243
  end
244
244
  return property
245
245
  elseif type(index) == "number" then
@@ -250,13 +250,13 @@ function RoguePropertyTable:__index(index)
250
250
  if result then
251
251
  return result
252
252
  else
253
- error(string.format("Bad index %q", tostring(index)))
253
+ error(string.format("Bad index %q on %s", tostring(index), self._definition:GetFullName()))
254
254
  end
255
255
  else
256
256
  error(string.format("Bad index %q - We are not an array", tostring(index)))
257
257
  end
258
258
  else
259
- error(string.format("Bad index %q", tostring(index)))
259
+ error(string.format("Bad index %q on %s", tostring(index), self._definition:GetFullName()))
260
260
  end
261
261
  end
262
262