posva / mande

<700 bytes convenient and modern wrapper around fetch with smart extensible defaults
https://mande.esm.is
MIT License
1.19k stars 42 forks source link

chore(deps): update all non-major dependencies #348

Closed renovate[bot] closed 2 years ago

renovate[bot] commented 2 years ago

Mend Renovate

This PR contains the following updates:

Package Change Age Adoption Passing Confidence
@microsoft/api-documenter (source) ^7.19.10 -> ^7.19.13 age adoption passing confidence
@microsoft/api-extractor (source) ^7.30.0 -> ^7.31.1 age adoption passing confidence
pnpm (source) 7.11.0 -> 7.12.0 age adoption passing confidence
rollup-plugin-typescript2 ^0.33.0 -> ^0.34.0 age adoption passing confidence

Release Notes

pnpm/pnpm ### [`v7.12.0`](https://togithub.com/pnpm/pnpm/releases/tag/v7.12.0) [Compare Source](https://togithub.com/pnpm/pnpm/compare/v7.11.0...v7.12.0) #### Minor Changes - A new setting supported in the pnpm section of the `package.json` file: `allowNonAppliedPatches`. When it is set to `true`, non-applied patches will not cause an error, just a warning will be printed. For example: ```json { "name": "foo", "version": "1.0.0", "pnpm": { "patchedDependencies": { "express@4.18.1": "patches/express@4.18.1.patch" }, "allowNonAppliedPatches": true } } ``` - Now it is possible to exclude packages from hoisting by prepending a `!` to the pattern. This works with both the `hoist-pattern` and `public-hoist-pattern` settings. For instance: public-hoist-pattern[]='*types*' public-hoist-pattern[]='!@​types/react' hoist-pattern[]='*eslint*' hoist-pattern[]='!*eslint-plugin*' Ref [#​5272](https://togithub.com/pnpm/pnpm/issues/5272) #### Patch Changes - When the same dependency with missing peers is used in multiple workspace projects, install the missing peers in each workspace project [#​4820](https://togithub.com/pnpm/pnpm/issues/4820). - `pnpm patch` should work on files that don't have an end of line [#​5320](https://togithub.com/pnpm/pnpm/issues/5320). - Fix `pnpm patch` using a custom `--edit-dir`. #### Our Gold Sponsors
#### Our Silver Sponsors
#### What's Changed * fix(patch): allow to edit a package in any directory by @​zkoch[https://github.com/pnpm/pnpm/pull/5331](https://togithub.com/pnpm/pnpm/pull/5331)l/5331 * feat(matcher): ignore patterns by @​LuciNy[https://github.com/pnpm/pnpm/pull/5336](https://togithub.com/pnpm/pnpm/pull/5336)l/5336 * fix(patch): ignore No newline at end of file by @​await-o[https://github.com/pnpm/pnpm/pull/5321](https://togithub.com/pnpm/pnpm/pull/5321)l/5321 * feat(patch): allow non-applied patches by @​larrybahr-ocel[https://github.com/pnpm/pnpm/pull/5354](https://togithub.com/pnpm/pnpm/pull/5354)l/5354 * chore: update @​pnpm/meta-updater by @​ibe[https://github.com/pnpm/pnpm/pull/5360](https://togithub.com/pnpm/pnpm/pull/5360)pm/pull/5360 * fix: auto-install-peers in a workspace by @​zkoch[https://github.com/pnpm/pnpm/pull/5359](https://togithub.com/pnpm/pnpm/pull/5359)l/5359 #### New Contributors * @​await-ovo made their first contributi[https://github.com/pnpm/pnpm/pull/5321](https://togithub.com/pnpm/pnpm/pull/5321)l/5321 * @​larrybahr-ocelot made their first contributi[https://github.com/pnpm/pnpm/pull/5354](https://togithub.com/pnpm/pnpm/pull/5354)l/5354 **Full Changelog**: https://github.com/pnpm/pnpm/compare/v7.11.0...v7.12.0
ezolenko/rollup-plugin-typescript2 ### [`v0.34.0`](https://togithub.com/ezolenko/rollup-plugin-typescript2/releases/tag/0.34.0) [Compare Source](https://togithub.com/ezolenko/rollup-plugin-typescript2/compare/0.33.0...0.34.0) #### Bugfixes - fix: handle all type-only imports by piping TS imports by [@​agilgur5](https://togithub.com/agilgur5) in [#​406](https://togithub.com/ezolenko/rollup-plugin-typescript2/pull/406) - If you have ever had issues with some files not being type-checked or not generating declarations, this should conclusively fix all such issues. This type of issue *used to* occur if you had a type-only / interface-only / emit-less file, i.e. a file with only TS `type`s and `interface`s that would produce no JS. - For instance: [#​211](https://togithub.com/ezolenko/rollup-plugin-typescript2/issues/211), [#​298](https://togithub.com/ezolenko/rollup-plugin-typescript2/issues/298), [#​409](https://togithub.com/ezolenko/rollup-plugin-typescript2/issues/409), [etc](https://togithub.com/ezolenko/rollup-plugin-typescript2/issues?q=label%3A%22topic%3A+type-only+%2F+emit-less+imports%22+) - *NOTE*: This requires Rollup version `2.60.0`+ as it requires the use of [`this.load`](https://togithub.com/rollup/rollup/blob/master/CHANGELOG.md#​2600)
More Fixes ... - fix(dx): remove extra quote in `emitDeclarationOnly` log statement by [@​agilgur5](https://togithub.com/agilgur5) in [#​412](https://togithub.com/ezolenko/rollup-plugin-typescript2/pull/412)
#### Docs - docs: add a simple `CHANGELOG.md` that references GH releases by [@​agilgur5](https://togithub.com/agilgur5) in [#​419](https://togithub.com/ezolenko/rollup-plugin-typescript2/pull/419) - i.e. it references *this* page #### Internal (testing, refactors) - test: ensure `declarationMap` sources are correct by [@​agilgur5](https://togithub.com/agilgur5) in [#​403](https://togithub.com/ezolenko/rollup-plugin-typescript2/pull/403) - test: add `print-diagnostics` spec by [@​agilgur5](https://togithub.com/agilgur5) in [#​405](https://togithub.com/ezolenko/rollup-plugin-typescript2/pull/405)
More Internal ... - refactor(test): heavily simplify the `context` helper by [@​agilgur5](https://togithub.com/agilgur5) in [#​404](https://togithub.com/ezolenko/rollup-plugin-typescript2/pull/404) - refactor: combine `check-tsconfig` with `parse-tsconfig` by [@​agilgur5](https://togithub.com/agilgur5) in [#​413](https://togithub.com/ezolenko/rollup-plugin-typescript2/pull/413) - clean: remove `ConsoleContext` entirely by using `buildStart` by [@​agilgur5](https://togithub.com/agilgur5) in [#​414](https://togithub.com/ezolenko/rollup-plugin-typescript2/pull/414) - refactor(cache): simplify creating / using the `cache` var by [@​agilgur5](https://togithub.com/agilgur5) in [#​415](https://togithub.com/ezolenko/rollup-plugin-typescript2/pull/415) - refactor: consolidate `diagnostics` funcs into single file by [@​agilgur5](https://togithub.com/agilgur5) in [#​415](https://togithub.com/ezolenko/rollup-plugin-typescript2/pull/416)
**Full Changelog**: https://github.com/ezolenko/rollup-plugin-typescript2/compare/0.33.0.1...0.34.0

Configuration

πŸ“… Schedule: Branch creation - "before 3am on Monday" (UTC), Automerge - At any time (no schedule defined).

🚦 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.



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

codecov[bot] commented 2 years ago

Codecov Report

Merging #348 (e4033a9) into main (c03a9bc) will not change coverage. The diff coverage is n/a.

@@           Coverage Diff           @@
##             main     #348   +/-   ##
=======================================
  Coverage   94.28%   94.28%           
=======================================
  Files           1        1           
  Lines          70       70           
  Branches       25       25           
=======================================
  Hits           66       66           
  Misses          4        4           

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