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

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

Update packages (major) #6773

wants to merge 1 commit into from

Conversation

renovate[bot]
Copy link
Contributor

@renovate renovate bot commented Feb 25, 2024

This PR contains the following updates:

Package Change Age Adoption Passing Confidence Type Update
@google-cloud/datastore 8.7.0 -> 9.1.0 age adoption passing confidence dependencies major
@rollup/plugin-commonjs (source) 25.0.8 -> 28.0.1 age adoption passing confidence devDependencies major
@rollup/plugin-replace (source) 5.0.7 -> 6.0.1 age adoption passing confidence devDependencies major
archiver 6.0.2 -> 7.0.1 age adoption passing confidence devDependencies major
codemirror 5.65.17 -> 6.0.1 age adoption passing confidence devDependencies major
cookie 0.6.0 -> 1.0.1 age adoption passing confidence dependencies major
css-loader 6.11.0 -> 7.1.2 age adoption passing confidence devDependencies major
css-minimizer-webpack-plugin 6.0.0 -> 7.0.0 age adoption passing confidence devDependencies major
del 6.1.1 -> 8.0.0 age adoption passing confidence devDependencies major
eslint (source) 8.57.0 -> 9.13.0 age adoption passing confidence devDependencies major
fetch-mock (source) 9.11.0 -> 11.1.5 age adoption passing confidence devDependencies major
gulp (source) 4.0.2 -> 5.0.0 age adoption passing confidence devDependencies major
helmet-csp (source) 3.4.0 -> 4.0.0 age adoption passing confidence dependencies major
husky 7.0.4 -> 9.1.6 age adoption passing confidence devDependencies major
linkifyjs (source) 2.1.9 -> 4.1.3 age adoption passing confidence dependencies major
lru-cache 6.0.0 -> 11.0.1 age adoption passing confidence dependencies major
marked (source) 2.1.3 -> 14.1.3 age adoption passing confidence devDependencies major
node (source) 18.x -> 20.x age adoption passing confidence engines major
node 18-alpine -> 20-alpine age adoption passing confidence final major
node-fetch 2.7.0 -> 3.3.2 age adoption passing confidence dependencies major
npm-run-all2 6.2.2 -> 7.0.0 age adoption passing confidence devDependencies major
p-queue 6.6.2 -> 8.0.1 age adoption passing confidence dependencies major
sass-loader 14.2.1 -> 16.0.2 age adoption passing confidence devDependencies major
supertest 6.3.4 -> 7.0.0 age adoption passing confidence devDependencies major
uuid 9.0.1 -> 10.0.0 age adoption passing confidence dependencies major
webpack-build-notifier 2.3.0 -> 3.1.0 age adoption passing confidence devDependencies major

Release Notes

googleapis/nodejs-datastore (@​google-cloud/datastore)

v9.1.0

Compare Source

Features
Bug Fixes

v9.0.0

Compare Source

⚠ BREAKING CHANGES
  • An existing method UpdateVehicleLocation is removed from service VehicleService (#​1248)
Features
Bug Fixes
  • An existing method UpdateVehicleLocation is removed from service VehicleService (#​1248) (ba79118)
  • Read time should be used for transaction reads (#​1171) (73a0a39)
rollup/plugins (@​rollup/plugin-commonjs)

v28.0.1

2024-10-16

Updates

v28.0.0

2024-09-23

Breaking Changes
  • chore: switch to fdir for fewer dependencies (#​1741)

v27.0.0

2024-09-23

Breaking Changes
  • feat!: default strictRequires to true (#​1639)
  • fix!: replace top-level this with exports name (#​1618)

v26.0.3

2024-09-23

Updates

v26.0.1

2024-06-05

Bugfixes
  • fix: correct import of glob (04a15b5)

v26.0.0

2024-06-05

Breaking Changes
  • chore!: bump glob's version (#​1695)
rollup/plugins (@​rollup/plugin-replace)

v6.0.1

2024-09-23

Bugfixes
  • fix: The preventAssignment option is treated as a value to replace (#​1768)

v6.0.0

2024-09-23

Breaking Changes
  • fix!: objectGuards doesn't take effects (#​1764)
archiverjs/node-archiver (archiver)

v7.0.1

Compare Source

What’s changed

Maintenance

Dependency updates

v7.0.0

Compare Source

What’s changed

Breaking changes

Dependency updates

codemirror/basic-setup (codemirror)

v6.0.1

Compare Source

Bug fixes

Work around limitations in tree-shaking software that prevented basicSetup from being removed when unused.

v6.0.0

Compare Source

Breaking changes

Change the package name from @codemirror/example-setup to just codemirror.

The package no longer exports EditorState (since that is no longer necessary to set up a basic editor).

New features

The new minimalSetup export provides a minimal set of editor extensions.

v5.65.18

Compare Source

jshttp/cookie (cookie)

v1.0.1

Compare Source

Added

v1.0.0

Compare Source

Breaking changes

  • Use modern JS features, ship TypeScript definition (#​175) 1cc64ff
  • Minimum node.js v18
  • Uses null prototype object for parse return value
  • Changes strict and priority to match the lower case strings (i.e. low, not LOW or Low)
  • Require maxAge to be an integer using Number.isInteger check
  • Delegates decode implementation details to decode option (i.e. error handling and quote parsing is defined by decode)
  • Improve arg/option error messages (#​162) e206fd5 @​MaoShizhong

Other

v0.7.2

Compare Source

Fixed

v0.7.1: 0.7.1

Compare Source

Fixed

  • Allow leading dot for domain (#​174)
    • Although not permitted in the spec, some users expect this to work and user agents ignore the leading dot according to spec
  • Add fast path for serialize without options, use obj.hasOwnProperty when parsing (#​172)

v0.7.0: 0.7.0

Compare Source

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

v7.1.2

Compare Source

v7.1.1

Compare Source

v7.1.0

Compare Source

Features
  • added the getJSON option to output CSS modules mapping (#​1577) (af834b4)

v7.0.0

Compare Source

⚠ BREAKING CHANGES
  • The modules.namedExport option is true by default if you enable the esModule 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 value as-is when the modules.namedExport option is true 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 any modules.exportLocalsConvention values (f96a110)
  • Added dashed variants for the modules.exportLocalsConvention options (40e1668)
webpack-contrib/css-minimizer-webpack-plugin (css-minimizer-webpack-plugin)

v7.0.0

Compare Source

⚠ BREAKING CHANGES
sindresorhus/del (del)

v8.0.0

Compare Source

Breaking
Improvements

v7.1.0

Compare Source

v7.0.0

Compare Source

Breaking
  • Require Node.js 14 (#​143) 106d7d8
  • This package is now pure ESM. Please read this.
  • Moved from a default export to named exports:
    • require('del')import {deleteAsync} from 'del'
    • require('del').syncimport {deleteSync} from 'del'
eslint/eslint (eslint)

v9.13.0

Compare Source

v9.12.0

Compare Source

Features

Bug Fixes

Documentation

  • ecbd522 docs: Mention code explorer (#​18978) (Nicholas C. Zakas)
  • 7ea4ecc docs: Clarifying the Use of Meta Objects (#​18697) (Amaresh S M)
  • d3e4b2e docs: Clarify how to exclude .js files (#​18976) (Milos Djermanovic)
  • 57232ff docs: Mention plugin-kit in language docs (#​18973) (Nicholas C. Zakas)
  • b80ed00 docs: Update README (GitHub Actions Bot)
  • cb69ab3 docs: Update README (GitHub Actions Bot)
  • 7fb0d95 docs: Update README (GitHub Actions Bot)
  • 493348a docs: Update README (GitHub Actions Bot)
  • 87a582c docs: fix typo in id-match rule (#​18944) (Jay)

Chores

v9.11.1

Compare Source

v9.11.0

Compare Source

Features

  • ec30c73 feat: add "eslint/universal" to export Linter (#​18883) (唯然)
  • c591da6 feat: Add language to types (#​18917) (Nicholas C. Zakas)
  • 492eb8f feat: limit the name given to ImportSpecifier in id-length (#​18861) (Tanuj Kanti)
  • 19c6856 feat: Add no-useless-constructor suggestion (#​18799) (Jordan Thomson)
  • a48f8c2 feat: add type FormatterFunction, update LoadedFormatter (#​18872) (Francesco Trotta)

Bug Fixes

  • 5e5f39b fix: add missing types for no-restricted-exports rule (#​18914) (Kristóf Poduszló)
  • 8f630eb fix: add missing types for no-param-reassign options (#​18906) (Kristóf Poduszló)
  • d715781 fix: add missing types for no-extra-boolean-cast options (#​18902) (Kristóf Poduszló)
  • 2de5742 fix: add missing types for no-misleading-character-class options (#​18905) (Kristóf Poduszló)
  • c153084 fix: add missing types for no-implicit-coercion options (#​18903) (Kristóf Poduszló)
  • fa11b2e fix: add missing types for no-empty-function options (#​18901) (Kristóf Poduszló)
  • a0deed1 fix: add missing types for camelcase options (#​18897) (Kristóf Poduszló)

Documentation

  • e4e5709 docs: correct prefer-object-has-own type definition comment (#​18924) (Nitin Kumar)
  • 91cbd18 docs: add unicode abbreviations in no-irregular-whitespace rule (#​18894) (Alix Royere)
  • 59cfc0f docs: clarify resultsMeta in LoadedFormatter type (#​18881) (Milos Djermanovic)
  • adcc50d docs: Update README (GitHub Actions Bot)
  • 4edac1a docs: Update README (GitHub Actions Bot)

Build Related

  • 959d360 build: Support updates to previous major versions (#​18871) (Milos Djermanovic)

Chores

v9.10.0

Compare Source

v9.9.1

Compare Source

v9.9.0

Compare Source

Features

  • 41d0206 feat: Add support for TS config files (#​18134) (Arya Emami)
  • 3a4eaf9 feat: add suggestion to require-await to remove async keyword (#​18716) (Dave)

Documentation

  • 9fe068c docs: how to author plugins with configs that extend other configs (#​18753) (Alec Gibson)
  • 48117b2 docs: add version support page in the side navbar (#​18738) (Amaresh S M)
  • fec2951 docs: add version support page to the dropdown (#​18730) (Amaresh S M)
  • 38a0661 docs: Fix typo (#​18735) (Zaina Al Habash)
  • 3c32a9e docs: Update yarn command for creating ESLint config (#​18739) (Temitope Ogunleye)
  • f9ac978 docs: Update README (GitHub Actions Bot)

Chores

v9.8.0

Compare Source

v9.7.0

Compare Source

Features

  • 7bd9839 feat: add support for es2025 duplicate named capturing groups (#​18630) (Yosuke Ota)
  • 1381394 feat: add regex option in no-restricted-imports (#​18622) (Nitin Kumar)

Bug Fixes

  • 14e9f81 fix: destructuring in catch clause in no-unused-vars (#​18636) (Francesco Trotta)

Documentation

  • 9f416db docs: Add Powered by Algolia label to the search. (#​18633) (Amaresh S M)
  • c8d26cb docs: Open JS Foundation -> OpenJS Foundation (#​18649) (Milos Djermanovic)
  • 6e79ac7 docs: loadESLint does not support option cwd (#​18641) (Francesco Trotta)

Chores

v9.6.0

Compare Source

[v9.5.0](https://redirect.github.com/eslint/eslint/compare/v9.4.0...535235701fb029db6f656bd4e58acd


Configuration

📅 Schedule: Branch creation - "after 4am on sunday" (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 was generated by Mend Renovate. View the repository job log.

@renovate renovate bot force-pushed the renovate/major-packages branch 2 times, most recently from 4707842 to d328514 Compare March 6, 2024 08:28
@renovate renovate bot force-pushed the renovate/major-packages branch from d328514 to 0c307bf Compare March 10, 2024 04:23
@renovate renovate bot force-pushed the renovate/major-packages branch 2 times, most recently from 2df51cd to f5134b0 Compare April 4, 2024 21:05
@renovate renovate bot force-pushed the renovate/major-packages branch from f5134b0 to 8be9fa2 Compare April 5, 2024 21:32
Copy link
Contributor Author

renovate bot commented Apr 5, 2024

⚠ 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 could not resolve
npm ERR! 
npm ERR! While resolving: @babel/[email protected]
npm ERR! Found: [email protected]
npm ERR! node_modules/eslint
npm ERR!   dev eslint@"9.2.0" from the root project
npm ERR!   peer eslint@"^6.0.0 || ^7.0.0 || >=8.0.0" from @eslint-community/[email protected]
npm ERR!   node_modules/@eslint-community/eslint-utils
npm ERR!     @eslint-community/eslint-utils@"^4.2.0" from [email protected]
npm ERR!   3 more (eslint-config-google, eslint-config-prettier, eslint-plugin-prettier)
npm ERR! 
npm ERR! Could not resolve dependency:
npm ERR! peer eslint@"^7.5.0 || ^8.0.0" from @babel/[email protected]
npm ERR! node_modules/@babel/eslint-parser
npm ERR!   dev @babel/eslint-parser@"7.23.10" from the root project
npm ERR! 
npm ERR! Conflicting peer dependency: [email protected]
npm ERR! node_modules/eslint
npm ERR!   peer eslint@"^7.5.0 || ^8.0.0" from @babel/[email protected]
npm ERR!   node_modules/@babel/eslint-parser
npm ERR!     dev @babel/eslint-parser@"7.23.10" 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-05-07T12_58_42_174Z-debug-0.log

@renovate renovate bot force-pushed the renovate/major-packages branch 2 times, most recently from c1def02 to cde720d Compare April 10, 2024 17:21
@renovate renovate bot force-pushed the renovate/major-packages branch 5 times, most recently from 40a44df to 6ece904 Compare April 25, 2024 19:10
@renovate renovate bot force-pushed the renovate/major-packages branch 2 times, most recently from 78b93cf to 72b9fb5 Compare May 3, 2024 22:32
@renovate renovate bot force-pushed the renovate/major-packages branch from 72b9fb5 to b9cf646 Compare May 7, 2024 12:58
@renovate renovate bot force-pushed the renovate/major-packages branch 2 times, most recently from 57671b7 to 13ab92c Compare May 22, 2024 17:21
@renovate renovate bot force-pushed the renovate/major-packages branch 5 times, most recently from da1b478 to fce88ec Compare June 1, 2024 20:07
@renovate renovate bot force-pushed the renovate/major-packages branch 5 times, most recently from 324dd88 to 71b61f1 Compare June 12, 2024 08:20
@renovate renovate bot force-pushed the renovate/major-packages branch from 71b61f1 to 2d50b08 Compare June 13, 2024 13:19
@renovate renovate bot force-pushed the renovate/major-packages branch 5 times, most recently from f171332 to bdd7c80 Compare August 13, 2024 15:52
@renovate renovate bot force-pushed the renovate/major-packages branch 4 times, most recently from 5600819 to 8ed866c Compare August 26, 2024 04:24
@renovate renovate bot force-pushed the renovate/major-packages branch 2 times, most recently from d894147 to 4b3742b Compare September 4, 2024 01:24
@renovate renovate bot force-pushed the renovate/major-packages branch 4 times, most recently from 2c791f5 to e2fda77 Compare September 12, 2024 00:19
@renovate renovate bot force-pushed the renovate/major-packages branch 7 times, most recently from d909eed to 5e081b1 Compare September 25, 2024 21:57
@renovate renovate bot force-pushed the renovate/major-packages branch 4 times, most recently from 7af07d2 to 4894f20 Compare October 11, 2024 18:32
@renovate renovate bot force-pushed the renovate/major-packages branch 2 times, most recently from 9c35615 to 43e69eb Compare October 16, 2024 04:32
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