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 (major) #53

Open
wants to merge 1 commit into
base: master
Choose a base branch
from
Open

Conversation

renovate[bot]
Copy link
Contributor

@renovate renovate bot commented Oct 9, 2021

Mend Renovate

This PR contains the following updates:

Package Change Age Adoption Passing Confidence Type Update
@types/node (source) ^17.0.9 -> ^20.0.0 age adoption passing confidence devDependencies major
@vitejs/plugin-react (source) ^1.1.4 -> ^4.0.0 age adoption passing confidence devDependencies major
actions/checkout v2.4.0 -> v4.1.4 age adoption passing confidence action major
actions/setup-node v2.5.1 -> v4.0.2 age adoption passing confidence action major
eslint (source) ^8.7.0 -> ^9.0.0 age adoption passing confidence devDependencies major
eslint-config-prettier ^8.3.0 -> ^9.0.0 age adoption passing confidence devDependencies major
eslint-plugin-jest ^25.7.0 -> ^28.0.0 age adoption passing confidence devDependencies major
husky ^7.0.4 -> ^9.0.0 age adoption passing confidence devDependencies major
lint-staged ^12.1.7 -> ^15.0.0 age adoption passing confidence devDependencies major
node (source) 14 -> 20 age adoption passing confidence major
prettier (source) ^2.5.1 -> ^3.0.0 age adoption passing confidence devDependencies major
rimraf ^3.0.2 -> ^5.0.0 age adoption passing confidence devDependencies major
typescript (source) ^4.5.4 -> ^5.0.0 age adoption passing confidence devDependencies major
vite (source) ^2.7.12 -> ^5.0.0 age adoption passing confidence devDependencies major

Release Notes

vitejs/vite-plugin-react (@​vitejs/plugin-react)

v4.2.1

Compare Source

Remove generic parameter on Plugin to avoid type error with Rollup 4/Vite 5 and skipLibCheck: false.

I expect very few people to currently use this feature, but if you are extending the React plugin via api object, you can get back the typing of the hook by importing ViteReactPluginApi:

import type { Plugin } from 'vite'
import type { ViteReactPluginApi } from '@​vitejs/plugin-react'

export const somePlugin: Plugin = {
  name: 'some-plugin',
  api: {
    reactBabel: (babelConfig) => {
      babelConfig.plugins.push('some-babel-plugin')
    },
  } satisfies ViteReactPluginApi,
}

v4.2.0

Compare Source

Update peer dependency range to target Vite 5

There were no breaking change that impacted this plugin, so any combination of React plugins and Vite core version will work.

Align jsx runtime for optimized dependencies

This will only affect people using internal libraries that contains untranspiled JSX. This change aligns the optimizer with the source code and avoid issues when the published source don't have React in the scope.

Reminder: While being partially supported in Vite, publishing TS & JSX outside of internal libraries is highly discouraged.

v4.1.1

Compare Source

  • Enable retainLines to get correct line numbers for jsxDev (fix #​235)

v4.1.0

Compare Source

  • Add @types/babel__cores to dependencies (fix #​211)
  • Improve build perf when not using Babel plugins by lazy loading @babel/core #​212
  • Better invalidation message when an export is added & fix HMR for export of nullish values #​215
  • Include non-dev jsx runtime in optimizeDeps & support HMR for JS files using the non dev runtime #​224
  • The build output now contains a index.d.cts file so you don't get types errors when setting moduleResolution to node16 or nodenext in your tsconfig (we recommend using bundler which is more close to how Vite works)

v4.0.4

Compare Source

  • Fix #​198: Enable Babel if presets list is not empty

v4.0.3

Compare Source

  • Revert #​108: Remove throw when refresh runtime is loaded twice to enable usage in micro frontend apps. This was added to help fix setup usage, and this is not worth an annoying warning for others or a config parameter.

v4.0.2

Compare Source

  • Fix fast-refresh for files that are transformed into jsx (#​188)

v4.0.1

Compare Source

v4.0.0

Compare Source

This major version include a revamp of options:

  • include/exclude now allow to completely override the files processed by the plugin (#​122). This is more in line with other Rollup/Vite plugins and simplify the setup of enabling Fast Refresh for .mdx files. This can be done like this:
export default defineConfig({
  plugins: [
    { enforce: 'pre', ...mdx() },
    react({ include: /\.(mdx|js|jsx|ts|tsx)$/ }),
  ],
})

These changes also allow to apply Babel plugins on files outside Vite root (expect in node_modules), which improve support for monorepo (fix #​16).

With these changes, only the file extensions is used for filtering processed files and the query param fallback is removed.

  • fastRefresh is removed (#​122). This should be correctly activated by plugin without configuration.
  • jsxPure is removed. This is a niche use case that was just passing down the boolean to esbuild.jsxSideEffects. (#​129)

The support for React auto import whe using classic runtime is removed. This was prone to errors and added complexity for no good reason given the very wide support of automatic runtime nowadays. This migration path should be as simple as removing the runtime option from the config.

This release goes in hand with the upcoming Vite 4.3 release focusing on performances:

  • Cache plugin load (#​141)
  • Wrap dynamic import to speedup analysis (#​143)

Other notable changes:

  • Silence "use client" warning (#​144, fix #​137)
  • Fast Refresh is applied on JS files using automatic runtime (#​122, fix #​83)
  • Vite 4.2 is required as a peer dependency (#​128)
  • Avoid key collision in React refresh registration (a74dfef, fix #​116)
  • Throw when refresh runtime is loaded twice (#​108, fix #​101)
  • Don't force optimization of jsx-runtime (#​132)

v3.1.0

Compare Source

  • doc: add jsxImportSource option (38d71f6)
  • chore: bump release-scripts, typecheck package in CI, remove cache for eslint (9af763d)
  • fix: fast-refresh explain link (#​97) (6097795), closes #​97

v3.0.1

Compare Source

v3.0.0

Compare Source

v2.2.0

Compare Source

v2.1.0

Compare Source

v2.0.1

Compare Source

v2.0.0

Compare Source

v1.3.2

Compare Source

v1.3.1

Compare Source

v1.3.0

v1.2.0

Features
  • plugin-react: ensure overrides array exists before api.reactBabel hooks are called (#​6750) (104bdb5)

1.1.4 (2022-01-04)

Bug Fixes
Features
  • plugin-react: check for api.reactBabel on other plugins (#​5454) (2ab41b3)

1.1.3 (2021-12-13)

Bug Fixes

1.1.2 (2021-12-13)

Bug Fixes

1.1.1 (2021-12-07)

actions/checkout (actions/checkout)

v4.1.4

Compare Source

v4.1.3

Compare Source

What's Changed

Full Changelog: actions/checkout@v4.1.2...v4.1.3

v4.1.2

Compare Source

v4.1.1

Compare Source

What's Changed
New Contributors

Full Changelog: actions/checkout@v4.1.0...v4.1.1

v4.1.0

Compare Source

v4.0.0

Compare Source

v3.6.0

Compare Source

v3.5.3

Compare Source

v3.5.2

Compare Source

v3.5.1

Compare Source

v3.5.0

Compare Source

v3.4.0

Compare Source

v3.3.0

Compare Source

v3.2.0

Compare Source

v3.1.0

Compare Source

v3.0.2

Compare Source

v3.0.1

Compare Source

v3.0.0

Compare Source

v2.7.0

Compare Source

What's Changed

Full Changelog: actions/checkout@v2.6.0...v2.7.0

v2.6.0

Compare Source

What's Changed

Full Changelog: actions/checkout@v2.5.0...v2.6.0

v2.5.0

Compare Source

What's Changed

Full Changelog: actions/checkout@v2...v2.5.0

v2.4.2

Compare Source

What's Changed

Full Changelog: actions/checkout@v2...v2.4.2

v2.4.1

Compare Source

  • Fixed an issue where checkout failed to run in container jobs due to the new git setting safe.directory
actions/setup-node (actions/setup-node)

v4.0.2

Compare Source

What's Changed
New Contributors

Full Changelog: actions/setup-node@v4.0.1...v4.0.2

v4.0.1

Compare Source

What's Changed
New Contributors

Full Changelog: actions/setup-node@v4...v4.0.1

v4.0.0

Compare Source

What's Changed

In scope of this release we changed version of node runtime for action from node16 to node20 and updated dependencies in https://github.com/actions/setup-node/pull/866

Besides, release contains such changes as:

New Contributors

Full Changelog: actions/setup-node@v3...v4.0.0

v3.8.2

Compare Source

What's Changed

Full Changelog: actions/setup-node@v3...v3.8.2

v3.8.1

Compare Source

What's Changed

In scope of this release, the filter was removed within the cache-save step by @​dmitry-shibanov in https://github.com/actions/setup-node/pull/831. It is filtered and checked in the toolkit/cache library.

Full Changelog: actions/setup-node@v3...v3.8.1

v3.8.0

Compare Source

What's Changed
Bug fixes:
Feature implementations:
Documentation changes:
Update dependencies:
New Contributors

Full Changelog: actions/setup-node@v3...v3.8.0

v3.7.0

Compare Source

What's Changed

In scope of this release we added a logic to save an additional cache path for yarn 3 (related pull request and feature request). Moreover, we added functionality to use all the sub directories derived from cache-dependency-path input and add detect all dependencies directories to cache (related pull request and feature request).

Besides, we made such changes as:

New Contributors

Full Changelog: actions/setup-node@v3...v3.7.0

v3.6.0: Add Support for Nightly, Canary and RC builds for Node.js

Compare Source

In scope of this release we added support to download nightly, rc (https://github.com/actions/setup-node/pull/611) and canary (https://github.com/actions/setup-node/pull/619) Node.js distributions.

For nightly versions:
jobs:
  build:
    runs-on: ubuntu-latest
    name: Node sample
    steps:
      - uses: actions/checkout@v3
      - uses: actions/setup-node@v3
        with:
          node-version: '16-nightly'
      - run: npm ci
      - run: npm test
For canary versions:
jobs:
  build:
    runs-on: ubuntu-latest
    name: Node sample
    steps:
      - use

</details>

---

### Configuration

📅 **Schedule**: Branch creation - "every weekend" in timezone Europe/Berlin, 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](https://togithub.com/renovatebot/renovate/discussions) if that's undesired.

---

 - [ ] <!-- rebase-check -->If you want to rebase/retry this PR, check this box

---

This PR has been generated by [Mend Renovate](https://www.mend.io/free-developer-tools/renovate/). View repository job log [here](https://developer.mend.io/github/john-d-pelingo/vite-boilerplate).
<!--renovate-debug:eyJjcmVhdGVkSW5WZXIiOiIzMi4yMDIuNCIsInVwZGF0ZWRJblZlciI6IjM3LjMyMS4yIiwidGFyZ2V0QnJhbmNoIjoibWFzdGVyIn0=-->

@renovate renovate bot changed the title chore(deps): update dependency eslint to v8 chore(deps): update all (major) Oct 10, 2021
@renovate renovate bot force-pushed the renovate/major-all branch 2 times, most recently from 6828c5c to 886c3fd Compare November 6, 2021 22:40
@renovate renovate bot changed the title chore(deps): update all (major) chore(deps): update node.js to v16 Nov 6, 2021
@renovate renovate bot force-pushed the renovate/major-all branch 3 times, most recently from c61a8bf to a6edf66 Compare November 13, 2021 18:57
@renovate renovate bot changed the title chore(deps): update node.js to v16 chore(deps): update all (major) Nov 13, 2021
@renovate renovate bot changed the title chore(deps): update all (major) chore(deps): update node.js to v16 Jan 18, 2022
@renovate renovate bot force-pushed the renovate/major-all branch 3 times, most recently from e6fc647 to fc16bf4 Compare January 24, 2022 14:34
@renovate renovate bot changed the title chore(deps): update node.js to v16 chore(deps): update all (major) Jan 24, 2022
@renovate renovate bot force-pushed the renovate/major-all branch 2 times, most recently from d3ed837 to ea65adb Compare March 1, 2022 19:11
@renovate renovate bot force-pushed the renovate/major-all branch 4 times, most recently from 9624fda to 355eff7 Compare August 17, 2023 15:30
@renovate renovate bot force-pushed the renovate/major-all branch 2 times, most recently from fec3506 to e65ee35 Compare August 24, 2023 16:15
@renovate renovate bot force-pushed the renovate/major-all branch 2 times, most recently from 35e7c72 to 5b83415 Compare October 17, 2023 17:17
@renovate renovate bot force-pushed the renovate/major-all branch 3 times, most recently from c5072f8 to 55ac8c7 Compare October 24, 2023 01:28
@renovate renovate bot force-pushed the renovate/major-all branch 2 times, most recently from 380f446 to b1f374a Compare March 12, 2024 19:49
@renovate renovate bot force-pushed the renovate/major-all branch 3 times, most recently from 8a2af30 to 475c6bd Compare April 10, 2024 19:40
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