Skip to content

Commit

Permalink
fix: bump mathjs from 9.5.2 to 12.2.1 in /typescript (#1858)
Browse files Browse the repository at this point in the history
Bumps [mathjs](https://github.com/josdejong/mathjs) from 9.5.2 to
12.2.1.
<details>
<summary>Changelog</summary>
<p><em>Sourced from <a
href="https://github.com/josdejong/mathjs/blob/develop/HISTORY.md">mathjs's
changelog</a>.</em></p>
<blockquote>
<h1>2023-12-20, 12.2.1</h1>
<ul>
<li>Fix <a
href="https://redirect.github.com/josdejong/mathjs/issues/3109">#3109</a>:
method <code>Node.toHTML</code> not accepting a custom
<code>handler</code>.</li>
</ul>
<h1>2023-12-08, 12.2.0</h1>
<ul>
<li>Feat: lazy evaluation of operators <code>and</code>,
<code>or</code>, <code>&amp;</code>, <code>|</code> (<a
href="https://redirect.github.com/josdejong/mathjs/issues/3090">#3090</a>,
<a
href="https://redirect.github.com/josdejong/mathjs/issues/3101">#3101</a>,
<a
href="https://redirect.github.com/josdejong/mathjs/issues/2766">#2766</a>).
Thanks <a
href="https://github.com/smith120bh"><code>@​smith120bh</code></a>.</li>
<li>Fix: passing a 4th argument with a scope to raw functions.</li>
<li>Fix: <a
href="https://redirect.github.com/josdejong/mathjs/issues/3096">#3096</a>
embedded docs of eigs throwing an error.</li>
</ul>
<h1>2023-11-17, 12.1.0</h1>
<ul>
<li>Feat: Extend function <code>round</code> with support for units (<a
href="https://redirect.github.com/josdejong/mathjs/issues/2761">#2761</a>,
<a
href="https://redirect.github.com/josdejong/mathjs/issues/3095">#3095</a>).</li>
<li>Feat: Extend function <code>mod</code> with support for negative
divisors in when
using <code>BigNumber</code> or <code>Fraction</code> (<a
href="https://redirect.github.com/josdejong/mathjs/issues/3087">#3087</a>).</li>
<li>Fix: <a
href="https://redirect.github.com/josdejong/mathjs/issues/3092">#3092</a>
a typo in an error message when converting a string into a number.</li>
<li>Fix: <a
href="https://redirect.github.com/josdejong/mathjs/issues/3094">#3094</a>
function <code>derivative</code> mutates the input expression when it
fails.</li>
</ul>
<h1>2023-10-26, 12.0.0</h1>
<p>Breaking changes:</p>
<ul>
<li>Fix <a
href="https://redirect.github.com/josdejong/mathjs/issues/2879">#2879</a>,
<a
href="https://redirect.github.com/josdejong/mathjs/issues/2927">#2927</a>,
<a
href="https://redirect.github.com/josdejong/mathjs/issues/3014">#3014</a>:
change the confusing interface of <code>eigs</code> (<a
href="https://redirect.github.com/josdejong/mathjs/issues/3037">#3037</a>),
thanks <a
href="https://github.com/gwhitney"><code>@​gwhitney</code></a>.
Before, functions <code>eigs</code> returned an object:
<pre><code>{ values: MathCollection; vectors: MathCollection }
</code></pre>
where <code>vectors</code> was a 2d matrix of which the columns
contained the vectors.
This is changed to <code>eigs</code> returning an object:
<pre><code>{ 
  values: MathCollection
  eigenvectors: Array&lt;{
    value: number | BigNumber
    vector: MathCollection
  }&gt;
}
</code></pre>
Where <code>eigenvectors</code> is an array containing an object with
the corresponding
eigenvalue and vector.</li>
<li>Refactored the TypeScript type definitions to make them work with a
<code>NodeNext</code>
module resolution (<a
href="https://redirect.github.com/josdejong/mathjs/issues/3079">#3079</a>,
<a
href="https://redirect.github.com/josdejong/mathjs/issues/2919">#2919</a>).
<ul>
<li>Type <code>MathJsStatic</code> is renamed to
<code>MathJsInstance</code>.</li>
<li>Type <code>FactoryDependencies</code> is deprecated, use
<code>MathJsFactory</code> instead, and
import dependency maps directly from the library.</li>
</ul>
</li>
</ul>
<!-- raw HTML omitted -->
</blockquote>
<p>... (truncated)</p>
</details>
<details>
<summary>Commits</summary>
<ul>
<li><a
href="https://github.com/josdejong/mathjs/commit/665807c46e7f8a29fa791e8b2c9e18917a62fd87"><code>665807c</code></a>
chore: up version number, and pin fraction.js at v4.3.4</li>
<li><a
href="https://github.com/josdejong/mathjs/commit/4d6287ebec3cf3000d361247f8b3a6aafc6ed415"><code>4d6287e</code></a>
chore: oopsie, update version number in version.js</li>
<li><a
href="https://github.com/josdejong/mathjs/commit/9029c399297213cc046c4b8cbea04337f4b61e18"><code>9029c39</code></a>
chore: publish v12.2.1</li>
<li><a
href="https://github.com/josdejong/mathjs/commit/6047e1d9c22cc7566d7847385e9c4a1c39ed98d2"><code>6047e1d</code></a>
chore: upgrade devDependencies</li>
<li><a
href="https://github.com/josdejong/mathjs/commit/b32875f7052b33da8c656ed371950c43eb5c7123"><code>b32875f</code></a>
chore: upgrade node and Github actions versions for CI</li>
<li><a
href="https://github.com/josdejong/mathjs/commit/a6cc8e71289e80ee8acb6b74b81a1977fd16f984"><code>a6cc8e7</code></a>
fix: <a
href="https://redirect.github.com/josdejong/mathjs/issues/3109">#3109</a>
method <code>Node.toHTML</code> not accepting a custom
<code>handler</code></li>
<li><a
href="https://github.com/josdejong/mathjs/commit/29bae8a9bd63399d2d1ac1fe32279c9740935188"><code>29bae8a</code></a>
chore: publish <code>v12.2.0</code></li>
<li><a
href="https://github.com/josdejong/mathjs/commit/863abb200d52e8ab62169c8678bf17286fdbcb90"><code>863abb2</code></a>
chore: update devDependencies</li>
<li><a
href="https://github.com/josdejong/mathjs/commit/777417b6162e2cbc8734efdfa10ec98166eb0a98"><code>777417b</code></a>
docs: update history</li>
<li><a
href="https://github.com/josdejong/mathjs/commit/e646388b9cbc8ba67d383b021ba48d7cb5938369"><code>e646388</code></a>
Merge remote-tracking branch 'origin/develop' into develop</li>
<li>Additional commits viewable in <a
href="https://github.com/josdejong/mathjs/compare/v9.5.2...v12.2.1">compare
view</a></li>
</ul>
</details>
<br />


[![Dependabot compatibility
score](https://dependabot-badges.githubapp.com/badges/compatibility_score?dependency-name=mathjs&package-manager=npm_and_yarn&previous-version=9.5.2&new-version=12.2.1)](https://docs.github.com/en/github/managing-security-vulnerabilities/about-dependabot-security-updates#about-compatibility-scores)

Dependabot will resolve any conflicts with this PR as long as you don't
alter it yourself. You can also trigger a rebase manually by commenting
`@dependabot rebase`.

[//]: # (dependabot-automerge-start)
[//]: # (dependabot-automerge-end)

---

<details>
<summary>Dependabot commands and options</summary>
<br />

You can trigger Dependabot actions by commenting on this PR:
- `@dependabot rebase` will rebase this PR
- `@dependabot recreate` will recreate this PR, overwriting any edits
that have been made to it
- `@dependabot merge` will merge this PR after your CI passes on it
- `@dependabot squash and merge` will squash and merge this PR after
your CI passes on it
- `@dependabot cancel merge` will cancel a previously requested merge
and block automerging
- `@dependabot reopen` will reopen this PR if it is closed
- `@dependabot close` will close this PR and stop Dependabot recreating
it. You can achieve the same result by closing it manually
- `@dependabot show <dependency name> ignore conditions` will show all
of the ignore conditions of the specified dependency
- `@dependabot ignore this major version` will close this PR and stop
Dependabot creating any more for this major version (unless you reopen
the PR or upgrade to it yourself)
- `@dependabot ignore this minor version` will close this PR and stop
Dependabot creating any more for this minor version (unless you reopen
the PR or upgrade to it yourself)
- `@dependabot ignore this dependency` will close this PR and stop
Dependabot creating any more for this dependency (unless you reopen the
PR or upgrade to it yourself)


</details>

Signed-off-by: dependabot[bot] <[email protected]>
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
  • Loading branch information
dependabot[bot] authored Jan 10, 2024
1 parent 60d4f49 commit 3aa1d7c
Show file tree
Hide file tree
Showing 2 changed files with 19 additions and 19 deletions.
36 changes: 18 additions & 18 deletions typescript/package-lock.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion typescript/packages/subsurface-viewer/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -39,7 +39,7 @@
"deck.gl": "^8.9.32",
"gl-matrix": "^3.4.3",
"lodash": "^4.17.21",
"mathjs": "^9.4.2",
"mathjs": "^12.2.1",
"react-redux": "^8.1.1"
},
"peerDependencies": {
Expand Down

0 comments on commit 3aa1d7c

Please sign in to comment.