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

Update all non-major dependencies #42

Merged
merged 2 commits into from Mar 17, 2023
Merged

Update all non-major dependencies #42

merged 2 commits into from Mar 17, 2023

Conversation

renovate[bot]
Copy link
Contributor

@renovate renovate bot commented Feb 13, 2023

Mend Renovate

This PR contains the following updates:

Package Change Age Adoption Passing Confidence Type Update
@antfu/eslint-config-ts 0.35.2 -> 0.36.0 age adoption passing confidence devDependencies minor
@fluent/syntax (source) ^0.18.1 -> ^0.19.0 age adoption passing confidence dependencies minor
@types/node (source) 18.13.0 -> 18.15.3 age adoption passing confidence devDependencies minor
@vitejs/plugin-vue (source) 4.0.0 -> 4.1.0 age adoption passing confidence devDependencies minor
@vitest/coverage-c8 0.28.4 -> 0.29.3 age adoption passing confidence devDependencies minor
actions/checkout v3.3.0 -> v3.4.0 age adoption passing confidence action minor
dotenv-cli 7.0.0 -> 7.1.0 age adoption passing confidence devDependencies minor
eslint (source) 8.34.0 -> 8.36.0 age adoption passing confidence devDependencies minor
execa 7.0.0 -> 7.1.1 age adoption passing confidence devDependencies minor
lint-staged 13.1.1 -> 13.2.0 age adoption passing confidence devDependencies minor
magic-string ^0.29.0 -> ^0.30.0 age adoption passing confidence dependencies minor
release-it 15.6.0 -> 15.9.0 age adoption passing confidence devDependencies minor
tsup (source) 6.6.2 -> 6.6.3 age adoption passing confidence devDependencies patch
vite (source) 4.1.1 -> 4.2.0 age adoption passing confidence devDependencies minor
vitest 0.28.4 -> 0.29.3 age adoption passing confidence devDependencies minor
webpack 5.75.0 -> 5.76.2 age adoption passing confidence devDependencies minor

Release Notes

antfu/eslint-config

v0.36.0

Compare Source

   🚀 Features
    View changes on GitHub

v0.35.3

Compare Source

   🚀 Features
    View changes on GitHub
projectfluent/fluent.js

v0.19.0: 2023-03-13

Compare Source

  • 0.x updates to all packages to account for dropping Node.js v12 support (#​607)

@​fluent/syntax@​0.19.0

  • Treat tab as text, not whitespace (#​606)

@​fluent/react 0.15.0

  • Add getElement method to ReactLocalization (#​595)
  • Update fluent-react/example to use latest Parcel (#​593)
vitejs/vite-plugin-vue

v4.1.0

Compare Source

  • fix: avoid resolving to 2.7 compiler-sfc (cf36b3e)
vitest-dev/vitest

v0.29.3

Compare Source

   🚀 Features
   🐞 Bug Fixes
   🏎 Performance
    View changes on GitHub

v0.29.2

Compare Source

   🐞 Bug Fixes
    View changes on GitHub

v0.29.1

Compare Source

   🐞 Bug Fixes
    View changes on GitHub

v0.29.0

Compare Source

This release makes some significant changes to how tests are running. If you were using --no-threads before, you might consider enabling --single-thread instead (because your tests are now running in child_process instead of a worker thread) or try our new performance optimization feature (discussed later). If you were relying on API that was not available inside a worker (like process.chdir(), you can now use this option.

One of the potential breaking bug fixes is that environments do not share the same global scope anymore if you run them with --no-isolate, --no-threads or --single-thread - you might need to update your setup files if you were relying on a global variable before.

If you had performance issues on large code bases before, try the new deps.experimentalOptimizer option instead of disabling threads. Feedback is welcome!

One of the breaking changes includes adding a link to snapshots inside snapshot files, meaning you will need to update all your snapshots.

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

v0.28.5

Compare Source

   🚀 Features
   🐞 Bug Fixes
   🏎 Performance
    View changes on GitHub
actions/checkout

v3.4.0

Compare Source

entropitor/dotenv-cli

v7.1.0: Allow --no-expand

Compare Source

https://github.com/entropitor/dotenv-cli/pull/86

eslint/eslint

v8.36.0

Compare Source

Features

Bug Fixes

  • 92c1943 fix: correctly iterate files matched by glob patterns (#​16831) (Nitin Kumar)

Documentation

  • b98fdd4 docs: Update README (GitHub Actions Bot)
  • caf08ce docs: fix estree link in custom formatters docs (#​16967) (Milos Djermanovic)
  • 3398431 docs: Custom Parsers cleanup/expansion (#​16887) (Ben Perlmutter)
  • 19d3531 docs: Update README (GitHub Actions Bot)
  • b09a512 docs: detect and fix broken links (#​16837) (Nitin Kumar)

Chores

v8.35.0

Compare Source

Features

  • 8e34a04 feat: add afterHashbangComment option to lines-around-comment rule (#​16920) (SUZUKI Sosuke)
  • c8c0c71 feat: Move all and recommended configs into package. (#​16844) (Nicholas C. Zakas)
  • 71f6f0d feat: report more cases with ?? in no-constant-binary-expression (#​16826) (Daiki Nishikawa)

Bug Fixes

Documentation

Chores

sindresorhus/execa

v7.1.1

Compare Source

Features

Bug fixes

v7.1.0

Compare Source

Features

import {$} from 'execa';

const branch = await $`git branch --show-current`;
await $`dep deploy --branch=${branch}`;
// Similar to `echo unicorns > stdout.txt` in Bash
await execa('echo', ['unicorns']).pipeStdout('stdout.txt');

// Similar to `echo unicorns 2> stdout.txt` in Bash
await execa('echo', ['unicorns']).pipeStderr('stderr.txt');

// Similar to `echo unicorns &> stdout.txt` in Bash
await execa('echo', ['unicorns'], {all: true}).pipeAll('all.txt');
// Similar to `cat < stdin.txt` in Bash
const {stdout} = await execa('cat', {inputFile: 'stdin.txt'});
console.log(stdout);
//=> 'unicorns'
  • Add verbose option to print each command on stderr before executing it. This can also be enabled by setting the NODE_DEBUG=execa environment variable in the current process.
> node file.js
unicorns
rainbows

> NODE_DEBUG=execa node file.js
[16:50:03.305] echo unicorns
unicorns
[16:50:03.308] echo rainbows
rainbows
okonet/lint-staged

v13.2.0

Compare Source

Bug Fixes
  • dependencies: replace colorette with chalk for better color support detection (f598725)
  • use index-based stash references for improved MSYS2 compatibility (#​1270) (60fcd99)
Features

v13.1.4

Compare Source

v13.1.3

Compare Source

v13.1.2

Compare Source

Bug Fixes
rich-harris/magic-string

v0.30.0

Compare Source

Bug Fixes
Features
release-it/release-it

v15.9.0

Compare Source

  • Update dependencies (2271e2a)
  • Remove unnecessary await (b34a9d5)
  • Support function for configuring github/gitlab releaseNotes (#​987) (81e18fa)

v15.8.0

Compare Source

  • Skip test (ENAMETOOLONG on Windows) (ca9a767)
  • Update dependencies (377c880)
  • Truncate github release notes body > 124k characters (closes #​965) (218ffc1)
  • Add note about github.autoGenerate (closes #​945) (eaf85d7)
  • Skip publish prompt when package.json has private: true (fixes #​936) (d816d40)

v15.7.0

Compare Source

  • Replace master with main where applicable (f4702c4)
  • feat: make exit 0 possible when commits required but missing (#​984) (7076fd3)
  • feat: configurable path in git rev-list (#​982) (81a7d69)
  • Add increased timeout to test/tasks.js (for Windows) (0a23c55)

v15.6.1

Compare Source

  • Update dependencies (554c600)
  • Fix npm list collaborators diff in npm v8 vs v9 in tests (1935621)
  • Mention bumper plugin in npm docs (1e6dca8)
  • Fixed plugins README on peerDependencies property (#​980) (7784c97)
  • Update dependencies (2a8271f)
  • Add axios to list of projects using release-it (b525c25)
egoist/tsup

v6.6.3

Compare Source

Bug Fixes
vitejs/vite

v4.2.0

Compare Source

Vite 4.2 is out!

Support env variables replacement in HTML files

Vite now supports replacing env variables in HTML files. Any properties in import.meta.env can be used in HTML files with a special %ENV_NAME% syntax:

<h1>Vite is running in %MODE%</h1>
<p>Using data from %VITE_API_URL%</p>
Sourcemaps improvements

The Chrome Dev Tools team has been working to improve the DX of Vite and Vite-powered frameworks in the dev tools. Vite 4.2 brings an improved experience and tools for framework authors to hide 3rd party code and build artifacts from the user from console log traces using server.sourcemapIgnoreList and build.rollupOptions.output.sourcemapIgnoreList.

ESM subpath imports

Vite 4.2 now supports subpath imports, thanks to @​lukeed05's resolve.exports library.

TypeScript 5 support

Vite 4.2 also supports TypeScript 5's tsconfig extends array format, thanks to tsconfck.

esbuild 0.17

esbuild v0.17.0 improved the design of its incremental, watch, and serve APIs. Check out #​11908 for the rationale of why we didn't consider the backward-incompatible changes breaking for our use cases. The updated esbuild design now allows Vite to properly cancel in-fly builds and improve server restarts.

Use Rollup types from the vite package

Expose Rollup types as a namespace. This is helpful to avoid type conflicts because of different versions of Rollup types in environments like vite-ecosystem-ci (#​12316).

import type { Rollup } from 'vite'
Português Docs Translation

The Vite documentation is now translated to Português at pt.vitejs.dev thanks to Nazaré Da Piedade .

Features
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, check this box

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

@codecov
Copy link

codecov bot commented Feb 13, 2023

Codecov Report

Merging #42 (96f92ab) into main (04f0fc0) will not change coverage.
The diff coverage is 100.00%.

@@           Coverage Diff           @@
##             main      #42   +/-   ##
=======================================
  Coverage   96.46%   96.46%           
=======================================
  Files           6        6           
  Lines         368      368           
  Branches       53       53           
=======================================
  Hits          355      355           
  Misses         13       13           
Impacted Files Coverage Δ
src/plugins/external-plugin.ts 95.31% <100.00%> (ø)

📣 We’re building smart automated test selection to slash your CI/CD build times. Learn more

@renovate renovate bot changed the title Update all non-major dependencies to v0.28.5 Update all non-major dependencies Feb 13, 2023
@renovate renovate bot force-pushed the renovate/all-minor-patch branch 4 times, most recently from 19619e0 to 3f2d88a Compare February 20, 2023 12:27
@renovate renovate bot force-pushed the renovate/all-minor-patch branch 8 times, most recently from 3c9da79 to 7760b9b Compare February 28, 2023 17:08
@renovate renovate bot force-pushed the renovate/all-minor-patch branch 6 times, most recently from 7d3196d to dec5d2a Compare March 4, 2023 14:31
@renovate renovate bot force-pushed the renovate/all-minor-patch branch 9 times, most recently from d512da1 to ce90139 Compare March 13, 2023 20:36
@renovate renovate bot force-pushed the renovate/all-minor-patch branch 3 times, most recently from 94babe1 to 61d0b71 Compare March 15, 2023 21:11
@renovate renovate bot force-pushed the renovate/all-minor-patch branch from 61d0b71 to dba526c Compare March 17, 2023 10:42
@renovate
Copy link
Contributor Author

renovate bot commented Mar 17, 2023

Edited/Blocked Notification

Renovate will not automatically rebase this PR, because it does not recognize the last commit author and assumes somebody else may have edited the PR.

You can manually request rebase by checking the rebase/retry box above.

Warning: custom changes will be lost.

@Demivan Demivan merged commit 766462e into main Mar 17, 2023
6 checks passed
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Development

Successfully merging this pull request may close these issues.

None yet

1 participant