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

Merged
merged 1 commit into from
Oct 11, 2023

Conversation

renovate[bot]
Copy link
Contributor

@renovate renovate bot commented Jun 12, 2023

Mend Renovate

This PR contains the following updates:

Package Change Age Adoption Passing Confidence
@commitlint/cli (source) 17.7.1 -> 17.7.2 age adoption passing confidence
@types/mocha (source) 10.0.1 -> 10.0.2 age adoption passing confidence
@types/node (source) 20.7.0 -> 20.8.2 age adoption passing confidence
@typescript-eslint/eslint-plugin 6.7.3 -> 6.7.4 age adoption passing confidence
@typescript-eslint/parser 6.7.3 -> 6.7.4 age adoption passing confidence
@unocss/reset 0.56.2 -> 0.56.5 age adoption passing confidence
@vitejs/plugin-vue (source) 4.3.4 -> 4.4.0 age adoption passing confidence
chai (source) 4.3.8 -> 4.3.10 age adoption passing confidence
esbuild 0.19.3 -> 0.19.4 age adoption passing confidence
eslint-config-escapace 3.18.1 -> 3.18.2 age adoption passing confidence
hono (source) ^3.7.2 -> ^3.7.3 age adoption passing confidence
unocss 0.56.2 -> 0.56.5 age adoption passing confidence
vite (source) 4.4.9 -> 4.4.10 age adoption passing confidence
vue-tsc 1.8.14 -> 1.8.15 age adoption passing confidence
wrangler 3.9.1 -> 3.10.1 age adoption passing confidence

Release Notes

conventional-changelog/commitlint (@​commitlint/cli)

v17.7.2

Compare Source

Note: Version bump only for package @​commitlint/cli

typescript-eslint/typescript-eslint (@​typescript-eslint/eslint-plugin)

v6.7.4

Compare Source

Note: Version bump only for package @​typescript-eslint/eslint-plugin

You can read about our versioning strategy and releases on our website.

typescript-eslint/typescript-eslint (@​typescript-eslint/parser)

v6.7.4

Compare Source

Note: Version bump only for package @​typescript-eslint/parser

You can read about our versioning strategy and releases on our website.

unocss/unocss (@​unocss/reset)

v0.56.5

Compare Source

   🚀 Features
   🐞 Bug Fixes
    View changes on GitHub

v0.56.4

Compare Source

   🐞 Bug Fixes
    View changes on GitHub

v0.56.3

Compare Source

   🚀 Features
   🐞 Bug Fixes
    View changes on GitHub
vitejs/vite-plugin-vue (@​vitejs/plugin-vue)

v4.4.0

chaijs/chai (chai)

v4.3.10

Compare Source

This release simply bumps all dependencies to their latest non-breaking versions.

What's Changed

Full Changelog: chaijs/chai@v4.3.9...v4.3.10

v4.3.9

Compare Source

Upgrade dependencies.

This release upgrades dependencies to address CVE-2023-43646 where a large function name can cause "catastrophic backtracking" (aka ReDOS attack) which can cause the test suite to hang.

Full Changelog: chaijs/chai@v4.3.8...v4.3.9

evanw/esbuild (esbuild)

v0.19.4

Compare Source

  • Fix printing of JavaScript decorators in tricky cases (#​3396)

    This release fixes some bugs where esbuild's pretty-printing of JavaScript decorators could incorrectly produced code with a syntax error. The problem happened because esbuild sometimes substitutes identifiers for other expressions in the pretty-printer itself, but the decision about whether to wrap the expression or not didn't account for this. Here are some examples:

    // Original code
    import { constant } from './constants.js'
    import { imported } from 'external'
    import { undef } from './empty.js'
    class Foo {
      @​constant()
      @​imported()
      @​undef()
      foo
    }
    
    // Old output (with --bundle --format=cjs --packages=external --minify-syntax)
    var import_external = require("external");
    var Foo = class {
      @​123()
      @​(0, import_external.imported)()
      @​(void 0)()
      foo;
    };
    
    // New output (with --bundle --format=cjs --packages=external --minify-syntax)
    var import_external = require("external");
    var Foo = class {
      @​(123())
      @​((0, import_external.imported)())
      @​((void 0)())
      foo;
    };
  • Allow pre-release versions to be passed to target (#​3388)

    People want to be able to pass version numbers for unreleased versions of node (which have extra stuff after the version numbers) to esbuild's target setting and have esbuild do something reasonable with them. These version strings are of course not present in esbuild's internal feature compatibility table because an unreleased version has not been released yet (by definition). With this release, esbuild will now attempt to accept these version strings passed to target and do something reasonable with them.

escapace/eslint-config-escapace (eslint-config-escapace)

v3.18.2

Compare Source

Bug Fixes
honojs/hono (hono)

v3.7.3

Compare Source

What's Changed

Full Changelog: honojs/hono@v3.7.2...v3.7.3

vitejs/vite (vite)

v4.4.10

Compare Source

Please refer to CHANGELOG.md for details.

vuejs/language-tools (vue-tsc)

v1.8.15

Compare Source

  • fix: props type missing in JS component context (#​3592)
  • fix: ignore $emit return type for Vue 2 (#​3596)
cloudflare/workers-sdk (wrangler)

v3.10.1

Compare Source

Patch Changes
  • #​4041 6b1c327d Thanks @​elithrar! - Fixed a bug in Vectorize that send preset configurations with the wrong key. This was patched on the server-side to work around this for users in the meantime.
  • #​4054 f8c52b93 Thanks @​mrbbot! - fix: allow wrangler pages dev sessions to be reloaded

    Previously, wrangler pages dev attempted to send messages on a closed IPC
    channel when sources changed, resulting in an ERR_IPC_CHANNEL_CLOSED error.
    This change ensures the channel stays open until the user exits wrangler pages dev.

v3.10.0

Compare Source

Minor Changes
Patch Changes
  • #​4034 bde9d64a Thanks @​ndisidore! - Adds Vectorize support uploading batches of newline delimited json (ndjson)
    vectors from a source file.
    Load a dataset with vectorize insert my-index --file vectors.ndjson

Configuration

📅 Schedule: Branch creation - "before 4am on Monday" (UTC), Automerge - At any time (no schedule defined).

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

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 has been generated by Mend Renovate. View repository job log here.

@renovate renovate bot force-pushed the renovate/all-minor-patch branch 11 times, most recently from 065d1ed to 99d829d Compare June 19, 2023 05:04
@renovate renovate bot force-pushed the renovate/all-minor-patch branch 18 times, most recently from 4188fea to 02d4fa6 Compare June 26, 2023 15:32
@renovate renovate bot force-pushed the renovate/all-minor-patch branch 16 times, most recently from 722aa8e to e7ead36 Compare October 4, 2023 21:30
@renovate renovate bot force-pushed the renovate/all-minor-patch branch 10 times, most recently from 508f0ae to 42447ae Compare October 10, 2023 06:35
@markmartirosian markmartirosian merged commit d749d79 into trunk Oct 11, 2023
6 checks passed
@markmartirosian markmartirosian deleted the renovate/all-minor-patch branch October 11, 2023 00:36
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.

None yet

1 participant