@quenty/resetservice 3.3.0 → 4.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
+ # [4.0.0](https://github.com/Quenty/NevermoreEngine/compare/@quenty/resetservice@3.3.0...@quenty/resetservice@4.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
  # [3.3.0](https://github.com/Quenty/NevermoreEngine/compare/@quenty/resetservice@3.2.0...@quenty/resetservice@3.3.0) (2022-07-31)
7
18
 
8
19
  **Note:** Version bump only for package @quenty/resetservice
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@quenty/resetservice",
3
- "version": "3.3.0",
3
+ "version": "4.0.0",
4
4
  "description": "Handles reset requests since Roblox's reset system doesn't handle ragdolls correctly",
5
5
  "keywords": [
6
6
  "Roblox",
@@ -35,5 +35,5 @@
35
35
  "publishConfig": {
36
36
  "access": "public"
37
37
  },
38
- "gitHead": "e31b3a35aa475bb5699a24898a8639e107165b36"
38
+ "gitHead": "dbb62609f980983cc32da90acfef13e30ed41113"
39
39
  }
@@ -20,6 +20,7 @@ local RETRY_ATTEMPTS = 3
20
20
  local INITIAL_WAIT_TIME = 1
21
21
 
22
22
  local ResetServiceClient = {}
23
+ ResetServiceClient.ServiceName = "ResetServiceClient"
23
24
 
24
25
  --[=[
25
26
  Initializes the reset service. Should be done via a [ServiceBag].
@@ -11,6 +11,7 @@ local ResetServiceConstants = require("ResetServiceConstants")
11
11
  local Maid = require("Maid")
12
12
 
13
13
  local ResetService = {}
14
+ ResetService.ServiceName = "ResetService"
14
15
 
15
16
  --[=[
16
17
  Initializes the reset service. Should be done via a [ServiceBag].