mathjs 13.2.1 → 13.2.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/HISTORY.md +13 -0
- package/lib/browser/math.js +1 -1
- package/lib/browser/math.js.LICENSE.txt +2 -2
- package/lib/browser/math.js.map +1 -1
- package/lib/cjs/expression/parse.js +1 -1
- package/lib/cjs/function/matrix/filter.js +7 -0
- package/lib/cjs/function/matrix/forEach.js +7 -0
- package/lib/cjs/header.js +2 -2
- package/lib/cjs/utils/object.js +4 -0
- package/lib/cjs/version.js +1 -1
- package/lib/esm/expression/parse.js +1 -1
- package/lib/esm/function/matrix/filter.js +7 -0
- package/lib/esm/function/matrix/forEach.js +7 -0
- package/lib/esm/utils/object.js +4 -0
- package/lib/esm/version.js +1 -1
- package/package.json +2 -2
- package/types/index.d.ts +5 -7
package/HISTORY.md
CHANGED
@@ -1,5 +1,18 @@
|
|
1
1
|
# History
|
2
2
|
|
3
|
+
# 2024-11-20, 13.2.3
|
4
|
+
|
5
|
+
- Fix: #3260 improve type definitions and documentation on the callback
|
6
|
+
indices of `map`, `filter`, and `forEach`.
|
7
|
+
- Fix: #3323 support functions in function `clone`.
|
8
|
+
- Docs: fix a broken link in the documentation (#3316).
|
9
|
+
Thanks @emmanuel-ferdman.
|
10
|
+
|
11
|
+
# 2024-11-13, 13.2.2
|
12
|
+
|
13
|
+
- Fix: #1455 implicit multiplication of a fraction with unit `in` is incorrect
|
14
|
+
(#3315). Thanks @nkumawat34.
|
15
|
+
|
3
16
|
# 2024-11-06, 13.2.1
|
4
17
|
|
5
18
|
- Update to the latest version of `complex.js`.
|