mathigon / fermat.js

Mathematics and statistics library for TypeScript.
http://mathigon.io/fermat
MIT License
103 stars 15 forks source link

Update Dev Dependencies #185

Closed mend-for-github-com[bot] closed 1 month ago

mend-for-github-com[bot] commented 2 months ago

This PR contains the following updates:

Package Type Update Change
esbuild devDependencies patch 0.23.0 -> 0.23.1
eslint-plugin-import devDependencies minor 2.29.1 -> 2.30.0
tape devDependencies minor 5.8.1 -> 5.9.0

Release Notes

evanw/esbuild (esbuild) ### [`v0.23.1`](https://togithub.com/evanw/esbuild/blob/HEAD/CHANGELOG.md#0231) [Compare Source](https://togithub.com/evanw/esbuild/compare/v0.23.0...v0.23.1) - Allow using the `node:` import prefix with `es*` targets ([#​3821](https://togithub.com/evanw/esbuild/issues/3821)) The [`node:` prefix on imports](https://nodejs.org/api/esm.html#node-imports) is an alternate way to import built-in node modules. For example, `import fs from "fs"` can also be written `import fs from "node:fs"`. This only works with certain newer versions of node, so esbuild removes it when you target older versions of node such as with `--target=node14` so that your code still works. With the way esbuild's platform-specific feature compatibility table works, this was added by saying that only newer versions of node support this feature. However, that means that a target such as `--target=node18,es2022` removes the `node:` prefix because none of the `es*` targets are known to support this feature. This release adds the support for the `node:` flag to esbuild's internal compatibility table for `es*` to allow you to use compound targets like this: ```js // Original code import fs from 'node:fs' fs.open // Old output (with --bundle --format=esm --platform=node --target=node18,es2022) import fs from "fs"; fs.open; // New output (with --bundle --format=esm --platform=node --target=node18,es2022) import fs from "node:fs"; fs.open; ``` - Fix a panic when using the CLI with invalid build flags if `--analyze` is present ([#​3834](https://togithub.com/evanw/esbuild/issues/3834)) Previously esbuild's CLI could crash if it was invoked with flags that aren't valid for a "build" API call and the `--analyze` flag is present. This was caused by esbuild's internals attempting to add a Go plugin (which is how `--analyze` is implemented) to a null build object. The panic has been fixed in this release. - Fix incorrect location of certain error messages ([#​3845](https://togithub.com/evanw/esbuild/issues/3845)) This release fixes a regression that caused certain errors relating to variable declarations to be reported at an incorrect location. The regression was introduced in version 0.18.7 of esbuild. - Print comments before case clauses in switch statements ([#​3838](https://togithub.com/evanw/esbuild/issues/3838)) With this release, esbuild will attempt to print comments that come before case clauses in switch statements. This is similar to what esbuild already does for comments inside of certain types of expressions. Note that these types of comments are not printed if minification is enabled (specifically whitespace minification). - Fix a memory leak with `pluginData` ([#​3825](https://togithub.com/evanw/esbuild/issues/3825)) With this release, the build context's internal `pluginData` cache will now be cleared when starting a new build. This should fix a leak of memory from plugins that return `pluginData` objects from `onResolve` and/or `onLoad` callbacks.
import-js/eslint-plugin-import (eslint-plugin-import) ### [`v2.30.0`](https://togithub.com/import-js/eslint-plugin-import/blob/HEAD/CHANGELOG.md#2300---2024-09-02) [Compare Source](https://togithub.com/import-js/eslint-plugin-import/compare/v2.29.1...v2.30.0) ##### Added - \[`dynamic-import-chunkname`]: add `allowEmpty` option to allow empty leading comments (\[[#​2942](https://togithub.com/import-js/eslint-plugin-import/issues/2942)], thanks \[[@​JiangWeixian](https://togithub.com/JiangWeixian)]) - \[`dynamic-import-chunkname`]: Allow empty chunk name when webpackMode: 'eager' is set; add suggestions to remove name in eager mode (\[[#​3004](https://togithub.com/import-js/eslint-plugin-import/issues/3004)], thanks \[[@​amsardesai](https://togithub.com/amsardesai)]) - \[`no-unused-modules`]: Add `ignoreUnusedTypeExports` option (\[[#​3011](https://togithub.com/import-js/eslint-plugin-import/issues/3011)], thanks \[[@​silverwind](https://togithub.com/silverwind)]) - add support for Flat Config (\[[#​3018](https://togithub.com/import-js/eslint-plugin-import/issues/3018)], thanks \[[@​michaelfaith](https://togithub.com/michaelfaith)]) ##### Fixed - \[`no-extraneous-dependencies`]: allow wrong path (\[[#​3012](https://togithub.com/import-js/eslint-plugin-import/issues/3012)], thanks \[[@​chabb](https://togithub.com/chabb)]) - \[`no-cycle`]: use scc algorithm to optimize (\[[#​2998](https://togithub.com/import-js/eslint-plugin-import/issues/2998)], thanks \[[@​soryy708](https://togithub.com/soryy708)]) - \[`no-duplicates`]: Removing duplicates breaks in TypeScript (\[[#​3033](https://togithub.com/import-js/eslint-plugin-import/issues/3033)], thanks \[[@​yesl-kim](https://togithub.com/yesl-kim)]) - \[`newline-after-import`]: fix considerComments option when require (\[[#​2952](https://togithub.com/import-js/eslint-plugin-import/issues/2952)], thanks \[[@​developer-bandi](https://togithub.com/developer-bandi)]) - \[`order`]: do not compare first path segment for relative paths (\[[#​2682](https://togithub.com/import-js/eslint-plugin-import/issues/2682)]) (\[[#​2885](https://togithub.com/import-js/eslint-plugin-import/issues/2885)], thanks \[[@​mihkeleidast](https://togithub.com/mihkeleidast)]) ##### Changed - \[Docs] `no-extraneous-dependencies`: Make glob pattern description more explicit (\[[#​2944](https://togithub.com/import-js/eslint-plugin-import/issues/2944)], thanks \[[@​mulztob](https://togithub.com/mulztob)]) - \[`no-unused-modules`]: add console message to help debug \[[#​2866](https://togithub.com/import-js/eslint-plugin-import/issues/2866)] - \[Refactor] `ExportMap`: make procedures static instead of monkeypatching exportmap (\[[#​2982](https://togithub.com/import-js/eslint-plugin-import/issues/2982)], thanks \[[@​soryy708](https://togithub.com/soryy708)]) - \[Refactor] `ExportMap`: separate ExportMap instance from its builder logic (\[[#​2985](https://togithub.com/import-js/eslint-plugin-import/issues/2985)], thanks \[[@​soryy708](https://togithub.com/soryy708)]) - \[Docs] `order`: Add a quick note on how unbound imports and --fix (\[[#​2640](https://togithub.com/import-js/eslint-plugin-import/issues/2640)], thanks \[[@​minervabot](https://togithub.com/minervabot)]) - \[Tests] appveyor -> GHA (run tests on Windows in both pwsh and WSL + Ubuntu) (\[[#​2987](https://togithub.com/import-js/eslint-plugin-import/issues/2987)], thanks \[[@​joeyguerra](https://togithub.com/joeyguerra)]) - \[actions] migrate OSX tests to GHA (\[[ljharb#37](https://togithub.com/ljharb/eslint-plugin-import/issues/37)], thanks \[[@​aks-](https://togithub.com/aks-)]) - \[Refactor] `exportMapBuilder`: avoid hoisting (\[[#​2989](https://togithub.com/import-js/eslint-plugin-import/issues/2989)], thanks \[[@​soryy708](https://togithub.com/soryy708)]) - \[Refactor] `ExportMap`: extract "builder" logic to separate files (\[[#​2991](https://togithub.com/import-js/eslint-plugin-import/issues/2991)], thanks \[[@​soryy708](https://togithub.com/soryy708)]) - \[Docs] \[`order`]: update the description of the `pathGroupsExcludedImportTypes` option (\[[#​3036](https://togithub.com/import-js/eslint-plugin-import/issues/3036)], thanks \[[@​liby](https://togithub.com/liby)]) - \[readme] Clarify how to install the plugin (\[[#​2993](https://togithub.com/import-js/eslint-plugin-import/issues/2993)], thanks \[[@​jwbth](https://togithub.com/jwbth)])
tape-testing/tape (tape) ### [`v5.9.0`](https://togithub.com/tape-testing/tape/blob/HEAD/CHANGELOG.md#v590---2024-09-15) [Compare Source](https://togithub.com/tape-testing/tape/compare/v5.8.1...v5.9.0) ##### Commits - \[New] `bin/tape`: add `--strict` [`4c97f54`](https://togithub.com/tape-testing/tape/commit/4c97f544939d949f18a1f53211f5c35c6902d52b) - \[Fix] in engines that lack dynamic import, have some output [`2d5c8dc`](https://togithub.com/tape-testing/tape/commit/2d5c8dcfd9a4d0f96713e229e21bc9363f126dd1) - \[Tests] use `npm audit` instead of `aud` [`681d4bd`](https://togithub.com/tape-testing/tape/commit/681d4bd7851cbcba2c93dfa7d24814e083285309) - \[Dev Deps] update `auto-changelog` [`b7bc72f`](https://togithub.com/tape-testing/tape/commit/b7bc72f82d0592aae38ed80484c09b04593a1d2c) - \[Deps] update `mock-property` [`ecfb546`](https://togithub.com/tape-testing/tape/commit/ecfb546465bc1ab0194fad69e4d3400d8e645ba1) - \[Deps] update `object-inspect` [`9a47aba`](https://togithub.com/tape-testing/tape/commit/9a47abae189019797a8cfd504b5194ba4ecdf1a9) - \[readme] notLooseEqual(s) is not an alias for notDeepLooseEqual [`c827ac9`](https://togithub.com/tape-testing/tape/commit/c827ac994f147a2b3df1f51a42316bda96cedb65) - \[readme] remove defunct badges [`7880dd4`](https://togithub.com/tape-testing/tape/commit/7880dd4d73ea865aa7cabee79a58638895f968d4) - \[Dev Deps] add missing peer dep [`627d1e7`](https://togithub.com/tape-testing/tape/commit/627d1e79da5e3f6cc76e2e0240b62e5bc7d7f673)

Configuration

📅 Schedule: Branch creation - "on the first day of the month" (UTC), Automerge - At any time (no schedule defined).

🚦 Automerge: Enabled.

Rebasing: Whenever PR becomes conflicted, or you tick the rebase/retry checkbox.

👻 Immortal: This PR will be recreated if closed unmerged. Get config help if that's undesired.