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

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

Update all dependencies #218

wants to merge 1 commit into from

Conversation

simple-icons[bot]
Copy link
Contributor

@simple-icons simple-icons bot commented Nov 1, 2024

This PR contains the following updates:

Package Type Update Change
@prettier/plugin-pug devDependencies minor 3.0.0 -> 3.2.0
husky devDependencies minor 9.0.11 -> 9.1.6
prettier (source) devDependencies minor 3.2.5 -> 3.3.3
puppeteer (source) devDependencies major 22.8.1 -> 23.6.1
renovatebot/github-action action minor v40.1.11 -> v40.3.4
rimraf devDependencies major 5.0.7 -> 6.0.1
semver devDependencies patch 7.6.2 -> 7.6.3
ttf2woff2 devDependencies major 5.0.0 -> 6.0.1

Release Notes

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

v3.2.0

Compare Source

What's Changed

Full Changelog: prettier/plugin-pug@3.1.0...3.2.0

v3.1.0

Compare Source

diff

  • Add option to set indent depth of closing brackets (#​502)
  • Fix class attributes not counting towards attribute wrapping (#​503)
typicode/husky (husky)

v9.1.6

Compare Source

What's Changed

New Contributors

Full Changelog: typicode/husky@v9.1.5...v9.1.6

v9.1.5

Compare Source

What's Changed

New Contributors

Full Changelog: typicode/husky@v9.1.4...v9.1.5

v9.1.4

Compare Source

  • Improve deprecation notice

v9.1.3

Compare Source

  • fix: better handle space in PATH

v9.1.2

Compare Source

Show a message instead of automatically removing deprecated code.

This only concerns projects that still have the following code in their hooks:

- #!/usr/bin/env sh # <- This is deprecated, remove it
- . "$(dirname -- "$0")/_/husky.sh"  # <- This is deprecated, remove it

### Rest of your hook code

Hooks with these lines will fail in v10.0.0

v9.1.1

Compare Source

Super saiyan god dog! It's over 9.0.0!

What's new

You can now run package commands directly, no need for npx or equivalents.
It makes writing hooks more intuitive and is also slightly faster 🐺⚡️

### .husky/pre-commit
- npx jest
+ jest # ~0.2s faster

A new recipe has been added to the docs. Lint staged files without external dependencies (inspired by Prettier docs). Feel free to modify it.

### .husky/pre-commit
prettier $(git diff --cached --name-only --diff-filter=ACMR | sed 's| |\\ |g') --write --ignore-unknown
git update-index --again

For more advanced use cases, see lint-staged.

Fixes

  • bunx husky init command
  • Workaround for some hooks implementation on Windows

Deprecations

  • #!/usr/bin/env sh and . "$(dirname -- "$0")/_/husky.sh" are deprecated. husky command will automatically remove them, no action required.
  • If you're having code in ~/.huskyrc please move it to .config/husky/init.sh

Support for these will be removed in v10.

Friendly reminder

If Git hooks don't fit your workflow, you can disable Husky globally. Just add export HUSKY=0 to .config/husky/init.sh.

I've seen some confusion about this on X, so just a heads-up!

Sponsoring

Husky is downloaded over 45M times per month and used by ~1.5M projects. If your company wants to sponsor, you can do so here: GitHub Sponsors.

Have a nice summer ☀️ I'm open to new opportunities/consulting so feel free to drop me a message 😉

v9.1.0

Compare Source

prettier/prettier (prettier)

v3.3.3

Compare Source

diff

Add parentheses for nullish coalescing in ternary (#​16391 by @​cdignam-segment)

This change adds clarity to operator precedence.

// Input
foo ? bar ?? foo : baz;
foo ?? bar ? a : b;
a ? b : foo ?? bar;

// Prettier 3.3.2
foo ? bar ?? foo : baz;
foo ?? bar ? a : b;
a ? b : foo ?? bar;

// Prettier 3.3.3
foo ? (bar ?? foo) : baz;
(foo ?? bar) ? a : b;
a ? b : (foo ?? bar);
Add parentheses for decorator expressions (#​16458 by @​y-schneider)

Prevent parentheses around member expressions or tagged template literals from being removed to follow the stricter parsing rules of TypeScript 5.5.

// Input
@&#8203;(foo`tagged template`)
class X {}

// Prettier 3.3.2
@&#8203;foo`tagged template`
class X {}

// Prettier 3.3.3
@&#8203;(foo`tagged template`)
class X {}
Support @let declaration syntax (#​16474 by @​sosukesuzuki)

Adds support for Angular v18 @let declaration syntax.

Please see the following code example. The @let declaration allows you to define local variables within the template:

@&#8203;let name = 'Frodo';

<h1>Dashboard for {{name}}</h1>
Hello, {{name}}

For more details, please refer to the excellent blog post by the Angular Team: Introducing @​let in Angular.

We also appreciate the Angular Team for kindly answering our questions to implement this feature.

v3.3.2

Compare Source

diff

Fix handlebars path expressions starts with @ (#​16358 by @​Princeyadav05)
{{! Input }}
<div>{{@&#8203;x.y.z}}</div>

{{! Prettier 3.3.1 }}
<div>{{@&#8203;x}}</div>

{{! Prettier 3.3.2 }}
<div>{{@&#8203;x.y.z}}</div>

v3.3.1

Compare Source

diff

Preserve empty lines in front matter (#​16347 by @​fisker)
<!-- Input -->
---
foo:
  - bar1

  - bar2

  - bar3
---
Markdown

<!-- Prettier 3.3.0 -->

---
foo:
  - bar1
  - bar2
  - bar3
---

Markdown

<!-- Prettier 3.3.1 -->
---
foo:
  - bar1

  - bar2

  - bar3
---

Markdown
Preserve explicit language in front matter (#​16348 by @​fisker)
<!-- Input -->
---yaml
title: Hello
slug: home
---

<!-- Prettier 3.3.0 -->
---
title: Hello
slug: home
---

<!-- Prettier 3.3.1 -->
---yaml
title: Hello
slug: home
---
Avoid line breaks in import attributes (#​16349 by @​fisker)
// Input
import something from "./some-very-very-very-very-very-very-very-very-long-path.json" with { type: "json" };

// Prettier 3.3.0
import something from "./some-very-very-very-very-very-very-very-very-long-path.json" with { type:
  "json" };

// Prettier 3.3.1
import something from "./some-very-very-very-very-very-very-very-very-long-path.json" with { type: "json" };

v3.3.0

Compare Source

diff

🔗 Release Notes

puppeteer/puppeteer (puppeteer)

v23.6.1: puppeteer: v23.6.1

Compare Source

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

v23.6.0: puppeteer: v23.6.0

Compare Source

Features
Dependencies
  • The following workspace dependencies were updated
    • dependencies
      • puppeteer-core bumped from 23.5.3 to 23.6.0

v23.5.3: puppeteer: v23.5.3

Compare Source

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

v23.5.2: puppeteer: v23.5.2

Compare Source

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

v23.5.1: puppeteer: v23.5.1

Compare Source

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

v23.5.0: puppeteer: v23.5.0

Compare Source

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

v23.4.1: puppeteer: v23.4.1

Compare Source

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

v23.4.0: puppeteer: v23.4.0

Compare Source

Features
Dependencies
  • The following workspace dependencies were updated
    • dependencies
      • puppeteer-core bumped from 23.3.1 to 23.4.0

v23.3.1: puppeteer: v23.3.1

Compare Source

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

v23.3.0: puppeteer: v23.3.0

Compare Source

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

v23.2.2: puppeteer: v23.2.2

Compare Source

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

v23.2.1: puppeteer: v23.2.1

Compare Source

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

v23.2.0: puppeteer: v23.2.0

Compare Source

Features
Dependencies
  • The following workspace dependencies were updated
    • dependencies
      • puppeteer-core bumped from 23.1.1 to 23.2.0

v23.1.1: puppeteer: v23.1.1

Compare Source

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

v23.1.0: puppeteer: v23.1.0

Compare Source

Features
  • improve type inference for selectors by adopting "typed-query-selector" (#​12950) (77b729e)
Dependencies
  • The following workspace dependencies were updated

v23.0.2: puppeteer: v23.0.2

Compare Source

Bug Fixes
Dependencies
  • The following workspace dependencies were updated
    • dependencies
      • puppeteer-core bumped from 23.0.1 to 23.0.2

v23.0.1: puppeteer: v23.0.1

Compare Source

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

v23.0.0: puppeteer: v23.0.0

Compare Source

⚠ BREAKING CHANGES
  • support multiple browser downloads for Puppeteer (#​12795)
  • remove support for NPM configuration (#​12792)
  • rename product to browser (#​12757)
Features
Code Refactoring
Dependencies
  • The following workspace dependencies were updated
    • dependencies
      • puppeteer-core bumped from 22.15.0 to 23.0.0

v22.15.0: puppeteer: v22.15.0

Compare Source

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

v22.14.0: puppeteer: v22.14.0

Compare Source

Features
Dependencies
  • The following workspace dependencies were updated
    • dependencies

v22.13.1: puppeteer: v22.13.1

Compare Source

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

v22.13.0: puppeteer: v22.13.0

Compare Source

Bug Fixes
  • cli: puppeteer CLI should read the project configuration (#​12730) (bca750a)
Dependencies
  • The following workspace dependencies were updated
    • dependencies
      • puppeteer-core bumped from 22.12.1 to 22.13.0

v22.12.1: puppeteer: v22.12.1

Compare Source

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

v22.12.0: puppeteer: v22.12.0

Compare Source

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

v22.11.2: puppeteer: v22.11.2

Compare Source

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

v22.11.1: puppeteer: v22.11.1

Compare Source

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

v22.11.0: puppeteer: v22.11.0

Compare Source

Features
Dependencies
  • The following workspace dependencies were updated
    • dependencies
      • puppeteer-core bumped from 22.10.1 to 22.11.0

v22.10.1: puppeteer: v22.10.1

Compare Source

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

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: puppeteer: v22.9.0

Compare Source

Features
Dependencies
  • The following workspace dependencies were updated
    • dependencies
      • puppeteer-core bumped from 22.8.2 to 22.9.0

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
renovatebot/github-action (renovatebot/github-action)

v40.3.4

Compare Source

Documentation
  • update references to actions/checkout to v4.2.1 (11212af)
  • update references to renovatebot/github-action to v40.3.3 (7bdca51)
Miscellaneous Chores
Build System
  • deps: update dependency typescript to v5.6.3 (9c10032)
Continuous Integration
  • deps: update renovate docker tag to v38.120.0 (d1179fe)
  • deps: update renovate docker tag to v38.120.1 (7eaca7d)
  • deps: update renovate docker tag to v38.122.0 (5ebe74f)
  • deps: update renovate docker tag to v38.123.0 (398baed)
  • deps: update renovate docker tag to v38.124.1 (76a4553)

v40.3.3

Compare Source

Bug Fixes
Continuous Integration
  • deps: update renovate docker tag to v38.115.0 (0168adb)
  • deps: update renovate docker tag to v38.115.1 (221a713)
  • deps: update renovate docker tag to v38.116.0 (56e961b)
  • deps: update renovate docker tag to v38.119.0 (13076db)

v40.3.2

Compare Source

Bug Fixes
Documentation
  • update references to ghcr.io/renovatebot/renovate to v38.110.2 (8fcdc6e)
  • update references to renovatebot/github-action to v40.3.1 (593a1c0)
Miscellaneous Chores
Continuous Integration
  • deps: update actions/checkout action to v4.2.1 (a89ddca)
  • deps: update renovate docker tag to v38.105.0 (6c8aefd)
  • deps: update renovate docker tag to v38.106.0 (c2fef14)
  • deps: update renovate docker tag to v38.106.2 (bdb5ad6)
  • deps: update renovate docker tag to v38.106.3 (32149ad)
  • deps: update renovate docker tag to v38.106.4 (8015943)
  • deps: update renovate docker tag to v38.107.0 (6846c99)
  • deps: update renovate docker tag to v38.107.1 (9da33e8)
  • deps: update renovate docker tag to v38.109.0 (4c5ca41)
  • deps: update renovate docker tag to v38.110.1 (59f331f)
  • deps: update renovate docker tag to v38.110.2 (ccf2a06)
  • deps: update renovate docker tag to v38.110.4 (2fd7d6a)
  • deps: update renovate docker tag to v38.114.0 (1c16e18)

v40.3.1

Compare Source

Build System
Continuous Integration
  • deps: update renovate docker tag to v38.103.1 (2f7cf70)

v40.3.0

Compare Source

Features

v40.2.11

Compare Source

Documentation
  • update references to actions/checkout to v4.2.0 (b0990c1)
  • update references to ghcr.io/renovatebot/renovate to v38.101.1 (1ae1ac0)
  • update references to renovatebot/github-action to v40.2.10 (86ff03b)
Miscellaneous Chores
Build System
  • deps: lock file maintenance (669f02b)
Continuous Integration
  • deps: update actions/checkout action to v4.2.0 (cea9e7c)
  • deps: update actions/setup-node action to v4.0.4 (926bb29)
  • deps: update renovate docker tag to v38.100.0 (00c426e)
  • deps: update renovate docker tag to v38.100.1 (e9da8a6)
  • deps: update renovate docker tag to v38.101.0 (af7815d)
  • deps: update renovate docker tag to v38.101.1 (157d4d8)
  • deps: update renovate docker tag to v38.84.0 (6cc098a)
  • deps: update renovate docker tag to v38.84.1 (e1ef94d)
  • deps: update renovate docker tag to v38.85.1 (e89e3ea)
  • deps: update renovate docker tag to v38.86.0 (9251f4a)
  • deps: update renovate docker tag to v38.88.1 (4d5a44a)
  • deps: update renovate docker tag to v38.88.2 (1caa178)
  • deps: update renovate docker tag to v38.89.2 (7602472)
  • deps: update renovate docker tag to v38.89.3 (f571b99)
  • deps: update renovate docker tag to v38.91.0 (7b3db30)
  • deps: update renovate docker tag to v38.91.2 (3607015)
  • deps: update renovate docker tag to v38.91.5 (063fac8)
  • deps: update renovate docker tag to v38.92.0 (5663610)
  • deps: update renovate docker tag to v38.93.0 (2b64bb7)
  • deps: update renovate docker tag to v38.93.1 (6e3d1f1)
  • deps: update renovate docker tag to v38.93.6 (bc2b6fa)
  • deps: update renovate docker tag to v38.94.2 (604f795)
  • deps: update renovate docker tag to v38.94.3 (92c7bc3)
  • deps: update renovate docker tag to v38.95.4 (c939d62)
  • deps: update renovate docker tag to v38.97.0 (e16ec5f)
  • deps: update renovate docker tag to v38.97.1 (93190dc)
  • deps: update renovate docker tag to v38.98.0 (d1ece14)

v40.2.10

Compare Source

Miscellaneous Chores
  • deps: update pnpm to v9.10.0 (4ecccc8)
Build System
  • deps: update dependency typescript to v5.6.2 (ccb9633)

v40.2.9

Compare Source

Documentation
  • update references to ghcr.io/renovatebot/renovate to v38.80.0 (54adf7f)
  • update references to renovatebot/github-action to v40.2.8 (f6f4de0)
Miscellaneous Chores
Build System
  • deps: lock file maintenance (32073a4)
Continuous Integration
  • deps: update renovate docker tag to v38.73.3 (476a91f)
  • deps: update renovate docker tag to v38.73.5 (1649e40)
  • deps: update renovate docker tag to v38.74.1 (65f5c11)
  • deps: update renovate docker tag to v38.75.0 (fa73ff0)
  • deps: update renovate docker tag to v38.76.1 (438981f)
  • deps: update renovate docker tag to v38.77.0 (919ed13)
  • deps: update renovate docker tag to v38.77.2 (2009e09)
  • deps: update renovate docker tag to v38.77.3 (8a0ce4d)
  • deps: update renovate docker tag to v38.77.5 (aeffa00)
  • deps: update renovate docker tag to v38.77.8 (46076e2)
  • deps: update renovate docker tag to v38.79.0 (3f7fa1f)
  • deps: update renovate docker tag to v38.80.0 (eb68a01)

v40.2.8

Compare Source

Documentation
  • update references to ghcr.io/renovatebot/renovate to v38.61.1 (5993be6)
  • update references to ghcr.io/renovatebot/renovate to v38.72.1 (a4cf16d)
  • update references to renovatebot/github-action to v40.2.7 (511a7a7)
Miscellaneous Chores
Build System
  • deps: lock file maintenance (00a9d0f)
Continuous Integration
  • deps: update renovate docker tag to v38.54.1 (9e15fe4)
  • deps: update renovate docker tag to v38.55.1 (ebed852)
  • deps: update renovate docker tag to v38.55.2 (ea137aa)
  • deps: update renovate docker tag to v38.55.4 (47bb8fa)
  • deps: update renovate docker tag to v38.55.5 (8721f4c)
  • deps: update renovate docker tag to v38.57.0 (c8714d9)
  • deps: update renovate docker tag to v38.57.1 (3297675)
  • deps: update renovate docker tag to v38.57.3 (7467495)
  • deps: update renovate docker tag to v38.58.0 (44c8d6f)
  • deps: update renovate docker tag to v38.58.1 (da00a9c)
  • deps: update renovate docker tag to v38.58.2 (cda286d)
  • deps: update renovate docker tag to v38.59.1 (cf5432f)
  • deps: update renovate docker tag to v38.59.2 (282b8d8)
  • deps: update renovate docker tag to v38.61.1 (749b819)
  • deps: update renovate docker tag to v38.64.0 (71ee52a)
  • deps: update renovate docker tag to v38.64.1 (7337445)
  • deps: update renovate docker tag to v38.66.1 (5e5e62b)
  • deps: update renovate docker tag to v38.67.1 (8639a3d)
  • deps: update renovate docker tag to v38.67.2 ([e7fba3a](htt

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 Renovate Bot.

@simple-icons simple-icons bot added the dependencies Pull requests that update a dependency file label Nov 1, 2024
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.

0 participants