@zuplo/cli 6.69.4 → 6.69.6
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/dist/__tests__/integration/custom-domain.integration.test.js +4 -4
- package/dist/__tests__/integration/custom-domain.integration.test.js.map +1 -1
- package/dist/__tests__/integration/jest-mocks-setup.js +30 -10
- package/dist/__tests__/integration/jest-mocks-setup.js.map +1 -1
- package/dist/__tests__/integration/list.integration.test.js +2 -2
- package/dist/__tests__/integration/list.integration.test.js.map +1 -1
- package/dist/__tests__/integration/tunnel.integration.test.js +14 -14
- package/dist/__tests__/integration/tunnel.integration.test.js.map +1 -1
- package/dist/__tests__/integration/variable.integration.test.js +4 -4
- package/dist/__tests__/integration/variable.integration.test.js.map +1 -1
- package/dist/__tests__/integration/whoami.integration.test.js +2 -5
- package/dist/__tests__/integration/whoami.integration.test.js.map +1 -1
- package/dist/cli.js +12 -6
- package/dist/cli.js.map +1 -1
- package/dist/cmds/custom-domain/index.d.ts.map +1 -1
- package/dist/cmds/custom-domain/index.js +6 -10
- package/dist/cmds/custom-domain/index.js.map +1 -1
- package/dist/cmds/mtls-certificates/index.d.ts.map +1 -1
- package/dist/cmds/mtls-certificates/index.js +8 -12
- package/dist/cmds/mtls-certificates/index.js.map +1 -1
- package/dist/cmds/open-api/index.d.ts.map +1 -1
- package/dist/cmds/open-api/index.js +2 -5
- package/dist/cmds/open-api/index.js.map +1 -1
- package/dist/cmds/project/index.d.ts.map +1 -1
- package/dist/cmds/project/index.js +2 -5
- package/dist/cmds/project/index.js.map +1 -1
- package/dist/cmds/proxies/index.d.ts +4 -4
- package/dist/cmds/proxies/index.d.ts.map +1 -1
- package/dist/cmds/proxies/index.js +6 -10
- package/dist/cmds/proxies/index.js.map +1 -1
- package/dist/cmds/source/index.d.ts.map +1 -1
- package/dist/cmds/source/index.js +2 -9
- package/dist/cmds/source/index.js.map +1 -1
- package/dist/cmds/source/migrate.d.ts +4 -4
- package/dist/cmds/source/migrate.d.ts.map +1 -1
- package/dist/cmds/source/migrate.js +3 -6
- package/dist/cmds/source/migrate.js.map +1 -1
- package/dist/cmds/tunnel/index.d.ts.map +1 -1
- package/dist/cmds/tunnel/index.js +8 -12
- package/dist/cmds/tunnel/index.js.map +1 -1
- package/dist/cmds/tunnel/services/index.d.ts.map +1 -1
- package/dist/cmds/tunnel/services/index.js +2 -5
- package/dist/cmds/tunnel/services/index.js.map +1 -1
- package/dist/cmds/variable/index.d.ts.map +1 -1
- package/dist/cmds/variable/index.js +2 -5
- package/dist/cmds/variable/index.js.map +1 -1
- package/dist/common/api/client.d.ts +40 -0
- package/dist/common/api/client.d.ts.map +1 -0
- package/dist/common/api/client.js +92 -0
- package/dist/common/api/client.js.map +1 -0
- package/dist/common/handler.d.ts +4 -1
- package/dist/common/handler.d.ts.map +1 -1
- package/dist/common/handler.js +11 -2
- package/dist/common/handler.js.map +1 -1
- package/dist/common/middleware/get-environment-param.d.ts.map +1 -1
- package/dist/common/middleware/get-environment-param.js +2 -18
- package/dist/common/middleware/get-environment-param.js.map +1 -1
- package/dist/common/output.d.ts +4 -0
- package/dist/common/output.d.ts.map +1 -1
- package/dist/common/output.js +4 -1
- package/dist/common/output.js.map +1 -1
- package/dist/common/utils/build-environment-prompt-choices.d.ts +13 -0
- package/dist/common/utils/build-environment-prompt-choices.d.ts.map +1 -0
- package/dist/common/utils/build-environment-prompt-choices.js +66 -0
- package/dist/common/utils/build-environment-prompt-choices.js.map +1 -0
- package/dist/common/utils/build-environment-prompt-choices.test.d.ts +2 -0
- package/dist/common/utils/build-environment-prompt-choices.test.d.ts.map +1 -0
- package/dist/common/utils/build-environment-prompt-choices.test.js +97 -0
- package/dist/common/utils/build-environment-prompt-choices.test.js.map +1 -0
- package/dist/common/utils/pretty-print-environment-prompt.d.ts +1 -4
- package/dist/common/utils/pretty-print-environment-prompt.d.ts.map +1 -1
- package/dist/common/utils/pretty-print-environment-prompt.js +3 -8
- package/dist/common/utils/pretty-print-environment-prompt.js.map +1 -1
- package/dist/common/utils/pretty-print-environment-prompt.test.js +15 -17
- package/dist/common/utils/pretty-print-environment-prompt.test.js.map +1 -1
- package/dist/common/utils/sort-environments-for-prompt.d.ts +5 -0
- package/dist/common/utils/sort-environments-for-prompt.d.ts.map +1 -0
- package/dist/common/utils/sort-environments-for-prompt.js +27 -0
- package/dist/common/utils/sort-environments-for-prompt.js.map +1 -0
- package/dist/common/utils/sort-environments-for-prompt.test.d.ts +2 -0
- package/dist/common/utils/sort-environments-for-prompt.test.d.ts.map +1 -0
- package/dist/common/utils/sort-environments-for-prompt.test.js +82 -0
- package/dist/common/utils/sort-environments-for-prompt.test.js.map +1 -0
- package/dist/custom-domain/create/handler.d.ts.map +1 -1
- package/dist/custom-domain/create/handler.js +12 -27
- package/dist/custom-domain/create/handler.js.map +1 -1
- package/dist/custom-domain/delete/handler.d.ts.map +1 -1
- package/dist/custom-domain/delete/handler.js +25 -54
- package/dist/custom-domain/delete/handler.js.map +1 -1
- package/dist/custom-domain/list/handler.d.ts.map +1 -1
- package/dist/custom-domain/list/handler.js +15 -29
- package/dist/custom-domain/list/handler.js.map +1 -1
- package/dist/custom-domain/update/handler.d.ts.map +1 -1
- package/dist/custom-domain/update/handler.js +12 -27
- package/dist/custom-domain/update/handler.js.map +1 -1
- package/dist/list/handler.d.ts.map +1 -1
- package/dist/list/handler.js +41 -59
- package/dist/list/handler.js.map +1 -1
- package/dist/mtls-certificates/create/handler.d.ts.map +1 -1
- package/dist/mtls-certificates/create/handler.js +9 -23
- package/dist/mtls-certificates/create/handler.js.map +1 -1
- package/dist/mtls-certificates/delete/handler.d.ts.map +1 -1
- package/dist/mtls-certificates/delete/handler.js +8 -20
- package/dist/mtls-certificates/delete/handler.js.map +1 -1
- package/dist/mtls-certificates/describe/handler.d.ts.map +1 -1
- package/dist/mtls-certificates/describe/handler.js +17 -31
- package/dist/mtls-certificates/describe/handler.js.map +1 -1
- package/dist/mtls-certificates/disable/handler.d.ts.map +1 -1
- package/dist/mtls-certificates/disable/handler.js +9 -26
- package/dist/mtls-certificates/disable/handler.js.map +1 -1
- package/dist/mtls-certificates/list/handler.d.ts.map +1 -1
- package/dist/mtls-certificates/list/handler.js +22 -36
- package/dist/mtls-certificates/list/handler.js.map +1 -1
- package/dist/mtls-certificates/update/handler.d.ts.map +1 -1
- package/dist/mtls-certificates/update/handler.js +14 -29
- package/dist/mtls-certificates/update/handler.js.map +1 -1
- package/dist/proxies/create/handler.d.ts.map +1 -1
- package/dist/proxies/create/handler.js +9 -22
- package/dist/proxies/create/handler.js.map +1 -1
- package/dist/proxies/delete/handler.d.ts.map +1 -1
- package/dist/proxies/delete/handler.js +8 -21
- package/dist/proxies/delete/handler.js.map +1 -1
- package/dist/proxies/describe/handler.d.ts.map +1 -1
- package/dist/proxies/describe/handler.js +7 -22
- package/dist/proxies/describe/handler.js.map +1 -1
- package/dist/proxies/update/handler.d.ts.map +1 -1
- package/dist/proxies/update/handler.js +9 -22
- package/dist/proxies/update/handler.js.map +1 -1
- package/dist/tsconfig.tsbuildinfo +1 -1
- package/dist/tunnel/create/handler.d.ts.map +1 -1
- package/dist/tunnel/create/handler.js +8 -22
- package/dist/tunnel/create/handler.js.map +1 -1
- package/dist/tunnel/delete/handler.d.ts.map +1 -1
- package/dist/tunnel/delete/handler.js +16 -30
- package/dist/tunnel/delete/handler.js.map +1 -1
- package/dist/tunnel/describe/handler.d.ts.map +1 -1
- package/dist/tunnel/describe/handler.js +7 -21
- package/dist/tunnel/describe/handler.js.map +1 -1
- package/dist/tunnel/list/handler.d.ts.map +1 -1
- package/dist/tunnel/list/handler.js +13 -28
- package/dist/tunnel/list/handler.js.map +1 -1
- package/dist/tunnel/rotate-token/handler.d.ts.map +1 -1
- package/dist/tunnel/rotate-token/handler.js +7 -21
- package/dist/tunnel/rotate-token/handler.js.map +1 -1
- package/dist/tunnel/services/describe/handler.d.ts.map +1 -1
- package/dist/tunnel/services/describe/handler.js +7 -21
- package/dist/tunnel/services/describe/handler.js.map +1 -1
- package/dist/tunnel/services/update/handler.d.ts.map +1 -1
- package/dist/tunnel/services/update/handler.js +18 -32
- package/dist/tunnel/services/update/handler.js.map +1 -1
- package/dist/variable/create/handler.d.ts.map +1 -1
- package/dist/variable/create/handler.js +9 -24
- package/dist/variable/create/handler.js.map +1 -1
- package/dist/variable/update/handler.d.ts.map +1 -1
- package/dist/variable/update/handler.js +9 -24
- package/dist/variable/update/handler.js.map +1 -1
- package/dist/whoami/handler.d.ts.map +1 -1
- package/dist/whoami/handler.js +6 -18
- package/dist/whoami/handler.js.map +1 -1
- package/node_modules/@fastify/proxy-addr/node_modules/ipaddr.js/README.md +1 -5
- package/node_modules/@fastify/proxy-addr/node_modules/ipaddr.js/ipaddr.min.js +1 -1
- package/node_modules/@fastify/proxy-addr/node_modules/ipaddr.js/lib/ipaddr.js +21 -6
- package/node_modules/@fastify/proxy-addr/node_modules/ipaddr.js/package.json +1 -1
- package/node_modules/@zuplo/core/index.minified.js +141 -137
- package/node_modules/@zuplo/core/package.json +1 -1
- package/node_modules/@zuplo/editor/node_modules/fast-json-stringify/.github/workflows/ci.yml +1 -1
- package/node_modules/@zuplo/editor/node_modules/fast-json-stringify/.github/workflows/lock-threads.yml +19 -0
- package/node_modules/@zuplo/editor/node_modules/fast-json-stringify/LICENSE +1 -3
- package/node_modules/@zuplo/editor/node_modules/fast-json-stringify/benchmark/bench-cmp-lib.js +60 -44
- package/node_modules/@zuplo/editor/node_modules/fast-json-stringify/index.js +2 -2
- package/node_modules/@zuplo/editor/node_modules/fast-json-stringify/package.json +7 -7
- package/node_modules/@zuplo/editor/node_modules/fast-json-stringify/test/anyof.test.js +20 -0
- package/node_modules/@zuplo/editor/node_modules/fast-json-stringify/test/array.test.js +22 -0
- package/node_modules/@zuplo/editor/node_modules/fast-json-stringify/test/debug-mode.test.js +21 -0
- package/node_modules/@zuplo/editor/node_modules/fast-json-stringify/test/if-then-else.test.js +72 -0
- package/node_modules/@zuplo/editor/node_modules/fast-json-stringify/test/invalidSchema.test.js +20 -0
- package/node_modules/@zuplo/editor/node_modules/fast-json-stringify/test/issue-836.test.js +183 -0
- package/node_modules/@zuplo/editor/node_modules/fast-json-stringify/test/json-add-comma.test.js +57 -57
- package/node_modules/@zuplo/editor/node_modules/fast-json-stringify/test/oneof.test.js +20 -0
- package/node_modules/@zuplo/editor/node_modules/fast-json-stringify/test/ref.test.js +31 -0
- package/node_modules/@zuplo/editor/node_modules/fast-json-stringify/test/typebox.test.js +1 -1
- package/node_modules/@zuplo/editor/node_modules/fast-json-stringify/types/{index.test-d.ts → index.tst.ts} +17 -17
- package/node_modules/@zuplo/editor/node_modules/lru-cache/dist/commonjs/browser/diagnostics-channel-browser.d.ts.map +1 -0
- package/node_modules/@zuplo/editor/node_modules/lru-cache/dist/commonjs/browser/diagnostics-channel-browser.js.map +1 -0
- package/node_modules/@zuplo/editor/node_modules/lru-cache/dist/commonjs/browser/diagnostics-channel.d.ts +5 -0
- package/node_modules/@zuplo/editor/node_modules/lru-cache/dist/commonjs/browser/diagnostics-channel.js +7 -0
- package/node_modules/@zuplo/editor/node_modules/lru-cache/dist/commonjs/browser/index.d.ts +1380 -0
- package/node_modules/@zuplo/editor/node_modules/lru-cache/dist/commonjs/browser/index.d.ts.map +1 -0
- package/node_modules/@zuplo/editor/node_modules/lru-cache/dist/commonjs/browser/index.js +1686 -0
- package/node_modules/@zuplo/editor/node_modules/lru-cache/dist/commonjs/browser/index.js.map +1 -0
- package/node_modules/@zuplo/editor/node_modules/lru-cache/dist/commonjs/browser/index.min.js +2 -0
- package/node_modules/@zuplo/editor/node_modules/lru-cache/dist/commonjs/browser/index.min.js.map +7 -0
- package/node_modules/@zuplo/editor/node_modules/lru-cache/dist/commonjs/browser/perf.d.ts +12 -0
- package/node_modules/@zuplo/editor/node_modules/lru-cache/dist/commonjs/browser/perf.d.ts.map +1 -0
- package/node_modules/@zuplo/editor/node_modules/lru-cache/dist/commonjs/browser/perf.js +11 -0
- package/node_modules/@zuplo/editor/node_modules/lru-cache/dist/commonjs/browser/perf.js.map +1 -0
- package/node_modules/@zuplo/editor/node_modules/lru-cache/dist/commonjs/diagnostics-channel-cjs.cjs.map +1 -0
- package/node_modules/@zuplo/editor/node_modules/lru-cache/dist/commonjs/diagnostics-channel-cjs.d.cts.map +1 -0
- package/node_modules/@zuplo/editor/node_modules/lru-cache/dist/commonjs/diagnostics-channel.d.ts +2 -2
- package/node_modules/@zuplo/editor/node_modules/lru-cache/dist/commonjs/diagnostics-channel.js +4 -7
- package/node_modules/@zuplo/editor/node_modules/lru-cache/dist/commonjs/index.d.ts +2 -3
- package/node_modules/@zuplo/editor/node_modules/lru-cache/dist/commonjs/index.d.ts.map +1 -1
- package/node_modules/@zuplo/editor/node_modules/lru-cache/dist/commonjs/index.js +10 -16
- package/node_modules/@zuplo/editor/node_modules/lru-cache/dist/commonjs/index.js.map +1 -1
- package/node_modules/@zuplo/editor/node_modules/lru-cache/dist/commonjs/index.min.js +1 -1
- package/node_modules/@zuplo/editor/node_modules/lru-cache/dist/commonjs/index.min.js.map +4 -4
- package/node_modules/@zuplo/editor/node_modules/lru-cache/dist/commonjs/node/diagnostics-channel-node.d.ts.map +1 -0
- package/node_modules/@zuplo/editor/node_modules/lru-cache/dist/commonjs/node/diagnostics-channel-node.js.map +1 -0
- package/node_modules/@zuplo/editor/node_modules/lru-cache/dist/commonjs/node/diagnostics-channel.d.ts +5 -0
- package/node_modules/@zuplo/editor/node_modules/lru-cache/dist/commonjs/node/diagnostics-channel.js +9 -0
- package/node_modules/@zuplo/editor/node_modules/lru-cache/dist/commonjs/node/index.d.ts +1380 -0
- package/node_modules/@zuplo/editor/node_modules/lru-cache/dist/commonjs/node/index.d.ts.map +1 -0
- package/node_modules/@zuplo/editor/node_modules/lru-cache/dist/commonjs/node/index.js +1686 -0
- package/node_modules/@zuplo/editor/node_modules/lru-cache/dist/commonjs/node/index.js.map +1 -0
- package/node_modules/@zuplo/editor/node_modules/lru-cache/dist/commonjs/node/index.min.js +2 -0
- package/node_modules/@zuplo/editor/node_modules/lru-cache/dist/commonjs/node/index.min.js.map +7 -0
- package/node_modules/@zuplo/editor/node_modules/lru-cache/dist/commonjs/node/perf.d.ts +12 -0
- package/node_modules/@zuplo/editor/node_modules/lru-cache/dist/commonjs/node/perf.d.ts.map +1 -0
- package/node_modules/@zuplo/editor/node_modules/lru-cache/dist/commonjs/node/perf.js +11 -0
- package/node_modules/@zuplo/editor/node_modules/lru-cache/dist/commonjs/node/perf.js.map +1 -0
- package/node_modules/@zuplo/editor/node_modules/lru-cache/dist/commonjs/perf.d.ts +12 -0
- package/node_modules/@zuplo/editor/node_modules/lru-cache/dist/commonjs/perf.d.ts.map +1 -0
- package/node_modules/@zuplo/editor/node_modules/lru-cache/dist/commonjs/perf.js +11 -0
- package/node_modules/@zuplo/editor/node_modules/lru-cache/dist/commonjs/perf.js.map +1 -0
- package/node_modules/@zuplo/editor/node_modules/lru-cache/dist/esm/browser/diagnostics-channel-browser.d.ts.map +1 -0
- package/node_modules/@zuplo/editor/node_modules/lru-cache/dist/esm/browser/diagnostics-channel-browser.js.map +1 -0
- package/node_modules/@zuplo/editor/node_modules/lru-cache/dist/esm/browser/diagnostics-channel.d.ts +1 -1
- package/node_modules/@zuplo/editor/node_modules/lru-cache/dist/esm/browser/diagnostics-channel.js +1 -1
- package/node_modules/@zuplo/editor/node_modules/lru-cache/dist/esm/browser/index.d.ts +2 -3
- package/node_modules/@zuplo/editor/node_modules/lru-cache/dist/esm/browser/index.d.ts.map +1 -1
- package/node_modules/@zuplo/editor/node_modules/lru-cache/dist/esm/browser/index.js +9 -15
- package/node_modules/@zuplo/editor/node_modules/lru-cache/dist/esm/browser/index.js.map +1 -1
- package/node_modules/@zuplo/editor/node_modules/lru-cache/dist/esm/browser/index.min.js +1 -1
- package/node_modules/@zuplo/editor/node_modules/lru-cache/dist/esm/browser/index.min.js.map +4 -4
- package/node_modules/@zuplo/editor/node_modules/lru-cache/dist/esm/browser/perf.d.ts +12 -0
- package/node_modules/@zuplo/editor/node_modules/lru-cache/dist/esm/browser/perf.d.ts.map +1 -0
- package/node_modules/@zuplo/editor/node_modules/lru-cache/dist/esm/browser/perf.js +8 -0
- package/node_modules/@zuplo/editor/node_modules/lru-cache/dist/esm/browser/perf.js.map +1 -0
- package/node_modules/@zuplo/editor/node_modules/lru-cache/dist/esm/diagnostics-channel-esm.d.mts.map +1 -1
- package/node_modules/@zuplo/editor/node_modules/lru-cache/dist/esm/diagnostics-channel-esm.mjs.map +1 -1
- package/node_modules/@zuplo/editor/node_modules/lru-cache/dist/esm/index.d.ts +2 -3
- package/node_modules/@zuplo/editor/node_modules/lru-cache/dist/esm/index.d.ts.map +1 -1
- package/node_modules/@zuplo/editor/node_modules/lru-cache/dist/esm/index.js +9 -15
- package/node_modules/@zuplo/editor/node_modules/lru-cache/dist/esm/index.js.map +1 -1
- package/node_modules/@zuplo/editor/node_modules/lru-cache/dist/esm/index.min.js +1 -1
- package/node_modules/@zuplo/editor/node_modules/lru-cache/dist/esm/index.min.js.map +4 -4
- package/node_modules/@zuplo/editor/node_modules/lru-cache/dist/esm/node/diagnostics-channel-node.d.ts.map +1 -0
- package/node_modules/@zuplo/editor/node_modules/lru-cache/dist/esm/node/diagnostics-channel-node.js.map +1 -0
- package/node_modules/@zuplo/editor/node_modules/lru-cache/dist/esm/node/diagnostics-channel.d.ts +1 -1
- package/node_modules/@zuplo/editor/node_modules/lru-cache/dist/esm/node/diagnostics-channel.js +2 -3
- package/node_modules/@zuplo/editor/node_modules/lru-cache/dist/esm/node/index.d.ts +2 -3
- package/node_modules/@zuplo/editor/node_modules/lru-cache/dist/esm/node/index.d.ts.map +1 -1
- package/node_modules/@zuplo/editor/node_modules/lru-cache/dist/esm/node/index.js +9 -15
- package/node_modules/@zuplo/editor/node_modules/lru-cache/dist/esm/node/index.js.map +1 -1
- package/node_modules/@zuplo/editor/node_modules/lru-cache/dist/esm/node/index.min.js +1 -1
- package/node_modules/@zuplo/editor/node_modules/lru-cache/dist/esm/node/index.min.js.map +4 -4
- package/node_modules/@zuplo/editor/node_modules/lru-cache/dist/esm/node/perf.d.ts +12 -0
- package/node_modules/@zuplo/editor/node_modules/lru-cache/dist/esm/node/perf.d.ts.map +1 -0
- package/node_modules/@zuplo/editor/node_modules/lru-cache/dist/esm/node/perf.js +8 -0
- package/node_modules/@zuplo/editor/node_modules/lru-cache/dist/esm/node/perf.js.map +1 -0
- package/node_modules/@zuplo/editor/node_modules/lru-cache/dist/esm/perf.d.ts +12 -0
- package/node_modules/@zuplo/editor/node_modules/lru-cache/dist/esm/perf.d.ts.map +1 -0
- package/node_modules/@zuplo/editor/node_modules/lru-cache/dist/esm/perf.js +8 -0
- package/node_modules/@zuplo/editor/node_modules/lru-cache/dist/esm/perf.js.map +1 -0
- package/node_modules/@zuplo/editor/node_modules/lru-cache/package.json +44 -16
- package/node_modules/@zuplo/graphql/package.json +1 -1
- package/node_modules/@zuplo/openapi-tools/package.json +1 -1
- package/node_modules/@zuplo/otel/package.json +1 -1
- package/node_modules/@zuplo/runtime/out/esm/index.js +54 -54
- package/node_modules/@zuplo/runtime/out/esm/index.js.map +1 -1
- package/node_modules/@zuplo/runtime/out/types/index.d.ts +4 -0
- package/node_modules/@zuplo/runtime/package.json +1 -1
- package/node_modules/axios/CHANGELOG.md +32 -6
- package/node_modules/axios/README.md +356 -20
- package/node_modules/axios/dist/axios.js +1389 -1071
- package/node_modules/axios/dist/axios.js.map +1 -1
- package/node_modules/axios/dist/axios.min.js +3 -3
- package/node_modules/axios/dist/axios.min.js.map +1 -1
- package/node_modules/axios/dist/browser/axios.cjs +1486 -1123
- package/node_modules/axios/dist/browser/axios.cjs.map +1 -1
- package/node_modules/axios/dist/esm/axios.js +1488 -1124
- package/node_modules/axios/dist/esm/axios.js.map +1 -1
- package/node_modules/axios/dist/esm/axios.min.js +2 -2
- package/node_modules/axios/dist/esm/axios.min.js.map +1 -1
- package/node_modules/axios/dist/node/axios.cjs +1230 -871
- package/node_modules/axios/dist/node/axios.cjs.map +1 -1
- package/node_modules/axios/index.d.cts +25 -13
- package/node_modules/axios/index.d.ts +21 -4
- package/node_modules/axios/index.js +2 -0
- package/node_modules/axios/lib/adapters/adapters.js +4 -2
- package/node_modules/axios/lib/adapters/fetch.js +126 -10
- package/node_modules/axios/lib/adapters/http.js +178 -59
- package/node_modules/axios/lib/adapters/xhr.js +6 -2
- package/node_modules/axios/lib/core/Axios.js +7 -3
- package/node_modules/axios/lib/core/AxiosError.js +86 -1
- package/node_modules/axios/lib/core/AxiosHeaders.js +3 -0
- package/node_modules/axios/lib/core/dispatchRequest.js +19 -7
- package/node_modules/axios/lib/core/mergeConfig.js +6 -3
- package/node_modules/axios/lib/core/settle.js +7 -11
- package/node_modules/axios/lib/defaults/index.js +1 -1
- package/node_modules/axios/lib/env/data.js +1 -1
- package/node_modules/axios/lib/helpers/buildURL.js +1 -1
- package/node_modules/axios/lib/helpers/cookies.js +14 -2
- package/node_modules/axios/lib/helpers/estimateDataURLDecodedBytes.js +28 -1
- package/node_modules/axios/lib/helpers/formDataToStream.js +1 -1
- package/node_modules/axios/lib/helpers/parseProtocol.js +1 -1
- package/node_modules/axios/lib/helpers/resolveConfig.js +33 -17
- package/node_modules/axios/lib/helpers/shouldBypassProxy.js +26 -1
- package/node_modules/axios/lib/helpers/validator.js +1 -1
- package/node_modules/axios/lib/utils.js +27 -15
- package/node_modules/axios/package.json +17 -24
- package/node_modules/fast-uri/.github/workflows/ci.yml +12 -7
- package/node_modules/fast-uri/.github/workflows/lock-threads.yml +19 -0
- package/node_modules/fast-uri/.github/workflows/package-manager-ci.yml +1 -1
- package/node_modules/fast-uri/LICENSE +1 -3
- package/node_modules/fast-uri/README.md +13 -4
- package/node_modules/fast-uri/index.js +90 -24
- package/node_modules/fast-uri/lib/utils.js +129 -22
- package/node_modules/fast-uri/package.json +3 -4
- package/node_modules/fast-uri/test/equal.test.js +9 -0
- package/node_modules/fast-uri/test/parse.test.js +5 -0
- package/node_modules/fast-uri/test/resolve.test.js +9 -0
- package/node_modules/fast-uri/test/security-normalization.test.js +39 -0
- package/node_modules/fast-uri/test/security.test.js +133 -0
- package/node_modules/is-core-module/CHANGELOG.md +244 -113
- package/node_modules/is-core-module/README.md +1 -1
- package/node_modules/is-core-module/core.json +12 -12
- package/node_modules/is-core-module/package.json +5 -5
- package/node_modules/is-core-module/test/index.js +101 -0
- package/node_modules/rimraf/node_modules/lru-cache/dist/commonjs/browser/diagnostics-channel-browser.d.ts.map +1 -0
- package/node_modules/rimraf/node_modules/lru-cache/dist/commonjs/browser/diagnostics-channel-browser.js.map +1 -0
- package/node_modules/rimraf/node_modules/lru-cache/dist/commonjs/browser/diagnostics-channel.d.ts +5 -0
- package/node_modules/rimraf/node_modules/lru-cache/dist/commonjs/browser/diagnostics-channel.js +7 -0
- package/node_modules/rimraf/node_modules/lru-cache/dist/commonjs/browser/index.d.ts +1380 -0
- package/node_modules/rimraf/node_modules/lru-cache/dist/commonjs/browser/index.d.ts.map +1 -0
- package/node_modules/rimraf/node_modules/lru-cache/dist/commonjs/browser/index.js +1686 -0
- package/node_modules/rimraf/node_modules/lru-cache/dist/commonjs/browser/index.js.map +1 -0
- package/node_modules/rimraf/node_modules/lru-cache/dist/commonjs/browser/index.min.js +2 -0
- package/node_modules/rimraf/node_modules/lru-cache/dist/commonjs/browser/index.min.js.map +7 -0
- package/node_modules/rimraf/node_modules/lru-cache/dist/commonjs/browser/perf.d.ts +12 -0
- package/node_modules/rimraf/node_modules/lru-cache/dist/commonjs/browser/perf.d.ts.map +1 -0
- package/node_modules/rimraf/node_modules/lru-cache/dist/commonjs/browser/perf.js +11 -0
- package/node_modules/rimraf/node_modules/lru-cache/dist/commonjs/browser/perf.js.map +1 -0
- package/node_modules/rimraf/node_modules/lru-cache/dist/commonjs/diagnostics-channel-cjs.cjs.map +1 -0
- package/node_modules/rimraf/node_modules/lru-cache/dist/commonjs/diagnostics-channel-cjs.d.cts.map +1 -0
- package/node_modules/rimraf/node_modules/lru-cache/dist/commonjs/diagnostics-channel.d.ts +2 -2
- package/node_modules/rimraf/node_modules/lru-cache/dist/commonjs/diagnostics-channel.js +4 -7
- package/node_modules/rimraf/node_modules/lru-cache/dist/commonjs/index.d.ts +2 -3
- package/node_modules/rimraf/node_modules/lru-cache/dist/commonjs/index.d.ts.map +1 -1
- package/node_modules/rimraf/node_modules/lru-cache/dist/commonjs/index.js +10 -16
- package/node_modules/rimraf/node_modules/lru-cache/dist/commonjs/index.js.map +1 -1
- package/node_modules/rimraf/node_modules/lru-cache/dist/commonjs/index.min.js +1 -1
- package/node_modules/rimraf/node_modules/lru-cache/dist/commonjs/index.min.js.map +4 -4
- package/node_modules/rimraf/node_modules/lru-cache/dist/commonjs/node/diagnostics-channel-node.d.ts.map +1 -0
- package/node_modules/rimraf/node_modules/lru-cache/dist/commonjs/node/diagnostics-channel-node.js.map +1 -0
- package/node_modules/rimraf/node_modules/lru-cache/dist/commonjs/node/diagnostics-channel.d.ts +5 -0
- package/node_modules/rimraf/node_modules/lru-cache/dist/commonjs/node/diagnostics-channel.js +9 -0
- package/node_modules/rimraf/node_modules/lru-cache/dist/commonjs/node/index.d.ts +1380 -0
- package/node_modules/rimraf/node_modules/lru-cache/dist/commonjs/node/index.d.ts.map +1 -0
- package/node_modules/rimraf/node_modules/lru-cache/dist/commonjs/node/index.js +1686 -0
- package/node_modules/rimraf/node_modules/lru-cache/dist/commonjs/node/index.js.map +1 -0
- package/node_modules/rimraf/node_modules/lru-cache/dist/commonjs/node/index.min.js +2 -0
- package/node_modules/rimraf/node_modules/lru-cache/dist/commonjs/node/index.min.js.map +7 -0
- package/node_modules/rimraf/node_modules/lru-cache/dist/commonjs/node/perf.d.ts +12 -0
- package/node_modules/rimraf/node_modules/lru-cache/dist/commonjs/node/perf.d.ts.map +1 -0
- package/node_modules/rimraf/node_modules/lru-cache/dist/commonjs/node/perf.js +11 -0
- package/node_modules/rimraf/node_modules/lru-cache/dist/commonjs/node/perf.js.map +1 -0
- package/node_modules/rimraf/node_modules/lru-cache/dist/commonjs/perf.d.ts +12 -0
- package/node_modules/rimraf/node_modules/lru-cache/dist/commonjs/perf.d.ts.map +1 -0
- package/node_modules/rimraf/node_modules/lru-cache/dist/commonjs/perf.js +11 -0
- package/node_modules/rimraf/node_modules/lru-cache/dist/commonjs/perf.js.map +1 -0
- package/node_modules/rimraf/node_modules/lru-cache/dist/esm/browser/diagnostics-channel-browser.d.ts.map +1 -0
- package/node_modules/rimraf/node_modules/lru-cache/dist/esm/browser/diagnostics-channel-browser.js.map +1 -0
- package/node_modules/rimraf/node_modules/lru-cache/dist/esm/browser/diagnostics-channel.d.ts +1 -1
- package/node_modules/rimraf/node_modules/lru-cache/dist/esm/browser/diagnostics-channel.js +1 -1
- package/node_modules/rimraf/node_modules/lru-cache/dist/esm/browser/index.d.ts +2 -3
- package/node_modules/rimraf/node_modules/lru-cache/dist/esm/browser/index.d.ts.map +1 -1
- package/node_modules/rimraf/node_modules/lru-cache/dist/esm/browser/index.js +9 -15
- package/node_modules/rimraf/node_modules/lru-cache/dist/esm/browser/index.js.map +1 -1
- package/node_modules/rimraf/node_modules/lru-cache/dist/esm/browser/index.min.js +1 -1
- package/node_modules/rimraf/node_modules/lru-cache/dist/esm/browser/index.min.js.map +4 -4
- package/node_modules/rimraf/node_modules/lru-cache/dist/esm/browser/perf.d.ts +12 -0
- package/node_modules/rimraf/node_modules/lru-cache/dist/esm/browser/perf.d.ts.map +1 -0
- package/node_modules/rimraf/node_modules/lru-cache/dist/esm/browser/perf.js +8 -0
- package/node_modules/rimraf/node_modules/lru-cache/dist/esm/browser/perf.js.map +1 -0
- package/node_modules/rimraf/node_modules/lru-cache/dist/esm/diagnostics-channel-esm.d.mts.map +1 -1
- package/node_modules/rimraf/node_modules/lru-cache/dist/esm/diagnostics-channel-esm.mjs.map +1 -1
- package/node_modules/rimraf/node_modules/lru-cache/dist/esm/index.d.ts +2 -3
- package/node_modules/rimraf/node_modules/lru-cache/dist/esm/index.d.ts.map +1 -1
- package/node_modules/rimraf/node_modules/lru-cache/dist/esm/index.js +9 -15
- package/node_modules/rimraf/node_modules/lru-cache/dist/esm/index.js.map +1 -1
- package/node_modules/rimraf/node_modules/lru-cache/dist/esm/index.min.js +1 -1
- package/node_modules/rimraf/node_modules/lru-cache/dist/esm/index.min.js.map +4 -4
- package/node_modules/rimraf/node_modules/lru-cache/dist/esm/node/diagnostics-channel-node.d.ts.map +1 -0
- package/node_modules/rimraf/node_modules/lru-cache/dist/esm/node/diagnostics-channel-node.js.map +1 -0
- package/node_modules/rimraf/node_modules/lru-cache/dist/esm/node/diagnostics-channel.d.ts +1 -1
- package/node_modules/rimraf/node_modules/lru-cache/dist/esm/node/diagnostics-channel.js +2 -3
- package/node_modules/rimraf/node_modules/lru-cache/dist/esm/node/index.d.ts +2 -3
- package/node_modules/rimraf/node_modules/lru-cache/dist/esm/node/index.d.ts.map +1 -1
- package/node_modules/rimraf/node_modules/lru-cache/dist/esm/node/index.js +9 -15
- package/node_modules/rimraf/node_modules/lru-cache/dist/esm/node/index.js.map +1 -1
- package/node_modules/rimraf/node_modules/lru-cache/dist/esm/node/index.min.js +1 -1
- package/node_modules/rimraf/node_modules/lru-cache/dist/esm/node/index.min.js.map +4 -4
- package/node_modules/rimraf/node_modules/lru-cache/dist/esm/node/perf.d.ts +12 -0
- package/node_modules/rimraf/node_modules/lru-cache/dist/esm/node/perf.d.ts.map +1 -0
- package/node_modules/rimraf/node_modules/lru-cache/dist/esm/node/perf.js +8 -0
- package/node_modules/rimraf/node_modules/lru-cache/dist/esm/node/perf.js.map +1 -0
- package/node_modules/rimraf/node_modules/lru-cache/dist/esm/perf.d.ts +12 -0
- package/node_modules/rimraf/node_modules/lru-cache/dist/esm/perf.d.ts.map +1 -0
- package/node_modules/rimraf/node_modules/lru-cache/dist/esm/perf.js +8 -0
- package/node_modules/rimraf/node_modules/lru-cache/dist/esm/perf.js.map +1 -0
- package/node_modules/rimraf/node_modules/lru-cache/package.json +44 -16
- package/package.json +6 -6
- package/node_modules/@zuplo/editor/node_modules/fast-json-stringify/.github/stale.yml +0 -21
- package/node_modules/@zuplo/editor/node_modules/lru-cache/dist/commonjs/diagnostics-channel.d.ts.map +0 -1
- package/node_modules/@zuplo/editor/node_modules/lru-cache/dist/commonjs/diagnostics-channel.js.map +0 -1
- package/node_modules/@zuplo/editor/node_modules/lru-cache/dist/esm/browser/diagnostics-channel-browser.d.mts.map +0 -1
- package/node_modules/@zuplo/editor/node_modules/lru-cache/dist/esm/browser/diagnostics-channel-browser.mjs.map +0 -1
- package/node_modules/@zuplo/editor/node_modules/lru-cache/dist/esm/node/diagnostics-channel-node.d.mts.map +0 -1
- package/node_modules/@zuplo/editor/node_modules/lru-cache/dist/esm/node/diagnostics-channel-node.mjs.map +0 -1
- package/node_modules/fast-uri/.github/.stale.yml +0 -21
- package/node_modules/fast-uri/.github/tests_checker.yml +0 -8
- package/node_modules/rimraf/node_modules/lru-cache/dist/commonjs/diagnostics-channel.d.ts.map +0 -1
- package/node_modules/rimraf/node_modules/lru-cache/dist/commonjs/diagnostics-channel.js.map +0 -1
- package/node_modules/rimraf/node_modules/lru-cache/dist/esm/browser/diagnostics-channel-browser.d.mts.map +0 -1
- package/node_modules/rimraf/node_modules/lru-cache/dist/esm/browser/diagnostics-channel-browser.mjs.map +0 -1
- package/node_modules/rimraf/node_modules/lru-cache/dist/esm/node/diagnostics-channel-node.d.mts.map +0 -1
- package/node_modules/rimraf/node_modules/lru-cache/dist/esm/node/diagnostics-channel-node.mjs.map +0 -1
|
@@ -5,214 +5,345 @@ All notable changes to this project will be documented in this file.
|
|
|
5
5
|
The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/)
|
|
6
6
|
and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html).
|
|
7
7
|
|
|
8
|
-
## [v2.16.
|
|
8
|
+
## [v2.16.2](https://github.com/inspect-js/is-core-module.git
|
|
9
|
+
/compare/v2.16.1...v2.16.2) - 2026-05-05
|
|
10
|
+
|
|
11
|
+
### Commits
|
|
12
|
+
|
|
13
|
+
- [Tests] increase coverage [`1fc59fe`](https://github.com/inspect-js/is-core-module.git
|
|
14
|
+
/commit/1fc59fe685f0b9590b571384db1383ab8e1096a3)
|
|
15
|
+
- [actions] update workflows [`0f6217b`](https://github.com/inspect-js/is-core-module.git
|
|
16
|
+
/commit/0f6217b97a166fcaa4a02b0a34e0a186c40df660)
|
|
17
|
+
- [Fix] node 26 drops _stream_* modules [`3acff68`](https://github.com/inspect-js/is-core-module.git
|
|
18
|
+
/commit/3acff68b25b44c9ae6fee1a1dc236ebb7c5338af)
|
|
19
|
+
- [Dev Deps] update `@ljharb/eslint-config`, `eslint`, `npmignore` [`f06678c`](https://github.com/inspect-js/is-core-module.git
|
|
20
|
+
/commit/f06678ce7f4df97e691a8d285d4aacb5da4a9790)
|
|
21
|
+
- [Deps] update `hasown` [`d9eae68`](https://github.com/inspect-js/is-core-module.git
|
|
22
|
+
/commit/d9eae68fd912c2268260e52714719d1799e9a08b)
|
|
23
|
+
- [Dev Deps] update `@ljharb/eslint-config` [`8273701`](https://github.com/inspect-js/is-core-module.git
|
|
24
|
+
/commit/82737010e7f3ed26c6f6183ee082e66a045125b6)
|
|
25
|
+
- [readme] replace runkit CI badge with shields.io check-runs badge [`6b86754`](https://github.com/inspect-js/is-core-module.git
|
|
26
|
+
/commit/6b867544789c82a40db44031a30612d89978b2d9)
|
|
27
|
+
|
|
28
|
+
## [v2.16.1](https://github.com/inspect-js/is-core-module.git
|
|
29
|
+
/compare/v2.16.0...v2.16.1) - 2024-12-21
|
|
9
30
|
|
|
10
31
|
### Fixed
|
|
11
32
|
|
|
12
|
-
- [Fix] `node:sqlite` is available in node ^22.13 [`#17`](https://github.com/inspect-js/is-core-module
|
|
33
|
+
- [Fix] `node:sqlite` is available in node ^22.13 [`#17`](https://github.com/inspect-js/is-core-module.git
|
|
34
|
+
/issues/17)
|
|
13
35
|
|
|
14
|
-
## [v2.16.0](https://github.com/inspect-js/is-core-module
|
|
36
|
+
## [v2.16.0](https://github.com/inspect-js/is-core-module.git
|
|
37
|
+
/compare/v2.15.1...v2.16.0) - 2024-12-13
|
|
15
38
|
|
|
16
39
|
### Commits
|
|
17
40
|
|
|
18
|
-
- [New] add `node:sqlite` [`1ee94d2`](https://github.com/inspect-js/is-core-module
|
|
19
|
-
|
|
41
|
+
- [New] add `node:sqlite` [`1ee94d2`](https://github.com/inspect-js/is-core-module.git
|
|
42
|
+
/commit/1ee94d20857e22cdb24e9b4bb1a2097f2e03e26f)
|
|
43
|
+
- [Dev Deps] update `auto-changelog`, `tape` [`aa84aa3`](https://github.com/inspect-js/is-core-module.git
|
|
44
|
+
/commit/aa84aa34face677f14e08ec1c737f0c4bba27260)
|
|
20
45
|
|
|
21
|
-
## [v2.15.1](https://github.com/inspect-js/is-core-module
|
|
46
|
+
## [v2.15.1](https://github.com/inspect-js/is-core-module.git
|
|
47
|
+
/compare/v2.15.0...v2.15.1) - 2024-08-21
|
|
22
48
|
|
|
23
49
|
### Commits
|
|
24
50
|
|
|
25
|
-
- [Tests] add `process.getBuiltinModule` tests [`28c7791`](https://github.com/inspect-js/is-core-module
|
|
26
|
-
|
|
27
|
-
- [
|
|
28
|
-
|
|
29
|
-
- [
|
|
51
|
+
- [Tests] add `process.getBuiltinModule` tests [`28c7791`](https://github.com/inspect-js/is-core-module.git
|
|
52
|
+
/commit/28c7791c196d58c64cfdf638b7e68ed1b62a4da0)
|
|
53
|
+
- [Fix] `test/mock_loader` is no longer exposed as of v22.7 [`68b08b0`](https://github.com/inspect-js/is-core-module.git
|
|
54
|
+
/commit/68b08b0d7963447dbffa5142e8810dca550383af)
|
|
55
|
+
- [Tests] replace `aud` with `npm audit` [`32f8060`](https://github.com/inspect-js/is-core-module.git
|
|
56
|
+
/commit/32f806026dac14f9016be4401a643851240c76b9)
|
|
57
|
+
- [Dev Deps] update `mock-property` [`f7d3c8f`](https://github.com/inspect-js/is-core-module.git
|
|
58
|
+
/commit/f7d3c8f01e922be49621683eb41477c4f50522e1)
|
|
59
|
+
- [Dev Deps] add missing peer dep [`eaee885`](https://github.com/inspect-js/is-core-module.git
|
|
60
|
+
/commit/eaee885b67238819e9c8ed5bd2098766e1d05331)
|
|
30
61
|
|
|
31
|
-
## [v2.15.0](https://github.com/inspect-js/is-core-module
|
|
62
|
+
## [v2.15.0](https://github.com/inspect-js/is-core-module.git
|
|
63
|
+
/compare/v2.14.0...v2.15.0) - 2024-07-17
|
|
32
64
|
|
|
33
65
|
### Commits
|
|
34
66
|
|
|
35
|
-
- [New] add `node:sea` [`2819fb3`](https://github.com/inspect-js/is-core-module
|
|
67
|
+
- [New] add `node:sea` [`2819fb3`](https://github.com/inspect-js/is-core-module.git
|
|
68
|
+
/commit/2819fb3eae312fa64643bc5430ebd06ec0f3fb88)
|
|
36
69
|
|
|
37
|
-
## [v2.14.0](https://github.com/inspect-js/is-core-module
|
|
70
|
+
## [v2.14.0](https://github.com/inspect-js/is-core-module.git
|
|
71
|
+
/compare/v2.13.1...v2.14.0) - 2024-06-20
|
|
38
72
|
|
|
39
73
|
### Commits
|
|
40
74
|
|
|
41
|
-
- [Dev Deps] update `@ljharb/eslint-config`, `aud`, `mock-property`, `npmignore`, `tape` [`0e43200`](https://github.com/inspect-js/is-core-module
|
|
42
|
-
|
|
43
|
-
- [
|
|
44
|
-
|
|
75
|
+
- [Dev Deps] update `@ljharb/eslint-config`, `aud`, `mock-property`, `npmignore`, `tape` [`0e43200`](https://github.com/inspect-js/is-core-module.git
|
|
76
|
+
/commit/0e432006d97237cc082d41e6a593e87c81068364)
|
|
77
|
+
- [meta] add missing `engines.node` [`4ea3af8`](https://github.com/inspect-js/is-core-module.git
|
|
78
|
+
/commit/4ea3af88891a1d4f96026f0ec0ef08c67cd1bd24)
|
|
79
|
+
- [New] add `test/mock_loader` [`e9fbd29`](https://github.com/inspect-js/is-core-module.git
|
|
80
|
+
/commit/e9fbd2951383be070aeffb9ebbf3715237282610)
|
|
81
|
+
- [Deps] update `hasown` [`57f1940`](https://github.com/inspect-js/is-core-module.git
|
|
82
|
+
/commit/57f1940947b3e368abdf529232d2f17d88909358)
|
|
45
83
|
|
|
46
|
-
## [v2.13.1](https://github.com/inspect-js/is-core-module
|
|
84
|
+
## [v2.13.1](https://github.com/inspect-js/is-core-module.git
|
|
85
|
+
/compare/v2.13.0...v2.13.1) - 2023-10-20
|
|
47
86
|
|
|
48
87
|
### Commits
|
|
49
88
|
|
|
50
|
-
- [Refactor] use `hasown` instead of `has` [`0e52096`](https://github.com/inspect-js/is-core-module
|
|
51
|
-
|
|
89
|
+
- [Refactor] use `hasown` instead of `has` [`0e52096`](https://github.com/inspect-js/is-core-module.git
|
|
90
|
+
/commit/0e520968b0a725276b67420ab4b877486b243ae0)
|
|
91
|
+
- [Dev Deps] update `mock-property`, `tape` [`8736b35`](https://github.com/inspect-js/is-core-module.git
|
|
92
|
+
/commit/8736b35464d0f297b55da2c6b30deee04b8303c5)
|
|
52
93
|
|
|
53
|
-
## [v2.13.0](https://github.com/inspect-js/is-core-module
|
|
94
|
+
## [v2.13.0](https://github.com/inspect-js/is-core-module.git
|
|
95
|
+
/compare/v2.12.1...v2.13.0) - 2023-08-05
|
|
54
96
|
|
|
55
97
|
### Commits
|
|
56
98
|
|
|
57
|
-
- [Dev Deps] update `@ljharb/eslint-config`, `aud`, `semver`, `tape` [`c75b263`](https://github.com/inspect-js/is-core-module
|
|
58
|
-
|
|
99
|
+
- [Dev Deps] update `@ljharb/eslint-config`, `aud`, `semver`, `tape` [`c75b263`](https://github.com/inspect-js/is-core-module.git
|
|
100
|
+
/commit/c75b263d047cb53430c3970107e5eb64d6cd6c0c)
|
|
101
|
+
- [New] `node:test/reporters` and `wasi`/`node:wasi` are in v18.17 [`d76cbf8`](https://github.com/inspect-js/is-core-module.git
|
|
102
|
+
/commit/d76cbf8e9b208acfd98913fed5a5f45cb15fe5dc)
|
|
59
103
|
|
|
60
|
-
## [v2.12.1](https://github.com/inspect-js/is-core-module
|
|
104
|
+
## [v2.12.1](https://github.com/inspect-js/is-core-module.git
|
|
105
|
+
/compare/v2.12.0...v2.12.1) - 2023-05-16
|
|
61
106
|
|
|
62
107
|
### Commits
|
|
63
108
|
|
|
64
|
-
- [Fix] `test/reporters` now requires the `node:` prefix as of v20.2 [`12183d0`](https://github.com/inspect-js/is-core-module
|
|
109
|
+
- [Fix] `test/reporters` now requires the `node:` prefix as of v20.2 [`12183d0`](https://github.com/inspect-js/is-core-module.git
|
|
110
|
+
/commit/12183d0d8e4edf56b6ce18a1b3be54bfce10175b)
|
|
65
111
|
|
|
66
|
-
## [v2.12.0](https://github.com/inspect-js/is-core-module
|
|
112
|
+
## [v2.12.0](https://github.com/inspect-js/is-core-module.git
|
|
113
|
+
/compare/v2.11.0...v2.12.0) - 2023-04-10
|
|
67
114
|
|
|
68
115
|
### Commits
|
|
69
116
|
|
|
70
|
-
- [actions] update rebase action to use reusable workflow [`c0a7251`](https://github.com/inspect-js/is-core-module
|
|
71
|
-
|
|
72
|
-
- [
|
|
73
|
-
|
|
117
|
+
- [actions] update rebase action to use reusable workflow [`c0a7251`](https://github.com/inspect-js/is-core-module.git
|
|
118
|
+
/commit/c0a7251f734f3c621932c5fcdfd1bf966b42ca32)
|
|
119
|
+
- [Dev Deps] update `@ljharb/eslint-config`, `aud`, `tape` [`9ae8b7f`](https://github.com/inspect-js/is-core-module.git
|
|
120
|
+
/commit/9ae8b7fac03c369861d0991b4a2ce8d4848e6a7d)
|
|
121
|
+
- [New] `test/reporters` added in v19.9, `wasi` added in v20 [`9d5341a`](https://github.com/inspect-js/is-core-module.git
|
|
122
|
+
/commit/9d5341ab32053f25b7fa7db3c0e18461db24a79c)
|
|
123
|
+
- [Dev Deps] add missing `in-publish` dep [`5980245`](https://github.com/inspect-js/is-core-module.git
|
|
124
|
+
/commit/59802456e9ac919fa748f53be9d8fbf304a197df)
|
|
74
125
|
|
|
75
|
-
## [v2.11.0](https://github.com/inspect-js/is-core-module
|
|
126
|
+
## [v2.11.0](https://github.com/inspect-js/is-core-module.git
|
|
127
|
+
/compare/v2.10.0...v2.11.0) - 2022-10-18
|
|
76
128
|
|
|
77
129
|
### Commits
|
|
78
130
|
|
|
79
|
-
- [meta] use `npmignore` to autogenerate an npmignore file [`3360011`](https://github.com/inspect-js/is-core-module
|
|
80
|
-
|
|
81
|
-
- [
|
|
131
|
+
- [meta] use `npmignore` to autogenerate an npmignore file [`3360011`](https://github.com/inspect-js/is-core-module.git
|
|
132
|
+
/commit/33600118857b46177178072fba2affcdeb009d12)
|
|
133
|
+
- [Dev Deps] update `aud`, `tape` [`651c6b0`](https://github.com/inspect-js/is-core-module.git
|
|
134
|
+
/commit/651c6b0cc2799d4130866cf43ad333dcade3d26c)
|
|
135
|
+
- [New] `inspector/promises` and `node:inspector/promises` is now available in node 19 [`22d332f`](https://github.com/inspect-js/is-core-module.git
|
|
136
|
+
/commit/22d332fe22ac050305444e0781ff85af819abcb0)
|
|
82
137
|
|
|
83
|
-
## [v2.10.0](https://github.com/inspect-js/is-core-module
|
|
138
|
+
## [v2.10.0](https://github.com/inspect-js/is-core-module.git
|
|
139
|
+
/compare/v2.9.0...v2.10.0) - 2022-08-03
|
|
84
140
|
|
|
85
141
|
### Commits
|
|
86
142
|
|
|
87
|
-
- [New] `node:test` is now available in node ^16.17 [`e8fd36e`](https://github.com/inspect-js/is-core-module
|
|
88
|
-
|
|
143
|
+
- [New] `node:test` is now available in node ^16.17 [`e8fd36e`](https://github.com/inspect-js/is-core-module.git
|
|
144
|
+
/commit/e8fd36e9b86c917775a07cc473b62a3294f459f2)
|
|
145
|
+
- [Tests] improve skip message [`c014a4c`](https://github.com/inspect-js/is-core-module.git
|
|
146
|
+
/commit/c014a4c0cd6eb15fff573ae4709191775e70cab4)
|
|
89
147
|
|
|
90
|
-
## [v2.9.0](https://github.com/inspect-js/is-core-module
|
|
148
|
+
## [v2.9.0](https://github.com/inspect-js/is-core-module.git
|
|
149
|
+
/compare/v2.8.1...v2.9.0) - 2022-04-19
|
|
91
150
|
|
|
92
151
|
### Commits
|
|
93
152
|
|
|
94
|
-
- [New] add `node:test`, in node 18+ [`f853eca`](https://github.com/inspect-js/is-core-module
|
|
95
|
-
|
|
96
|
-
- [
|
|
97
|
-
|
|
153
|
+
- [New] add `node:test`, in node 18+ [`f853eca`](https://github.com/inspect-js/is-core-module.git
|
|
154
|
+
/commit/f853eca801d0a7d4e1dbb670f1b6d9837d9533c5)
|
|
155
|
+
- [Tests] use `mock-property` [`03b3644`](https://github.com/inspect-js/is-core-module.git
|
|
156
|
+
/commit/03b3644dff4417f4ba5a7d0aa0138f5f6b3e5c46)
|
|
157
|
+
- [Dev Deps] update `eslint`, `@ljharb/eslint-config`, `aud`, `auto-changelog`, `tape` [`7c0e2d0`](https://github.com/inspect-js/is-core-module.git
|
|
158
|
+
/commit/7c0e2d06ed2a89acf53abe2ab34d703ed5b03455)
|
|
159
|
+
- [meta] simplify "exports" [`d6ed201`](https://github.com/inspect-js/is-core-module.git
|
|
160
|
+
/commit/d6ed201eba7fbba0e59814a9050fc49a6e9878c8)
|
|
98
161
|
|
|
99
|
-
## [v2.8.1](https://github.com/inspect-js/is-core-module
|
|
162
|
+
## [v2.8.1](https://github.com/inspect-js/is-core-module.git
|
|
163
|
+
/compare/v2.8.0...v2.8.1) - 2022-01-05
|
|
100
164
|
|
|
101
165
|
### Commits
|
|
102
166
|
|
|
103
|
-
- [actions] reuse common workflows [`cd2cf9b`](https://github.com/inspect-js/is-core-module
|
|
104
|
-
|
|
105
|
-
- [
|
|
106
|
-
|
|
107
|
-
- [
|
|
167
|
+
- [actions] reuse common workflows [`cd2cf9b`](https://github.com/inspect-js/is-core-module.git
|
|
168
|
+
/commit/cd2cf9b3b66c8d328f65610efe41e9325db7716d)
|
|
169
|
+
- [Fix] update node 0.4 results [`062195d`](https://github.com/inspect-js/is-core-module.git
|
|
170
|
+
/commit/062195d89f0876a88b95d378b43f7fcc1205bc5b)
|
|
171
|
+
- [Dev Deps] update `eslint`, `@ljharb/eslint-config`, `safe-publish-latest`, `tape` [`0790b62`](https://github.com/inspect-js/is-core-module.git
|
|
172
|
+
/commit/0790b6222848c6167132f9f73acc3520fa8d1298)
|
|
173
|
+
- [Dev Deps] update `eslint`, `@ljharb/eslint-config`, `tape` [`7d139a6`](https://github.com/inspect-js/is-core-module.git
|
|
174
|
+
/commit/7d139a6d767709eabf0a0251e074ec1fb230c06e)
|
|
175
|
+
- [Tests] run `nyc` in `tests-only`, not `test` [`780e8a0`](https://github.com/inspect-js/is-core-module.git
|
|
176
|
+
/commit/780e8a049951c71cf78b1707f0871c48a28bde14)
|
|
108
177
|
|
|
109
|
-
## [v2.8.0](https://github.com/inspect-js/is-core-module
|
|
178
|
+
## [v2.8.0](https://github.com/inspect-js/is-core-module.git
|
|
179
|
+
/compare/v2.7.0...v2.8.0) - 2021-10-14
|
|
110
180
|
|
|
111
181
|
### Commits
|
|
112
182
|
|
|
113
|
-
- [actions] update codecov uploader [`0cfe94e`](https://github.com/inspect-js/is-core-module
|
|
114
|
-
|
|
115
|
-
- [
|
|
183
|
+
- [actions] update codecov uploader [`0cfe94e`](https://github.com/inspect-js/is-core-module.git
|
|
184
|
+
/commit/0cfe94e106a7d005ea03e008c0a21dec13a77904)
|
|
185
|
+
- [New] add `readline/promises` to node v17+ [`4f78c30`](https://github.com/inspect-js/is-core-module.git
|
|
186
|
+
/commit/4f78c3008b1b58b4db6dc91d99610b1bc859da7e)
|
|
187
|
+
- [Tests] node ^14.18 supports `node:` prefixes for CJS [`43e2f17`](https://github.com/inspect-js/is-core-module.git
|
|
188
|
+
/commit/43e2f177452cea2f0eaf34f61b5407217bbdb6f4)
|
|
116
189
|
|
|
117
|
-
## [v2.7.0](https://github.com/inspect-js/is-core-module
|
|
190
|
+
## [v2.7.0](https://github.com/inspect-js/is-core-module.git
|
|
191
|
+
/compare/v2.6.0...v2.7.0) - 2021-09-27
|
|
118
192
|
|
|
119
193
|
### Commits
|
|
120
194
|
|
|
121
|
-
- [New] node `v14.18` added `node:`-prefixed core modules to `require` [`6d943ab`](https://github.com/inspect-js/is-core-module
|
|
122
|
-
|
|
123
|
-
- [
|
|
124
|
-
|
|
125
|
-
- [
|
|
195
|
+
- [New] node `v14.18` added `node:`-prefixed core modules to `require` [`6d943ab`](https://github.com/inspect-js/is-core-module.git
|
|
196
|
+
/commit/6d943abe81382b9bbe344384d80fbfebe1cc0526)
|
|
197
|
+
- [Tests] add coverage for Object.prototype pollution [`c6baf5f`](https://github.com/inspect-js/is-core-module.git
|
|
198
|
+
/commit/c6baf5f942311a1945c1af41167bb80b84df2af7)
|
|
199
|
+
- [Dev Deps] update `@ljharb/eslint-config` [`6717f00`](https://github.com/inspect-js/is-core-module.git
|
|
200
|
+
/commit/6717f000d063ea57beb772bded36c2f056ac404c)
|
|
201
|
+
- [eslint] fix linter warning [`594c10b`](https://github.com/inspect-js/is-core-module.git
|
|
202
|
+
/commit/594c10bb7d39d7eb00925c90924199ff596184b2)
|
|
203
|
+
- [meta] add `sideEffects` flag [`c32cfa5`](https://github.com/inspect-js/is-core-module.git
|
|
204
|
+
/commit/c32cfa5195632944c4dd4284a142b8476e75be13)
|
|
126
205
|
|
|
127
|
-
## [v2.6.0](https://github.com/inspect-js/is-core-module
|
|
206
|
+
## [v2.6.0](https://github.com/inspect-js/is-core-module.git
|
|
207
|
+
/compare/v2.5.0...v2.6.0) - 2021-08-17
|
|
128
208
|
|
|
129
209
|
### Commits
|
|
130
210
|
|
|
131
|
-
- [Dev Deps] update `eslint`, `tape` [`6cc928f`](https://github.com/inspect-js/is-core-module
|
|
132
|
-
|
|
133
|
-
- [
|
|
134
|
-
|
|
211
|
+
- [Dev Deps] update `eslint`, `tape` [`6cc928f`](https://github.com/inspect-js/is-core-module.git
|
|
212
|
+
/commit/6cc928f8a4bba66aeeccc4f6beeac736d4bd3081)
|
|
213
|
+
- [New] add `stream/consumers` to node `>= 16.7` [`a1a423e`](https://github.com/inspect-js/is-core-module.git
|
|
214
|
+
/commit/a1a423e467e4cc27df180234fad5bab45943e67d)
|
|
215
|
+
- [Refactor] Remove duplicated `&&` operand [`86faea7`](https://github.com/inspect-js/is-core-module.git
|
|
216
|
+
/commit/86faea738213a2433c62d1098488dc9314dca832)
|
|
217
|
+
- [Tests] include prereleases [`a4da7a6`](https://github.com/inspect-js/is-core-module.git
|
|
218
|
+
/commit/a4da7a6abf7568e2aa4fd98e69452179f1850963)
|
|
135
219
|
|
|
136
|
-
## [v2.5.0](https://github.com/inspect-js/is-core-module
|
|
220
|
+
## [v2.5.0](https://github.com/inspect-js/is-core-module.git
|
|
221
|
+
/compare/v2.4.0...v2.5.0) - 2021-07-12
|
|
137
222
|
|
|
138
223
|
### Commits
|
|
139
224
|
|
|
140
|
-
- [Dev Deps] update `auto-changelog`, `eslint` [`6334cc9`](https://github.com/inspect-js/is-core-module
|
|
141
|
-
|
|
225
|
+
- [Dev Deps] update `auto-changelog`, `eslint` [`6334cc9`](https://github.com/inspect-js/is-core-module.git
|
|
226
|
+
/commit/6334cc94f3af7469685bd8f236740991baaf2705)
|
|
227
|
+
- [New] add `stream/web` to node v16.5+ [`17ac59b`](https://github.com/inspect-js/is-core-module.git
|
|
228
|
+
/commit/17ac59b662d63e220a2e5728625f005c24f177b2)
|
|
142
229
|
|
|
143
|
-
## [v2.4.0](https://github.com/inspect-js/is-core-module
|
|
230
|
+
## [v2.4.0](https://github.com/inspect-js/is-core-module.git
|
|
231
|
+
/compare/v2.3.0...v2.4.0) - 2021-05-09
|
|
144
232
|
|
|
145
233
|
### Commits
|
|
146
234
|
|
|
147
|
-
- [readme] add actions and codecov badges [`82b7faa`](https://github.com/inspect-js/is-core-module
|
|
148
|
-
|
|
149
|
-
- [Dev Deps] update
|
|
150
|
-
|
|
151
|
-
- [
|
|
235
|
+
- [readme] add actions and codecov badges [`82b7faa`](https://github.com/inspect-js/is-core-module.git
|
|
236
|
+
/commit/82b7faa12b56dbe47fbea67e1a5b9e447027ba40)
|
|
237
|
+
- [Dev Deps] update `@ljharb/eslint-config`, `aud` [`8096868`](https://github.com/inspect-js/is-core-module.git
|
|
238
|
+
/commit/8096868c024a161ccd4d44110b136763e92eace8)
|
|
239
|
+
- [Dev Deps] update `eslint` [`6726824`](https://github.com/inspect-js/is-core-module.git
|
|
240
|
+
/commit/67268249b88230018c510f6532a8046d7326346f)
|
|
241
|
+
- [New] add `diagnostics_channel` to node `^14.17` [`86c6563`](https://github.com/inspect-js/is-core-module.git
|
|
242
|
+
/commit/86c65634201b8ff9b3e48a9a782594579c7f5c3c)
|
|
243
|
+
- [meta] fix prepublish script [`697a01e`](https://github.com/inspect-js/is-core-module.git
|
|
244
|
+
/commit/697a01e3c9c0be074066520954f30fb28532ec57)
|
|
152
245
|
|
|
153
|
-
## [v2.3.0](https://github.com/inspect-js/is-core-module
|
|
246
|
+
## [v2.3.0](https://github.com/inspect-js/is-core-module.git
|
|
247
|
+
/compare/v2.2.0...v2.3.0) - 2021-04-24
|
|
154
248
|
|
|
155
249
|
### Commits
|
|
156
250
|
|
|
157
|
-
- [meta] do not publish github action workflow files [`060d4bb`](https://github.com/inspect-js/is-core-module
|
|
158
|
-
|
|
159
|
-
- [
|
|
160
|
-
|
|
161
|
-
- [
|
|
162
|
-
|
|
163
|
-
- [
|
|
164
|
-
|
|
165
|
-
- [
|
|
166
|
-
|
|
167
|
-
|
|
168
|
-
|
|
251
|
+
- [meta] do not publish github action workflow files [`060d4bb`](https://github.com/inspect-js/is-core-module.git
|
|
252
|
+
/commit/060d4bb971a29451c19ff336eb56bee27f9fa95a)
|
|
253
|
+
- [New] add support for `node:` prefix, in node 16+ [`7341223`](https://github.com/inspect-js/is-core-module.git
|
|
254
|
+
/commit/73412230a769f6e81c05eea50b6520cebf54ed2f)
|
|
255
|
+
- [actions] use `node/install` instead of `node/run`; use `codecov` action [`016269a`](https://github.com/inspect-js/is-core-module.git
|
|
256
|
+
/commit/016269abae9f6657a5254adfbb813f09a05067f9)
|
|
257
|
+
- [patch] remove unneeded `.0` in version ranges [`cb466a6`](https://github.com/inspect-js/is-core-module.git
|
|
258
|
+
/commit/cb466a6d89e52b8389e5c12715efcd550c41cea3)
|
|
259
|
+
- [Dev Deps] update `eslint`, `@ljharb/eslint-config`, `aud`, `tape` [`c9f9c39`](https://github.com/inspect-js/is-core-module.git
|
|
260
|
+
/commit/c9f9c396ace60ef81906f98059c064e6452473ed)
|
|
261
|
+
- [actions] update workflows [`3ee4a89`](https://github.com/inspect-js/is-core-module.git
|
|
262
|
+
/commit/3ee4a89fd5a02fccd43882d905448ea6a98e9a3c)
|
|
263
|
+
- [Dev Deps] update `eslint`, `@ljharb/eslint-config` [`dee4fed`](https://github.com/inspect-js/is-core-module.git
|
|
264
|
+
/commit/dee4fed79690c1d43a22f7fa9426abebdc6d727f)
|
|
265
|
+
- [Dev Deps] update `eslint`, `@ljharb/eslint-config` [`7d046ba`](https://github.com/inspect-js/is-core-module.git
|
|
266
|
+
/commit/7d046ba07ae8c9292e43652694ca808d7b309de8)
|
|
267
|
+
- [meta] use `prepublishOnly` script for npm 7+ [`149e677`](https://github.com/inspect-js/is-core-module.git
|
|
268
|
+
/commit/149e6771a5ede6d097e71785b467a9c4b4977cc7)
|
|
269
|
+
- [readme] remove travis badge [`903b51d`](https://github.com/inspect-js/is-core-module.git
|
|
270
|
+
/commit/903b51d6b69b98abeabfbc3695c345b02646f19c)
|
|
271
|
+
|
|
272
|
+
## [v2.2.0](https://github.com/inspect-js/is-core-module.git
|
|
273
|
+
/compare/v2.1.0...v2.2.0) - 2020-11-26
|
|
169
274
|
|
|
170
275
|
### Commits
|
|
171
276
|
|
|
172
|
-
- [Tests] migrate tests to Github Actions [`c919f57`](https://github.com/inspect-js/is-core-module
|
|
173
|
-
|
|
174
|
-
- [
|
|
175
|
-
|
|
176
|
-
- [
|
|
277
|
+
- [Tests] migrate tests to Github Actions [`c919f57`](https://github.com/inspect-js/is-core-module.git
|
|
278
|
+
/commit/c919f573c0a92d10a0acad0b650b5aecb033d426)
|
|
279
|
+
- [patch] `core.json`: %s/ /\t/g [`db3f685`](https://github.com/inspect-js/is-core-module.git
|
|
280
|
+
/commit/db3f68581f53e73cc09cd675955eb1bdd6a5a39b)
|
|
281
|
+
- [Tests] run `nyc` on all tests [`b2f925f`](https://github.com/inspect-js/is-core-module.git
|
|
282
|
+
/commit/b2f925f8866f210ef441f39fcc8cc42692ab89b1)
|
|
283
|
+
- [Dev Deps] update `eslint`, `@ljharb/eslint-config`, `aud`; add `safe-publish-latest` [`89f02a2`](https://github.com/inspect-js/is-core-module.git
|
|
284
|
+
/commit/89f02a2b4162246dea303a6ee31bb9a550b05c72)
|
|
285
|
+
- [New] add `path/posix`, `path/win32`, `util/types` [`77f94f1`](https://github.com/inspect-js/is-core-module.git
|
|
286
|
+
/commit/77f94f1e90ffd7c0be2a3f1aa8574ebf7fd981b3)
|
|
177
287
|
|
|
178
|
-
## [v2.1.0](https://github.com/inspect-js/is-core-module
|
|
288
|
+
## [v2.1.0](https://github.com/inspect-js/is-core-module.git
|
|
289
|
+
/compare/v2.0.0...v2.1.0) - 2020-11-04
|
|
179
290
|
|
|
180
291
|
### Commits
|
|
181
292
|
|
|
182
|
-
- [Dev Deps] update `eslint` [`5e0034e`](https://github.com/inspect-js/is-core-module
|
|
183
|
-
|
|
293
|
+
- [Dev Deps] update `eslint` [`5e0034e`](https://github.com/inspect-js/is-core-module.git
|
|
294
|
+
/commit/5e0034eae57c09c8f1bd769f502486a00f56c6e4)
|
|
295
|
+
- [New] Add `diagnostics_channel` [`c2d83d0`](https://github.com/inspect-js/is-core-module.git
|
|
296
|
+
/commit/c2d83d0a0225a1a658945d9bab7036ea347d29ec)
|
|
184
297
|
|
|
185
|
-
## [v2.0.0](https://github.com/inspect-js/is-core-module
|
|
298
|
+
## [v2.0.0](https://github.com/inspect-js/is-core-module.git
|
|
299
|
+
/compare/v1.0.2...v2.0.0) - 2020-09-29
|
|
186
300
|
|
|
187
301
|
### Commits
|
|
188
302
|
|
|
189
|
-
- v2 implementation [`865aeb5`](https://github.com/inspect-js/is-core-module
|
|
190
|
-
|
|
191
|
-
-
|
|
192
|
-
|
|
193
|
-
-
|
|
194
|
-
|
|
195
|
-
-
|
|
196
|
-
|
|
197
|
-
- [meta]
|
|
198
|
-
|
|
199
|
-
- [
|
|
200
|
-
|
|
201
|
-
|
|
303
|
+
- v2 implementation [`865aeb5`](https://github.com/inspect-js/is-core-module.git
|
|
304
|
+
/commit/865aeb5ca0e90248a3dfff5d7622e4751fdeb9cd)
|
|
305
|
+
- Only apps should have lockfiles [`5a5e660`](https://github.com/inspect-js/is-core-module.git
|
|
306
|
+
/commit/5a5e660d568e37eb44e17fb1ebb12a105205fc2b)
|
|
307
|
+
- Initial commit for v2 [`5a51524`](https://github.com/inspect-js/is-core-module.git
|
|
308
|
+
/commit/5a51524e06f92adece5fbb138c69b7b9748a2348)
|
|
309
|
+
- Tests [`116eae4`](https://github.com/inspect-js/is-core-module.git
|
|
310
|
+
/commit/116eae4fccd01bc72c1fd3cc4b7561c387afc496)
|
|
311
|
+
- [meta] add `auto-changelog` [`c24388b`](https://github.com/inspect-js/is-core-module.git
|
|
312
|
+
/commit/c24388bee828d223040519d1f5b226ca35beee63)
|
|
313
|
+
- [actions] add "Automatic Rebase" and "require allow edits" actions [`34292db`](https://github.com/inspect-js/is-core-module.git
|
|
314
|
+
/commit/34292dbcbadae0868aff03c22dbd8b7b8a11558a)
|
|
315
|
+
- [Tests] add `npm run lint` [`4f9eeee`](https://github.com/inspect-js/is-core-module.git
|
|
316
|
+
/commit/4f9eeee7ddff10698bbf528620f4dc8d4fa3e697)
|
|
317
|
+
- [readme] fix travis badges, https all URLs [`e516a73`](https://github.com/inspect-js/is-core-module.git
|
|
318
|
+
/commit/e516a73b0dccce20938c432b1ba512eae8eff9e9)
|
|
319
|
+
- [meta] create FUNDING.yml [`1aabebc`](https://github.com/inspect-js/is-core-module.git
|
|
320
|
+
/commit/1aabebca98d01f8a04e46bc2e2520fa93cf21ac6)
|
|
321
|
+
- [Fix] `domain`: domain landed sometime > v0.7.7 and <= v0.7.12 [`2df7d37`](https://github.com/inspect-js/is-core-module.git
|
|
322
|
+
/commit/2df7d37595d41b15eeada732b706b926c2771655)
|
|
323
|
+
- [Fix] `sys`: worked in 0.6, not 0.7, and 0.8+ [`a75c134`](https://github.com/inspect-js/is-core-module.git
|
|
324
|
+
/commit/a75c134229e1e9441801f6b73f6a52489346eb65)
|
|
325
|
+
|
|
326
|
+
## [v1.0.2](https://github.com/inspect-js/is-core-module.git
|
|
327
|
+
/compare/v1.0.1...v1.0.2) - 2014-09-28
|
|
202
328
|
|
|
203
329
|
### Commits
|
|
204
330
|
|
|
205
|
-
- simpler [`66fe90f`](https://github.com/inspect-js/is-core-module
|
|
331
|
+
- simpler [`66fe90f`](https://github.com/inspect-js/is-core-module.git
|
|
332
|
+
/commit/66fe90f9771581b9adc0c3900baa52c21b5baea2)
|
|
206
333
|
|
|
207
|
-
## [v1.0.1](https://github.com/inspect-js/is-core-module
|
|
334
|
+
## [v1.0.1](https://github.com/inspect-js/is-core-module.git
|
|
335
|
+
/compare/v1.0.0...v1.0.1) - 2014-09-28
|
|
208
336
|
|
|
209
337
|
### Commits
|
|
210
338
|
|
|
211
|
-
- remove stupid [`f21f906`](https://github.com/inspect-js/is-core-module
|
|
212
|
-
|
|
339
|
+
- remove stupid [`f21f906`](https://github.com/inspect-js/is-core-module.git
|
|
340
|
+
/commit/f21f906f882c2bd656a5fc5ed6fbe48ddaffb2ac)
|
|
341
|
+
- update readme [`1eff0ec`](https://github.com/inspect-js/is-core-module.git
|
|
342
|
+
/commit/1eff0ec69798d1ec65771552d1562911e90a8027)
|
|
213
343
|
|
|
214
344
|
## v1.0.0 - 2014-09-28
|
|
215
345
|
|
|
216
346
|
### Commits
|
|
217
347
|
|
|
218
|
-
- init [`48e5e76`](https://github.com/inspect-js/is-core-module
|
|
348
|
+
- init [`48e5e76`](https://github.com/inspect-js/is-core-module.git
|
|
349
|
+
/commit/48e5e76cac378fddb8c1f7d4055b8dfc943d6b96)
|
|
@@ -36,5 +36,5 @@ Clone the repo, `npm install`, and run `npm test`
|
|
|
36
36
|
[downloads-url]: https://npm-stat.com/charts.html?package=is-core-module
|
|
37
37
|
[codecov-image]: https://codecov.io/gh/inspect-js/is-core-module/branch/main/graphs/badge.svg
|
|
38
38
|
[codecov-url]: https://app.codecov.io/gh/inspect-js/is-core-module/
|
|
39
|
-
[actions-image]: https://img.shields.io/
|
|
39
|
+
[actions-image]: https://img.shields.io/github/check-runs/inspect-js/is-core-module/main
|
|
40
40
|
[actions-url]: https://github.com/inspect-js/is-core-module/actions
|
|
@@ -92,18 +92,18 @@
|
|
|
92
92
|
"node:sea": [">= 20.12 && < 21", ">= 21.7"],
|
|
93
93
|
"smalloc": ">= 0.11.5 && < 3",
|
|
94
94
|
"node:sqlite": [">= 22.13 && < 23", ">= 23.4"],
|
|
95
|
-
"_stream_duplex": ">= 0.9.4",
|
|
96
|
-
"node:_stream_duplex": [">= 14.18 && < 15", ">= 16"],
|
|
97
|
-
"_stream_transform": ">= 0.9.4",
|
|
98
|
-
"node:_stream_transform": [">= 14.18 && < 15", ">= 16"],
|
|
99
|
-
"_stream_wrap": ">= 1.4.1",
|
|
100
|
-
"node:_stream_wrap": [">= 14.18 && < 15", ">= 16"],
|
|
101
|
-
"_stream_passthrough": ">= 0.9.4",
|
|
102
|
-
"node:_stream_passthrough": [">= 14.18 && < 15", ">= 16"],
|
|
103
|
-
"_stream_readable": ">= 0.9.4",
|
|
104
|
-
"node:_stream_readable": [">= 14.18 && < 15", ">= 16"],
|
|
105
|
-
"_stream_writable": ">= 0.9.4",
|
|
106
|
-
"node:_stream_writable": [">= 14.18 && < 15", ">= 16"],
|
|
95
|
+
"_stream_duplex": ">= 0.9.4 && < 26",
|
|
96
|
+
"node:_stream_duplex": [">= 14.18 && < 15", ">= 16 && < 26"],
|
|
97
|
+
"_stream_transform": ">= 0.9.4 && < 26",
|
|
98
|
+
"node:_stream_transform": [">= 14.18 && < 15", ">= 16 && < 26"],
|
|
99
|
+
"_stream_wrap": ">= 1.4.1 && < 26",
|
|
100
|
+
"node:_stream_wrap": [">= 14.18 && < 15", ">= 16 && < 26"],
|
|
101
|
+
"_stream_passthrough": ">= 0.9.4 && < 26",
|
|
102
|
+
"node:_stream_passthrough": [">= 14.18 && < 15", ">= 16 && < 26"],
|
|
103
|
+
"_stream_readable": ">= 0.9.4 && < 26",
|
|
104
|
+
"node:_stream_readable": [">= 14.18 && < 15", ">= 16 && < 26"],
|
|
105
|
+
"_stream_writable": ">= 0.9.4 && < 26",
|
|
106
|
+
"node:_stream_writable": [">= 14.18 && < 15", ">= 16 && < 26"],
|
|
107
107
|
"stream": true,
|
|
108
108
|
"node:stream": [">= 14.18 && < 15", ">= 16"],
|
|
109
109
|
"stream/consumers": ">= 16.7",
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "is-core-module",
|
|
3
|
-
"version": "2.16.
|
|
3
|
+
"version": "2.16.2",
|
|
4
4
|
"description": "Is this specifier a node.js core module?",
|
|
5
5
|
"main": "index.js",
|
|
6
6
|
"sideEffects": false,
|
|
@@ -42,16 +42,16 @@
|
|
|
42
42
|
},
|
|
43
43
|
"homepage": "https://github.com/inspect-js/is-core-module",
|
|
44
44
|
"dependencies": {
|
|
45
|
-
"hasown": "^2.0.
|
|
45
|
+
"hasown": "^2.0.3"
|
|
46
46
|
},
|
|
47
47
|
"devDependencies": {
|
|
48
|
-
"@ljharb/eslint-config": "^
|
|
48
|
+
"@ljharb/eslint-config": "^22.2.3",
|
|
49
49
|
"auto-changelog": "^2.5.0",
|
|
50
50
|
"encoding": "^0.1.13",
|
|
51
|
-
"eslint": "
|
|
51
|
+
"eslint": "^8.57.1",
|
|
52
52
|
"in-publish": "^2.0.1",
|
|
53
53
|
"mock-property": "^1.1.0",
|
|
54
|
-
"npmignore": "^0.3.
|
|
54
|
+
"npmignore": "^0.3.5",
|
|
55
55
|
"nyc": "^10.3.2",
|
|
56
56
|
"safe-publish-latest": "^2.0.0",
|
|
57
57
|
"semver": "^6.3.1",
|