Skip to content

Bump the dev-webpack group with 8 updates#312

Closed
dependabot[bot] wants to merge 109 commits intotrunkfrom
dependabot/npm_and_yarn/dev-webpack-c8dd8762c2
Closed

Bump the dev-webpack group with 8 updates#312
dependabot[bot] wants to merge 109 commits intotrunkfrom
dependabot/npm_and_yarn/dev-webpack-c8dd8762c2

Conversation

@dependabot
Copy link

@dependabot dependabot bot commented on behalf of github Feb 4, 2025

Bumps the dev-webpack group with 8 updates:

Package From To
@pmmmwh/react-refresh-webpack-plugin 0.5.14 0.5.15
copy-webpack-plugin 12.0.1 12.0.2
grunt-webpack 6.0.0 7.0.0
react-refresh 0.14.0 0.16.0
source-map-loader 4.0.2 5.0.0
terser-webpack-plugin 5.3.10 5.3.11
webpack 5.97.0 5.97.1
webpack-livereload-plugin 3.0.1 3.0.2

Updates @pmmmwh/react-refresh-webpack-plugin from 0.5.14 to 0.5.15

Release notes

Sourced from @​pmmmwh/react-refresh-webpack-plugin's releases.

v0.5.15

0.5.15 (3 Jun 2024)

Fixes

  • Fixed wrong import in error overlay for ansi-html (#853)
Changelog

Sourced from @​pmmmwh/react-refresh-webpack-plugin's changelog.

0.5.15 (3 Jun 2024)

Fixes

  • Fixed wrong import in error overlay for ansi-html (#853)
Commits

Updates copy-webpack-plugin from 12.0.1 to 12.0.2

Release notes

Sourced from copy-webpack-plugin's releases.

v12.0.2

12.0.2 (2024-01-17)

Bug Fixes

Changelog

Sourced from copy-webpack-plugin's changelog.

12.0.2 (2024-01-17)

Bug Fixes

Commits

Updates grunt-webpack from 6.0.0 to 7.0.0

Release notes

Sourced from grunt-webpack's releases.

v7.0.0

7.0.0 (2024-09-03)

Features

  • drop support for Node.js 16 (21d90dc)
  • remove special handling of cache configuration (68d94b2)
  • replace lodash with webpack-merge (9ee2cfc)

BREAKING CHANGES

  • Node.js 18.19.0 is the minimum supported version.
Commits
  • 3c154ab chore: update dev dependencies
  • 9ee2cfc feat: replace lodash with webpack-merge
  • 68d94b2 feat: remove special handling of cache configuration
  • 21d90dc feat!: drop support for Node.js 16
  • a6fd752 chore: pdate pnpm
  • a56c13c chore(deps-dev): bump webpack from 5.88.2 to 5.94.0
  • f600acd chore(deps-dev): bump ws from 8.13.0 to 8.17.1
  • 444fda5 chore(deps-dev): bump braces from 3.0.2 to 3.0.3
  • 875bf83 chore(deps-dev): bump webpack-dev-middleware from 5.3.3 to 5.3.4
  • 080fa7d chore(deps-dev): bump express from 4.18.2 to 4.19.2
  • Additional commits viewable in compare view

Updates react-refresh from 0.14.0 to 0.16.0

Release notes

Sourced from react-refresh's releases.

0.14.10 (October 14, 2020)

React

v0.14.8

React

  • Fixed memory leak when rendering on the server

v0.14.7

React

  • Fixed bug with <option> tags when using dangerouslySetInnerHTML
  • Fixed memory leak in synthetic event system

React TestUtils Add-on

  • Fixed bug with calling setState in componentWillMount when using shallow rendering

v0.14.6

React

  • Updated fbjs dependency to pick up change affecting handling of undefined document.

v0.14.5

React

  • More minor internal changes for better compatibility with React Native

v0.14.4

React

  • Minor internal changes for better compatibility with React Native

React DOM

  • The autoCapitalize and autoCorrect props are now set as attributes in the DOM instead of properties to improve cross-browser compatibility
  • Fixed bug with controlled <select> elements not handling updates properly

React Perf Add-on

  • Some DOM operation names have been updated for clarity in the output of .printDOM()

v0.14.3

React DOM

  • Added support for nonce attribute for <script> and <style> elements
  • Added support for reversed attribute for <ol> elements

React TestUtils Add-on

  • Fixed bug with shallow rendering and function refs

React CSSTransitionGroup Add-on

  • Fixed bug resulting in timeouts firing incorrectly when mounting and unmounting rapidly

React on Bower

  • Added react-dom-server.js to expose renderToString and renderToStaticMarkup for usage in the browser

... (truncated)

Changelog

Sourced from react-refresh's changelog.

19.0.0 (December 5, 2024)

Below is a list of all new features, APIs, deprecations, and breaking changes. Read React 19 release post and React 19 upgrade guide for more information.

Note: To help make the upgrade to React 19 easier, we’ve published a react@18.3 release that is identical to 18.2 but adds warnings for deprecated APIs and other changes that are needed for React 19. We recommend upgrading to React 18.3.1 first to help identify any issues before upgrading to React 19.

New Features

React

  • Actions: startTransition can now accept async functions. Functions passed to startTransition are called “Actions”. A given Transition can include one or more Actions which update state in the background and update the UI with one commit. In addition to updating state, Actions can now perform side effects including async requests, and the Action will wait for the work to finish before finishing the Transition. This feature allows Transitions to include side effects like fetch() in the pending state, and provides support for error handling, and optimistic updates.
  • useActionState: is a new hook to order Actions inside of a Transition with access to the state of the action, and the pending state. It accepts a reducer that can call Actions, and the initial state used for first render. It also accepts an optional string that is used if the action is passed to a form action prop to support progressive enhancement in forms.
  • useOptimistic: is a new hook to update state while a Transition is in progress. It returns the state, and a set function that can be called inside a transition to “optimistically” update the state to expected final value immediately while the Transition completes in the background. When the transition finishes, the state is updated to the new value.
  • use: is a new API that allows reading resources in render. In React 19, use accepts a promise or Context. If provided a promise, use will suspend until a value is resolved. use can only be used in render but can be called conditionally.
  • ref as a prop: Refs can now be used as props, removing the need for forwardRef.
  • Suspense sibling pre-warming: When a component suspends, React will immediately commit the fallback of the nearest Suspense boundary, without waiting for the entire sibling tree to render. After the fallback commits, React will schedule another render for the suspended siblings to “pre-warm” lazy requests.

React DOM Client

  • <form> action prop: Form Actions allow you to manage forms automatically and integrate with useFormStatus. When a <form> action succeeds, React will automatically reset the form for uncontrolled components. The form can be reset manually with the new requestFormReset API.
  • <button> and <input> formAction prop: Actions can be passed to the formAction prop to configure form submission behavior. This allows using different Actions depending on the input.
  • useFormStatus: is a new hook that provides the status of the parent <form> action, as if the form was a Context provider. The hook returns the values: pending, data, method, and action.
  • Support for Document Metadata: We’ve added support for rendering document metadata tags in components natively. React will automatically hoist them into the <head> section of the document.
  • Support for Stylesheets: React 19 will ensure stylesheets are inserted into the <head> on the client before revealing the content of a Suspense boundary that depends on that stylesheet.
  • Support for async scripts: Async scripts can be rendered anywhere in the component tree and React will handle ordering and deduplication.
  • Support for preloading resources: React 19 ships with preinit, preload, prefetchDNS, and preconnect APIs to optimize initial page loads by moving discovery of additional resources like fonts out of stylesheet loading. They can also be used to prefetch resources used by an anticipated navigation.

React DOM Server

  • Added prerender and prerenderToNodeStream APIs for static site generation. They are designed to work with streaming environments like Node.js Streams and Web Streams. Unlike renderToString, they wait for data to load for HTML generation.

React Server Components

  • RSC features such as directives, server components, and server functions are now stable. This means libraries that ship with Server Components can now target React 19 as a peer dependency with a react-server export condition for use in frameworks that support the Full-stack React Architecture. The underlying APIs used to implement a React Server Components bundler or framework do not follow semver and may break between minors in React 19.x. See docs for how to support React Server Components.

Deprecations

  • Deprecated: element.ref access: React 19 supports ref as a prop, so we’re deprecating element.ref in favor of element.props.ref. Accessing will result in a warning.
  • react-test-renderer: In React 19, react-test-renderer logs a deprecation warning and has switched to concurrent rendering for web usage. We recommend migrating your tests to @​testing-library/react or @​testing-library/react-native

Breaking Changes

React 19 brings in a number of breaking changes, including the removals of long-deprecated APIs. We recommend first upgrading to 18.3.1, where we've added additional deprecation warnings. Check out the upgrade guide for more details and guidance on codemodding.

React

  • New JSX Transform is now required: We introduced a new JSX transform in 2020 to improve bundle size and use JSX without importing React. In React 19, we’re adding additional improvements like using ref as a prop and JSX speed improvements that require the new transform.
  • Errors in render are not re-thrown: Errors that are not caught by an Error Boundary are now reported to window.reportError. Errors that are caught by an Error Boundary are reported to console.error. We’ve introduced onUncaughtError and onCaughtError methods to createRoot and hydrateRoot to customize this error handling.
  • Removed: propTypes: Using propTypes will now be silently ignored. If required, we recommend migrating to TypeScript or another type-checking solution.
  • Removed: defaultProps for functions: ES6 default parameters can be used in place. Class components continue to support defaultProps since there is no ES6 alternative.

... (truncated)

Commits
Maintainer changes

This version was pushed to npm by react-bot, a new releaser for react-refresh since your current version.


Updates source-map-loader from 4.0.2 to 5.0.0

Release notes

Sourced from source-map-loader's releases.

v5.0.0

5.0.0 (2024-01-15)

⚠ BREAKING CHANGES

  • minimum supported Node.js version is 18.12.0 (#230) (7fcab17)
Changelog

Sourced from source-map-loader's changelog.

5.0.0 (2024-01-15)

⚠ BREAKING CHANGES

  • minimum supported Node.js version is 18.12.0 (#230) (7fcab17)
Commits

Updates terser-webpack-plugin from 5.3.10 to 5.3.11

Release notes

Sourced from terser-webpack-plugin's releases.

v5.3.11

5.3.11 (2024-12-13)

Bug Fixes

  • avoid the deprecation message (0341ad1)
Changelog

Sourced from terser-webpack-plugin's changelog.

5.3.11 (2024-12-13)

Bug Fixes

  • avoid the deprecation message (0341ad1)
Commits

Updates webpack from 5.97.0 to 5.97.1

Release notes

Sourced from webpack's releases.

v5.97.1

Bug Fixes

  • Performance regression
  • Sub define key should't be renamed when it's a defined variable
Commits

Updates webpack-livereload-plugin from 3.0.1 to 3.0.2

Changelog

Sourced from webpack-livereload-plugin's changelog.

3.0.2 (2021-08-04)

Commits
  • d151ce9 chore(release): 3.0.2
  • 1e20ac2 Bugfix: useSourceHash (#28) Generate source hash on emit because afterEmit ...
  • See full diff in compare view

Dependabot will resolve any conflicts with this PR as long as you don't alter it yourself. You can also trigger a rebase manually by commenting @dependabot rebase.


Dependabot commands and options

You can trigger Dependabot actions by commenting on this PR:

  • @dependabot rebase will rebase this PR
  • @dependabot recreate will recreate this PR, overwriting any edits that have been made to it
  • @dependabot merge will merge this PR after your CI passes on it
  • @dependabot squash and merge will squash and merge this PR after your CI passes on it
  • @dependabot cancel merge will cancel a previously requested merge and block automerging
  • @dependabot reopen will reopen this PR if it is closed
  • @dependabot close will close this PR and stop Dependabot recreating it. You can achieve the same result by closing it manually
  • @dependabot show <dependency name> ignore conditions will show all of the ignore conditions of the specified dependency
  • @dependabot ignore <dependency name> major version will close this group update PR and stop Dependabot creating any more for the specific dependency's major version (unless you unignore this specific dependency's major version or upgrade to it yourself)
  • @dependabot ignore <dependency name> minor version will close this group update PR and stop Dependabot creating any more for the specific dependency's minor version (unless you unignore this specific dependency's minor version or upgrade to it yourself)
  • @dependabot ignore <dependency name> will close this group update PR and stop Dependabot creating any more for the specific dependency (unless you unignore this specific dependency or upgrade to it yourself)
  • @dependabot unignore <dependency name> will remove all of the ignore conditions of the specified dependency
  • @dependabot unignore <dependency name> <ignore condition> will remove the ignore condition of the specified dependency and ignore conditions

@dependabot dependabot bot added dependencies Pull requests that update a dependency file javascript Pull requests that update Javascript code labels Feb 4, 2025
@dependabot dependabot bot force-pushed the dependabot/npm_and_yarn/dev-webpack-c8dd8762c2 branch from 502e3e5 to 76f8187 Compare February 4, 2025 19:17
desrosj and others added 3 commits February 4, 2025 15:01
Bumps the dev-webpack group with 8 updates:

| Package | From | To |
| --- | --- | --- |
| [@pmmmwh/react-refresh-webpack-plugin](https://github.com/pmmmwh/react-refresh-webpack-plugin) | `0.5.14` | `0.5.15` |
| [copy-webpack-plugin](https://github.com/webpack-contrib/copy-webpack-plugin) | `12.0.1` | `12.0.2` |
| [grunt-webpack](https://github.com/webpack-contrib/grunt-webpack) | `6.0.0` | `7.0.0` |
| [react-refresh](https://github.com/facebook/react/tree/HEAD/packages/react) | `0.14.0` | `0.16.0` |
| [source-map-loader](https://github.com/webpack-contrib/source-map-loader) | `4.0.2` | `5.0.0` |
| [terser-webpack-plugin](https://github.com/webpack-contrib/terser-webpack-plugin) | `5.3.10` | `5.3.11` |
| [webpack](https://github.com/webpack/webpack) | `5.97.0` | `5.97.1` |
| [webpack-livereload-plugin](https://github.com/statianzo/webpack-livereload-plugin) | `3.0.1` | `3.0.2` |


Updates `@pmmmwh/react-refresh-webpack-plugin` from 0.5.14 to 0.5.15
- [Release notes](https://github.com/pmmmwh/react-refresh-webpack-plugin/releases)
- [Changelog](https://github.com/pmmmwh/react-refresh-webpack-plugin/blob/main/CHANGELOG.md)
- [Commits](pmmmwh/react-refresh-webpack-plugin@v0.5.14...v0.5.15)

Updates `copy-webpack-plugin` from 12.0.1 to 12.0.2
- [Release notes](https://github.com/webpack-contrib/copy-webpack-plugin/releases)
- [Changelog](https://github.com/webpack-contrib/copy-webpack-plugin/blob/master/CHANGELOG.md)
- [Commits](webpack/copy-webpack-plugin@v12.0.1...v12.0.2)

Updates `grunt-webpack` from 6.0.0 to 7.0.0
- [Release notes](https://github.com/webpack-contrib/grunt-webpack/releases)
- [Commits](danez/grunt-webpack@v6.0.0...v7.0.0)

Updates `react-refresh` from 0.14.0 to 0.16.0
- [Release notes](https://github.com/facebook/react/releases)
- [Changelog](https://github.com/facebook/react/blob/main/CHANGELOG.md)
- [Commits](https://github.com/facebook/react/commits/HEAD/packages/react)

Updates `source-map-loader` from 4.0.2 to 5.0.0
- [Release notes](https://github.com/webpack-contrib/source-map-loader/releases)
- [Changelog](https://github.com/webpack-contrib/source-map-loader/blob/master/CHANGELOG.md)
- [Commits](webpack-contrib/source-map-loader@v4.0.2...v5.0.0)

Updates `terser-webpack-plugin` from 5.3.10 to 5.3.11
- [Release notes](https://github.com/webpack-contrib/terser-webpack-plugin/releases)
- [Changelog](https://github.com/webpack-contrib/terser-webpack-plugin/blob/master/CHANGELOG.md)
- [Commits](webpack/terser-webpack-plugin@v5.3.10...v5.3.11)

Updates `webpack` from 5.97.0 to 5.97.1
- [Release notes](https://github.com/webpack/webpack/releases)
- [Commits](webpack/webpack@v5.97.0...v5.97.1)

Updates `webpack-livereload-plugin` from 3.0.1 to 3.0.2
- [Changelog](https://github.com/statianzo/webpack-livereload-plugin/blob/master/CHANGELOG.md)
- [Commits](statianzo/webpack-livereload-plugin@v3.0.1...v3.0.2)

---
updated-dependencies:
- dependency-name: "@pmmmwh/react-refresh-webpack-plugin"
  dependency-type: direct:development
  update-type: version-update:semver-patch
  dependency-group: dev-webpack
- dependency-name: copy-webpack-plugin
  dependency-type: direct:development
  update-type: version-update:semver-patch
  dependency-group: dev-webpack
- dependency-name: grunt-webpack
  dependency-type: direct:development
  update-type: version-update:semver-major
  dependency-group: dev-webpack
- dependency-name: react-refresh
  dependency-type: direct:development
  update-type: version-update:semver-minor
  dependency-group: dev-webpack
- dependency-name: source-map-loader
  dependency-type: direct:development
  update-type: version-update:semver-major
  dependency-group: dev-webpack
- dependency-name: terser-webpack-plugin
  dependency-type: direct:development
  update-type: version-update:semver-patch
  dependency-group: dev-webpack
- dependency-name: webpack
  dependency-type: direct:development
  update-type: version-update:semver-patch
  dependency-group: dev-webpack
- dependency-name: webpack-livereload-plugin
  dependency-type: direct:development
  update-type: version-update:semver-patch
  dependency-group: dev-webpack
...

Signed-off-by: dependabot[bot] <support@github.com>
@dependabot dependabot bot force-pushed the dependabot/npm_and_yarn/dev-webpack-c8dd8762c2 branch from b60ca4a to 7bde1ee Compare February 5, 2025 03:40
@dependabot @github
Copy link
Author

dependabot bot commented on behalf of github Feb 5, 2025

This pull request was built based on a group rule. Closing it will not ignore any of these versions in future pull requests.

To ignore these dependencies, configure ignore rules in dependabot.yml

@dependabot dependabot bot deleted the dependabot/npm_and_yarn/dev-webpack-c8dd8762c2 branch February 5, 2025 14:17
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment

Labels

dependencies Pull requests that update a dependency file javascript Pull requests that update Javascript code

Projects

None yet

Development

Successfully merging this pull request may close these issues.

1 participant

Comments