@quenty/secrets 7.45.0 → 7.46.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
+ # [7.46.0](https://github.com/Quenty/NevermoreEngine/compare/@quenty/secrets@7.45.0...@quenty/secrets@7.46.0) (2026-04-23)
7
+
8
+ **Note:** Version bump only for package @quenty/secrets
9
+
10
+
11
+
12
+
13
+
6
14
  # [7.45.0](https://github.com/Quenty/NevermoreEngine/compare/@quenty/secrets@7.44.0...@quenty/secrets@7.45.0) (2026-04-15)
7
15
 
8
16
  **Note:** Version bump only for package @quenty/secrets
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@quenty/secrets",
3
- "version": "7.45.0",
3
+ "version": "7.46.0",
4
4
  "description": "Secrets storage system and API surface",
5
5
  "keywords": [
6
6
  "Roblox",
@@ -28,23 +28,23 @@
28
28
  "Quenty"
29
29
  ],
30
30
  "dependencies": {
31
- "@quenty/cmdrservice": "13.40.0",
32
- "@quenty/datastore": "13.36.0",
33
- "@quenty/ellipticcurvecryptography": "1.10.0",
34
- "@quenty/loader": "10.10.0",
35
- "@quenty/maid": "3.8.0",
36
- "@quenty/nevermore-test-runner": "1.3.0",
37
- "@quenty/permissionprovider": "14.34.0",
38
- "@quenty/promise": "10.17.0",
39
- "@quenty/remotefunctionutils": "10.17.0",
40
- "@quenty/remoting": "12.30.0",
41
- "@quenty/rx": "13.27.0",
42
- "@quenty/servicebag": "11.16.0",
31
+ "@quenty/cmdrservice": "13.41.0",
32
+ "@quenty/datastore": "13.37.0",
33
+ "@quenty/ellipticcurvecryptography": "1.11.0",
34
+ "@quenty/loader": "10.11.0",
35
+ "@quenty/maid": "3.9.0",
36
+ "@quenty/nevermore-test-runner": "1.4.0",
37
+ "@quenty/permissionprovider": "14.35.0",
38
+ "@quenty/promise": "10.18.0",
39
+ "@quenty/remotefunctionutils": "10.18.0",
40
+ "@quenty/remoting": "12.31.0",
41
+ "@quenty/rx": "13.28.0",
42
+ "@quenty/servicebag": "11.17.0",
43
43
  "@quenty/table": "3.9.2",
44
44
  "@quentystudios/jest-lua": "3.10.0-quenty.2"
45
45
  },
46
46
  "publishConfig": {
47
47
  "access": "public"
48
48
  },
49
- "gitHead": "da500f4af908cef350ee386cf472a102e8e53437"
49
+ "gitHead": "9413391da8b6f9026762285b601fd1d37d385a54"
50
50
  }
@@ -5,12 +5,13 @@
5
5
 
6
6
  local ServerScriptService = game:GetService("ServerScriptService")
7
7
 
8
- local loader = ServerScriptService:FindFirstChild("LoaderUtils", true).Parent
9
- local require = require(loader).bootstrapGame(ServerScriptService.secrets)
8
+ local root = ServerScriptService.secrets
9
+ local loader = root:FindFirstChild("LoaderUtils", true).Parent
10
+ local require = require(loader).bootstrapGame(root)
10
11
 
11
12
  local NevermoreTestRunnerUtils = require("NevermoreTestRunnerUtils")
12
13
 
13
- if NevermoreTestRunnerUtils.runTestsIfNeededAsync(ServerScriptService.secrets) then
14
+ if NevermoreTestRunnerUtils.runTestsIfNeededAsync(root) then
14
15
  return
15
16
  end
16
17