@quenty/racketingropeconstraint 12.28.6 → 12.28.7-canary.ba2274e.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
+ ## [12.28.7-canary.ba2274e.0](https://github.com/Quenty/NevermoreEngine/compare/@quenty/racketingropeconstraint@12.28.6...@quenty/racketingropeconstraint@12.28.7-canary.ba2274e.0) (2026-01-02)
7
+
8
+
9
+ ### Bug Fixes
10
+
11
+ * Fix missing servicebag dependencies ([ba2274e](https://github.com/Quenty/NevermoreEngine/commit/ba2274ec070356518a157d80f912b05de9f74451))
12
+
13
+
14
+
15
+
16
+
6
17
  ## [12.28.6](https://github.com/Quenty/NevermoreEngine/compare/@quenty/racketingropeconstraint@12.28.5...@quenty/racketingropeconstraint@12.28.6) (2025-12-31)
7
18
 
8
19
  **Note:** Version bump only for package @quenty/racketingropeconstraint
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@quenty/racketingropeconstraint",
3
- "version": "12.28.6",
3
+ "version": "12.28.7-canary.ba2274e.0",
4
4
  "description": "Tries to racket a rope constraint back down to a reasonable length",
5
5
  "keywords": [
6
6
  "Roblox",
@@ -27,16 +27,17 @@
27
27
  "Quenty"
28
28
  ],
29
29
  "dependencies": {
30
- "@quenty/baseobject": "^10.9.0",
31
- "@quenty/binder": "^14.25.6",
32
- "@quenty/loader": "^10.9.0",
33
- "@quenty/overriddenproperty": "^10.10.0",
34
- "@quenty/promise": "^10.12.3",
35
- "@quenty/tie": "^10.26.6",
36
- "@quenty/valueobject": "^13.21.6"
30
+ "@quenty/baseobject": "10.9.0",
31
+ "@quenty/binder": "14.25.7-canary.ba2274e.0",
32
+ "@quenty/loader": "10.9.0",
33
+ "@quenty/overriddenproperty": "10.10.0",
34
+ "@quenty/promise": "10.12.3",
35
+ "@quenty/servicebag": "11.13.3",
36
+ "@quenty/tie": "10.26.6",
37
+ "@quenty/valueobject": "13.21.6"
37
38
  },
38
39
  "publishConfig": {
39
40
  "access": "public"
40
41
  },
41
- "gitHead": "ed3284dd547d8f9922043ca68ed16bf3769806bb"
42
+ "gitHead": "ba2274ec070356518a157d80f912b05de9f74451"
42
43
  }
@@ -12,6 +12,7 @@ local Binder = require("Binder")
12
12
  local OverriddenProperty = require("OverriddenProperty")
13
13
  local Promise = require("Promise")
14
14
  local RacketingRopeConstraintInterface = require("RacketingRopeConstraintInterface")
15
+ local ServiceBag = require("ServiceBag")
15
16
  local TieRealmService = require("TieRealmService")
16
17
  local ValueObject = require("ValueObject")
17
18
 
@@ -21,7 +22,7 @@ local RacketingRopeConstraint = setmetatable({}, BaseObject)
21
22
  RacketingRopeConstraint.ClassName = "RacketingRopeConstraint"
22
23
  RacketingRopeConstraint.__index = RacketingRopeConstraint
23
24
 
24
- function RacketingRopeConstraint.new(ropeConstraint, serviceBag)
25
+ function RacketingRopeConstraint.new(ropeConstraint, serviceBag: ServiceBag.ServiceBag)
25
26
  local self = setmetatable(BaseObject.new(ropeConstraint), RacketingRopeConstraint)
26
27
 
27
28
  self._serviceBag = assert(serviceBag, "No serviceBag")