@fable-org/fable-library-ts 2.0.0-rc.2 → 2.0.0-rc.3
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 +6 -0
- package/Util.ts +1 -0
- package/package.json +1 -1
package/CHANGELOG.md
CHANGED
|
@@ -7,6 +7,12 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
|
|
|
7
7
|
|
|
8
8
|
## Unreleased
|
|
9
9
|
|
|
10
|
+
## 2.0.0-rc.3 - 2026-03-10
|
|
11
|
+
|
|
12
|
+
### Fixed
|
|
13
|
+
|
|
14
|
+
* [TS] Expose optional `stack` property on `Exception` (by @MangelMaxime)
|
|
15
|
+
|
|
10
16
|
## 2.0.0-rc.2 - 2026-03-03
|
|
11
17
|
|
|
12
18
|
### Fixed
|
package/Util.ts
CHANGED
|
@@ -79,6 +79,7 @@ export interface ICollection<T> extends IEnumerable<T> {
|
|
|
79
79
|
// Exception is intentionally not derived from Error, for performance reasons (see #2160)
|
|
80
80
|
export class Exception {
|
|
81
81
|
public message: string;
|
|
82
|
+
public stack?: string;
|
|
82
83
|
|
|
83
84
|
constructor(msg?: string) {
|
|
84
85
|
this.message = msg ?? "";
|
package/package.json
CHANGED