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

Merged
merged 1 commit into from Nov 15, 2022
Merged

Conversation

renovate[bot]
Copy link
Contributor

@renovate renovate bot commented Sep 23, 2022

Mend Renovate

This PR contains the following updates:

Package Change Age Adoption Passing Confidence
@vitest/coverage-c8 ^0.23.4 -> ^0.25.2 age adoption passing confidence
defu ^6.1.0 -> ^6.1.1 age adoption passing confidence
dotenv ^16.0.2 -> ^16.0.3 age adoption passing confidence
eslint (source) ^8.23.1 -> ^8.27.0 age adoption passing confidence
mlly ^0.5.16 -> ^0.5.17 age adoption passing confidence
pathe ^0.3.8 -> ^0.3.9 age adoption passing confidence
pkg-types ^0.3.5 -> ^0.3.6 age adoption passing confidence
pnpm (source) 7.12.1 -> 7.16.0 age adoption passing confidence
typescript (source) ^4.8.3 -> ^4.8.4 age adoption passing confidence
unbuild ^0.8.11 -> ^0.9.4 age adoption passing confidence
vitest ^0.23.4 -> ^0.25.2 age adoption passing confidence

Release Notes

vitest-dev/vitest

v0.25.2

Compare Source

   🐞 Bug Fixes
    View changes on GitHub

v0.25.1

Compare Source

   🚀 Features
   🐞 Bug Fixes
    View changes on GitHub

v0.25.0

Compare Source

   ✅ Builtin TypeChecking

In v0.25.0, Vitest allows you to write tests for your types, using expectTypeOf or assertType syntaxes. By default all tests inside *.test-d.ts files are considered type tests. Run vitest typecheck to run type tests.

// my.test-d.ts
import { assertType, expectTypeOf } from 'vitest'
import { mount } from './mount.js'

test('my types work properly', () => {
  expectTypeOf(mount).toBeFunction()
  expectTypeOf(mount).parameter(0).toMatchTypeOf<{ name: string }>()

  // @&#8203;ts-expect-error name is a string
  assertType(mount({ name: 42 }))
})

Learn more at the documentation and this RFC

   🚨 Breaking Changes
   🚀 Features
   🐞 Bug Fixes
    View changes on GitHub

v0.24.5

Compare Source

   🚀 Features
   🐞 Bug Fixes
    View changes on GitHub

v0.24.4

Compare Source

   🚀 Features
   🐞 Bug Fixes
    View changes on GitHub

v0.24.3

Compare Source

   🐞 Bug Fixes
    View changes on GitHub

v0.24.2

Compare Source

   🚀 Features
   🐞 Bug Fixes
    View changes on GitHub

v0.24.1

Compare Source

   🐞 Bug Fixes
    View changes on GitHub

v0.24.0

Compare Source

   🚨 Breaking Changes
   🚀 Features
   🐞 Bug Fixes
    View changes on GitHub
unjs/defu

v6.1.1

Compare Source

motdotla/dotenv

v16.0.3

Compare Source

Changed
  • Added library version to debug logs (#​682)
eslint/eslint

v8.27.0

Compare Source

Features

  • f14587c feat: new no-new-native-nonconstructor rule (#​16368) (Sosuke Suzuki)
  • 978799b feat: add new rule no-empty-static-block (#​16325) (Sosuke Suzuki)
  • 69216ee feat: no-empty suggest to add comment in empty BlockStatement (#​16470) (Nitin Kumar)
  • 319f0a5 feat: use context.languageOptions.ecmaVersion in core rules (#​16458) (Milos Djermanovic)

Bug Fixes

  • c3ce521 fix: Ensure unmatched glob patterns throw an error (#​16462) (Nicholas C. Zakas)
  • 886a038 fix: handle files with unspecified path in getRulesMetaForResults (#​16437) (Francesco Trotta)

Documentation

  • ce93b42 docs: Stylelint property-no-unknown (#​16497) (Nick Schonning)
  • d2cecb4 docs: Stylelint declaration-block-no-shorthand-property-overrides (#​16498) (Nick Schonning)
  • 0a92805 docs: stylelint color-hex-case (#​16496) (Nick Schonning)
  • 74a5af4 docs: fix stylelint error (#​16491) (Milos Djermanovic)
  • 324db1a docs: explicit stylelint color related rules (#​16465) (Nick Schonning)
  • 94dc4f1 docs: use Stylelint for HTML files (#​16468) (Nick Schonning)
  • cc6128d docs: enable stylelint declaration-block-no-duplicate-properties (#​16466) (Nick Schonning)
  • d03a8bf docs: Add heading to justification explanation (#​16430) (Maritaria)
  • 8a15968 docs: add Stylelint configuration and cleanup (#​16379) (Nick Schonning)
  • 9b0a469 docs: note commit messages don't support scope (#​16435) (Andy Edwards)
  • 1581405 docs: improve context.getScope() docs (#​16417) (Ben Perlmutter)
  • b797149 docs: update formatters template (#​16454) (Milos Djermanovic)
  • 5ac4de9 docs: fix link to formatters on the Core Concepts page (#​16455) (Vladislav)
  • 33313ef docs: core-concepts: fix link to semi rule (#​16453) (coderaiser)

v8.26.0

Compare Source

Features

  • 4715787 feat: check Object.create() in getter-return (#​16420) (Yuki Hirasawa)
  • 28d1902 feat: no-implicit-globals supports exported block comment (#​16343) (Sosuke Suzuki)
  • e940be7 feat: Use ESLINT_USE_FLAT_CONFIG environment variable for flat config (#​16356) (Tomer Aberbach)
  • dd0c58f feat: Swap out Globby for custom globbing solution. (#​16369) (Nicholas C. Zakas)

Bug Fixes

  • df77409 fix: use baseConfig constructor option in FlatESLint (#​16432) (Milos Djermanovic)
  • 33668ee fix: Ensure that glob patterns are matched correctly. (#​16449) (Nicholas C. Zakas)
  • 740b208 fix: ignore messages without a ruleId in getRulesMetaForResults (#​16409) (Francesco Trotta)
  • 8f9759e fix: --ignore-pattern in flat config mode should be relative to cwd (#​16425) (Milos Djermanovic)
  • 325ad37 fix: make getRulesMetaForResults return a plain object in trivial case (#​16438) (Francesco Trotta)
  • a2810bc fix: Ensure that directories can be unignored. (#​16436) (Nicholas C. Zakas)
  • 35916ad fix: Ensure unignore and reignore work correctly in flat config. (#​16422) (Nicholas C. Zakas)

Documentation

  • 651649b docs: Core concepts page (#​16399) (Ben Perlmutter)
  • 631cf72 docs: note --ignore-path not supported with flat config (#​16434) (Andy Edwards)
  • 1692840 docs: fix syntax in examples for new config files (#​16427) (Milos Djermanovic)
  • d336cfc docs: Document extending plugin with new config (#​16394) (Ben Perlmutter)

Chores

v8.25.0

Compare Source

Features
  • 173e820 feat: Pass --max-warnings value to formatters (#​16348) (Brandon Mills)
  • 6964cb1 feat: remove support for ignore files in FlatESLint (#​16355) (Milos Djermanovic)
  • 1cc4b3a feat: id-length counts graphemes instead of code units (#​16321) (Sosuke Suzuki)
Documentation
Chores

v8.24.0

Compare Source

Features
  • 1729f9e feat: account for sourceType: "commonjs" in the strict rule (#​16308) (Milos Djermanovic)
  • b0d72c9 feat: add rule logical-assignment-operators (#​16102) (fnx)
  • f02bcd9 feat: array-callback-return support findLast and findLastIndex (#​16314) (Sosuke Suzuki)
Documentation
Chores
unjs/mlly

v0.5.17

Compare Source

unjs/pathe

v0.3.9

Compare Source

unjs/pkg-types

v0.3.6

Compare Source

pnpm/pnpm

v7.16.0

Compare Source

Minor Changes

  • Support pnpm env list to list global or remote Node.js versions #​5546.

Patch Changes

  • Replace environment variable placeholders with their values, when reading .npmrc files in subdirectories inside a workspace #​2570.
  • Fix an error that sometimes happen on projects with linked local dependencies #​5327.

Our Gold Sponsors

Our Silver Sponsors

v7.15.0

Compare Source

Minor Changes
  • Support --format=json option to output outdated packages in JSON format with outdated command #​2705.

    pnpm outdated --format=json
    #or
    pnpm outdated --json
  • A new setting supported for ignoring vulnerabilities by their CVEs. The ignored CVEs may be listed in the pnpm.auditConfig.ignoreCves field of package.json. For instance:

    {
      "pnpm": {
        "auditConfig": {
          "ignoreCves": [
            "CVE-2019-10742",
            "CVE-2020-28168",
            "CVE-2021-3749",
            "CVE-2020-7598"
          ]
        }
      }
    }
Patch Changes
  • The reporter should not crash when the CLI process is kill during lifecycle scripts execution #​5588.
  • Installation shouldn't fail when the injected dependency has broken symlinks. The broken symlinks should be just skipped #​5598.
Our Gold Sponsors
Our Silver Sponsors

v7.14.2

Compare Source

Patch Changes

  • Don't fail if cannot override the name field of the error object #​5572.
  • Don't fail on rename across devices.

Our Gold Sponsors

Our Silver Sponsors

v7.14.1

Compare Source

Patch Changes

  • pnpm list --long --json should print licenses and authors of packages #​5533.
  • Don't crash on lockfile with no packages field #​5553.
  • Version overrider should have higher priority then custom read package hook from .pnpmfile.cjs.
  • Don't print context information when running install for the pnpm dlx command.
  • Print a warning if a package.json has a workspaces field but there is no pnpm-workspace.yaml file #​5363.
  • It should be possible to set a custom home directory for pnpm by changing the PNPM_HOME environment variable.

Our Gold Sponsors

Our Silver Sponsors

v7.14.0

Compare Source

Minor Changes
  • Add pnpm doctor command to do checks for known common issues
Patch Changes
  • Ignore the always-auth setting.

    pnpm will never reuse the registry auth token for requesting the package tarball, if the package tarball is hosted on a different domain.

    So,


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.

@codecov
Copy link

codecov bot commented Sep 23, 2022

Codecov Report

Merging #40 (34ed251) into main (a688e7f) will not change coverage.
The diff coverage is n/a.

@@           Coverage Diff           @@
##             main      #40   +/-   ##
=======================================
  Coverage   89.34%   89.34%           
=======================================
  Files           3        3           
  Lines         366      366           
  Branches       47       47           
=======================================
  Hits          327      327           
  Misses         39       39           

Help us with your feedback. Take ten seconds to tell us how you rate us. Have a feature suggestion? Share it here.

@renovate renovate bot changed the title chore(deps): update pnpm to v7.12.2 chore(deps): update all non-major dependencies Sep 24, 2022
@renovate renovate bot force-pushed the renovate/all-minor-patch branch 3 times, most recently from 24db678 to be6c43c Compare September 29, 2022 18:29
@renovate renovate bot force-pushed the renovate/all-minor-patch branch 7 times, most recently from bced222 to e1e2a8a Compare October 9, 2022 15:30
@renovate renovate bot force-pushed the renovate/all-minor-patch branch 8 times, most recently from 284c684 to 4d15562 Compare October 16, 2022 20:39
@renovate renovate bot force-pushed the renovate/all-minor-patch branch 4 times, most recently from fa8eaa9 to 6a65bdd Compare October 26, 2022 14:57
@renovate renovate bot force-pushed the renovate/all-minor-patch branch 4 times, most recently from 0fe4ec6 to ab5904a Compare November 2, 2022 09:46
@renovate renovate bot force-pushed the renovate/all-minor-patch branch 2 times, most recently from 6cb6741 to 4335f2a Compare November 7, 2022 19:37
@renovate renovate bot force-pushed the renovate/all-minor-patch branch 3 times, most recently from 90c5995 to 4389fa8 Compare November 14, 2022 14:07
@pi0 pi0 merged commit 0045719 into main Nov 15, 2022
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