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

Merged
merged 1 commit into from Jun 20, 2022

Conversation

renovate[bot]
Copy link
Contributor

@renovate renovate bot commented Jun 1, 2022

Mend Renovate

This PR contains the following updates:

Package Change Age Adoption Passing Confidence Type Update
@antfu/eslint-config ^0.25.0 -> ^0.25.1 age adoption passing confidence devDependencies patch
@vueuse/core ^8.6.0 -> ^8.7.4 age adoption passing confidence dependencies minor
bumpp ^7.1.1 -> ^7.2.0 age adoption passing confidence devDependencies minor
eslint (source) ^8.16.0 -> ^8.18.0 age adoption passing confidence devDependencies minor
node >=v16.15.0 -> >=v16.15.1 age adoption passing confidence engines patch
pnpm (source) 7.1.7 -> 7.3.0 age adoption passing confidence packageManager minor
pnpm (source) >=7.1.7 -> >=7.3.0 age adoption passing confidence engines minor
pnpm (source) ^7.1.7 -> ^7.3.0 age adoption passing confidence devDependencies minor
typescript (source) ^4.7.2 -> ^4.7.4 age adoption passing confidence devDependencies patch
vite ^2.9.9 -> ^2.9.12 age adoption passing confidence devDependencies patch
vitest ^0.13.0 -> ^0.15.1 age adoption passing confidence devDependencies minor
vue ^3.2.36 -> ^3.2.37 age adoption passing confidence dependencies patch

Release Notes

antfu/eslint-config

v0.25.1

Compare Source

vueuse/vueuse

v8.7.4

Compare Source

   🚀 Features
  • useAsyncValidator:
  • useBluetooth:
   🐞 Bug Fixes
  • unrefElement:
   ❤️ Contributors

   Thanks to @​antfu | @​carlosgamezdev | @​michealroberts | @​okxiaoliang4

    View changes on GitHub

v8.7.3

Compare Source

   🐞 Bug Fixes
   ❤️ Contributors

   Thanks to @​antfu

    View changes on GitHub

v8.7.2

Compare Source

No significant changes

   ❤️ Contributors

   Thanks to @​antfu

    View changes on GitHub

v8.7.1

Compare Source

No significant changes

   ❤️ Contributors

   Thanks to @​antfu

    View changes on GitHub

v8.7.0

Compare Source

   🚀 Features
  • until:
    • Improved until types #1493
  • useImage:
   🐞 Bug Fixes
  • onClickOutside:
    • Avoid calling safari workaround on right click #1673
  • unrefElement:
    • Don't return the Vue instance when $el is null/undefined #1657
  • useFetch:
    • Ssr compactible for headersToObject 8f541b0a
  • useIntervalFn:
    • Watch interval correctly #1676
  • useMagicKeys:
    • getModifierState is not function error in Chrome #1654
  • useScroll:
    • Compatibility for mobile #1663
  • useUrlSearchParams:
    • Preserve history state when updating query #1661
  • watch*:
    • Fix T type for WatchCallback #1692
   ❤️ Contributors

   Thanks to @​antfu | @​arcs- | @​DrJume | @​HannesOberreiter | @​HassanZahirnia | @​hsyq | @​LeSuisse | @​luciorubeens | @​lvjiaxuan | @​meteorlxy | @​nhedger | @​sibbng | @​YunYouJun | @​zojize

    View changes on GitHub
antfu/bumpp

v7.2.0

Compare Source

eslint/eslint

v8.18.0

Compare Source

Features

  • a6273b8 feat: account for rule creation time in performance reports (#​15982) (Nitin Kumar)

Bug Fixes

  • f364d47 fix: Make no-unused-vars treat for..of loops same as for..in loops (#​15868) (Alex Bass)

Documentation

  • 4871047 docs: Update analytics, canonical URL, ads (#​15996) (Nicholas C. Zakas)
  • cddad14 docs: Add correct/incorrect containers (#​15998) (Nicholas C. Zakas)
  • b04bc6f docs: Add rules meta info to rule pages (#​15902) (Nicholas C. Zakas)
  • 1324f10 docs: unify the wording referring to optional exception (#​15893) (Abdelrahman Elkady)
  • ad54d02 docs: add missing trailing slash to some internal links (#​15991) (Milos Djermanovic)
  • df7768e docs: Switch to version-relative URLs (#​15978) (Nicholas C. Zakas)
  • 21d6479 docs: change some absolute links to relative (#​15970) (Milos Djermanovic)
  • f31216a docs: Update README team and sponsors (ESLint Jenkins)

Build Related

  • ed49f15 build: remove unwanted parallel and image-min for dev server (#​15986) (Strek)

Chores

  • f6e2e63 chore: fix 'replaced by' rule list (#​16007) (Milos Djermanovic)
  • d94dc84 chore: remove unused deprecation warnings (#​15994) (Francesco Trotta)
  • cdcf11e chore: fix versions link (#​15995) (Milos Djermanovic)
  • d2a8715 chore: add trailing slash to pathPrefix (#​15993) (Milos Djermanovic)
  • 58a1bf0 chore: tweak URL rewriting for local previews (#​15992) (Milos Djermanovic)
  • 80404d2 chore: remove docs deploy workflow (#​15984) (Nicholas C. Zakas)
  • 71bc750 chore: Set permissions for GitHub actions (#​15971) (Naveen)
  • 90ff647 chore: avoid generating subdirectories for each page on new docs site (#​15967) (Milos Djermanovic)

v8.17.0

Compare Source

Features

  • 55319e1 feat: fix indent bug with semicolon-first style (#​15951) (Milos Djermanovic)
  • f6d7920 feat: add allowNamedExports option to no-use-before-define (#​15953) (Milos Djermanovic)

Bug Fixes

Documentation

Chores

nodejs/node

v16.15.1

Compare Source

Notable Changes
Commits
pnpm/pnpm

v7.3.0

Compare Source

Minor Changes

  • A new setting added: pnpm.peerDependencyRules.allowAny. allowAny is an array of package name patterns, any peer dependency matching the pattern will be resolved from any version, regardless of the range specified in peerDependencies. For instance:

    {
       "pnpm": {
         "peerDependencyRules": {
           "allowAny": ["@​babel/*", "eslint"]
         }
       }
    }

    The above setting will mute any warnings about peer dependency version mismatches related to @babel/ packages or eslint.

  • The pnpm.peerDependencyRules.ignoreMissing setting may accept package name patterns. So you may ignore any missing @babel/* peer dependencies, for instance:

    {
      "pnpm": {
        "peerDependencyRules": {
          "ignoreMissing": ["@​babel/*"]
        }
      }
    }
  • Experimental. New settings added: use-git-branch-lockfile, merge-git-branch-lockfiles, merge-git-branch-lockfiles-branch-pattern #​4475.

Patch Changes

  • Packages that should be built are always cloned or copied from the store. This is required to prevent the postinstall scripts from modifying the original source files of the package.

Our Sponsors

#### What's Changed * feat: enhance peer dependency rules by @​TravisJRyan in https://github.com/pnpm/pnpm/pull/4876 * feat: add git-branch-lockfile config to generate lockfile in each branch by @​chengcyber in https://github.com/pnpm/pnpm/pull/4475 * fix: built packages should not modify the original files in the store by @​zkochan in https://github.com/pnpm/pnpm/pull/4898 #### New Contributors * @​TravisJRyan made their first contribution in https://github.com/pnpm/pnpm/pull/4876

Full Changelog: pnpm/pnpm@v7.2.1...v7.3.0

v7.2.1

Compare Source

Patch Changes

  • Support Node.js from v14.6.
  • Don't fail when the cafile setting is specified #​4877. This fixes a regression introduced in pnpm v7.2.0.

Our Sponsors

#### What's Changed * fix: support Node.js v14.6 by @​zkochan in https://github.com/pnpm/pnpm/pull/4878

Full Changelog: pnpm/pnpm@v7.2.0...v7.2.1

v7.2.0

Compare Source

Minor Changes

  • A new setting is supported for ignoring specific deprecation messages: pnpm.allowedDeprecatedVersions. The setting should be provided in the pnpm section of the root package.json file. The below example will mute any deprecation warnings about the request package and warnings about express v1:

    {
      "pnpm": {
        "allowedDeprecatedVersions": {
          "request": "*",
          "express": "1"
        }
      }
    }

    Related issue: #​4306
    Related PR: #​4864

Patch Changes

  • Update the compatibility database.
  • Report only the first occurrence of a deprecated package.
  • Add better hints to the peer dependency issue errors.

Our Sponsors

#### What's Changed * fix(setup): use @​pnpm/os.env.path-extender by @​zkochan in https://github.com/pnpm/pnpm/pull/4862 * fix: don't report the same deprecated package multiple times by @​zkochan in https://github.com/pnpm/pnpm/pull/4863 * feat: allowed deprecated versions by @​zkochan in https://github.com/pnpm/pnpm/pull/4864 * fix: add better peer dep error hints by @​zkochan in https://github.com/pnpm/pnpm/pull/4875

Full Changelog: pnpm/pnpm@v7.1.9...v7.2.0

v7.1.9

Compare Source

Patch Changes
  • When the same package is found several times in the dependency graph, correctly autoinstall its missing peer dependencies at all times #​4820.
Our Sponsors
##### What's Changed * fix: auto-install-peers by @​zkochan in https://github.com/pnpm/pnpm/pull/4855

Full Changelog: pnpm/pnpm@v7.1.8...v7.1.9

v7.1.8

Compare Source

Patch Changes
  • Suggest updating using Corepack, when pnpm was installed via Corepack.
  • It should be possible to install a git-hosted package that has no package.json file #​4822.
  • Fix pre-compiled pnpm binaries crashing when NODE_MODULES is set.
Our Sponsors
##### What's Changed * fix: pnpm pre-compiled binaries crash when NODE_MODULES is set by @​gluxon in https://github.com/pnpm/pnpm/pull/4823 * refactor(lockfile-file): Abstract LockfileFile to Lockfile conversion by @​gluxon in https://github.com/pnpm/pnpm/pull/4824 * test: update Jest by @​zkochan in https://github.com/pnpm/pnpm/pull/4644 * fix(cli): suggest to update with Corepack by @​zkochan in https://github.com/pnpm/pnpm/pull/4854 * fix: resolve manifest promise when manifest is not found by @​zkochan in https://github.com/pnpm/pnpm/pull/4826

Full Changelog: pnpm/pnpm@v7.1.7...v7.1.8

Microsoft/TypeScript

v4.7.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:

v4.7.3

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

v2.9.12

Compare Source

v2.9.11

Compare Source

v2.9.10

Compare Source

vitest-dev/vitest

v0.15.1

Compare Source

   🐞 Bug Fixes
  • Reliably process css with css option 22fed1b8
   ❤️ Contributors

   Thanks to @​sheremet-va | @​stormwarning

    View changes on GitHub

v0.15.0

Compare Source

   🚀 Features
  • Bind expect state to context #1468
  • Introduce VITEST_POOL_ID #1473
  • Add maxConcurrency option, 5 by default #1483
  • Add --shard command #1477
  • Add css config option, don't process CSS by default #1467
   🐞 Bug Fixes
  • Null inside test.each is not turned into an empty array #1462
  • Add @​types/node to dependencies #1474
  • Parent is defined on global, closes #1489
  • web-worker:
    • Ensure event listener functions are bound correctly #1487
    View changes on GitHub

v0.14.2

Compare Source

Bug Fixes
Features

v0.14.1

Compare Source

Bug Fixes

v0.14.0

Compare Source

Breaking Changes

  • vite-node: use .mjs for esm build (692ad34)
  • remove "type": "module" from vitest/package.json (#​1411) (b4a9b0b), closes #​325
  • vite-node: respect ssr field, allow inlining everything (#​1434) (fd57b0e)
  • improve watcher performance, add forceRerunTriggers option, watchIgnore is renamed to watchExclude and now accepts only glob patterns (#​1424) (3f5ff5b)
Bug Fixes

v0.13.1

Compare Source

Bug Fixes
Features
vuejs/core

v3.2.37

Compare Source

Bug Fixes

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, click this checkbox.

This PR has been generated by Mend Renovate. View repository job log here.

@renovate renovate bot changed the title chore(deps): update devdependency vitest to ^0.13.1 chore(deps): update all non-major dependencies Jun 1, 2022
@renovate renovate bot force-pushed the renovate/all-minor-patch branch 10 times, most recently from b47f873 to f19140c Compare June 6, 2022 18:00
@renovate renovate bot force-pushed the renovate/all-minor-patch branch 7 times, most recently from 1e92b71 to ccb41a4 Compare June 16, 2022 16:32
@renovate renovate bot force-pushed the renovate/all-minor-patch branch 3 times, most recently from f5a454f to fcb9a88 Compare June 18, 2022 14:05
@renovate renovate bot force-pushed the renovate/all-minor-patch branch from fcb9a88 to bd66f86 Compare June 19, 2022 01:47
@chrisbbreuer chrisbbreuer merged commit 2356208 into main Jun 20, 2022
@renovate renovate bot deleted the renovate/all-minor-patch branch June 20, 2022 20:17
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.

None yet

1 participant