This repository has been archived by the owner on Jul 17, 2021. It is now read-only.
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
This PR contains the following updates:
^5.10.0
->^9.0.0
GitHub Vulnerability Alerts
CVE-2020-7743
The package mathjs before 7.5.1 are vulnerable to Prototype Pollution via the deepExtend function that runs upon configuration updates.
Release Notes
josdejong/mathjs
v9.4.2
Compare Source
eigs
, making it much morerobust. See #2179, #2237. Thanks @m93a.
parse
. Thanks @OpportunityLiu.v9.4.1
Compare Source
eigs
. Thanks @andrebianchessi.fraction.js@4.1.1
v9.4.0
Compare Source
Map
interface as scope,see #2143, #2166. Thanks @jhugman.
eigs
to support general complex matrices, see #1741. Thanks @m93a.matrixFromRows
,matrixFromColumns
, andmatrixFromFunction
, see #2155, #2153. Thanks @m93a.@types/mathjs
, and making it easier to improve the definitions. See #2187,#2192. Thanks @CatsMiaow.
complex.js@2.0.13
(fixing #2211). Thanks @infusionfraction.js@4.1.0
(pow
now supporting rational exponents).pickRandom
having no name. Thanks @HK-SHAO.a number.
row
andcolumn
.v9.3.2
Compare Source
@babel/runtime
dependency.Regression introduced in
v9.3.1
.v9.3.1
Compare Source
isPrime
, see #2139.Thanks @Yaffle.
evaluating a non-existing function.
FunctionNode.onUndefinedFunction(name)
and
SymbolNode.onUndefinedSymbol(name)
, allowing to override the behavior.By default, an Error is thrown.
v9.3.0
Compare Source
see #2122, #2121. Thanks @clnhlzmn.
luSolveAll
andusolveAll
.v9.2.0
Compare Source
count
to count the total elements in a matrix,see #2085. Thanks @Josef37.
crypto
.Thanks @Josef37.
v9.1.0
Compare Source
reshape
with support for a wildcard-1
to automaticallycalculate the remaining size, like
reshape([1, 2, 3, 4, 5, 6], [-1, 2])
which will output
[[0, 1], [2, 3], [4, 5]]
. See #2075. Thanks @Josef37.simplify
ignores second argument oflog
, for examplein
simplify('log(e, 9)')
. Thanks @quentintruong.v9.0.0
Compare Source
0b
,0c
, and0x
arenow unsigned by default. To parse them as signed, you have to specify a
suffix specifying the word size such as
i16
ori32
.format
now supports more notations:bin
, 'hex', andoct
,for example
format(255, {notation: "hex"})
.format
,bin
,hex
,oct
now allow specifying a wordSize,like
bin(10, 32)
andformat(10, {notation: "bin", wordSize: 32})
.Thanks @Josef37.
v8.1.1
Compare Source
Thanks @flaviut.
fraction.js
tov4.0.13
.see #2024, #2041. Thanks @harrysarson.
v8.1.0
Compare Source
kilogramforce
(kgf
). Thanks @rnd-debug.fractionsLimit
for functionsimplify
,defaulting to
Infinity
.clone
. Thanks @redbar0n.v8.0.1
Compare Source
of MathJax. Thanks @pkra.
v8.0.0
Compare Source
!!! BE CAREFUL: BREAKING CHANGES !!!
a transpiler (see #1928, #1941, #1962).
Automatically loading either commonjs code or ES modules code is improved.
All generated code is moved under
/lib
: the browser bundle is moved from/dist
to/lib/browser
, ES module files are moved to/lib/esm
,and commonjs files are moved to
/lib/cjs
. Thanks @GreenImp.dist/math.js
is no longer provided. Either use theminified bundle, or create a bundle yourself.
seed-random
withseedrandom
, see #1955.Thanks @poppinlp.
pickRandom
, see #1990, #1976.Will no longer return the input matrix when the given number is greater
than the length of the provided possibles. Instead, the function always
returns results with the requested number of picks.
Will now return a
Matrix
as output when input was aMatrix
.Introduced a new syntax:
Introduced a new option
elementWise
, which istrue
by default.When setting
elementWise
to false, an array containing arrays will returnrandom pick of arrays instead of the elements inside of the nested arrays.
v7.6.0
Compare Source
rotate(w, theta)
. See #1992, #1160. Thanks @rnd-debug.Unit.isValidAlpha
.See #1663, #2000. Thanks @rnd-debug.
v7.5.1
Compare Source
math.config
. Thanks Snyk.v7.5.0
Compare Source
pickRandom
now allows randomly picking elements from matriceswith 2 or more dimensions instead of only from a vector, see #1974.
Thanks @KonradLinkowski.
v7.4.0
Compare Source
ceil
,floor
,and
fix
, similar toround
, see #1967, #1901. Thanks @rnd-debug.rotationMatrix
, see #1160, #1984. Thanks @rnd-debug.sqrtm
with a matrix havingmore than two dimensions. Thanks @KonradLinkowski.
decimal.js
to10.2.1
.v7.3.0
Compare Source
usolveAll
andlsolveAll
, see #1916. Thanks @m93a.std
andvariance
, see #1950.Thanks @rnd-debug.
expression parser, and implemented functions
bin
,oct
, andhex
forformatting. Thanks @clnhlzmn.
BigNumber
andFraction
. Thanks @ovk.v7.2.0
Compare Source
diff
, see #1634, #1920. Thanks @Veeloxfire.norm
.Thanks @rnd-debug.
v7.1.0
Compare Source
new in
typed-function@2.0.0
. This fixes #1885: functions which whereextended with a new data type did not always work. Thanks @nickewing.
math.expression.node.*
instead ofmath.*
.v7.0.2
Compare Source
DenseMatrix.resize
andSparseMatrix.resize
acceptDenseMatrix
andSparseMatrix
as inputs too, not onlyArray
.sum
,prod
,min
, andmax
not throwing a conversion errorwhen passing a single string, like
sum("abc")
.v7.0.1
Compare Source
eigs
. Thanks @Lazersmoke.math.nthRoots(x)
.v7.0.0
Compare Source
Breaking changes:
dot
product of complex values.The first argument is now conjugated. See #1761. Thanks @m93a.
To upgrade smoothly from v5 to v7 or higher, upgrade to v6 first
and resolve all deprecation warnings.
v6.6.5
Compare Source
Infinity
cannot be serialized and deserialized.This is solved now with a new
math.replacer
function used asJSON.stringify(value, math.replacer)
.Infinity
not turned into the latex symbol\\infty
.v6.6.4
Compare Source
v6.6.3
Compare Source
format
,sometimes resulting in needless trailing zeros.
.toNumber()
and.toNumeric()
not working on aunitless unit.
mod
,and
,not
,or
,xor
,to
,in
as object keys. Thanks @Veeloxfire.eigs
not usingconfig.epsilon
.v6.6.2
Compare Source
eigs
not calculating with BigNumber precisionwhen input contains BigNumbers.
prepare
, so you can use the librarydirectly when installing directly from git. See #1751. Thanks @cinderblock.
v6.6.1
Compare Source
a/(b/c)
. Thanks @dbramwell.row
andcolumn
.v6.6.0
Compare Source
eigs
, see #1705, #542 #1175. Thanks @arkajitmandal.DenseMatrix
usingfromJSON
.DenseMatrix.map
copying the size and datatype from the originalmatrix instead of checking the returned dimensions and type of the callback.
^1.2.3
) to allow downstream updateswithout having to await a new release of mathjs.
v6.5.0
Compare Source
baseName
option forcreateUnit
, see #1707.Thanks @ericman314.
v6.4.0
Compare Source
dimension
with support for n-dimensional points.Thanks @Veeloxfire.
v6.3.0
Compare Source
factorial
forBigNumber
up to a factor two,see #1687. Thanks @kmdrGroch.
v6.2.5
Compare Source
IndexNode
using a hardcoded, one-based implementation ofindex
,making it impossible to instantiate a zero-based version of the expression
parser. See #782.
v6.2.4
Compare Source
thanks @kevinkelleher12 and @harrysarson.
sign(0)
returns complex NaN.Thanks @harrysarson.
v6.2.3
Compare Source
mean
not working for units. Thanks @clintonc.min
listed twice in the "See also" section of theembedded docs of function
std
.isPrime
, see #1641. Thanks @arguiot.v6.2.2
Compare Source
map
andclone
not copying thedotNotation
property ofIndexNode
. Thanks @rianmcguire.toHTML
. Thanks @maytanthegeek.isNumeric
.0
.v6.2.1
Compare Source
format
not working for expressions.v6.2.0
Compare Source
combinationsWithRep
. Thanks @waseemyusuf.bit
andbyte
.bit
andbyte
instead ofbits
andbytes
.typed-function@1.1.1
.v6.1.0
Compare Source
combinationsWithRep
(see #1329). Thanks @waseemyusuf.v6.0.4
Compare Source
old browsers. Thanks @mockdeep for helping to find a solution.
v6.0.3
Compare Source
unpkg
andjsdelivr
fields in package.json pointing to UMD build.Thanks @tmcw.
outer user defined function.
v6.0.2
Compare Source
import
(regression since v6.0.0).
v6.0.1
Compare Source
evaluate
andparse
missing in generated docs.v6.0.0
Compare Source
!!! BE CAREFUL: BREAKING CHANGES !!!
Most notable changes
Full support for ES modules. Support for tree-shaking out of the box.
Load all functions:
Use a few functions:
Load all functions with custom configuration:
Load a few functions with custom configuration:
Support for lightweight, number-only implementations of all functions:
New dependency injection solution used under the hood.
Breaking changes
Node 6 is no longer supported.
Functions
config
andimport
are not available anymore in the globalcontext:
Instead, create your own mathjs instance and pass config and imports
there:
Renamed function
typeof
totypeOf
,var
tovariance
,and
eval
toevaluate
. (the old function names are reserved keywordswhich can not be used as a variable name).
Deprecated the
Matrix.storage
function. Usemath.matrix
instead to createa matrix.
Deprecated function
math.expression.parse
, usemath.parse
instead.Was used before for example to customize supported characters by replacing
math.parse.isAlpha
.Moved all classes like
math.type.Unit
andmath.expression.Parser
tomath.Unit
andmath.Parser
respectively.Fixed #1428: transform iterating over replaced nodes. New behavior
is that it stops iterating when a node is replaced.
Dropped support for renaming factory functions when importing them.
Dropped fake BigNumber support of function
erf
.Removed all index.js files used to load specific functions instead of all, like:
Individual functions are now loaded simply like:
To set a specific configuration on the functions:
See example
advanced/custom_loading.js
.Updated the values of all physical units to their latest official values.
See #1529. Thanks @ericman314.
Non breaking changes
t
,tonne
,bel
,decibel
,dB
, and prefixesfor
candela
. Thanks @mcvladthegoat.epsilon
setting being applied globally to Complex numbers.math.simplify('add(2, 3)')
throwing an error.lowerExp
andupperExp
and after that rounded the value instead of the other way around.
'use strict'
in every file, not needed anymore.Configuration
📅 Schedule: "" (UTC).
🚦 Automerge: Disabled by config. Please merge this manually once you are satisfied.
♻ Rebasing: Whenever PR becomes conflicted, or you tick the rebase/retry checkbox.
🔕 Ignore: Close this PR and you won't be reminded about this update again.
This PR has been generated by WhiteSource Renovate. View repository job log here.