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 #8

Merged
merged 1 commit into from
Mar 14, 2024

Conversation

renovate[bot]
Copy link
Contributor

@renovate renovate bot commented Feb 29, 2024

Mend Renovate

This PR contains the following updates:

Package Change Age Adoption Passing Confidence
@types/node (source) 20.11.22 -> 20.11.27 age adoption passing confidence
prettier-plugin-tailwindcss 0.5.11 -> 0.5.12 age adoption passing confidence
sass 1.71.1 -> 1.72.0 age adoption passing confidence
typescript (source) 5.3.3 -> 5.4.2 age adoption passing confidence
vite (source) 5.1.4 -> 5.1.6 age adoption passing confidence
vitepress (source) 1.0.0-rc.44 -> 1.0.0-rc.45 age adoption passing confidence
vue-tsc (source) 2.0.4 -> 2.0.6 age adoption passing confidence
wrangler (source) 3.30.0 -> 3.33.0 age adoption passing confidence

Release Notes

tailwindlabs/prettier-plugin-tailwindcss (prettier-plugin-tailwindcss)

v0.5.12

Compare Source

Added
  • Add support for prettier-plugin-sort-imports (#​241)
  • Add support for Tailwind CSS v4.0 (#​249)
sass/dart-sass (sass)

v1.72.0

Compare Source

  • Support adjacent /s without whitespace in between when parsing plain CSS
    expressions.

  • Allow the Node.js pkg: importer to load Sass stylesheets for package.json
    exports field entries without extensions.

  • When printing suggestions for variables, use underscores in variable names
    when the original usage used underscores.

JavaScript API
  • Properly resolve pkg: imports with the Node.js package importer when
    arguments are passed to the JavaScript process.
Microsoft/TypeScript (typescript)

v5.4.2: TypeScript 5.4

Compare Source

For release notes, check out the release announcement.

For the complete list of fixed issues, check out the

Downloads are available on:

vitejs/vite (vite)

v5.1.6

Compare Source

v5.1.5

Compare Source

vuejs/vitepress (vitepress)

v1.0.0-rc.45

Compare Source

Bug Fixes
Features
  • set __VITEPRESS__ for easy detection by plugins and other tools (#​3634) (f6bd99e)
vuejs/language-tools (vue-tsc)

v2.0.6

Compare Source

[!IMPORTANT]
If the TypeScript language server crashes since 2.0, please try using VSCode Insiders and install JavaScript and TypeScript Nightly, or temporarily downgrade to 1.8.27.
Issue: https://github.com/vuejs/language-tools/issues/3962

If false positive errors occurs, please try disabling unrelated extensions in the Vue workspace.
Issuehttps://github.com/vuejs/language-tools/issues/394242

Fixes
  • language-core: use local variables in v-bind shorthand (#​4017) - thanks @​so1ve
  • language-core: sfc folding end position failed to mapping (#​4038) - thanks @​so1ve
  • language-service: remove extraLiners option for formatting (#​3943)
  • language-service: bump volar-service-typescript for fix jsx formatting (#​3949)
  • language-service: bump @volar/typescript 2.0.5 completion performance regression (#​4024)
Refactors
  • vscode: rename vue.inlayHints.vbindShorthand setting to vue.inlayHints.vBindShorthand (#​3995) - thanks @​l4dybird

v2.0.5

Compare Source

[!IMPORTANT]
If the TypeScript language server crashes in version 2.0, please try using VSCode Insiders, or temporarily downgrade to 1.8.27.
Issue: https://github.com/vuejs/language-tools/issues/3962

If false positive errors occurs, try creating an empty jsconfig in the workspace root directory.
Issue: https://github.com/vuejs/language-tools/issues/3942

Features
  • language-core: support v-bind shorthand (#​3990) - thanks @​so1ve
  • language-service: support inlay hints for v-bind shorthand (#​3990) - thanks @​so1ve
  • vscode: prompt to disable Svelte extension in Vue workspace to avoid conflicts
Fixes
  • typescript-plugin: fault tolerance for named pipe server data
  • language-core: avoid globalTypesHolder being specified from a node_modules file (#​3990)
  • language-core: fault tolerance for plugin creation
  • language-plugin-pug: failed to load due to an invalid require path (#​3930)
  • typescript-plugin: custom extensions do not work (#​3977)
  • language-service: html custom data not working (#​3975)
Refactors
cloudflare/workers-sdk (wrangler)

v3.33.0

Compare Source

Minor Changes
  • #​4930 2680462 Thanks @​rozenmd! - refactor: default wrangler d1 execute and wrangler d1 migrations commands to local mode first, to match wrangler dev

    This PR defaults wrangler d1 execute and wrangler d1 migrations commands to use the local development environment provided by wrangler to match the default behaviour in wrangler dev.

    BREAKING CHANGE (for a beta feature): wrangler d1 execute and wrangler d1 migrations commands now default --local to true. When running wrangler d1 execute against a remote D1 database, you will need to provide the --remote flag.

Patch Changes
  • #​5184 046930e Thanks @​nora-soderlund! - fix: change d1 migrations create to use the highest migration number rather than the first non-existing migration number to allow for gaps in the migration files.

  • Updated dependencies [1235d48, 27fb22b]:

    • miniflare@3.20240304.1

v3.32.0

Compare Source

Minor Changes
Patch Changes
  • #​5089 5b85dc9 Thanks @​DaniFoldi! - fix: include all currently existing bindings in wrangler types

    Add support for Email Send, Vectorize, Hyperdrive, mTLS, Browser Rendering and Workers AI bindings in wrangler types

    For example, from the following wrangler.toml setup:

    [browser]
    binding = "BROWSER"
    
    [ai]
    binding = "AI"
    
    [[send_email]]
    name = "SEND_EMAIL"
    
    [[vectorize]]
    binding = "VECTORIZE"
    index_name = "VECTORIZE_NAME"
    
    [[hyperdrive]]
    binding = "HYPERDRIVE"
    id = "HYPERDRIVE_ID"
    
    [[mtls_certificates]]
    binding = "MTLS"
    certificate_id = "MTLS_CERTIFICATE_ID"

    Previously, nothing would have been included in the generated Environment.
    Now, the following will be generated:

    interface Env {
    	SEND_EMAIL: SendEmail;
    	VECTORIZE: VectorizeIndex;
    	HYPERDRIVE: Hyperdrive;
    	MTLS: Fetcher;
    	BROWSER: Fetcher;
    	AI: Fetcher;
    }
  • Updated dependencies [11951f3, 11951f3]:

    • miniflare@3.20240304.0

v3.31.0

Compare Source

Minor Changes
Patch Changes
  • #​5132 82a3f94 Thanks @​mrbbot! - fix: switch default logging level of unstable_dev() to warn

    When running unstable_dev() in its default "test mode", the logging level was set to none. This meant any Worker startup errors or helpful warnings wouldn't be shown. This change switches the default to warn. To restore the previous behaviour, include logLevel: "none" in your options object:

    const worker = await unstable_dev("path/to/script.js", {
    	logLevel: "none",
    });
  • #​5128 d27e2a7 Thanks @​taylorlee! - fix: Add legacy_env support to experimental versions upload command.

  • #​5087 a5231de Thanks @​dario-piotrowicz! - fix: make wrangler types always generate a d.ts file for module workers

    Currently if a config file doesn't define any binding nor module, running
    wrangler types against such file would not produce a d.ts file.

    Producing a d.ts file can however still be beneficial as it would define a correct
    env interface (even if empty) that can be expanded/referenced by user code (this can
    be particularly convenient for scaffolding tools that may want to always generate an
    env interface).

    Example:
    Before wrangler types --env-interface MyEnv run with an empty wrangler.toml file
    would not generate any file, after these change it would instead generate a file with
    the following content:

    interface MyEnv {
    }
    
  • #​5138 3dd9089 Thanks @​G4brym! - fix: ensure Workers-AI local mode fetcher returns headers to client worker

  • Updated dependencies [42bcc72, 42bcc72]:

    • miniflare@3.20240223.1

v3.30.1

Compare Source

Patch Changes
  • #​5106 2ed7f32 Thanks @​RamIdeas! - fix: automatically drain incoming request bodies

    Previously, requests sent to wrangler dev with unconsumed bodies could result in Network connection lost errors. This change attempts to work around the issue by ensuring incoming request bodies are drained if they're not used. This is a temporary fix whilst we try to address the underlying issue. Whilst we don't think this change will introduce any other issues, it can be disabled by setting the WRANGLER_DISABLE_REQUEST_BODY_DRAINING=true environment variable. Note this fix is only applied if you've enabled Wrangler's bundling—--no-bundle mode continues to have the previous behaviour.

  • #​5107 65d0399 Thanks @​penalosa! - fix: Ensures that switching to remote mode during a dev session (from local mode) will correctly use the right zone. Previously, zone detection happened before the dev session was mounted, and so dev sessions started with local mode would have no zone inferred, and would have failed to start, with an ugly error.

  • #​5107 65d0399 Thanks @​penalosa! - fix: Ensure that preview sessions created without a zone don't switch the host on which to start the preview from the one returned by the API.

  • #​4833 54f6bfc Thanks @​admah! - fix: remove extra arguments from wrangler init deprecation message and update recommended c3 version

    c3 can now infer the pre-existing type from the presence of the --existing-script flag so we can remove the extra type argument. C3 2.5.0 introduces an auto-update feature that will make sure users get the latest minor version of c3 and prevent problems where older 2.x.x versions get cached by previous runs of wrangler init.


Configuration

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

🚦 Automerge: Disabled by config. Please merge this manually once you are satisfied.

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. View repository job log here.

Copy link

github-actions bot commented Feb 29, 2024

✨ Deployment complete! Take a peek over at https://55952d73.vuetils-toast-docs.pages.dev

@renovate renovate bot changed the title chore(deps): update devdependency @types/node to v20.11.23 chore(deps): update devdependency @types/node to v20.11.24 Feb 29, 2024
@renovate renovate bot force-pushed the renovate/all-minor-patch branch 2 times, most recently from c43d296 to 8281a03 Compare February 29, 2024 20:34
@renovate renovate bot changed the title chore(deps): update devdependency @types/node to v20.11.24 chore(deps): update all non-major dependencies Feb 29, 2024
@renovate renovate bot force-pushed the renovate/all-minor-patch branch 8 times, most recently from 0598b39 to 0c5243c Compare March 11, 2024 16:45
@renovate renovate bot force-pushed the renovate/all-minor-patch branch 3 times, most recently from 48448b2 to 6dffee6 Compare March 13, 2024 14:44
@renovate renovate bot force-pushed the renovate/all-minor-patch branch from 6dffee6 to e09ebdb Compare March 13, 2024 21:12
@YannicEl YannicEl merged commit 3f30f4e into main Mar 14, 2024
13 checks passed
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.

1 participant