mathjs 11.3.0 → 11.3.1

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/HISTORY.md CHANGED
@@ -1,8 +1,18 @@
1
1
  # History
2
2
 
3
+ # 2022-10-19, 11.3.1
4
+
5
+ - Fix #2809: code completion issues in some IDE's (#2812).
6
+ - Fix #2818: throw an error when a function assignment has duplicate
7
+ parameter names (#2819).
8
+ - Update `decimal.js` to version `10.4.2`.
9
+
3
10
  # 2022-10-11, 11.3.0
4
11
 
5
- - Allow creating new subclasses of `Node` in TypeScript. Thanks @mattvague.
12
+ - Allow creating new subclasses of `Node` in TypeScript (#2772).
13
+ Note that this disables being able to narrow MathNodes by using the `.type`
14
+ property. Use typeguards like `isOperatorNode(...)` instead (see #2810).
15
+ Thanks @mattvague.
6
16
  - Fix #2793: `flatten()` cloning entries of array/Matrix (#2799).
7
17
  - Fix #2627: TypeScript definitions of `pinv` missing (#2804).
8
18
  Thanks @HanchaiN.