@quenty/undostack 7.18.0-canary.ae8d76d.0 → 7.18.1-canary.39d0eda.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,15 @@
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
- # [7.18.0-canary.ae8d76d.0](https://github.com/Quenty/NevermoreEngine/compare/@quenty/undostack@7.17.3...@quenty/undostack@7.18.0-canary.ae8d76d.0) (2025-05-10)
6
+ ## [7.18.1-canary.39d0eda.0](https://github.com/Quenty/NevermoreEngine/compare/@quenty/undostack@7.18.0...@quenty/undostack@7.18.1-canary.39d0eda.0) (2025-08-29)
7
+
8
+ **Note:** Version bump only for package @quenty/undostack
9
+
10
+
11
+
12
+
13
+
14
+ # [7.18.0](https://github.com/Quenty/NevermoreEngine/compare/@quenty/undostack@7.17.3...@quenty/undostack@7.18.0) (2025-05-10)
7
15
 
8
16
 
9
17
  ### Bug Fixes
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@quenty/undostack",
3
- "version": "7.18.0-canary.ae8d76d.0",
3
+ "version": "7.18.1-canary.39d0eda.0",
4
4
  "description": "Generalized undo stack for Roblox",
5
5
  "keywords": [
6
6
  "Roblox",
@@ -25,17 +25,17 @@
25
25
  "Quenty"
26
26
  ],
27
27
  "dependencies": {
28
- "@quenty/baseobject": "10.8.3",
29
- "@quenty/ducktype": "5.8.4",
30
- "@quenty/instanceutils": "13.18.0-canary.ae8d76d.0",
31
- "@quenty/loader": "10.8.3",
32
- "@quenty/maid": "3.4.3",
33
- "@quenty/promise": "10.11.0-canary.ae8d76d.0",
34
- "@quenty/signal": "7.10.3",
35
- "@quenty/valueobject": "13.18.0-canary.ae8d76d.0"
28
+ "@quenty/baseobject": "10.9.0",
29
+ "@quenty/ducktype": "5.9.0",
30
+ "@quenty/instanceutils": "13.18.1-canary.39d0eda.0",
31
+ "@quenty/loader": "10.9.0",
32
+ "@quenty/maid": "3.5.0",
33
+ "@quenty/promise": "10.11.1-canary.39d0eda.0",
34
+ "@quenty/signal": "7.11.1-canary.39d0eda.0",
35
+ "@quenty/valueobject": "13.18.1-canary.39d0eda.0"
36
36
  },
37
37
  "publishConfig": {
38
38
  "access": "public"
39
39
  },
40
- "gitHead": "ae8d76d996594e017ac4bfa19f3c064ebe307cd8"
40
+ "gitHead": "39d0edaa45d0c4812b43f2a64ad543fac3f79423"
41
41
  }
@@ -6,11 +6,11 @@
6
6
  local require = require(script.Parent.loader).load(script)
7
7
 
8
8
  local BaseObject = require("BaseObject")
9
+ local Maid = require("Maid")
10
+ local Observable = require("Observable")
9
11
  local Promise = require("Promise")
10
12
  local UndoStackEntry = require("UndoStackEntry")
11
13
  local ValueObject = require("ValueObject")
12
- local Maid = require("Maid")
13
- local Observable = require("Observable")
14
14
 
15
15
  local DEFAULT_MAX_SIZE = 25
16
16
 
@@ -290,4 +290,4 @@ function UndoStack._updateHasRedoEntries(self: UndoStack)
290
290
  self._hasRedoEntries.Value = #self._redoStack > 0
291
291
  end
292
292
 
293
- return UndoStack
293
+ return UndoStack
@@ -6,11 +6,11 @@
6
6
 
7
7
  local require = require(script.Parent.loader).load(script)
8
8
 
9
- local Promise = require("Promise")
10
- local Maid = require("Maid")
11
9
  local BaseObject = require("BaseObject")
12
- local Signal = require("Signal")
13
10
  local DuckTypeUtils = require("DuckTypeUtils")
11
+ local Maid = require("Maid")
12
+ local Promise = require("Promise")
13
+ local Signal = require("Signal")
14
14
 
15
15
  local UndoStackEntry = setmetatable({}, BaseObject)
16
16
  UndoStackEntry.ClassName = "UndoStackEntry"
@@ -137,4 +137,4 @@ function UndoStackEntry.PromiseRedo(self: UndoStackEntry, maid: Maid.Maid): Prom
137
137
  end
138
138
  end
139
139
 
140
- return UndoStackEntry
140
+ return UndoStackEntry