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

Merged
merged 1 commit into from
Mar 20, 2023
Merged

Conversation

renovate[bot]
Copy link
Contributor

@renovate renovate bot commented Mar 17, 2023

Mend Renovate

This PR contains the following updates:

Package Change Age Adoption Passing Confidence
@types/aws-lambda (source) ^8.10.112 -> ^8.10.114 age adoption passing confidence
@vitest/coverage-c8 ^0.29.2 -> ^0.29.3 age adoption passing confidence
esbuild ^0.17.11 -> ^0.17.12 age adoption passing confidence
h3 ^1.6.0 -> ^1.6.2 age adoption passing confidence
jiti ^1.17.2 -> ^1.18.2 age adoption passing confidence
pnpm (source) 7.29.1 -> 7.30.0 age adoption passing confidence
prettier (source) ^2.8.4 -> ^2.8.5 age adoption passing confidence
rollup (source) ^3.19.1 -> ^3.20.0 age adoption passing confidence
unimport ^3.0.2 -> ^3.0.3 age adoption passing confidence
unstorage ^1.4.0 -> ^1.4.1 age adoption passing confidence
vitest ^0.29.2 -> ^0.29.3 age adoption passing confidence

Release Notes

vitest-dev/vitest

v0.29.3

Compare Source

   🚀 Features
   🐞 Bug Fixes
   🏎 Performance
    View changes on GitHub
evanw/esbuild

v0.17.12

Compare Source

  • Fix a crash when parsing inline TypeScript decorators (#​2991)

    Previously esbuild's TypeScript parser crashed when parsing TypeScript decorators if the definition of the decorator was inlined into the decorator itself:

    @​(function sealed(constructor: Function) {
      Object.seal(constructor);
      Object.seal(constructor.prototype);
    })
    class Foo {}

    This crash was not noticed earlier because this edge case did not have test coverage. The crash is fixed in this release.

unjs/h3

v1.6.2

Compare Source

compare changes

🩹 Fixes
  • setResponseStatus: Mark code type as optional (#​359)
  • Sanitize utils and sanitize all response code and messages (#​358)
❤️ Contributors

v1.6.1

Compare Source

compare changes

🩹 Fixes
  • Sanitize statusMessage of disallowed chars (#​357)
❤️ Contributors
unjs/jiti

v1.18.2

Compare Source

compare changes

🚀 Enhancements
  • Allow resolving .ts files with .js extension (#​128)
  • Support import.meta.env (#​129)
🔥 Performance
  • Use extension resolutions only for parent typescript files (27a9888)
🩹 Fixes
  • Handle parretns with c ([mts extension too](unjs/jiti@mts\` extension too))
🏡 Chore
❤️ Contributors

v1.18.1

Compare Source

v1.18.0

Compare Source

pnpm/pnpm

v7.30.0

Compare Source

Minor Changes
  • Allow to set a custom directory for storing patch files via the patches-dir setting #​6215
Patch Changes
  • New directories should be prepended to NODE_PATH in command shims, not appended.
  • Retry copying file on EBUSY error #​6201.
Our Gold Sponsors
Our Silver Sponsors

v7.29.3

Compare Source

Patch Changes

  • Command shim should not set higher priority to the node_modules/.pnpm/node_modules directory through the NODE_PATH env variable, then the command's own node_modules directory #​5176.
  • extend-node-path is set back to true by default. It was set to false in v7.29.2 in order to fix issues with multiple versions of Jest in one workspace. It has caused other issues, so now we keep extending NODE_PATH. We have fixed the Jest issue with a different solution #​6213.

Our Gold Sponsors

Our Silver Sponsors

v7.29.2

Compare Source

prettier/prettier

v2.8.5

Compare Source

diff

Support TypeScript 5.0 (#​14391 by @​fisker, #​13819 by @​fisker, @​sosukesuzuki)

TypeScript 5.0 introduces two new syntactic features:

  • const modifiers for type parameters
  • export type * declarations
Add missing parentheses for decorator (#​14393 by @​fisker)
// Input
class Person {
  @​(myDecoratorArray[0])
  greet() {}
}

// Prettier 2.8.4
class Person {
  @​myDecoratorArray[0]
  greet() {}
}

// Prettier 2.8.5
class Person {
  @​(myDecoratorArray[0])
  greet() {}
}
Add parentheses for TypeofTypeAnnotation to improve readability (#​14458 by @​fisker)
// Input
type A = (typeof node.children)[];

// Prettier 2.8.4
type A = typeof node.children[];

// Prettier 2.8.5
type A = (typeof node.children)[];
Support max_line_length=off when parsing .editorconfig (#​14516 by @​josephfrazier)

If an .editorconfig file is in your project and it sets max_line_length=off for the file you're formatting,
it will be interpreted as a printWidth of Infinity rather than being ignored
(which previously resulted in the default printWidth of 80 being applied, if not overridden by Prettier-specific configuration).

<!-- Input -->
<div className='HelloWorld' title={`You are visitor number ${ num }`} onMouseOver={onMouseOver}/>

<!-- Prettier 2.8.4 -->
<div
  className="HelloWorld"
  title={`You are visitor number ${num}`}
  onMouseOver={onMouseOver}
/>;

<!-- Prettier 2.8.5 -->
<div className="HelloWorld" title={`You are visitor number ${num}`} onMouseOver={onMouseOver} />;
rollup/rollup

v3.20.0

Compare Source

2023-03-20

Features
  • Allow dynamically imported files to have synthetic named exports when preserving modules (#​4913)
Bug Fixes
  • Use deterministic file name when emitting several files with same source (#​4912)
  • Fix a crash when dynamically importing a file with synthetic named exports when preserving modules (#​4913)
Pull Requests
unjs/unimport

v3.0.3

Compare Source

Bug Fixes
Features
unjs/unstorage

v1.4.1

Compare Source

compare changes

🩹 Fixes
  • pkg: Use optional peer dependencies (#​183)
📖 Documentation
🏡 Chore
❤️ Contributors

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.

@codecov
Copy link

codecov bot commented Mar 17, 2023

Codecov Report

Merging #1065 (ba26977) into main (fd15c21) will not change coverage.
The diff coverage is n/a.

❗ Current head ba26977 differs from pull request most recent head bb42c61. Consider uploading reports for the commit bb42c61 to get more accurate results

@@           Coverage Diff           @@
##             main    #1065   +/-   ##
=======================================
  Coverage   67.32%   67.32%           
=======================================
  Files          62       62           
  Lines        6292     6292           
  Branches      707      707           
=======================================
  Hits         4236     4236           
  Misses       2042     2042           
  Partials       14       14           

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 force-pushed the renovate/all-minor-patch branch from ba26977 to bb42c61 Compare March 20, 2023 09:05
@pi0 pi0 merged commit fda8baf into main Mar 20, 2023
@pi0 pi0 deleted the renovate/all-minor-patch branch March 20, 2023 10:48
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.

1 participant