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

Merged
merged 1 commit into from
Feb 22, 2024
Merged

Conversation

renovate[bot]
Copy link
Contributor

@renovate renovate bot commented Jan 28, 2024

Mend Renovate

This PR contains the following updates:

Package Change Age Adoption Passing Confidence
@types/node (source) ^20.11.6 -> ^20.11.19 age adoption passing confidence
@vitest/coverage-v8 (source) ^1.2.1 -> ^1.3.1 age adoption passing confidence
autocannon ^7.14.0 -> ^7.15.0 age adoption passing confidence
destr ^2.0.2 -> ^2.0.3 age adoption passing confidence
listhen ^1.5.6 -> ^1.6.0 age adoption passing confidence
node-fetch-native ^1.6.1 -> ^1.6.2 age adoption passing confidence
pnpm (source) 8.14.3 -> 8.15.3 age adoption passing confidence
prettier (source) ^3.2.4 -> ^3.2.5 age adoption passing confidence
ufo ^1.3.2 -> ^1.4.0 age adoption passing confidence
vitest (source) ^1.2.1 -> ^1.3.1 age adoption passing confidence

Release Notes

vitest-dev/vitest (@​vitest/coverage-v8)

v1.3.1

Compare Source

v1.3.0

Compare Source

🚀 Features
🐞 Bug Fixes
View changes on GitHub

v1.2.2

Compare Source

   🐞 Bug Fixes
    View changes on GitHub
mcollina/autocannon (autocannon)

v7.15.0

Compare Source

What's Changed

New Contributors

Full Changelog: mcollina/autocannon@v7.14.0...v7.15.0

unjs/destr (destr)

v2.0.3

Compare Source

compare changes

🩹 Fixes
  • Improve compatibility with runtimes not supporting String.prototype.at() (#​102)
🏡 Chore
✅ Tests
❤️ Contributors
unjs/listhen (listhen)

v1.6.0

Compare Source

compare changes

🚀 Enhancements
  • Experimental websocket support (#​158)
🏡 Chore
  • Update lockfile (ebef2d1)
  • Remove ws from shared args for now (d115045)
❤️ Contributors
unjs/node-fetch-native (node-fetch-native)

v1.6.2

Compare Source

compare changes

📦 Build
  • Remove non existing node.import condition (#​115)
🏡 Chore
❤️ Contributors
pnpm/pnpm (pnpm)

v8.15.3

Compare Source

Patch Changes

  • Remove vulnerable "ip" package from the dependencies #​7652.

Platinum Sponsors

Gold Sponsors

Our Silver Sponsors

v8.15.2

Compare Source

Patch Changes

  • When purging multiple node_modules directories, pnpm will no longer print multiple prompts simultaneously.
  • Don't print an unnecessary warning when adding new dependencies to a project that uses hoisted node_modules.
  • Linking globally the command of a package that has no name in package.json #​4761.
  • Installation should work with lockfile created by pnpm v9.0.0-alpha.4

Platinum Sponsors

Gold Sponsors

Our Silver Sponsors

v8.15.1

Compare Source

Patch Changes

  • Use the object-hash library instead of node-object-hash for hashing keys of side-effects cache #​7591.
  • bundledDependencies should never be added to the lockfile with false as the value #​7576.

Platinum Sponsors

Gold Sponsors

Our Silver Sponsors

v8.15.0

Compare Source

Minor Changes

  • When the license field does not exist in package.json but a license file exists, try to match and extract the license name #​7530.

Patch Changes

  • Running pnpm update -r --latest will no longer downgrade prerelease dependencies #​7436.
  • --aggregate-output should work on scripts executed from the same project #​7556.
  • Prefer hard links over reflinks on Windows as they perform better #​7564.
  • Reduce the length of the side-effects cache key. Instead of saving a stringified object composed from the dependency versions of the package, use the hash calculated from the said object #​7563.
  • Throw an error if pnpm update --latest runs with arguments containing versions specs. For instance, pnpm update --latest foo@next is not allowed #​7567.
  • Don't fail in Windows CoW if the file already exists #​7554.

Platinum Sponsors

Gold Sponsors

Our Silver Sponsors

prettier/prettier (prettier)

v3.2.5

Compare Source

diff

Support Angular inline styles as single template literal (#​15968 by @​sosukesuzuki)

Angular v17 supports single string inline styles.

// Input
@​Component({
  template: `<div>...</div>`,
  styles: `h1 { color: blue; }`,
})
export class AppComponent {}

// Prettier 3.2.4
@&#8203;Component({
  template: `<div>...</div>`,
  styles: `h1 { color: blue; }`,
})
export class AppComponent {}

// Prettier 3.2.5
@&#8203;Component({
  template: `<div>...</div>`,
  styles: `
    h1 {
      color: blue;
    }
  `,
})
export class AppComponent {}
Unexpected embedded formatting for Angular template (#​15969 by @​JounQin)

Computed template should not be considered as Angular component template

// Input
const template = "foobar";

@&#8203;Component({
  [template]: `<h1>{{       hello }}</h1>`,
})
export class AppComponent {}

// Prettier 3.2.4
const template = "foobar";

@&#8203;Component({
  [template]: `<h1>{{ hello }}</h1>`,
})
export class AppComponent {}

// Prettier 3.2.5
const template = "foobar";

@&#8203;Component({
  [template]: `<h1>{{       hello }}</h1>`,
})
export class AppComponent {}
Use "json" parser for tsconfig.json by default (#​16012 by @​sosukesuzuki)

In v2.3.0, we introduced "jsonc" parser which adds trialing comma by default.

When adding a new parser we also define how it will be used based on the [linguist-languages](https://www.npmjs.


Configuration

📅 Schedule: Branch creation - "after 2am and before 3am" (UTC), Automerge - "after 1am and before 2am" (UTC).

🚦 Automerge: Enabled.

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

cloudflare-pages bot commented Jan 28, 2024

Deploying with  Cloudflare Pages  Cloudflare Pages

Latest commit: 89495db
Status:🚫  Build failed.

View logs

Copy link

codecov bot commented Jan 28, 2024

Codecov Report

All modified and coverable lines are covered by tests ✅

Comparison is base (a58d7c9) 77.83% compared to head (89495db) 77.83%.

Additional details and impacted files
@@           Coverage Diff           @@
##             main     #644   +/-   ##
=======================================
  Coverage   77.83%   77.83%           
=======================================
  Files          47       47           
  Lines        4286     4286           
  Branches      611      611           
=======================================
  Hits         3336     3336           
  Misses        933      933           
  Partials       17       17           

☔ View full report in Codecov by Sentry.
📢 Have feedback on the report? Share it here.

@renovate renovate bot force-pushed the renovate/all-minor-patch branch 11 times, most recently from fed6332 to e892640 Compare February 4, 2024 07:22
@renovate renovate bot force-pushed the renovate/all-minor-patch branch 5 times, most recently from 0193de4 to f6a3976 Compare February 13, 2024 00:50
@renovate renovate bot force-pushed the renovate/all-minor-patch branch 5 times, most recently from ff0df4f to a4cd567 Compare February 20, 2024 10:34
@pi0 pi0 merged commit 0b60530 into main Feb 22, 2024
6 of 7 checks passed
@pi0 pi0 deleted the renovate/all-minor-patch branch February 22, 2024 10:10
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