@quenty/settings 11.49.0 → 11.49.2

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,25 @@
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
+ ## [11.49.2](https://github.com/Quenty/NevermoreEngine/compare/@quenty/settings@11.49.1...@quenty/settings@11.49.2) (2026-04-29)
7
+
8
+ **Note:** Version bump only for package @quenty/settings
9
+
10
+
11
+
12
+
13
+
14
+ ## [11.49.1](https://github.com/Quenty/NevermoreEngine/compare/@quenty/settings@11.49.0...@quenty/settings@11.49.1) (2026-04-27)
15
+
16
+
17
+ ### Bug Fixes
18
+
19
+ * Prevent input rebind oscillation ([59049b8](https://github.com/Quenty/NevermoreEngine/commit/59049b8159cf79b1715a2efe6fafd952ca7e6e2f))
20
+
21
+
22
+
23
+
24
+
6
25
  # [11.49.0](https://github.com/Quenty/NevermoreEngine/compare/@quenty/settings@11.48.0...@quenty/settings@11.49.0) (2026-04-23)
7
26
 
8
27
  **Note:** Version bump only for package @quenty/settings
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@quenty/settings",
3
- "version": "11.49.0",
3
+ "version": "11.49.2",
4
4
  "description": "Centralized player settings service",
5
5
  "keywords": [
6
6
  "Roblox",
@@ -28,42 +28,42 @@
28
28
  "Quenty"
29
29
  ],
30
30
  "dependencies": {
31
- "@quenty/attributeutils": "14.29.0",
31
+ "@quenty/attributeutils": "14.29.1",
32
32
  "@quenty/baseobject": "10.13.0",
33
- "@quenty/binder": "14.34.0",
34
- "@quenty/brio": "14.29.0",
33
+ "@quenty/binder": "14.34.1",
34
+ "@quenty/brio": "14.29.1",
35
35
  "@quenty/canceltoken": "11.19.0",
36
- "@quenty/cmdrservice": "13.41.0",
37
- "@quenty/datastore": "13.37.0",
36
+ "@quenty/cmdrservice": "13.41.1",
37
+ "@quenty/datastore": "13.37.1",
38
38
  "@quenty/ducktype": "5.11.0",
39
39
  "@quenty/enumutils": "3.4.5",
40
- "@quenty/instanceutils": "13.29.0",
40
+ "@quenty/instanceutils": "13.29.1",
41
41
  "@quenty/jsonutils": "10.18.0",
42
42
  "@quenty/loader": "10.11.0",
43
43
  "@quenty/maid": "3.9.0",
44
44
  "@quenty/nevermore-test-runner": "1.4.0",
45
- "@quenty/observablecollection": "12.36.0",
46
- "@quenty/playerbinder": "14.34.0",
47
- "@quenty/playerutils": "8.31.0",
45
+ "@quenty/observablecollection": "12.36.1",
46
+ "@quenty/playerbinder": "14.34.1",
47
+ "@quenty/playerutils": "8.31.1",
48
48
  "@quenty/promise": "10.18.0",
49
49
  "@quenty/remotefunctionutils": "10.18.0",
50
- "@quenty/remoting": "12.31.0",
51
- "@quenty/rx": "13.28.0",
52
- "@quenty/rxbinderutils": "14.34.0",
53
- "@quenty/rxsignal": "7.28.0",
50
+ "@quenty/remoting": "12.31.1",
51
+ "@quenty/rx": "13.28.1",
52
+ "@quenty/rxbinderutils": "14.34.1",
53
+ "@quenty/rxsignal": "7.28.1",
54
54
  "@quenty/servicebag": "11.17.0",
55
55
  "@quenty/signal": "7.13.0",
56
- "@quenty/statestack": "14.31.0",
56
+ "@quenty/statestack": "14.31.1",
57
57
  "@quenty/string": "3.3.6",
58
58
  "@quenty/symbol": "3.5.2",
59
59
  "@quenty/table": "3.9.2",
60
- "@quenty/throttle": "10.12.0",
61
- "@quenty/tie": "10.38.0",
62
- "@quenty/valueobject": "13.30.0",
60
+ "@quenty/throttle": "10.12.1",
61
+ "@quenty/tie": "10.38.1",
62
+ "@quenty/valueobject": "13.30.1",
63
63
  "@quentystudios/jest-lua": "3.10.0-quenty.2"
64
64
  },
65
65
  "publishConfig": {
66
66
  "access": "public"
67
67
  },
68
- "gitHead": "9413391da8b6f9026762285b601fd1d37d385a54"
68
+ "gitHead": "6801a02bc7e7de951df4b9f65c0efc27b642db70"
69
69
  }
@@ -152,7 +152,11 @@ function PlayerSettingsClient.ObserveValue<T>(
152
152
  end
153
153
  end
154
154
 
155
- maid:GiveTask(self._pendingReplicationDataInTransit.Changed:Connect(update))
155
+ maid:GiveTask(self._pendingReplicationDataInTransit.Changed:Connect(function(newValue)
156
+ if newValue ~= nil then
157
+ update()
158
+ end
159
+ end))
156
160
 
157
161
  self._toReplicateCallbacks[settingName] = self._toReplicateCallbacks[settingName] or {}
158
162
  self._toReplicateCallbacks[settingName][update] = true