@quenty/binder 6.3.0 → 7.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
+ # [7.0.0](https://github.com/Quenty/NevermoreEngine/compare/@quenty/binder@6.3.0...@quenty/binder@7.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
  # [6.3.0](https://github.com/Quenty/NevermoreEngine/compare/@quenty/binder@6.2.0...@quenty/binder@6.3.0) (2022-07-31)
7
18
 
8
19
  **Note:** Version bump only for package @quenty/binder
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@quenty/binder",
3
- "version": "6.3.0",
3
+ "version": "7.0.0",
4
4
  "description": "Utility object to Bind a class to Roblox object, and associated helper methods",
5
5
  "keywords": [
6
6
  "Roblox",
@@ -26,17 +26,17 @@
26
26
  ],
27
27
  "dependencies": {
28
28
  "@quenty/baseobject": "^5.1.0",
29
- "@quenty/brio": "^6.2.0",
30
- "@quenty/instanceutils": "^5.2.0",
31
- "@quenty/linkutils": "^5.2.0",
29
+ "@quenty/brio": "^7.0.0",
30
+ "@quenty/instanceutils": "^6.0.0",
31
+ "@quenty/linkutils": "^6.0.0",
32
32
  "@quenty/loader": "^5.0.0",
33
33
  "@quenty/maid": "^2.4.0",
34
34
  "@quenty/promise": "^5.1.0",
35
35
  "@quenty/signal": "^2.2.0",
36
- "@quenty/valueobject": "^5.2.0"
36
+ "@quenty/valueobject": "^6.0.0"
37
37
  },
38
38
  "publishConfig": {
39
39
  "access": "public"
40
40
  },
41
- "gitHead": "e31b3a35aa475bb5699a24898a8639e107165b36"
41
+ "gitHead": "dbb62609f980983cc32da90acfef13e30ed41113"
42
42
  }
@@ -9,6 +9,7 @@ local Promise = require("Promise")
9
9
 
10
10
  local BinderGroupProvider = {}
11
11
  BinderGroupProvider.ClassName = "BinderGroupProvider"
12
+ BinderGroupProvider.ServiceName = "BinderGroupProvider"
12
13
  BinderGroupProvider.__index = BinderGroupProvider
13
14
 
14
15
  --[=[
@@ -10,6 +10,7 @@ local Maid = require("Maid")
10
10
 
11
11
  local BinderProvider = {}
12
12
  BinderProvider.ClassName = "BinderProvider"
13
+ BinderProvider.ServiceName = "BinderProvider"
13
14
  BinderProvider.__index = BinderProvider
14
15
 
15
16
  --[=[