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

chore(deps): update all non-major dependencies #578

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

Conversation

renovate[bot]
Copy link
Contributor

@renovate renovate bot commented Jan 21, 2025

This PR contains the following updates:

Package Change Age Adoption Passing Confidence
@cloudflare/workers-types ^4.20250109.0 -> ^4.20250129.0 age adoption passing confidence
@electric-sql/pglite (source) ^0.2.15 -> ^0.2.16 age adoption passing confidence
@types/node (source) ^22.10.7 -> ^22.12.0 age adoption passing confidence
db0 >=0.2.1 -> >=0.2.3 age adoption passing confidence
db0 ^0.2.1 -> ^0.2.3 age adoption passing confidence
eslint (source) ^9.18.0 -> ^9.19.0 age adoption passing confidence
h3 ^1.13.1 -> ^1.14.0 age adoption passing confidence
mitata ^1.0.31 -> ^1.0.33 age adoption passing confidence
node-fetch-native ^1.6.4 -> ^1.6.6 age adoption passing confidence
wrangler (source) ^3.101.0 -> ^3.106.0 age adoption passing confidence

Release Notes

cloudflare/workerd (@​cloudflare/workers-types)

v4.20250129.0

Compare Source

v4.20250124.3

Compare Source

v4.20250121.0

Compare Source

electric-sql/pglite (@​electric-sql/pglite)

v0.2.16

Compare Source

Patch Changes
  • c36fd09: Improvements to parsing results received from pg
  • e037883: Fixed PGliteWorkerOptions type
  • d6b981b: Fix the return type of the .transaction method
  • 17e7664: Export the base filesystem to enable creating custom file systems. NOTE: This is a work-in-progress API, it is not stable, and may change significantly in future!
  • 118ba3e: Add affectedRows for COPY command
  • d93c1bb: Add refreshArrayTypes() call to re-sync newly created complex array columns, like enums
  • ddd4a68: Removes postgis extension which leads to a smaller build of the package
  • f3f1103: Refactor the protocol message parse code to be simpler and easer to follow
  • 67fb2aa: feat: add support for loading compressed dumps via loadDataDir that are not labeled with mimetype
unjs/db0 (db0)

v0.2.3

Compare Source

compare changes

📦 Build
  • Export connectors and connector (d411f91)
❤️ Contributors

v0.2.2

Compare Source

compare changes

🚀 Enhancements
  • Export database instances (#​132)
  • Add node-sqlite3 connector (#​147)
  • Support RETURNING clause (#​139)
  • pglite: Use async init (#​130)
🩹 Fixes
  • Add missing mysql to connectors map (#​127)
  • Always add { success: true } to select results (#​118)
📦 Build
  • Generate drivers meta (#​136)
  • Field export condition for libsql + web (97630f3)
🏡 Chore
❤️ Contributors
eslint/eslint (eslint)

v9.19.0

Compare Source

unjs/h3 (h3)

v1.14.0

Compare Source

compare changes

🚀 Enhancements
  • session: Allow using with crossws hooks (#​960)
❤️ Contributors
evanwashere/mitata (mitata)

v1.0.33

Compare Source

v1.0.32

Compare Source

unjs/node-fetch-native (node-fetch-native)

v1.6.6

Compare Source

compare changes

🩹 Fixes
  • Improve DISABLE_NODE_FETCH_NATIVE_WARN behavior (#​128)
📖 Documentation
📦 Build
🤖 CI
❤️ Contributors

v1.6.5

Compare Source

compare changes

🏡 Chore
❤️ Contributors
cloudflare/workers-sdk (wrangler)

v3.106.0

Compare Source

Minor Changes
  • #​7856 2b6f149 Thanks @​emily-shen! - feat: add sanitised error messages to Wrangler telemetry

    Error messages that have been audited for potential inclusion of personal information, and explicitly opted-in, are now included in Wrangler's telemetry collection. Collected error messages will not include any filepaths, user input or any other potentially private content.

  • #​7900 bd9228e Thanks @​vicb! - chore(wrangler): update unenv dependency version

    [email protected] allows using the workerd implementation for
    the Node modules net, timers, and timers/promises.
    See unjs/unenv#396.

Patch Changes
  • #​7904 50b13f6 Thanks @​WalshyDev! - fix: validation for R2 bucket names, the regex was wrongly rejecting buckets starting with a number and the message wasn't as clear as it could be on what was going wrong.

  • #​7895 134d61d Thanks @​jahands! - Fix regression in retryOnAPIFailure preventing any requests from being retried

    Also fixes a regression in pipelines that prevented 401 errors from being retried when waiting for an API token to become active.

  • #​7879 5c02e46 Thanks @​andyjessop! - Fix to not require local connection string when using Hyperdrive and wrangler dev --remote

  • #​7860 13ab591 Thanks @​vicb! - refactor(wrangler): make JSON parsing independent of Node

    Switch jsonc-parser to parse json:

    • JSON.parse() exception messages are not stable across Node versions
    • While jsonc-parser is used, JSONC specific syntax is disabled
  • Updated dependencies []:

v3.105.1

Compare Source

Patch Changes

v3.105.0

Compare Source

Minor Changes
  • #​7466 e5ebdb1 Thanks @​Ltadrian! - feat: implement the wrangler cert upload command

    This command allows users to upload a mTLS certificate/private key or certificate-authority certificate chain.

    For uploading mTLS certificate, run:

    • wrangler cert upload mtls-certificate --cert cert.pem --key key.pem --name MY_CERT

    For uploading CA certificate chain, run:

    • wrangler cert upload certificate-authority --ca-cert server-ca.pem --name SERVER_CA
Patch Changes

v3.104.0

Compare Source

Minor Changes
  • #​7715 26fa9e8 Thanks @​penalosa! - Support service bindings from Pages projects to Workers in a single workerd instance. To try it out, pass multiple -c flags to Wrangler: i.e. wrangler pages dev -c wrangler.toml -c ../other-worker/wrangler.toml. The first -c flag must point to your Pages config file, and the rest should point to Workers that are bound to your Pages project.

  • #​7816 f6cc029 Thanks @​dario-piotrowicz! - add support for assets bindings to getPlatformProxy

    this change makes sure that that getPlatformProxy, when the input configuration
    file contains an assets field, correctly returns the appropriate asset binding proxy

    example:

    // wrangler.json
    {
      "name": "my-worker",
      "assets": {
        "directory": "./public/",
        "binding": "ASSETS"
      },
      "vars": {
        "MY_VAR": "my-var"
      }
    }
    import { getPlatformProxy } from "wrangler";
    
    const { env, dispose } = await getPlatformProxy();
    
    if (env.ASSETS) {
      const text = await (
        await env.ASSETS.fetch("http://0.0.0.0/file.txt")
      ).text();
      console.log(text); // logs the content of file.txt
    }
    
    await dispose();
Patch Changes

v3.103.2

Compare Source

Patch Changes

v3.103.1

Compare Source

Patch Changes

v3.103.0

Compare Source

Minor Changes
  • #​5086 8faf2c0 Thanks @​dario-piotrowicz! - add --strict-vars option to wrangler types

    add a new --strict-vars option to wrangler types that developers can (by setting the
    flag to false) use to disable the default strict/literal types generation for their variables

    opting out of strict variables can be useful when developers change often their vars values,
    even more so when multiple environments are involved

v3.102.0

Compare Source

Minor Changes
Patch Changes

Configuration

📅 Schedule: Branch creation - "after 2am and before 3am" (UTC), Automerge - "after 1am and before 2am" (UTC).

🚦 Automerge: Enabled.

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

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


  • 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 requested a review from pi0 as a code owner January 21, 2025 02:05
Copy link

cloudflare-workers-and-pages bot commented Jan 21, 2025

Deploying unstorage with  Cloudflare Pages  Cloudflare Pages

Latest commit: 358f961
Status: ✅  Deploy successful!
Preview URL: https://4c0b623c.unstorage.pages.dev
Branch Preview URL: https://renovate-all-minor-patch.unstorage.pages.dev

View logs

@renovate renovate bot force-pushed the renovate/all-minor-patch branch 13 times, most recently from e8f8ac5 to 898d083 Compare January 28, 2025 02:38
@renovate renovate bot force-pushed the renovate/all-minor-patch branch 2 times, most recently from 9d708ef to 67e4318 Compare January 28, 2025 22:27
@renovate renovate bot force-pushed the renovate/all-minor-patch branch from 67e4318 to 358f961 Compare January 29, 2025 19:06
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