Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

fix(deps): update dependency synckit to ^0.9.0 #63

Open
wants to merge 1 commit into
base: main
Choose a base branch
from

Conversation

renovate[bot]
Copy link
Contributor

@renovate renovate bot commented Jul 16, 2022

This PR contains the following updates:

Package Change Age Adoption Passing Confidence
synckit ^0.7.1 -> ^0.9.0 age adoption passing confidence

Release Notes

un-ts/synckit (synckit)

v0.9.2

Compare Source

Patch Changes

v0.9.1

Compare Source

Patch Changes

v0.9.0

Compare Source

Minor Changes
Patch Changes

v0.8.8

Compare Source

Patch Changes
  • #​148 7b6a0eb Thanks @​JounQin! - feat: migrate @pkgr/utils to lite @pkgr/core - This will make the whole package much more smaller

v0.8.7

Compare Source

Patch Changes
  • #​145 b2affa0 Thanks @​JounQin! - feat: add new globalShims option, what means you can env SYNCKIT_GLOBAL_SHIMS=1 to enable auto polyfilling for some modules, for example: fetch from node-fetch, performance from node:perf_hooks.

    You can also pass a custom globalShims option as GlobalShim Array to custom your own shims:

    export interface GlobalShim {
      moduleName: string;
      /**
       * `undefined` means side effect only
       */
      globalName?: string;
      /**
       * 1. `undefined` or empty string means `default`, for example:
       * ```js
       * import globalName from 'module-name'
       * ```
       *
       * 2. `null` means namespaced, for example:
       * ```js
       * import * as globalName from 'module-name'
       * ```
       *
       */
      named?: string | null;
      /**
       * If not `false`, the shim will only be applied when the original `globalName` unavailable,
       * for example you may only want polyfill `globalThis.fetch` when it's unavailable natively:
       * ```js
       * import fetch from 'node-fetch'
       *
       * if (!globalThis.fetch) {
       *   globalThis.fetch = fetch
       * }
       * ```
       */
      conditional?: boolean;
    }

    You can aslo reuse the exported DEFAULT_GLOBAL_SHIMS_PRESET for extanding:

    import { DEFAULT_GLOBAL_SHIMS_PRESET, createSyncFn } from "synckit";
    
    const syncFn = createSyncFn(require.resolve("./worker"), {
      globalShims: [
        ...DEFAULT_GLOBAL_SHIMS_PRESET,
        // your own shim here
      ],
    });

v0.8.6

Compare Source

Patch Changes

v0.8.5

Compare Source

Patch Changes

v0.8.4

Compare Source

Patch Changes

v0.8.3

Compare Source

Patch Changes

v0.8.2

Compare Source

Patch Changes

v0.8.1

Compare Source

Patch Changes

v0.8.0

Compare Source

Minor Changes

Configuration

📅 Schedule: Branch creation - At any time (no schedule defined), Automerge - At any time (no schedule defined).

🚦 Automerge: Enabled.

Rebasing: Whenever PR is behind base branch, or you tick the rebase/retry checkbox.

🔕 Ignore: Close this PR and you won't be reminded about this update again.


  • If you want to rebase/retry this PR, check this box

This PR was generated by Mend Renovate. View the repository job log.

@renovate renovate bot force-pushed the renovate/synckit-0.x branch from 8be538c to cfb00fb Compare July 21, 2022 14:08
@renovate renovate bot force-pushed the renovate/synckit-0.x branch from cfb00fb to 4251dbf Compare August 11, 2022 09:20
@renovate renovate bot force-pushed the renovate/synckit-0.x branch 2 times, most recently from 3f929a5 to 8562afc Compare August 21, 2022 18:34
@renovate renovate bot force-pushed the renovate/synckit-0.x branch 2 times, most recently from dc3f73f to e6b501f Compare August 31, 2022 03:23
@renovate renovate bot force-pushed the renovate/synckit-0.x branch 2 times, most recently from cd07560 to 5861e59 Compare September 30, 2022 14:48
@renovate renovate bot force-pushed the renovate/synckit-0.x branch from 5861e59 to a7e7652 Compare October 15, 2022 17:16
@renovate renovate bot force-pushed the renovate/synckit-0.x branch 2 times, most recently from d7ecc2d to 3811ceb Compare October 28, 2022 17:43
@changeset-bot
Copy link

changeset-bot bot commented Oct 28, 2022

⚠️ No Changeset found

Latest commit: 6082a8f

Merging this PR will not cause a version bump for any packages. If these changes should not result in a new version, you're good to go. If these changes should result in a version bump, you need to add a changeset.

This PR includes no changesets

When changesets are added to this PR, you'll see the packages that this PR includes changesets for and the associated semver types

Click here to learn what changesets are, and how to add one.

Click here if you're a maintainer who wants to add a changeset to this PR

@renovate renovate bot force-pushed the renovate/synckit-0.x branch 3 times, most recently from 4f83606 to 328fd4f Compare October 28, 2022 21:51
@renovate renovate bot changed the title Update dependency synckit to ^0.8.0 fix(deps): update dependency synckit to ^0.8.0 Dec 20, 2022
@renovate renovate bot force-pushed the renovate/synckit-0.x branch 8 times, most recently from a215b9e to 1e85ef4 Compare March 19, 2023 21:03
@renovate renovate bot force-pushed the renovate/synckit-0.x branch 2 times, most recently from 1c605a1 to 58e969d Compare April 1, 2023 13:16
@renovate renovate bot force-pushed the renovate/synckit-0.x branch 2 times, most recently from 7859b76 to f869295 Compare April 16, 2023 08:38
@renovate renovate bot force-pushed the renovate/synckit-0.x branch 2 times, most recently from f8b1e9a to 12f5a75 Compare April 20, 2023 00:24
@renovate renovate bot force-pushed the renovate/synckit-0.x branch 8 times, most recently from faae9ef to b85b46f Compare March 30, 2024 16:50
@renovate renovate bot force-pushed the renovate/synckit-0.x branch 5 times, most recently from 99ff910 to ea1761b Compare April 10, 2024 15:27
@renovate renovate bot force-pushed the renovate/synckit-0.x branch from ea1761b to cb144a1 Compare May 8, 2024 20:25
@renovate renovate bot force-pushed the renovate/synckit-0.x branch from cb144a1 to f114119 Compare June 10, 2024 03:57
@renovate renovate bot force-pushed the renovate/synckit-0.x branch from f114119 to 8056c9d Compare July 22, 2024 23:25
@renovate renovate bot force-pushed the renovate/synckit-0.x branch from 8056c9d to a594018 Compare September 25, 2024 00:14
@renovate renovate bot force-pushed the renovate/synckit-0.x branch 3 times, most recently from fb9eb2a to 6b98f0e Compare October 17, 2024 01:47
@renovate renovate bot force-pushed the renovate/synckit-0.x branch from 6b98f0e to 8ac5b1a Compare October 25, 2024 00:03
@renovate renovate bot force-pushed the renovate/synckit-0.x branch from 8ac5b1a to fc570fe Compare November 5, 2024 17:55
@renovate renovate bot force-pushed the renovate/synckit-0.x branch from fc570fe to 6082a8f Compare November 5, 2024 18:10
@renovate renovate bot changed the title fix(deps): update dependency synckit to ^0.9.0 fix(deps): update dependency synckit to ^0.9.0 - autoclosed Dec 8, 2024
@renovate renovate bot closed this Dec 8, 2024
@renovate renovate bot deleted the renovate/synckit-0.x branch December 8, 2024 18:47
@renovate renovate bot changed the title fix(deps): update dependency synckit to ^0.9.0 - autoclosed fix(deps): update dependency synckit to ^0.9.0 Dec 8, 2024
@renovate renovate bot reopened this Dec 8, 2024
@renovate renovate bot force-pushed the renovate/synckit-0.x branch from a15a8bf to 6082a8f Compare December 8, 2024 22:59
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

Successfully merging this pull request may close these issues.

0 participants