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

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 22, 2024

This PR contains the following updates:

Package Change Age Adoption Passing Confidence
@iconify-json/simple-icons ^1.2.11 -> ^1.2.13 age adoption passing confidence
@​iconify/collections ^1.0.484 -> ^1.0.487 age adoption passing confidence
@nuxt/devtools (source) ^1.6.0 -> ^1.6.1 age adoption passing confidence
@nuxt/devtools-kit (source) ^1.6.0 -> ^1.6.1 age adoption passing confidence
@nuxt/eslint-config (source) ^0.7.1 -> ^0.7.2 age adoption passing confidence
@types/node (source) ^22.9.0 -> ^22.10.0 age adoption passing confidence
pnpm (source) 9.13.2 -> 9.14.2 age adoption passing confidence
prettier (source) ^3.3.3 -> ^3.4.1 age adoption passing confidence
typescript (source) ^5.6.3 -> ^5.7.2 age adoption passing confidence
vitest (source) ^2.1.5 -> ^2.1.6 age adoption passing confidence
wrangler (source) ^3.87.0 -> ^3.91.0 age adoption passing confidence

Release Notes

nuxt/devtools (@​nuxt/devtools)

v1.6.1

Compare Source

Bug Fixes
Features
  • apply lint, use explict import (2c6d2d3)
nuxt/eslint (@​nuxt/eslint-config)

v0.7.2

Compare Source

pnpm/pnpm (pnpm)

v9.14.2

Compare Source

Patch Changes

  • pnpm publish --json should work #​8788.

Platinum Sponsors

Bit Bit Figma

Gold Sponsors

Discord Prisma
u|screen JetBrains
Nx CodeRabbit
Route4Me

v9.14.1

Compare Source

Minor Changes

  • Added support for pnpm pack --json to print packed tarball and contents in JSON format #​8765.

Patch Changes

  • pnpm exec should print a meaningful error message when no command is provided #​8752.
  • pnpm setup should remove the CLI from the target location before moving the new binary #​8173.
  • Fix ERR_PNPM_TARBALL_EXTRACT error while installing a dependency from GitHub having a slash in branch name #​7697.
  • Don't crash if the use-node-version setting is used and the system has no Node.js installed #​8769.
  • Convert settings in local .npmrc files to their correct types. For instance, child-concurrency should be a number, not a string #​5075.
  • pnpm should fail if a project requires a different package manager even if manage-package-manager-versions is set to true.
  • pnpm init should respect the --dir option #​8768.

Platinum Sponsors

Bit Bit Figma

Gold Sponsors

Discord Prisma
u|screen JetBrains
Nx CodeRabbit
Route4Me

v9.14.0

Compare Source

prettier/prettier (prettier)

v3.4.1

Compare Source

diff

Remove unnecessary parentheses around assignment in v-on (#​16887 by @​fisker)
<!-- Input -->
<template>
  <button @&#8203;click="foo += 2">Click</button>
</template>

<!-- Prettier 3.4.0 -->
<template>
  <button @&#8203;click="(foo += 2)">Click</button>
</template>

<!-- Prettier 3.4.1 -->
<template>
  <button @&#8203;click="foo += 2">Click</button>
</template>

v3.4.0

Compare Source

diff

🔗 Release Notes

microsoft/TypeScript (typescript)

v5.7.2

Compare Source

vitest-dev/vitest (vitest)

v2.1.6

Compare Source

🚀 Features

  • Support VIte 6
    View changes on GitHub
cloudflare/workers-sdk (wrangler)

v3.91.0

Compare Source

Minor Changes
  • #​7230 6fe9533 Thanks @​penalosa! - Turn on wrangler.json(c) support by default

    Wrangler now supports both JSON (wrangler.json) and TOML (wrangler.toml) for it's configuration file. The format of Wrangler's configuration file is exactly the same across both languages, except that the syntax is JSON rather than TOML. e.g.

    name = "worker-ts"
    main = "src/index.ts"
    compatibility_date = "2023-05-04"

    would be interpreted the same as the equivalent JSON

    {
      "name": "worker-ts",
      "main": "src/index.ts",
      "compatibility_date": "2023-05-04"
    }
  • #​7330 219109a Thanks @​jonesphillip! - Added Oceania (oc) location hint as acceptable choice when creating an R2 bucket.

  • #​7227 02a0e1e Thanks @​taylorlee! - Add preview_urls toggle to wrangler.toml

    The current Preview URLs (beta) feature routes to version preview urls based on the status of the workers_dev config value. Beta users have requested the ability to enable deployment urls and preview urls separately on workers.dev, and the new previews_enabled field of the enable-subdomain API will allow that. This change separates the workers_dev and preview_urls behavior during wrangler triggers deploy and wrangler versions upload. preview_urls defaults to true, and does not implicitly depend on routes the way workers_dev does.

  • #​7308 1b1d01a Thanks @​gpanders! - Add a default image for cloudchamber create and modify commands

  • #​7232 7da76de Thanks @​toddmantell! - feat: implement queues info command

    This command allows users to get information on individual queues.

    To run this command use the queues info command with the name of a queue in the user's account.

    wrangler queues info my-queue-name

Patch Changes

v3.90.0

Compare Source

Minor Changes
Patch Changes

v3.89.0

Compare Source

Minor Changes
Patch Changes
  • #​7314 a30c805 Thanks @​Ankcorn! - Fix observability.logs.enabled validation

  • #​7285 fa21312 Thanks @​penalosa! - Rename directory to projectRoot and ensure it's relative to the wrangler.toml. This fixes a regression which meant that .wrangler temporary folders were inadvertently generated relative to process.cwd() rather than the location of the wrangler.toml file. It also renames directory to projectRoot, which affects the `unstable_startWorker() interface.

  • Updated dependencies [563439b]:

v3.88.0

Compare Source

Minor Changes
  • #​7173 b6cbfbd Thanks @​Ankcorn! - Adds [observability.logs] settings to wrangler. This setting lets developers control the settings for logs as an independent dataset enabling more dataset types in the future. The most specific setting will win if any of the datasets are not enabled.

    It also adds the following setting to the logs config

    • invocation_logs - set to false to disable invocation logs. Defaults to true.
    [observability.logs]
    enabled = true
    invocation_logs = false
  • #​7207 edec415 Thanks @​jonesphillip! - Added r2 bucket lifecycle command to Wrangler including list, add, remove, set

Patch Changes

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 was generated by Mend Renovate. View the repository job log.

@renovate renovate bot force-pushed the renovate/all-minor-patch branch 3 times, most recently from 6875913 to 78330af Compare July 23, 2024 14:04
@renovate renovate bot changed the title chore(deps): update all non-major dependencies chore(deps): update devdependency eslint to v9.7.0 Jul 23, 2024
@renovate renovate bot changed the title chore(deps): update devdependency eslint to v9.7.0 chore(deps): update all non-major dependencies Jul 23, 2024
@renovate renovate bot force-pushed the renovate/all-minor-patch branch 4 times, most recently from bf845ed to 29773e4 Compare July 26, 2024 15:10
@renovate renovate bot changed the title chore(deps): update all non-major dependencies chore(deps): update devdependency eslint to v9.7.0 Jul 26, 2024
@renovate renovate bot force-pushed the renovate/all-minor-patch branch from 29773e4 to 5d6927f Compare July 26, 2024 21:40
@renovate renovate bot changed the title chore(deps): update devdependency eslint to v9.7.0 chore(deps): update devdependency eslint to v9.8.0 Jul 26, 2024
@renovate renovate bot force-pushed the renovate/all-minor-patch branch from 5d6927f to 1e9a467 Compare July 27, 2024 02:27
@renovate renovate bot changed the title chore(deps): update devdependency eslint to v9.8.0 chore(deps): update all non-major dependencies Jul 27, 2024
@renovate renovate bot force-pushed the renovate/all-minor-patch branch from 1e9a467 to 862a9e2 Compare July 27, 2024 22:37
@renovate renovate bot changed the title chore(deps): update all non-major dependencies chore(deps): update devdependency eslint to v9.8.0 Jul 28, 2024
@renovate renovate bot force-pushed the renovate/all-minor-patch branch from 862a9e2 to 5f002d8 Compare July 28, 2024 12:51
@renovate renovate bot changed the title chore(deps): update devdependency eslint to v9.8.0 chore(deps): update all non-major dependencies Jul 29, 2024
@renovate renovate bot force-pushed the renovate/all-minor-patch branch 12 times, most recently from a93a135 to 6b9a12c Compare August 4, 2024 20:07
@renovate renovate bot changed the title chore(deps): update dependency @iconify/collections to ^1.0.483 chore(deps): update all non-major dependencies Nov 14, 2024
@renovate renovate bot force-pushed the renovate/all-minor-patch branch 8 times, most recently from 5084940 to 58887fc Compare November 19, 2024 02:27
@renovate renovate bot changed the title chore(deps): update all non-major dependencies chore(deps): update all non-major dependencies - autoclosed Nov 19, 2024
@renovate renovate bot closed this Nov 19, 2024
@renovate renovate bot changed the title chore(deps): update all non-major dependencies - autoclosed chore(deps): update all non-major dependencies Nov 19, 2024
@renovate renovate bot reopened this Nov 19, 2024
@renovate renovate bot force-pushed the renovate/all-minor-patch branch 15 times, most recently from 039916d to 71682fa Compare November 26, 2024 15:47
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