@quenty/ik 15.49.0 → 15.50.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,12 @@
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
+ # [15.50.0](https://github.com/Quenty/NevermoreEngine/compare/@quenty/ik@15.49.0...@quenty/ik@15.50.0) (2026-05-20)
7
+
8
+ ### Features
9
+
10
+ - **luau:** convert 41 trivial files to --!strict typing ([0edcac1](https://github.com/Quenty/NevermoreEngine/commit/0edcac1e5ce096662406c2685e22469c22c187e4))
11
+
6
12
  # [15.49.0](https://github.com/Quenty/NevermoreEngine/compare/@quenty/ik@15.48.2...@quenty/ik@15.49.0) (2026-05-18)
7
13
 
8
14
  **Note:** Version bump only for package @quenty/ik
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@quenty/ik",
3
- "version": "15.49.0",
3
+ "version": "15.50.0",
4
4
  "description": "Inverse Kinematics for characters on Roblox",
5
5
  "keywords": [
6
6
  "Roblox",
@@ -46,7 +46,7 @@
46
46
  "@quenty/promise": "10.18.0",
47
47
  "@quenty/qframe": "10.21.0",
48
48
  "@quenty/r15utils": "13.30.2",
49
- "@quenty/ragdoll": "15.48.0",
49
+ "@quenty/ragdoll": "15.49.0",
50
50
  "@quenty/remoting": "12.31.2",
51
51
  "@quenty/rx": "13.28.2",
52
52
  "@quenty/servicebag": "11.18.0",
@@ -62,5 +62,5 @@
62
62
  "publishConfig": {
63
63
  "access": "public"
64
64
  },
65
- "gitHead": "5cba15660c2856169fd0362e1eeeca4c260029c2"
65
+ "gitHead": "e9274ae087550f64d37a3a604b867829e438f8da"
66
66
  }
@@ -1,4 +1,4 @@
1
- --!nonstrict
1
+ --!strict
2
2
  --[=[
3
3
  @class IKRigInterface
4
4
  ]=]
@@ -1,4 +1,4 @@
1
- --!nonstrict
1
+ --!strict
2
2
  --[=[
3
3
  @class IKRigUtils
4
4
  ]=]
@@ -22,7 +22,7 @@ function IKRigUtils.getTimeBeforeNextUpdate(distance: number): number
22
22
  return updateRate
23
23
  end
24
24
 
25
- function IKRigUtils.getPlayerIKRig(binder, player: Player)
25
+ function IKRigUtils.getPlayerIKRig(binder: any, player: Player): any
26
26
  assert(binder, "Bad binder")
27
27
 
28
28
  local humanoid = CharacterUtils.getPlayerHumanoid(player)