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): lock file maintenance everything #325

Merged
merged 1 commit into from
Jul 10, 2024
Merged

Conversation

renovate[bot]
Copy link
Contributor

@renovate renovate bot commented Jul 10, 2024

Mend Renovate

This PR contains the following updates:

Package Type Update Change Age Adoption Passing Confidence
lockFileMaintenance All locks refreshed
@cloudflare/workers-types devDependencies minor ^4.20240614.0 -> ^4.20240620.0 age adoption passing confidence
@sanity/client (source) dependencies patch 6.20.1 -> 6.20.2 age adoption passing confidence
@sanity/icons (source) dependencies minor 3.2.0 -> 3.3.0 age adoption passing confidence
@sanity/ui (source) dependencies minor 2.4.0 -> 2.6.3 age adoption passing confidence
typescript (source) dependencies minor 5.4.5 -> 5.5.3 age adoption passing confidence
@tanstack/react-table (source) dependencies minor 8.17.3 -> 8.19.2 age adoption passing confidence
bun-types (source) dependencies patch 1.1.13 -> 1.1.18 age adoption passing confidence
postcss (source) devDependencies patch ^8.4.38 -> ^8.4.39 age adoption passing confidence
typescript (source) devDependencies minor ^5.4.5 -> ^5.5.3 age adoption passing confidence
wrangler (source) devDependencies minor ^3.61.0 -> ^3.63.2 age adoption passing confidence
cloudflare/wrangler-action action minor v3.6.1 -> v3.7.0 age adoption passing confidence

🔧 This Pull Request updates lock files to use the latest dependency versions.


Release Notes

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

v4.20240620.0

Compare Source

sanity-io/client (@​sanity/client)

v6.20.2

Compare Source

Bug Fixes
sanity-io/icons (@​sanity/icons)

v3.3.0

Compare Source

Features
Bug Fixes
sanity-io/ui (@​sanity/ui)

v2.6.3

Compare Source

Bug Fixes

v2.6.2

Compare Source

Bug Fixes

v2.6.1

Compare Source

Bug Fixes

v2.6.0

Compare Source

Features

v2.5.0

Compare Source

Features
Microsoft/TypeScript (typescript)

v5.5.3

Compare Source

v5.5.2

Compare Source

TanStack/table (@​tanstack/react-table)

v8.19.2

Compare Source

Version 8.19.2 - 6/30/24, 3:27 PM

Changes

Fix
Chore
  • upgrade packages except for angular and typescript (#​5635) (e585a2e) by Kevin Van Cott
Ci
Docs

Packages

v8.19.1

Compare Source

Version 8.19.1 - 6/29/24, 11:34 PM

Changes

Fix
  • angular-table: View is not updated anymore when flexRenderDirective is instantiated the first time with an empty value (#​5626) (bfa96d8) by @​riccardoperra
Ci
Docs
Tests

Packages

oven-sh/bun (bun-types)

v1.1.18

Compare Source

v1.1.17

Compare Source

v1.1.16

Compare Source

v1.1.15

Compare Source

v1.1.14

Compare Source

postcss/postcss (postcss)

v8.4.39

Compare Source

cloudflare/workers-sdk (wrangler)

v3.63.2

Patch Changes
  • #​6199 88313e5 Thanks @​dario-piotrowicz! - fix: make sure getPlatformProxy's ctx methods throw illegal invocation errors like workerd

    in workerd detaching the waitUntil and passThroughOnException methods from the ExecutionContext
    object results in them throwing illegal invocation errors, such as for example:

    export default {
      async fetch(_request, _env, { waitUntil }) {
        waitUntil(() => {}); // <-- throws an illegal invocation error
        return new Response("Hello World!");
      },
    };

    make sure that the same behavior is applied to the ctx object returned by getPlatformProxy

  • #​5569 75ba960 Thanks @​penalosa! - fix: Simplify wrangler pages download config:

    • Don't include inheritable keys in the production override if they're equal to production
    • Only create a preview environment if needed, otherwise put the preview config at the top level

v3.63.1

Compare Source

Patch Changes
  • #​6192 b879ce4 Thanks @​petebacondarwin! - fix: do not report D1 user errors to Sentry

  • #​6150 d993409 Thanks @​CarmenPopoviciu! - fix: Fix pages dev watch mode [_worker.js]

    The watch mode in pages dev for Advanced Mode projects is currently partially broken, as it only watches for changes in the "_worker.js" file, but not for changes in any of its imported dependencies. This means that given the following "_worker.js" file

    import { graham } from "./graham-the-dog";
    export default {
    	fetch(request, env) {
    		return new Response(graham)
    	}
    }
    

    pages dev will reload for any changes in the _worker.js file itself, but not for any changes in graham-the-dog.js, which is its dependency.

    Similarly, pages dev will not reload for any changes in non-JS module imports, such as wasm/html/binary module imports.

    This commit fixes all the aforementioned issues.

v3.63.0

Compare Source

Minor Changes
  • #​6167 e048958 Thanks @​threepointone! - feature: alias modules in the worker

    Sometimes, users want to replace modules with other modules. This commonly happens inside a third party dependency itself. As an example, a user might have imported node-fetch, which will probably never work in workerd. You can use the alias config to replace any of these imports with a module of your choice.

    Let's say you make a fetch-nolyfill.js

    export default fetch; // all this does is export the standard fetch function`

    You can then configure wrangler.toml like so:

v3.62.0

Compare Source

Minor Changes
  • #​5950 0075621 Thanks @​WalshyDev! - feat: add wrangler versions secret put, wrangler versions secret bulk and wrangler versions secret list

    wrangler versions secret put allows for you to add/update a secret even if the latest version is not fully deployed. A new version with this secret will be created, the existing secrets and config are copied from the latest version.

    wrangler versions secret bulk allows you to bulk add/update multiple secrets at once, this behaves the same as secret put and will only make one new version.

    wrangler versions secret list lists the secrets available to the currently deployed versions. wrangler versions secret list --latest-version or wrangler secret list will list for the latest version.

    Additionally, we will now prompt for extra confirmation if attempting to rollback to a version with different secrets than the currently deployed.

Patch Changes
  • #​6118 1621992 Thanks @​WalshyDev! - fix: rollback in the case of a secret change, the prompt meant to show was not showing due to the spinner in an interactive env. It will now properly show.

    chore: improve the view of wrangler versions view and change up copy a little for versions secret commands.

  • #​6105 26855f3 Thanks @​helloimalastair! - feat: Add help messages to all invalid r2 commands

  • #​3735 9c7df38 Thanks @​lrapoport-cf! - chore: Cleanup wrangler --help output

    This commit cleans up and standardizes the look and feel of all wrangler commands as displayed by wrangler --help and wrangler <cmd> --help.

  • #​6080 e2972cf Thanks @​threepointone! - chore: run eslint (with react config) on workers-playground/wrangler

    This enables eslint (with our react config) for the workers-playground project. Additionally, this enables the react-jsx condition in relevant tsconfig/eslint config, letting us write jsx without having React in scope.

  • #​6001 d39d595 Thanks @​penalosa! - chore: changes to how wrangler dev launches your worker, behind the experimental --x-dev-env flag

  • #​5214 05c5607 Thanks @​penalosa! - feat: Experimental file based service discovery when running multiple Wrangler instances locally. To try it out, make sure all your local Wrangler instances are running with the --x-registry flag.

  • Updated dependencies [7d02856, d4e1e9f]:

cloudflare/wrangler-action (cloudflare/wrangler-action)

v3.7.0

Compare Source

Minor Changes

Configuration

📅 Schedule: Branch creation - "every 12 months 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.


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

This PR has been generated by Mend Renovate using a curated preset maintained by Sanity. View repository job log here

@renovate renovate bot merged commit d2a4100 into main Jul 10, 2024
7 checks passed
@renovate renovate bot deleted the renovate/everything branch July 10, 2024 12:25
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Projects
None yet
Development

Successfully merging this pull request may close these issues.

0 participants