@quenty/observablecollection 12.30.2 → 12.30.3-canary.656.73a74af.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,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
+ ## [12.30.3-canary.656.73a74af.0](https://github.com/Quenty/NevermoreEngine/compare/@quenty/observablecollection@12.30.2...@quenty/observablecollection@12.30.3-canary.656.73a74af.0) (2026-02-17)
7
+
8
+
9
+ ### Features
10
+
11
+ * Add CI/CD batch unit testing ([016a366](https://github.com/Quenty/NevermoreEngine/commit/016a3663509c8fffa518b07cfc49ebecba2a1fa6))
12
+ * Create places automatically using nevermore-cli ([d4a6a66](https://github.com/Quenty/NevermoreEngine/commit/d4a6a66e5720d010b4fc3d6f973ccfdaa17dbead))
13
+
14
+
15
+
16
+
17
+
6
18
  ## [12.30.2](https://github.com/Quenty/NevermoreEngine/compare/@quenty/observablecollection@12.30.1...@quenty/observablecollection@12.30.2) (2026-01-23)
7
19
 
8
20
  **Note:** Version bump only for package @quenty/observablecollection
@@ -0,0 +1,10 @@
1
+ {
2
+ "targets": {
3
+ "test": {
4
+ "universeId": 9716264427,
5
+ "placeId": 125386886279326,
6
+ "project": "test/default.project.json",
7
+ "scriptTemplate": "test/scripts/Server/ServerMain.server.lua"
8
+ }
9
+ }
10
+ }
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@quenty/observablecollection",
3
- "version": "12.30.2",
3
+ "version": "12.30.3-canary.656.73a74af.0",
4
4
  "description": "A set of observable collections, such as sets, maps, sorted lists, and more.",
5
5
  "keywords": [
6
6
  "Roblox",
@@ -30,26 +30,28 @@
30
30
  "Quenty"
31
31
  ],
32
32
  "dependencies": {
33
- "@quenty/baseobject": "10.9.3",
33
+ "@quenty/baseobject": "10.9.4-canary.656.73a74af.0",
34
34
  "@quenty/binarysearch": "2.4.0",
35
- "@quenty/brio": "14.24.1",
36
- "@quenty/ducktype": "5.9.3",
37
- "@quenty/instanceutils": "13.24.1",
35
+ "@quenty/brio": "14.24.2-canary.656.73a74af.0",
36
+ "@quenty/ducktype": "5.9.4-canary.656.73a74af.0",
37
+ "@quenty/instanceutils": "13.24.2-canary.656.73a74af.0",
38
38
  "@quenty/loader": "10.9.3",
39
- "@quenty/maid": "3.5.3",
40
- "@quenty/promise": "10.13.0",
41
- "@quenty/rx": "13.23.1",
39
+ "@quenty/maid": "3.5.4-canary.656.73a74af.0",
40
+ "@quenty/nevermore-test-runner": "1.0.1-canary.656.73a74af.0",
41
+ "@quenty/promise": "10.13.1-canary.656.73a74af.0",
42
+ "@quenty/rx": "13.23.2-canary.656.73a74af.0",
42
43
  "@quenty/signal": "7.11.5",
43
44
  "@quenty/steputils": "3.6.3",
44
45
  "@quenty/symbol": "3.5.2",
45
46
  "@quenty/table": "3.9.2",
46
- "@quenty/valueobject": "13.25.1"
47
+ "@quenty/valueobject": "13.25.2-canary.656.73a74af.0",
48
+ "@quentystudios/jest-lua": "https://github.com/quentystudios/jest-lua.git"
47
49
  },
48
50
  "devDependencies": {
49
- "@quenty/blend": "12.28.2"
51
+ "@quenty/blend": "12.28.3-canary.656.73a74af.0"
50
52
  },
51
53
  "publishConfig": {
52
54
  "access": "public"
53
55
  },
54
- "gitHead": "678ed19a89624c08a39990f43f45747cc3dad143"
56
+ "gitHead": "73a74afc39e2b9d93e6f73b8e7de17058fcee296"
55
57
  }
@@ -0,0 +1,3 @@
1
+ return {
2
+ testMatch = { "**/*.spec" },
3
+ }
@@ -3,6 +3,9 @@
3
3
  "tree": {
4
4
  "$className": "DataModel",
5
5
  "ServerScriptService": {
6
+ "$properties": {
7
+ "LoadStringEnabled": true
8
+ },
6
9
  "observablecollection": {
7
10
  "$path": ".."
8
11
  },
@@ -8,6 +8,7 @@ local TweenService = game:GetService("TweenService")
8
8
  local loader = ServerScriptService:FindFirstChild("LoaderUtils", true).Parent
9
9
  local require = require(loader).bootstrapGame(ServerScriptService.observablecollection)
10
10
 
11
+ local NevermoreTestRunnerUtils = require("NevermoreTestRunnerUtils")
11
12
  local ObservableSortedList = require("ObservableSortedList")
12
13
  local Rx = require("Rx")
13
14
  local RxInstanceUtils = require("RxInstanceUtils")
@@ -113,3 +114,5 @@ end
113
114
  parts[5].Name = "25"
114
115
  parts[9].Name = "3.1"
115
116
  parts[2].Name = "remove"
117
+
118
+ NevermoreTestRunnerUtils.runTestsIfNeededAsync(ServerScriptService.observablecollection)