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 dependencies #321

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

Update all dependencies #321

wants to merge 1 commit into from

Conversation

renovate[bot]
Copy link
Contributor

@renovate renovate bot commented Jan 28, 2024

Mend Renovate

This PR contains the following updates:

Package Change Age Adoption Passing Confidence Type Update
@prettier/plugin-xml 3.2.2 -> 3.4.1 age adoption passing confidence devDependencies minor
autoprefixer 10.4.16 -> 10.4.19 age adoption passing confidence devDependencies patch
copy-webpack-plugin 11.0.0 -> 12.0.2 age adoption passing confidence devDependencies major
css-loader 6.8.1 -> 7.1.2 age adoption passing confidence devDependencies major
css-minimizer-webpack-plugin 5.0.1 -> 7.0.0 age adoption passing confidence devDependencies major
husky 8.0.3 -> 9.0.11 age adoption passing confidence devDependencies major
jest-puppeteer (source) 9.0.2 -> 10.0.1 age adoption passing confidence devDependencies major
mini-css-extract-plugin 2.7.6 -> 2.9.0 age adoption passing confidence devDependencies minor
npm-run-all 4.1.5 -> 5.0.0 devDependencies replacement
pdfkit (source) 0.14.0 -> 0.15.0 age adoption passing confidence dependencies minor
postcss-loader 7.3.3 -> 8.1.1 age adoption passing confidence devDependencies major
puppeteer (source) 21.6.1 -> 22.10.0 age adoption passing confidence devDependencies major
serve 14.2.1 -> 14.2.3 age adoption passing confidence devDependencies patch
svgo (source) 3.1.0 -> 3.3.2 age adoption passing confidence devDependencies minor
webpack 5.89.0 -> 5.91.0 age adoption passing confidence devDependencies minor

This is a special PR that replaces npm-run-all with the community suggested minimal stable replacement version.


Release Notes

prettier/plugin-xml (@​prettier/plugin-xml)

v3.4.1

Compare Source

Changed
  • Fix the npm publish.

v3.4.0

Compare Source

Added
  • Export plugin type.
Changed
  • Fix printing around reference nodes.
  • Trim only XML whitespace, not JS whitespace.

v3.3.1

Compare Source

Changed
  • Allow elements to be marked as whitespace ignored even when they have reference nodes.

v3.3.0

Compare Source

Added
  • Support for formatWithCursor.
Changed
  • Always keep whitespace around in xsl:text tags.
postcss/autoprefixer (autoprefixer)

v10.4.19

Compare Source

  • Removed end value has mixed support, consider using flex-end warning
    since end/start now have good support.

v10.4.18

Compare Source

  • Fixed removing -webkit-box-orient on -webkit-line-clamp (@​Goodwine).

v10.4.17

Compare Source

  • Fixed user-select: contain prefixes.
webpack-contrib/copy-webpack-plugin (copy-webpack-plugin)

v12.0.2

Compare Source

v12.0.1

Compare Source

v12.0.0

Compare Source

⚠ BREAKING CHANGES
  • update globby to 14.0.0
  • minimum supported Node.js version is 18.12.0 (#​759) (a5b7d06)
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)

v6.11.0

Compare Source

Features
Bug Fixes

v6.10.0

Compare Source

Features
  • add @rspack/core as an optional peer dependency (#​1568) (3924679)
  • pass the resourceQuery and resourceFragment to the auto and mode callback (#​1569) (d641c4d)
  • support named exports with any characters (6f43929)
6.9.1 (2024-01-18)
Bug Fixes
  • css nesting support
  • @scope at-rule support

v6.9.1

Compare Source

v6.9.0

Compare Source

Features
Bug Fixes
6.8.1 (2023-05-28)
Bug Fixes
webpack-contrib/css-minimizer-webpack-plugin (css-minimizer-webpack-plugin)

v7.0.0

Compare Source

⚠ BREAKING CHANGES

v6.0.0

Compare Source

⚠ BREAKING CHANGES
5.0.1 (2023-06-13)
Bug Fixes
typicode/husky (husky)

v9.0.11

Compare Source

v9.0.10

Compare Source

v9.0.9

Compare Source

v9.0.8

Compare Source

v9.0.7

Compare Source

v9.0.6

Compare Source

v9.0.5

Compare Source

v9.0.4

Compare Source

v9.0.3

Compare Source

v9.0.2

Compare Source

What's Changed

New Contributors

Full Changelog: typicode/husky@v9.0.1...v9.0.2

v9.0.1

Compare Source

Kicking off the year with an exciting update!

TLDR;

Improved user experience and a (even) smaller package size while packing in more features!

👋 By the Way

I'm available for remote work (Front-end/Back-end mainly JS/TS but open to other stacks Rails, Go, Elixir). You can contact me at my mail: typicode at gmail 🙂

Introducing husky init

Adding husky to a project is now easier than ever. Although the installation process was straightforward, it often required consulting the documentation.

v8
npm pkg set scripts.prepare="husky install"
npm run prepare
npx husky add .husky/pre-commit "npm test"
v9
npx husky init

Adding a New Hook

Adding a hook is now as simple as creating a file. This can be accomplished using your favorite editor, a script or a basic echo command.

v8
npx husky add  .husky/pre-commit "npm test"
git add --chmod=+x .husky/pre-commit # On Windows
v9
echo "npm test" > .husky/pre-commit

Further Size Reduction

v8 was already the most compact Git hooks manager at approximately 6kB.

v9 takes this a step further, reducing the size to just 3kB, likely making it the smallest devDependency in your toolkit.

To give you an idea of how small it is, the biggest file in the project is the MIT license 😄

More to Come

Additional features are in the pipeline for v9. Stay tuned 🙌

Other Changes

  • Enhanced security with CI and npm --provenance for safer publishing.
  • Added $XDG_CONFIG_HOME support. Move ~/.huskyrc to ~/.config/husky/init.sh for centralized configuration.
  • Fixed permission issue for Windows-created hooks; they no longer need to be executable.
  • Removed husky install. Use husky or husky some/dir for the same functionality (deprecation notice to be added).
  • Modified behavior when .git is missing; it now triggers a warning instead of failure.
  • Replaced HUSKY_DEBUG=1 with HUSKY=2 for debugging.
  • Updated the Husky API for module usage.
  • Transitioned to ESM for module usage.
  • Dropped support for Node 14 and 16.
  • Revamped docs.

How to Migrate

v9 is backward compatible with v8, allowing you to freely upgrade and migrate your hooks later.

package.json

{
  "scripts": {
-   "prepare": "husky install"
+   "prepare": "husky"
  }
}

.husky/pre-commit

- #!/usr/bin/env sh
- . "$(dirname -- "$0")/_/husky.sh"
npm test
argos-ci/jest-puppeteer (jest-puppeteer)

v10.0.1

Compare Source

Note: Version bump only for package jest-puppeteer

v10.0.0

Compare Source

Note: Version bump only for package jest-puppeteer

9.0.2 (2023-12-06)

Note: Version bump only for package jest-puppeteer

9.0.1 (2023-10-01)

Bug Fixes
webpack-contrib/mini-css-extract-plugin (mini-css-extract-plugin)

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)

v2.8.1

Compare Source

v2.8.0

Compare Source

Features
2.7.7 (2024-01-10)
Bug Fixes
2.7.6 (2023-05-19)
Bug Fixes
2.7.5 (2023-03-16)
Bug Fixes
2.7.4 (2023-03-16)
Bug Fixes
  • module identifier, don't merge modules with different media/suppors/layer (#​1021) (ad3729b)
2.7.3 (2023-03-07)
Bug Fixes
  • avoid to throw error when link doesn't have parentNode (#​1016) (6292440)
2.7.2 (2022-12-06)
Bug Fixes
2.7.1 (2022-11-29)
Bug Fixes

v2.7.7

Compare Source

foliojs/pdfkit (pdfkit)

v0.15.0

Compare Source

  • Add subset for PDF/UA
  • Fix for line breaks in list items (#​1486)
  • Fix for soft hyphen not being replaced by visible hyphen if necessary (#​457)
  • Optimize output files by ignoring identity transforms
  • Fix for Acroforms - setting an option to false will still apply the flag (#​1495)
  • Fix for text extraction in PDFium-based viewers due to invalid ToUnicodeMap (#​1498)
  • Remove deprecated write method
  • Drop support for Node.js < 18 and for browsers released before 2020
webpack-contrib/postcss-loader (postcss-loader)

v8.1.1

Compare Source

v8.1.0

Compare Source

Features

v8.0.0

Compare Source

⚠ BREAKING CHANGES
7.3.4 (2023-12-27)
Bug Fixes
7.3.3 (2023-06-10)
Bug Fixes
  • perf: avoid using klona for postcss options (#​658) (e754c3f)
  • bug with loading configurations after updating cosmiconfig to version 8.2 (684d265)
7.3.2 (2023-05-28)
Bug Fixes
7.3.1 (2023-05-26)
Bug Fixes
  • warning and error serialization (65748ec)

v7.3.4

Compare Source

puppeteer/puppeteer (puppeteer)

v22.10.0: puppeteer: v22.10.0

Compare Source

Miscellaneous Chores
  • puppeteer: Synchronize puppeteer versions
Dependencies
  • The following workspace dependencies were updated
    • dependencies
      • puppeteer-core bumped from 22.9.0 to 22.10.0

v22.9.0

Compare Source

v22.8.2: puppeteer: v22.8.2

Compare Source

Miscellaneous Chores
  • puppeteer: Synchronize puppeteer versions
Dependencies
  • The following workspace dependencies were updated
    • dependencies
      • puppeteer-core bumped from 22.8.1 to 22.8.2

v22.8.1: puppeteer: v22.8.1

Compare Source

Miscellaneous Chores
  • puppeteer: Synchronize puppeteer versions
Dependencies
  • The following workspace dependencies were updated
    • dependencies
      • puppeteer-core bumped from 22.8.0 to 22.8.1

v22.8.0: puppeteer: v22.8.0

Compare Source

Miscellaneous Chores
  • puppeteer: Synchronize puppeteer versions
Dependencies
  • The following workspace dependencies were updated
    • dependencies
      • puppeteer-core bumped from 22.7.1 to 22.8.0

v22.7.1

Compare Source

v22.7.0

Compare Source

v22.6.5

Compare Source

v22.6.4

Compare Source

v22.6.3: puppeteer: v22.6.3

Compare Source

Bug Fixes
Dependencies
  • The following workspace dependencies were updated

v22.6.2: puppeteer-core: v22.6.2

Compare Source

Bug Fixes

v22.6.1

Compare Source

v22.6.0

Compare Source

v22.5.0: puppeteer: v22.5.0

Compare Source

Miscellaneous Chores
  • puppeteer: Synchronize puppeteer versions
Dependencies
  • The following workspace dependencies were updated

v22.4.1: puppeteer: v22.4.1

Compare Source

Miscellaneous Chores
  • puppeteer: Synchronize puppeteer versions
Dependencies
  • The following workspace dependencies were updated
    • dependencies
      • puppeteer-core bumped from 22.4.0 to 22.4.1

v22.4.0: puppeteer-core: v22.4.0

Compare Source

Features
Bug Fixes
  • roll to Chrome 122.0.6261.94 (r1250580) (#​12012) (7ba5529)
  • webdriver: wait for response if the response has not completed once navigation has finished (#​12018) (6d8831a)

v22.3.0: puppeteer: v22.3.0

Compare Source

Miscellaneous Chores
  • puppeteer: Synchronize puppeteer versions
Dependencies
  • The following workspace dependencies were updated
    • dependencies
      • puppeteer-core bumped from 22.2.0 to 22.3.0

v22.2.0: puppeteer: v22.2.0

Compare Source

Features
Dependencies
  • The following workspace dependencies were updated

v22.1.0: puppeteer: v22.1.0

Compare Source

Miscellaneous Chores
  • puppeteer: Synchronize puppeteer versions
Dependencies
  • The following workspace dependencies were updated

v22.0.0: puppeteer: v22.0.0

Compare Source

⚠ BREAKING CHANGES
  • remove PUPPETEER_DOWNLOAD_PATH in favor of PUPPETEER_CACHE_DIR (#​11605)
  • drop support for node16 (#​10912)
Features
Dependencies
  • The following workspace dependencies were updated

v21.11.0: puppeteer: v21.11.0

Compare Source

Features
Dependencies
  • The following workspace dependencies were updated
    • dependencies
      • puppeteer-core bumped from 21.10.0 to 21.11.0

v21.10.0: puppeteer: v21.10.0

Compare Source

Features
  • download chrome-headless-shell by default and use it for the old headless mode (#​11754) (ce894a2)
Dependencies
  • The following workspace dependencies were updated
    • dependencies
      • puppeteer-core bumped from 21.9.0 to 21.10.0

v21.9.0: puppeteer: v21.9.0

Compare Source

Miscellaneous Chores
  • puppeteer: Synchronize puppeteer versions
Dependencies
  • The following workspace dependencies were updated
    • dependencies
      • puppeteer-core bumped from 21.8.0 to 21.9.0

v21.8.0: puppeteer: v21.8.0

Compare Source

Miscellaneous Chores
  • puppeteer: Synchronize puppeteer versions
Dependencies
  • The following workspace dependencies were updated
    • dependencies
      • puppeteer-core bumped from 21.7.0 to 21.8.0

v21.7.0: puppeteer: v21.7.0

Compare Source

Miscellaneous Chores
  • puppeteer: Synchronize puppeteer versions
Dependencies
  • The following workspace dependencies were updated
vercel/serve (serve)

v14.2.3

Compare Source

Patches
  • Bump @zeit/schemas to 2.36.0: #​803

v14.2.2

Compare Source

Patches
  • fix: Update ajv from 8.11.0 to 8.12.0: #​796
Credits

Huge thanks to @​legobeat for helping!

svg/svgo (svgo)

v3.3.2

Compare Source

Notice

An update on what happened with v3.3.0 and v3.3.1. While we have retained CJS support, the migration to EMS has changed the acceptable ways to import SVGO, in ways that users depended on before. This effectively made SVGO v3 a breaking change.

Rather than resolve or workaround these differences, we've opted to release SVGO v3.3.2, which is effectively a revert to v3.2.0, and deprecate versions v3.3.0 and v3.3.1. We'll then proceed to work on releasing v4 which will document the breaking changes, and feature further breaking changes that were slated for v4, like disabling removeViewBox by default.

Before the v4.0.0 release, I'll put more focus on testing and use release candidates, just to help make the release go smoothly! 👍🏽

Sorry for the headache, and thanks for your patience.

v3.3.1

Compare Source

Notice

SVGO v3.3.0, which was meant to migrate to ESM without breaking CJS support, unfortunately broke CJS projects. There was a mistake with exports, so the loadConfig function wasn't available in the CJS bundle and lead to issues for many users.

Thanks to everyone who raised the issue, and to @​nuintun who submitted a pull request to resolve it so quickly.

I apologize for letting that breaking change through, and will aim to do better. Namely, by adding more tests to cover our exports, and any other public interface in general for each distribution of SVGO, so this doesn't happen again.

SVGO v3.3.1 should resolve the issue for CJS projects, but if you encounter anything else, do let us know by opening an issue on GitHub.

v3.3.0

Compare Source

Deprecated

This release introduced breaking changes, which have been reverted in v3.3.2. The bug fixes will be reintroduced in v4.0.0.

What's Changed

ESM

SVGO is now a dual package, serving for both Common JS and ESM usage. We believe there shouldn't be any problems, especially as SVGO as largely stateless, but feel free to open an issue if you encounter problems with this.

To be explicit, this is not a breaking change, and SVGO should continue to work in Common JS projects!

Thanks to @​jdufresne for doing the bulk of the work.

Default Behavior
  • convertColors, now converts all references to colors excluding references to IDs to lowercase. This can be disabled by setting convertCase to false.
Bug Fixes

Configuration

📅 Schedule: Branch creation - "on the 2nd and 4th day instance on sunday after 11pm" (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 added the dependencies Pull requests that update a dependency file label Jan 28, 2024
@renovate renovate bot force-pushed the renovate/all branch 5 times, most recently from 49fb2b1 to 4b1c9de Compare February 5, 2024 12:07
@renovate renovate bot force-pushed the renovate/all branch 7 times, most recently from e0760c6 to f2722d4 Compare February 15, 2024 16:34
@renovate renovate bot force-pushed the renovate/all branch 5 times, most recently from 1155e0c to 0b2eada Compare February 23, 2024 22:31
@renovate renovate bot force-pushed the renovate/all branch 5 times, most recently from a7fc06d to 9e2a2e6 Compare March 1, 2024 17:29
@renovate renovate bot force-pushed the renovate/all branch 4 times, most recently from d9b20bd to 79269e3 Compare March 10, 2024 00:29
@renovate renovate bot force-pushed the renovate/all branch 3 times, most recently from 78124dd to ed7fe72 Compare March 20, 2024 11:28
@renovate renovate bot force-pushed the renovate/all branch 3 times, most recently from f0d32a7 to 5745eae Compare April 16, 2024 20:31
@renovate renovate bot force-pushed the renovate/all branch 9 times, most recently from 1cc0a22 to 689a09c Compare April 25, 2024 18:23
@renovate renovate bot force-pushed the renovate/all branch 5 times, most recently from 3afeee2 to ae25541 Compare May 9, 2024 09:38
@renovate renovate bot force-pushed the renovate/all branch 4 times, most recently from cc7f718 to 83a3186 Compare May 19, 2024 00:31
@renovate renovate bot force-pushed the renovate/all branch 4 times, most recently from e3988ed to c878b60 Compare May 26, 2024 10:40
@renovate renovate bot force-pushed the renovate/all branch 2 times, most recently from 99b43ab to 32a9093 Compare June 4, 2024 11:08
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
Projects
None yet
Development

Successfully merging this pull request may close these issues.

None yet

0 participants