@quenty/observablecollection 12.5.1 → 12.5.2-canary.497.2df557a.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,14 @@
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
+ ## [12.5.2-canary.497.2df557a.0](https://github.com/Quenty/NevermoreEngine/compare/@quenty/observablecollection@12.5.1...@quenty/observablecollection@12.5.2-canary.497.2df557a.0) (2024-09-20)
7
+
8
+ **Note:** Version bump only for package @quenty/observablecollection
9
+
10
+
11
+
12
+
13
+
6
14
  ## [12.5.1](https://github.com/Quenty/NevermoreEngine/compare/@quenty/observablecollection@12.5.0...@quenty/observablecollection@12.5.1) (2024-09-20)
7
15
 
8
16
  **Note:** Version bump only for package @quenty/observablecollection
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@quenty/observablecollection",
3
- "version": "12.5.1",
3
+ "version": "12.5.2-canary.497.2df557a.0",
4
4
  "description": "A set of observable collections, such as sets, maps, sorted lists, and more.",
5
5
  "keywords": [
6
6
  "Roblox",
@@ -27,23 +27,23 @@
27
27
  "Quenty"
28
28
  ],
29
29
  "dependencies": {
30
- "@quenty/baseobject": "^10.4.0",
31
- "@quenty/brio": "^14.5.0",
32
- "@quenty/ducktype": "^5.4.0",
33
- "@quenty/loader": "^10.4.0",
34
- "@quenty/maid": "^3.3.0",
35
- "@quenty/promise": "^10.4.0",
36
- "@quenty/rx": "^13.5.0",
37
- "@quenty/signal": "^7.4.0",
38
- "@quenty/steputils": "^3.4.0",
39
- "@quenty/symbol": "^3.1.0",
40
- "@quenty/valueobject": "^13.5.0"
30
+ "@quenty/baseobject": "10.4.1-canary.497.2df557a.0",
31
+ "@quenty/brio": "14.5.1-canary.497.2df557a.0",
32
+ "@quenty/ducktype": "5.4.1-canary.497.2df557a.0",
33
+ "@quenty/loader": "10.4.1-canary.497.2df557a.0",
34
+ "@quenty/maid": "3.3.0",
35
+ "@quenty/promise": "10.4.1-canary.497.2df557a.0",
36
+ "@quenty/rx": "13.5.1-canary.497.2df557a.0",
37
+ "@quenty/signal": "7.4.1-canary.497.2df557a.0",
38
+ "@quenty/steputils": "3.4.1-canary.497.2df557a.0",
39
+ "@quenty/symbol": "3.1.0",
40
+ "@quenty/valueobject": "13.5.1-canary.497.2df557a.0"
41
41
  },
42
42
  "devDependencies": {
43
- "@quenty/blend": "^12.5.1"
43
+ "@quenty/blend": "12.5.2-canary.497.2df557a.0"
44
44
  },
45
45
  "publishConfig": {
46
46
  "access": "public"
47
47
  },
48
- "gitHead": "a0dc70feb2e9ae87eccca4193951975ff59b7aae"
48
+ "gitHead": "2df557a9a5463c2c7beb257ff9f7786ac8ad746a"
49
49
  }
@@ -198,7 +198,7 @@ function ObservableSortedList:ObserveIndex(indexToObserve)
198
198
 
199
199
  local key = self._keyList[indexToObserve]
200
200
  if not key then
201
- error(("No entry at index %q, cannot observe changes"):format(indexToObserve))
201
+ error(string.format("No entry at index %q, cannot observe changes", indexToObserve))
202
202
  end
203
203
 
204
204
  return self:ObserveIndexByKey(key)