Skip to content
This repository has been archived by the owner on Apr 8, 2024. It is now read-only.

chore: update npm dependencies - autoclosed #461

Closed
wants to merge 1 commit into from
Closed

Conversation

renovate[bot]
Copy link
Contributor

@renovate renovate bot commented Aug 4, 2023

Mend Renovate

This PR contains the following updates:

Package Change Age Adoption Passing Confidence Type Update
@testing-library/jest-dom 5.16.5 -> 6.1.5 age adoption passing confidence devDependencies major
@testing-library/react 13.4.0 -> 14.1.2 age adoption passing confidence devDependencies major
@testing-library/user-event 14.4.3 -> 14.5.1 age adoption passing confidence devDependencies minor
@types/leaflet (source) 1.9.0 -> 1.9.8 age adoption passing confidence devDependencies patch
@types/lodash (source) 4.14.191 -> 4.14.202 age adoption passing confidence devDependencies patch
@types/lodash-es (source) 4.17.7 -> 4.17.12 age adoption passing confidence devDependencies patch
@types/node (source) 18.11.18 -> 20.10.4 age adoption passing confidence devDependencies major
@types/papaparse (source) 5.3.7 -> 5.3.14 age adoption passing confidence devDependencies patch
@types/react (source) 18.0.26 -> 18.2.42 age adoption passing confidence devDependencies minor
@types/react-dom (source) 18.0.10 -> 18.2.17 age adoption passing confidence devDependencies minor
@types/remarkable (source) 2.0.3 -> 2.0.8 age adoption passing confidence devDependencies patch
@types/styled-components (source) 5.1.26 -> 5.1.34 age adoption passing confidence devDependencies patch
@types/tinycolor2 (source) ^1.4.3 -> ^1.4.6 age adoption passing confidence devDependencies patch
@vitejs/plugin-react (source) 3.0.1 -> 4.2.1 age adoption passing confidence devDependencies major
antd (source) 4.24.7 -> 5.12.1 age adoption passing confidence devDependencies major
archiver 5.3.1 -> 6.0.1 age adoption passing confidence devDependencies major
del-cli 5.0.0 -> 5.1.0 age adoption passing confidence devDependencies minor
eslint (source) 8.31.0 -> 8.55.0 age adoption passing confidence devDependencies minor
eslint-config-reearth 0.2.1 -> 0.3.0 age adoption passing confidence devDependencies minor
jsdom 21.0.0 -> 23.0.1 age adoption passing confidence devDependencies major
leaflet (source) 1.9.3 -> 1.9.4 age adoption passing confidence dependencies patch
less (source) 4.1.3 -> 4.2.0 age adoption passing confidence devDependencies minor
less-loader 11.1.0 -> 11.1.3 age adoption passing confidence devDependencies patch
msw (source) 0.49.2 -> 2.0.10 age adoption passing confidence devDependencies major
node >=16 -> >=20.10.0 age adoption passing confidence engines major
papaparse (source) 5.3.2 -> 5.4.1 age adoption passing confidence dependencies minor
prettier (source) 2.8.2 -> 3.1.0 age adoption passing confidence devDependencies major
rollup-plugin-visualizer 5.9.0 -> 5.10.0 age adoption passing confidence devDependencies minor
styled-components (source) 5.3.6 -> 6.1.1 age adoption passing confidence devDependencies major
typescript (source) 4.9.4 -> 5.3.3 age adoption passing confidence devDependencies major
typescript-styled-plugin 0.18.2 -> 0.18.3 age adoption passing confidence devDependencies patch
vite (source) 4.0.5 -> 5.0.6 age adoption passing confidence devDependencies major
vite-plugin-dts 1.7.1 -> 3.6.4 age adoption passing confidence devDependencies major
vite-plugin-singlefile (source) 0.13.2 -> 0.13.5 age adoption passing confidence devDependencies patch
vite-plugin-svgr 2.4.0 -> 4.2.0 age adoption passing confidence devDependencies major
vite-tsconfig-paths 4.0.5 -> 4.2.1 age adoption passing confidence devDependencies minor
vitest (source) 0.27.0 -> 1.0.2 age adoption passing confidence devDependencies major

Release Notes

testing-library/jest-dom (@​testing-library/jest-dom)

v6.1.5

Compare Source

Bug Fixes

v6.1.4

Compare Source

Bug Fixes
  • upgrade @adobe/css-tools to 4.3.1 to address vulnerability (#​532) (44f1eab)

v6.1.3

Compare Source

Bug Fixes

v6.1.2

Compare Source

Bug Fixes

v6.1.1

Compare Source

Bug Fixes

v6.1.0

Compare Source

Features

v6.0.1

Compare Source

Bug Fixes
  • matchers type is making the global expect unsafe (#​513) (bdb34f1)

v6.0.0

Compare Source

Features
BREAKING CHANGES
  • Removes the extend-expect script. Users should use
    the default import path or one of the new test platform-specific
    paths to automatically extend the appropriate "expect" instance.

extend-expect was not documented in the Readme, so this change should
have minimal impact.

Users can now use the following import paths to automatically extend
"expect" for their chosen test platform:

For example:

import '@​testing-library/jest-dom/jest-globals'

Importing from one of the above paths will augment the appropriate
matcher interface for the given test platform, assuming the import
is done in a .ts file that is included in the user's tsconfig.json.

It's also (still) possible to import the matchers directly without
side effects:

import * as matchers from '@​testing-library/jest-dom/matchers'

  • Update kcd-scripts
  • Drop node < 14

v5.17.0

Compare Source

Features
  • New toHaveAccessibleErrorMessage better implementing the spec, deprecate toHaveErrorMessage (#​503) (d717c66)
testing-library/react-testing-library (@​testing-library/react)

v14.1.2

Compare Source

Bug Fixes

v14.1.1

Compare Source

Bug Fixes

v14.1.0

Compare Source

Features

v14.0.0

Compare Source

Bug Fixes
Features
BREAKING CHANGES
testing-library/user-event (@​testing-library/user-event)

v14.5.1

Compare Source

Bug Fixes

v14.5.0

Compare Source

Bug Fixes
Features
  • types: Add additional type exports for UserEvent & Options (#​1112) (da00e8d)
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 '@&#8203;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
ant-design/ant-design (antd)

v5.12.1

Compare Source

  • 🐞 MISC: Fix missing color less variables converted from token. #​46250
  • 🐞 Fix Notification title overlaps with the close icon when it is too long。 #​46211 @​zh-lx

  • 🐞 MISC: 修复 token 转换 less 变量丢失的问题。#​46250
  • 🐞 修复 Notification 标题太长时会与关闭图标重叠的问题。#​46211 @​zh-lx

v5.12.0

Compare Source


v5.11.5

Compare Source


v5.11.4

Compare Source

  • 🐞 Fix where Image sets z-index abnormally in nested Modal. #​46035
  • 🐞 Fix Button that disabled link button should not have navigate options when right click. #​46021
  • Card
    • 🛠 Refactor the Card internal method getAction into a function component. #​46032
    • 🐞 Fix the problem of Card warning invalid annotation in Rollup. #​46024
  • TypeScript
    • 🤖 Export the type definition for the required property of the Radio and Checkbox components. #​46028 @​nnmax

  • 🐞 修复 Image 在嵌套 Modal 中设置 z-index 异常的问题。#​46035
  • 🐞 修复 Button 禁用的链接按钮右键点击时会有打开新链接选项的问题。#​46021
  • Card
    • 🛠 把 Card 内部方法 getAction 重构为函数组件。#​46032
    • 🐞 解决 Card 在 Rollup 中会警告 invalid annotation 的问题。#​46024
  • TypeScript
    • 🤖 导出 Radio 和 Checkbox 组件的 required 属性的类型定义。#​46028 @​nnmax

v5.11.3

Compare Source

  • 🐞 Fix Modal static method create zIndex too high will cover other popup content. #​46012
  • Image
  • 🐞 Fix Collapse header cursor style. #​45994
  • 🐞 Fix ColorPicker not support Form disabled config. #​45978 @​RedJue
  • 🐞 Fix Typography.Text ellipsis.tooltip cannot open under Layout component. [#&#8203

Configuration

📅 Schedule: Branch creation - "before 3:00 am on the 4th day of the month" (UTC), 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.

@renovate renovate bot force-pushed the renovate/npm branch 11 times, most recently from b769287 to f462bb7 Compare August 9, 2023 22:45
@renovate renovate bot force-pushed the renovate/npm branch 10 times, most recently from 6098e07 to 4a4ddec Compare August 18, 2023 07:42
@renovate renovate bot force-pushed the renovate/npm branch 9 times, most recently from 2cea30a to 07199e3 Compare August 23, 2023 23:04
@renovate renovate bot force-pushed the renovate/npm branch 23 times, most recently from 96d3382 to d4d51d3 Compare December 7, 2023 03:16
@renovate renovate bot force-pushed the renovate/npm branch 2 times, most recently from 2ca9560 to 435aab0 Compare December 7, 2023 10:06
@renovate renovate bot changed the title chore: update npm dependencies chore: update npm dependencies - autoclosed Dec 7, 2023
@renovate renovate bot closed this Dec 7, 2023
@renovate renovate bot deleted the renovate/npm branch December 7, 2023 13:58
Sign up for free to subscribe to this conversation on GitHub. Already have an account? Sign in.
Labels
None yet
Projects
None yet
Development

Successfully merging this pull request may close these issues.

0 participants