@quenty/deathreport 3.3.1 → 3.4.0-canary.d601d03.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
+ # [3.4.0-canary.d601d03.0](https://github.com/Quenty/NevermoreEngine/compare/@quenty/deathreport@3.3.1...@quenty/deathreport@3.4.0-canary.d601d03.0) (2022-11-12)
7
+
8
+
9
+ ### Features
10
+
11
+ * Binder provider now provides name for debugging ([72d547e](https://github.com/Quenty/NevermoreEngine/commit/72d547ea47358dfab1128dd076723f5a1a0d9fd8))
12
+
13
+
14
+
15
+
16
+
6
17
  ## [3.3.1](https://github.com/Quenty/NevermoreEngine/compare/@quenty/deathreport@3.3.0...@quenty/deathreport@3.3.1) (2022-11-04)
7
18
 
8
19
  **Note:** Version bump only for package @quenty/deathreport
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@quenty/deathreport",
3
- "version": "3.3.1",
3
+ "version": "3.4.0-canary.d601d03.0",
4
4
  "description": "Death report service which will track the deaths of players",
5
5
  "keywords": [
6
6
  "Roblox",
@@ -29,19 +29,19 @@
29
29
  "access": "public"
30
30
  },
31
31
  "dependencies": {
32
- "@quenty/baseobject": "^6.0.1",
33
- "@quenty/binder": "^8.1.1",
34
- "@quenty/characterutils": "^6.0.1",
35
- "@quenty/humanoidkillerutils": "^2.2.0",
36
- "@quenty/loader": "^6.0.1",
37
- "@quenty/maid": "^2.4.0",
38
- "@quenty/playerhumanoidbinder": "^8.1.1",
39
- "@quenty/remoting": "^6.0.1",
40
- "@quenty/rx": "^7.1.1",
41
- "@quenty/rxbinderutils": "^8.2.1",
42
- "@quenty/servicebag": "^6.1.1",
43
- "@quenty/signal": "^2.3.0",
44
- "@quenty/table": "^3.1.0"
32
+ "@quenty/baseobject": "6.0.1",
33
+ "@quenty/binder": "8.2.0-canary.d601d03.0",
34
+ "@quenty/characterutils": "6.0.1",
35
+ "@quenty/humanoidkillerutils": "2.2.0",
36
+ "@quenty/loader": "6.0.1",
37
+ "@quenty/maid": "2.4.0",
38
+ "@quenty/playerhumanoidbinder": "8.2.0-canary.d601d03.0",
39
+ "@quenty/remoting": "6.0.1",
40
+ "@quenty/rx": "7.1.1",
41
+ "@quenty/rxbinderutils": "8.3.0-canary.d601d03.0",
42
+ "@quenty/servicebag": "6.2.0-canary.d601d03.0",
43
+ "@quenty/signal": "2.3.0",
44
+ "@quenty/table": "3.1.0"
45
45
  },
46
- "gitHead": "8b9877c26a3fc753409a5114e56717837291279d"
46
+ "gitHead": "d601d0346a3aa2d3cf2b3e0ed54d0dbc062b9a87"
47
47
  }
@@ -7,7 +7,7 @@ local require = require(script.Parent.loader).load(script)
7
7
  local BinderProvider = require("BinderProvider")
8
8
  local Binder = require("Binder")
9
9
 
10
- return BinderProvider.new(function(self, serviceBag)
10
+ return BinderProvider.new(script.Name, function(self, serviceBag)
11
11
  -- Stats
12
12
  self:Add(Binder.new("TeamKillTracker", require("TeamKillTrackerClient"), serviceBag))
13
13
  self:Add(Binder.new("PlayerKillTracker", require("PlayerKillTrackerClient"), serviceBag))
@@ -8,7 +8,7 @@ local BinderProvider = require("BinderProvider")
8
8
  local PlayerHumanoidBinder = require("PlayerHumanoidBinder")
9
9
  local Binder = require("Binder")
10
10
 
11
- return BinderProvider.new(function(self, serviceBag)
11
+ return BinderProvider.new(script.Name, function(self, serviceBag)
12
12
  -- Tracking
13
13
  self:Add(PlayerHumanoidBinder.new("DeathTrackedHumanoid", require("DeathTrackedHumanoid"), serviceBag))
14
14