mathjs 14.8.0 → 14.8.2
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 +14 -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/core/function/config.js +1 -1
- package/lib/cjs/header.js +2 -2
- package/lib/cjs/utils/optimizeCallback.js +2 -3
- package/lib/cjs/version.js +1 -1
- package/lib/esm/core/function/config.js +1 -1
- package/lib/esm/utils/optimizeCallback.js +2 -3
- package/lib/esm/version.js +1 -1
- package/package.json +1 -1
- package/types/index.d.ts +32 -14
package/HISTORY.md
CHANGED
@@ -1,5 +1,19 @@
|
|
1
1
|
# History
|
2
2
|
|
3
|
+
# 2025-10-03, 14.8.2
|
4
|
+
|
5
|
+
- Fix: improve performance in functions like `map` when passing a unary
|
6
|
+
function (#3546). Thanks @dvd101x.
|
7
|
+
- Fix: improve the type definition of `abs(complex)` which returns a `number`
|
8
|
+
(#3543). Thanks @joshkel.
|
9
|
+
- Fix: add missing type definitions for `ctranspose` (#3545). Thanks @joshkel.
|
10
|
+
- Fix: typos in code comments (#3544). Thanks @joshkel.
|
11
|
+
|
12
|
+
# 2025-09-26, 14.8.1
|
13
|
+
|
14
|
+
- Fix: #3538 `config` printing a warning when using `{ number: 'bigint' }`
|
15
|
+
(#3540).
|
16
|
+
|
3
17
|
# 2025-09-24, 14.8.0
|
4
18
|
|
5
19
|
- Feat: #3353 support for the nullish coalescing operator `??` in the
|