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 #1192

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

Update all #1192

wants to merge 1 commit into from

Conversation

renovate[bot]
Copy link
Contributor

@renovate renovate bot commented Mar 18, 2024

This PR contains the following updates:

Package Change Age Adoption Passing Confidence Type Update
@rollup/plugin-replace (source) 5.0.5 -> 5.0.7 age adoption passing confidence devDependencies patch
@types/node (source) 18.19.22 -> 18.19.70 age adoption passing confidence devDependencies patch
acorn 8.11.3 -> 8.14.0 age adoption passing confidence devDependencies minor
acorn-walk 8.3.2 -> 8.3.4 age adoption passing confidence devDependencies patch
babel-loader 9.1.3 -> 9.2.1 age adoption passing confidence devDependencies minor
css-loader 6.10.0 -> 6.11.0 age adoption passing confidence devDependencies minor
magic-string 0.30.8 -> 0.30.17 age adoption passing confidence devDependencies patch
mini-css-extract-plugin 2.8.1 -> 2.9.2 age adoption passing confidence devDependencies minor
node (source) 18.19.1 -> 18.20.5 age adoption passing confidence volta minor
preact (source) 10.19.6 -> 10.25.4 age adoption passing confidence dependencies minor
prettier (source) 3.2.5 -> 3.4.2 age adoption passing confidence devDependencies minor
rimraf 5.0.5 -> 5.0.10 age adoption passing confidence devDependencies patch
rollup-plugin-terser 7.0.2 -> 0.1.0 devDependencies replacement
typescript (source) 5.4.2 -> 5.7.3 age adoption passing confidence devDependencies minor

This is a special PR that replaces rollup-plugin-terser with the community suggested minimal stable replacement version.


Release Notes

rollup/plugins (@​rollup/plugin-replace)

v5.0.7

2024-06-05

Bugfixes
  • fix: add missing sourceMap documentation (#​1698)

v5.0.6

2024-06-05

Bugfixes
  • fix: ternary operator replacement (#​1712)
acornjs/acorn (acorn)

v8.14.0

Compare Source

v8.13.0

Compare Source

v8.12.1

Compare Source

v8.12.0

Compare Source

babel/babel-loader (babel-loader)

v9.2.1

Compare Source

v9.2.0

Compare Source

webpack-contrib/css-loader (css-loader)

v6.11.0

Compare Source

Features
Bug Fixes
rich-harris/magic-string (magic-string)

v0.30.17

Compare Source

Bug Fixes
  • remove problematic type: module (092697b)

v0.30.16

Compare Source

Bug Fixes
  • missing mapping after a line break with hires: 'boundary' (#​298) (24cb8ea)
Features

v0.30.15

Compare Source

Features

v0.30.14

Compare Source

Features

v0.30.13

Compare Source

Features

v0.30.12

Compare Source

Performance Improvements

v0.30.11

Compare Source

Bug Fixes
  • not use negative indices for remove in empty string (#​281) (5c1cba0)

v0.30.10

Compare Source

Bug Fixes

v0.30.9

Compare Source

Performance Improvements
  • avoid create uncessary overrides for replace (a1b857c)
webpack-contrib/mini-css-extract-plugin (mini-css-extract-plugin)

v2.9.2

Compare Source

v2.9.1

Compare Source

v2.9.0

Compare Source

Features
  • add support for link preload/prefetch (#​1043) (ee25e51)
  • added the defaultExport option to generate default and named export together (#​1084) (74ae781)
Bug Fixes
2.8.1 (2024-02-27)
Bug Fixes
  • add nonce if __webpack_nonce__ has been defined (c7f0aee)
nodejs/node (node)

v18.20.5: 2024-11-12, Version 18.20.5 'Hydrogen' (LTS), @​aduh95

Compare Source

Notable Changes
  • [ac37e554a5] - esm: mark import attributes and JSON module as stable (Nicolò Ribaudo) #​55333
Commits

v18.20.4

Compare Source

v18.20.3: 2024-05-21, Version 18.20.3 'Hydrogen' (LTS), @​richardlau

Compare Source

Notable Changes

This release fixes a regression introduced in Node.js 18.19.0 where http.server.close() was incorrectly closing idle connections.

A fix has also been included for compiling Node.js from source with newer versions of Clang.

The list of keys used to sign releases has been synchronized with the current list from the main branch.

Updated dependencies
  • acorn updated to 8.11.3.
  • acorn-walk updated to 8.3.2.
  • ada updated to 2.7.8.
  • c-ares updated to 1.28.1.
  • corepack updated to 0.28.0.
  • nghttp2 updated to 1.61.0.
  • ngtcp2 updated to 1.3.0.
  • npm updated to 10.7.0. Includes a fix from [email protected] to limit the number of open connections npm/cli#7324.
  • simdutf updated to 5.2.4.
  • zlib updated to 1.3.0.1-motley-7d77fb7.
Commits

v18.20.2: 2024-04-10, Version 18.20.2 'Hydrogen' (LTS), @​RafaelGSS

Compare Source

This is a security release.

Notable Changes
  • CVE-2024-27980 - Command injection via args parameter of child_process.spawn without shell option enabled on Windows
Commits

v18.20.1

Compare Source

v18.20.0

Compare Source

preactjs/preact (preact)

v10.25.4

Compare Source

Types

Fixes

v10.25.3

Compare Source

Fixes

Types

v10.25.2

Compare Source

Notable
Revert unkeyed no-search (#​4604, thanks @​JoviDeCroock)

We noticed that there's a few unpleasant scenario's that could form from this change, we wanted to be on the safe side here and revert this for the time being. if you run into issues with swapping components placement wise in a list use the key property.

Fixes
Types
Performance
Maintenance

v10.25.1

Compare Source

Fixes

Types

Maintenance

v10.25.0

Compare Source

Features

Move per-element type interfaces into core and more strictly type IntrinsicElements (#​4546, thanks @​rschristian)

This adds per-element typings for every DOM-node type, this means that our types might become slightly stricter when you are using DOM attributes/properties where they are not allowed, an example of this might be <div src="x" />.

If you notice any issues when upgrading tell us about them, we can evaluate whether we have missed a case.

Recreate unkeyed functional components when they change position. (#​4550, thanks @​JoviDeCroock)

This is a long time bugfix, when we have elements that look like

return (
	{condition ? <Element /> : null}
	{condition ? null : <Element />
)

We would reuse the state of the first VNode to render the second one when the condition switches. When you are using key, this issue was not present.

Support { handleEvent() {} } object interface as a listener (#​4538, thanks @​lilnasy)

We've added support for attaching object/class event-handlers

let handler = {
	onclick,
	handleEvent() {
		this.onclick()
	}
}

<div onClick={handler} />

Fixes

Maintenance

v10.24.3

Compare Source

Fixes
Performance
  • Context consumer unmounting perf (#​4526, thanks [@​JoviDeCrooc

Configuration

📅 Schedule: Branch creation - "* 0-3 * * 1" (UTC), Automerge - At any time (no schedule defined).

🚦 Automerge: Enabled.

Rebasing: Whenever PR is behind base branch, 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 was generated by Mend Renovate. View the repository job log.

@renovate renovate bot force-pushed the renovate/all branch 7 times, most recently from d47d0a4 to 9d87224 Compare March 23, 2024 07:46
@renovate renovate bot force-pushed the renovate/all branch 2 times, most recently from ca179d9 to 30fd0cc Compare March 30, 2024 08:49
@renovate renovate bot force-pushed the renovate/all branch 9 times, most recently from a8ea0d0 to 00b47a4 Compare April 9, 2024 15:13
@renovate renovate bot force-pushed the renovate/all branch 3 times, most recently from f16b682 to 8a19a4c Compare April 16, 2024 16:46
@renovate renovate bot force-pushed the renovate/all branch 2 times, most recently from 31b3907 to 31f0a96 Compare May 6, 2024 19:00
@renovate renovate bot force-pushed the renovate/all branch 3 times, most recently from d4eb6db to ef1e7c3 Compare May 12, 2024 05:00
@renovate renovate bot force-pushed the renovate/all branch 2 times, most recently from bb82a48 to bfdace3 Compare May 21, 2024 17:21
@renovate renovate bot force-pushed the renovate/all branch from bfdace3 to 8cc8a6b Compare May 24, 2024 18:16
@renovate renovate bot force-pushed the renovate/all branch 4 times, most recently from 5757af1 to 99f7da0 Compare October 28, 2024 22:32
@renovate renovate bot force-pushed the renovate/all branch 5 times, most recently from e1a3631 to 1ca9177 Compare November 3, 2024 04:22
@renovate renovate bot force-pushed the renovate/all branch 2 times, most recently from 5d4bcd1 to a9303ec Compare November 18, 2024 22:09
@renovate renovate bot force-pushed the renovate/all branch 8 times, most recently from 4cda519 to 9f2827b Compare November 28, 2024 08:21
@renovate renovate bot force-pushed the renovate/all branch 2 times, most recently from 9ff5484 to 2341009 Compare December 4, 2024 09:59
@renovate renovate bot force-pushed the renovate/all branch 4 times, most recently from 6ae8a56 to 4e895db Compare December 16, 2024 07:06
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.

0 participants