debezium-ui
debezium-ui copied to clipboard
Update all (major)
This PR contains the following updates:
Package | Change | Age | Adoption | Passing | Confidence | Type | Update |
---|---|---|---|---|---|---|---|
@redhat-cloud-services/eslint-config-redhat-cloud-services | 1.3.0 -> 2.0.4 |
devDependencies | major | ||||
@types/victory | 33.1.5 -> 35.0.0 |
devDependencies | major | ||||
copy-webpack-plugin | 11.0.0 -> 12.0.2 |
devDependencies | major | ||||
css-loader | 6.10.0 -> 7.1.1 |
devDependencies | major | ||||
css-minimizer-webpack-plugin | 5.0.1 -> 6.0.0 |
devDependencies | major | ||||
eslint (source) | 8.56.0 -> 9.1.1 |
devDependencies | major | ||||
mcr.microsoft.com/mssql/server | 2019-latest -> 2022-latest |
major | |||||
style-loader | 3.3.4 -> 4.0.0 |
devDependencies | major | ||||
webpack-dev-server | 4.15.1 -> 5.0.4 |
devDependencies | major |
Release Notes
webpack-contrib/copy-webpack-plugin (copy-webpack-plugin)
v12.0.2
v12.0.1
v12.0.0
⚠ BREAKING CHANGES
webpack-contrib/css-loader (css-loader)
v7.1.1
v7.1.0
Features
v7.0.0
⚠ BREAKING CHANGES
- The
modules.namedExport
option istrue
by default if you enable theesModule
option
Migration guide:
Before:
import style from "./style.css";
console.log(style.myClass);
After:
import * as style from "./style.css";
console.log(style.myClass);
- The
modules.exportLocalsConvention
has the valueas-is
when themodules.namedExport
option istrue
and you don't specify a value - Minimum supported webpack version is
5.27.0
- Minimum supported Node.js version is
18.12.0
Features
- The
modules.namedExports
option works fine with anymodules.exportLocalsConvention
values (f96a110) - Added dashed variants for the
modules.exportLocalsConvention
options (40e1668)
v6.11.0
Features
Bug Fixes
webpack-contrib/css-minimizer-webpack-plugin (css-minimizer-webpack-plugin)
v6.0.0
⚠ BREAKING CHANGES
5.0.1 (2023-06-13)
Bug Fixes
eslint/eslint (eslint)
v9.1.1
v9.1.0
v9.0.0
v8.57.0
Features
-
1120b9b
feat: Add loadESLint() API method for v8 (#18098) (Nicholas C. Zakas) -
dca7d0f
feat: Enableeslint.config.mjs
andeslint.config.cjs
(#18066) (Nitin Kumar)
Bug Fixes
-
2196d97
fix: handle absolute file paths inFlatRuleTester
(#18064) (Nitin Kumar) -
69dd1d1
fix: Ensure config keys are printed for config errors (#18067) (Nitin Kumar) -
9852a31
fix: deep merge behavior in flat config (#18065) (Nitin Kumar) -
4c7e9b0
fix: allow circular references in config (#18056) (Milos Djermanovic)
Documentation
-
84922d0
docs: Show prerelease version in dropdown (#18139) (Nicholas C. Zakas) -
5b8c363
docs: Switch to Ethical Ads (#18117) (Milos Djermanovic) -
77dbfd9
docs: show NEXT in version selectors (#18052) (Milos Djermanovic)
Chores
-
1813aec
chore: upgrade @eslint/js@8.57.0 (#18143) (Milos Djermanovic) -
5c356bb
chore: package.json update for @eslint/js release (Jenkins) -
f4a1fe2
test: add more tests for ignoring files and directories (#18068) (Nitin Kumar) -
42c0aef
ci: Enable CI forv8.x
branch (#18047) (Milos Djermanovic)
webpack-contrib/style-loader (style-loader)
v4.0.0
⚠ BREAKING CHANGES
- minimum supported webpack version is
5.27.0
- minimum support Node.js version is
18.12.0
- the
insert
option can only be a selector or the path to the module
Migration:
Before:
webpack.config.js
module.exports = {
module: {
rules: [
{
test: /\.css$/i,
use: [
{
loader: "style-loader",
options: {
injectType: "styleTag",
styleTagTransform: function (css, style) {
// Do something ...
style.innerHTML = `${css}.modify{}\n`;
document.head.appendChild(style);
},
},
},
"css-loader",
],
},
],
},
};
After:
insert-function.js
function insert(css, style) {
var parent = options.target || document.head;
parent.appendChild(element);
}
module.exports = insert;
webpack.config.js
module.exports = {
module: {
rules: [
{
test: /\.css$/i,
use: [
{
loader: "style-loader",
options: {
insert: require.resolve("./insert.js"),
},
},
"css-loader",
],
},
],
},
};
- the
styleTagTransform
option can only be the path to the module
Migration:
Before:
webpack.config.js
module.exports = {
module: {
rules: [
{
test: /\.css$/i,
use: [
{
loader: "style-loader",
options: {
injectType: "styleTag",
styleTagTransform: function (css, style) {
// Do something ...
style.innerHTML = `${css}.modify{}\n`;
document.head.appendChild(style);
},
},
},
"css-loader",
],
},
],
},
};
After:
style-tag-transform-function.js
function styleTagTransform(css, style) {
// Do something ...
style.innerHTML = `${css}.modify{}\n`;
document.head.appendChild(style);
}
module.exports = styleTagTransform;
webpack.config.js
module.exports = {
module: {
rules: [
{
test: /\.css$/i,
use: [
{
loader: "style-loader",
options: {
styleTagTransform: require.resolve("./style-tag-transform-function.js"),
},
},
"css-loader",
],
},
],
},
};
Bug Fixes
3.3.3 (2023-05-19)
Bug Fixes
3.3.2 (2023-03-13)
Bug Fixes
3.3.1 (2021-10-21)
Bug Fixes
webpack/webpack-dev-server (webpack-dev-server)
v5.0.4
v5.0.3
v5.0.2
v5.0.1
v5.0.0
4.15.1 (2023-06-09)
Bug Fixes
- replace
::
withlocalhost
before openBrowser() (#4856) (874c44b) -
types: compatibility with
@types/ws
(#4899) (34bcec2)
v4.15.2
4.15.2 (2024-03-20)
Bug Fixes
- security: bump webpack-dev-middleware (4116209)
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.
⚠ Artifact update problem
Renovate failed to update an artifact related to this branch. You probably do not want to merge this PR as-is.
♻ Renovate will retry this branch, including artifacts, only when one of the following happens:
- any of the package files in this branch needs updating, or
- the branch becomes conflicted, or
- you click the rebase/retry checkbox if found above, or
- you rename this PR's title to start with "rebase!" to trigger it manually
The artifact failure details are included below:
File name: package-lock.json
npm ERR! code ERESOLVE
npm ERR! ERESOLVE unable to resolve dependency tree
npm ERR!
npm ERR! While resolving: [email protected]
npm ERR! Found: [email protected]
npm ERR! node_modules/eslint
npm ERR! dev eslint@"9.1.1" from the root project
npm ERR!
npm ERR! Could not resolve dependency:
npm ERR! peer eslint@"^8.9.0" from @redhat-cloud-services/[email protected]
npm ERR! node_modules/@redhat-cloud-services/eslint-config-redhat-cloud-services
npm ERR! dev @redhat-cloud-services/eslint-config-redhat-cloud-services@"2.0.4" from the root project
npm ERR!
npm ERR! Fix the upstream dependency conflict, or retry
npm ERR! this command with --force, or --legacy-peer-deps
npm ERR! to accept an incorrect (and potentially broken) dependency resolution.
npm ERR!
npm ERR! See /tmp/renovate/cache/others/npm/eresolve-report.txt for a full report.
npm ERR! A complete log of this run can be found in:
npm ERR! /tmp/renovate/cache/others/npm/_logs/2024-04-22T22_38_53_118Z-debug-0.log