@quenty/humanoidspeed 12.33.0-canary.00067520041c.0 → 12.33.1-canary.bf9591f.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,7 +3,42 @@
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
- # [12.33.0-canary.00067520041c.0](https://github.com/Quenty/NevermoreEngine/compare/@quenty/humanoidspeed@12.32.4...@quenty/humanoidspeed@12.33.0-canary.00067520041c.0) (2025-12-29)
6
+ ## [12.33.1-canary.bf9591f.0](https://github.com/Quenty/NevermoreEngine/compare/@quenty/humanoidspeed@12.33.0...@quenty/humanoidspeed@12.33.1-canary.bf9591f.0) (2026-01-05)
7
+
8
+ **Note:** Version bump only for package @quenty/humanoidspeed
9
+
10
+
11
+
12
+
13
+
14
+ # [12.33.0](https://github.com/Quenty/NevermoreEngine/compare/@quenty/humanoidspeed@12.32.7...@quenty/humanoidspeed@12.33.0) (2026-01-04)
15
+
16
+ **Note:** Version bump only for package @quenty/humanoidspeed
17
+
18
+
19
+
20
+
21
+
22
+ ## [12.32.7](https://github.com/Quenty/NevermoreEngine/compare/@quenty/humanoidspeed@12.32.6...@quenty/humanoidspeed@12.32.7) (2026-01-03)
23
+
24
+ **Note:** Version bump only for package @quenty/humanoidspeed
25
+
26
+
27
+
28
+
29
+
30
+ ## [12.32.6](https://github.com/Quenty/NevermoreEngine/compare/@quenty/humanoidspeed@12.32.5...@quenty/humanoidspeed@12.32.6) (2025-12-31)
31
+
32
+
33
+ ### Bug Fixes
34
+
35
+ * Fix dependencies missing in packages ([97bd47d](https://github.com/Quenty/NevermoreEngine/commit/97bd47d341017152f91a28d8444252d20a8de9fa))
36
+
37
+
38
+
39
+
40
+
41
+ ## [12.32.5](https://github.com/Quenty/NevermoreEngine/compare/@quenty/humanoidspeed@12.32.4...@quenty/humanoidspeed@12.32.5) (2025-12-29)
7
42
 
8
43
  **Note:** Version bump only for package @quenty/humanoidspeed
9
44
 
package/LICENSE.md CHANGED
@@ -1,6 +1,6 @@
1
1
  MIT License
2
2
 
3
- Copyright (c) 2014-2025 James Onnen (Quenty)
3
+ Copyright (c) 2014-2026 James Onnen (Quenty)
4
4
 
5
5
  Permission is hereby granted, free of charge, to any person obtaining a copy
6
6
  of this software and associated documentation files (the "Software"), to deal
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@quenty/humanoidspeed",
3
- "version": "12.33.0-canary.00067520041c.0",
3
+ "version": "12.33.1-canary.bf9591f.0",
4
4
  "description": "Handles humanoid speed in a centralized location",
5
5
  "keywords": [
6
6
  "Roblox",
@@ -27,16 +27,18 @@
27
27
  "Quenty"
28
28
  ],
29
29
  "dependencies": {
30
- "@quenty/baseobject": "10.9.0",
31
- "@quenty/binder": "14.26.0-canary.00067520041c.0",
32
- "@quenty/characterutils": "12.23.0-canary.00067520041c.0",
33
- "@quenty/loader": "10.9.0",
34
- "@quenty/promise": "10.13.0-canary.00067520041c.0",
35
- "@quenty/rogue-humanoid": "10.33.0-canary.00067520041c.0",
36
- "@quenty/table": "3.8.0"
30
+ "@quenty/baseobject": "10.9.1",
31
+ "@quenty/binder": "14.26.1-canary.bf9591f.0",
32
+ "@quenty/characterutils": "12.23.0",
33
+ "@quenty/loader": "10.9.1",
34
+ "@quenty/playerhumanoidbinder": "14.26.1-canary.bf9591f.0",
35
+ "@quenty/promise": "10.12.4",
36
+ "@quenty/rogue-humanoid": "10.33.1-canary.bf9591f.0",
37
+ "@quenty/servicebag": "11.13.4",
38
+ "@quenty/table": "3.9.0"
37
39
  },
38
40
  "publishConfig": {
39
41
  "access": "public"
40
42
  },
41
- "gitHead": "00067520041c809a1cf0d94230a08118a8f62212"
43
+ "gitHead": "bf9591fe2d08dbefae47f8c449b7bbf20c01fdfe"
42
44
  }
@@ -1,3 +1,4 @@
1
+ --!nonstrict
1
2
  --[=[
2
3
  Holds binders
3
4
  @class HumanoidSpeedBindersClient
@@ -6,8 +7,9 @@
6
7
  local require = require(script.Parent.loader).load(script)
7
8
 
8
9
  local BinderProvider = require("BinderProvider")
10
+ local ServiceBag = require("ServiceBag")
9
11
 
10
- return BinderProvider.new(script.Name, function(self, serviceBag)
12
+ return BinderProvider.new(script.Name, function(self, serviceBag: ServiceBag.ServiceBag)
11
13
  serviceBag:GetService(require("RogueHumanoidServiceClient"))
12
14
 
13
15
  --[=[
@@ -1,3 +1,4 @@
1
+ --!nonstrict
1
2
  --[=[
2
3
  Client version of the [HumanoidSpeed] class
3
4
 
@@ -1,3 +1,4 @@
1
+ --!nonstrict
1
2
  --[=[
2
3
  Manages speed of a humanoid
3
4
 
@@ -1,3 +1,4 @@
1
+ --!nonstrict
1
2
  --[=[
2
3
  Holds binders
3
4
  @class HumanoidSpeedBindersServer
@@ -6,8 +7,9 @@
6
7
  local require = require(script.Parent.loader).load(script)
7
8
 
8
9
  local BinderProvider = require("BinderProvider")
10
+ local ServiceBag = require("ServiceBag")
9
11
 
10
- return BinderProvider.new(script.Name, function(self, serviceBag)
12
+ return BinderProvider.new(script.Name, function(self, serviceBag: ServiceBag.ServiceBag)
11
13
  serviceBag:GetService(require("RogueHumanoidService"))
12
14
 
13
15
  --[=[