@quenty/cmdrservice 5.4.0 → 6.0.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
+ # [6.0.0](https://github.com/Quenty/NevermoreEngine/compare/@quenty/cmdrservice@5.4.0...@quenty/cmdrservice@6.0.0) (2022-08-14)
7
+
8
+
9
+ ### Features
10
+
11
+ * Add ServiceName to most services for faster debugging ([39fc3f4](https://github.com/Quenty/NevermoreEngine/commit/39fc3f4f2beb92fff49b2264424e07af7907324e))
12
+
13
+
14
+
15
+
16
+
6
17
  # [5.4.0](https://github.com/Quenty/NevermoreEngine/compare/@quenty/cmdrservice@5.3.0...@quenty/cmdrservice@5.4.0) (2022-07-31)
7
18
 
8
19
 
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@quenty/cmdrservice",
3
- "version": "5.4.0",
3
+ "version": "6.0.0",
4
4
  "description": "Bridge between cmdr and Nevermore services using servicebag",
5
5
  "keywords": [
6
6
  "Roblox",
@@ -27,16 +27,16 @@
27
27
  "dependencies": {
28
28
  "@quenty/loader": "^5.0.0",
29
29
  "@quenty/maid": "^2.4.0",
30
- "@quenty/permissionprovider": "^6.3.0",
30
+ "@quenty/permissionprovider": "^7.0.0",
31
31
  "@quenty/promise": "^5.1.0",
32
32
  "@quenty/remoting": "^5.2.0",
33
33
  "@quenty/servicebag": "^5.1.0",
34
- "@quenty/string": "^2.3.0",
35
- "@quenty/templateprovider": "^5.1.0",
34
+ "@quenty/string": "^3.0.0",
35
+ "@quenty/templateprovider": "^6.0.0",
36
36
  "@quentystudios/cmdr": "^1.8.4-quenty.1"
37
37
  },
38
38
  "publishConfig": {
39
39
  "access": "public"
40
40
  },
41
- "gitHead": "e31b3a35aa475bb5699a24898a8639e107165b36"
41
+ "gitHead": "dbb62609f980983cc32da90acfef13e30ed41113"
42
42
  }
@@ -18,6 +18,7 @@ local PromiseUtils = require("PromiseUtils")
18
18
  local String = require("String")
19
19
 
20
20
  local CmdrServiceClient = {}
21
+ CmdrServiceClient.ServiceName = "CmdrServiceClient"
21
22
 
22
23
  --[=[
23
24
  Starts the cmdr service on the client. Should be done via [ServiceBag].
@@ -15,6 +15,7 @@ local CmdrTemplateProviderServer = require("CmdrTemplateProviderServer")
15
15
  local Promise = require("Promise")
16
16
 
17
17
  local CmdrService = {}
18
+ CmdrService.ServiceName = "CmdrService"
18
19
 
19
20
  local GLOBAL_REGISTRY = setmetatable({}, {__mode = "kv"})
20
21