@quenty/promise 10.7.1 → 10.8.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
+ # [10.8.0](https://github.com/Quenty/NevermoreEngine/compare/@quenty/promise@10.7.1...@quenty/promise@10.8.0) (2024-11-06)
7
+
8
+
9
+ ### Bug Fixes
10
+
11
+ * Better stack traces ([247ce9b](https://github.com/Quenty/NevermoreEngine/commit/247ce9bd97753dec8c8fd6674f93cba2c7deca05))
12
+
13
+
14
+
15
+
16
+
6
17
  ## [10.7.1](https://github.com/Quenty/NevermoreEngine/compare/@quenty/promise@10.7.0...@quenty/promise@10.7.1) (2024-11-04)
7
18
 
8
19
  **Note:** Version bump only for package @quenty/promise
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@quenty/promise",
3
- "version": "10.7.1",
3
+ "version": "10.8.0",
4
4
  "description": "Promise implementation for Roblox",
5
5
  "keywords": [
6
6
  "Roblox",
@@ -32,5 +32,5 @@
32
32
  "publishConfig": {
33
33
  "access": "public"
34
34
  },
35
- "gitHead": "01c43a0ddd3c5e0cb2d9027313dbfa9852eedef1"
35
+ "gitHead": "00e6f71716216dd6ecbc8505ad898a1ab7f72756"
36
36
  }
@@ -43,7 +43,7 @@ function Promise.new(func)
43
43
  local self = setmetatable({
44
44
  _pendingExecuteList = {};
45
45
  _unconsumedException = true;
46
- _source = ENABLE_TRACEBACK and debug.traceback() or "";
46
+ _source = ENABLE_TRACEBACK and debug.traceback("Promise.new()", 2) or "";
47
47
  }, Promise)
48
48
 
49
49
  if type(func) == "function" then