[PR #2232] [CLOSED] chore(deps-dev): bump chalk from 4.1.2 to 5.0.1 #3685

Closed
opened 2026-03-17 01:16:35 +03:00 by kerem · 0 comments
Owner

📋 Pull Request Information

Original PR: https://github.com/hoppscotch/hoppscotch/pull/2232
Author: @dependabot[bot]
Created: 4/4/2022
Status: Closed

Base: mainHead: dependabot/npm_and_yarn/chalk-5.0.1


📝 Commits (1)

  • e642a48 chore(deps-dev): bump chalk from 4.1.2 to 5.0.1

📊 Changes

1 file changed (+1 additions, -1 deletions)

View changed files

📝 packages/hoppscotch-cli/package.json (+1 -1)

📄 Description

Bumps chalk from 4.1.2 to 5.0.1.

Release notes

Sourced from chalk's releases.

v5.0.1

  • Add main field to package.json for backwards compatibility with some developer tools 85f7e96

https://github.com/chalk/chalk/compare/v5.0.0...v5.0.1

v5.0.0

Breaking

  • This package is now pure ESM. Please read this.
    • If you use TypeScript, you will want to stay on Chalk 4 until TypeScript 4.6 is out. Why.
    • If you use a bundler, make sure it supports ESM and that you have correctly configured it for ESM.
    • The Chalk issue tracker is not a support channel for your favorite build/bundler tool.
    • It's totally fine to stay on Chalk v4. It's been stable for years.
  • Require Node.js 12.20 fa16f4e
  • Move some properties off the default export to individual named exports:
    • chalk.InstanceChalk
    • chalk.supportsColorsupportsColor
    • chalk.stderrchalkStderr
    • chalk.stderr.supportsColorsupportsColorStderr
  • Remove .keyword(), .hsl(), .hsv(), .hwb(), and .ansi() coloring methods (#433) 4cf2e40
    • These were not commonly used and added a lot of bloat to Chalk. You can achieve the same by using the color-convert package.
  • The tagged template literal support moved into a separate package: chalk-template (#524) c987c61
-import chalk from 'chalk';
+import chalkTemplate from 'chalk-template';

-chalk2 + 3 = {bold ${2 + 3}}; +chalkTemplate2 + 3 = {bold ${2 + 3}};

Improvements

https://github.com/chalk/chalk/compare/v4.1.0...v5.0.0

Commits

Dependabot compatibility score

Dependabot will resolve any conflicts with this PR as long as you don't alter it yourself. You can also trigger a rebase manually by commenting @dependabot rebase.


Dependabot commands and options

You can trigger Dependabot actions by commenting on this PR:

  • @dependabot rebase will rebase this PR
  • @dependabot recreate will recreate this PR, overwriting any edits that have been made to it
  • @dependabot merge will merge this PR after your CI passes on it
  • @dependabot squash and merge will squash and merge this PR after your CI passes on it
  • @dependabot cancel merge will cancel a previously requested merge and block automerging
  • @dependabot reopen will reopen this PR if it is closed
  • @dependabot close will close this PR and stop Dependabot recreating it. You can achieve the same result by closing it manually
  • @dependabot ignore this major version will close this PR and stop Dependabot creating any more for this major version (unless you reopen the PR or upgrade to it yourself)
  • @dependabot ignore this minor version will close this PR and stop Dependabot creating any more for this minor version (unless you reopen the PR or upgrade to it yourself)
  • @dependabot ignore this dependency will close this PR and stop Dependabot creating any more for this dependency (unless you reopen the PR or upgrade to it yourself)

🔄 This issue represents a GitHub Pull Request. It cannot be merged through Gitea due to API limitations.

## 📋 Pull Request Information **Original PR:** https://github.com/hoppscotch/hoppscotch/pull/2232 **Author:** [@dependabot[bot]](https://github.com/apps/dependabot) **Created:** 4/4/2022 **Status:** ❌ Closed **Base:** `main` ← **Head:** `dependabot/npm_and_yarn/chalk-5.0.1` --- ### 📝 Commits (1) - [`e642a48`](https://github.com/hoppscotch/hoppscotch/commit/e642a48dc562e6ec1b1818eb89e41b8adfe96606) chore(deps-dev): bump chalk from 4.1.2 to 5.0.1 ### 📊 Changes **1 file changed** (+1 additions, -1 deletions) <details> <summary>View changed files</summary> 📝 `packages/hoppscotch-cli/package.json` (+1 -1) </details> ### 📄 Description Bumps [chalk](https://github.com/chalk/chalk) from 4.1.2 to 5.0.1. <details> <summary>Release notes</summary> <p><em>Sourced from <a href="https://github.com/chalk/chalk/releases">chalk's releases</a>.</em></p> <blockquote> <h2>v5.0.1</h2> <ul> <li>Add <code>main</code> field to package.json for backwards compatibility with some developer tools 85f7e96</li> </ul> <p><a href="https://github.com/chalk/chalk/compare/v5.0.0...v5.0.1">https://github.com/chalk/chalk/compare/v5.0.0...v5.0.1</a></p> <h2>v5.0.0</h2> <h3>Breaking</h3> <ul> <li><strong>This package is now pure ESM. Please <a href="https://gist.github.com/sindresorhus/a39789f98801d908bbc7ff3ecc99d99c">read this</a>.</strong> <ul> <li>If you use TypeScript, you will want to stay on Chalk 4 until TypeScript 4.6 is out. <a href="https://github-redirect.dependabot.com/microsoft/TypeScript/issues/46452">Why.</a></li> <li>If you use a bundler, make sure it supports ESM and that you have correctly configured it for ESM.</li> <li>The Chalk issue tracker is not a support channel for your favorite build/bundler tool.</li> <li>It's totally fine to stay on Chalk v4. It's been stable for years.</li> </ul> </li> <li>Require Node.js 12.20 fa16f4e</li> <li>Move some properties off the default export to individual named exports: <ul> <li><code>chalk.Instance</code> → <code>Chalk</code></li> <li><code>chalk.supportsColor</code> → <code>supportsColor</code></li> <li><code>chalk.stderr</code> → <code>chalkStderr</code></li> <li><code>chalk.stderr.supportsColor</code> → <code>supportsColorStderr</code></li> </ul> </li> <li>Remove <code>.keyword()</code>, <code>.hsl()</code>, <code>.hsv()</code>, <code>.hwb()</code>, and <code>.ansi()</code> coloring methods (<a href="https://github-redirect.dependabot.com/chalk/chalk/issues/433">#433</a>) 4cf2e40 <ul> <li>These were not commonly used and added a lot of bloat to Chalk. You can achieve the same by using the <a href="https://github.com/Qix-/color-convert"><code>color-convert</code> package</a>.</li> </ul> </li> <li>The tagged template literal support moved into a separate package: <a href="https://github.com/chalk/chalk-template"><code>chalk-template</code></a> (<a href="https://github-redirect.dependabot.com/chalk/chalk/issues/524">#524</a>) c987c61</li> </ul> <pre lang="diff"><code>-import chalk from 'chalk'; +import chalkTemplate from 'chalk-template'; <p>-chalk<code>2 + 3 = {bold ${2 + 3}}</code>; +chalkTemplate<code>2 + 3 = {bold ${2 + 3}}</code>; </code></pre></p> <h3>Improvements</h3> <ul> <li>Bundle dependencies 04fdbd6 <ul> <li>This means Chalk no longer has any dependencies 🎉</li> </ul> </li> <li><a href="https://packagephobia.com/result?p=chalk">The install size is less than half of v4.</a></li> <li>Add <code>overline</code> style (<a href="https://github-redirect.dependabot.com/chalk/chalk/issues/433">#433</a>) 4cf2e40</li> <li>Preserve function prototype methods (<a href="https://github-redirect.dependabot.com/chalk/chalk/issues/434">#434</a>) 0fba91b</li> </ul> <p><a href="https://github.com/chalk/chalk/compare/v4.1.0...v5.0.0">https://github.com/chalk/chalk/compare/v4.1.0...v5.0.0</a></p> </blockquote> </details> <details> <summary>Commits</summary> <ul> <li><a href="https://github.com/chalk/chalk/commit/bccde97f8a1bb125d4fe99e8fd355182101ff4f2"><code>bccde97</code></a> 5.0.1</li> <li><a href="https://github.com/chalk/chalk/commit/85f7e96f758e95dee5211b9bca1a173b8fb3abe9"><code>85f7e96</code></a> Add <code>main</code> field to package.json for backwards compatibiltiy</li> <li><a href="https://github.com/chalk/chalk/commit/4d5c4795ad24c326ae16bfe0c39c826c732716a9"><code>4d5c479</code></a> 5.0.0</li> <li><a href="https://github.com/chalk/chalk/commit/7a6893551d93ebe0bd031141b3e2b91d7e0676aa"><code>7a68935</code></a> Fix code coverage</li> <li><a href="https://github.com/chalk/chalk/commit/04fdbd6d8d262ed8668cf3f2e94f647d2bc028d8"><code>04fdbd6</code></a> Bundle dependencies</li> <li><a href="https://github.com/chalk/chalk/commit/d7c4aac07e422c8ae534897b3f1707aa71a51c73"><code>d7c4aac</code></a> Upgrade dependencies</li> <li><a href="https://github.com/chalk/chalk/commit/09fd5c4ba812cc2e3a0df183caf3e53cc556e440"><code>09fd5c4</code></a> Re-export types from <code>supports-color</code> (<a href="https://github-redirect.dependabot.com/chalk/chalk/issues/526">#526</a>)</li> <li><a href="https://github.com/chalk/chalk/commit/c987c614869ba286f0eb11c1966ee1d135c80599"><code>c987c61</code></a> Remove support for tagged template literals (<a href="https://github-redirect.dependabot.com/chalk/chalk/issues/524">#524</a>)</li> <li><a href="https://github.com/chalk/chalk/commit/f478655c3c04c844f70a596d9ec750c3da00f795"><code>f478655</code></a> Update dependents number in readme (<a href="https://github-redirect.dependabot.com/chalk/chalk/issues/521">#521</a>)</li> <li><a href="https://github.com/chalk/chalk/commit/3761e455a17ebb1c01b2736fbe8bd42534383ab2"><code>3761e45</code></a> Meta tweak (<a href="https://github-redirect.dependabot.com/chalk/chalk/issues/520">#520</a>)</li> <li>Additional commits viewable in <a href="https://github.com/chalk/chalk/compare/v4.1.2...v5.0.1">compare view</a></li> </ul> </details> <br /> [![Dependabot compatibility score](https://dependabot-badges.githubapp.com/badges/compatibility_score?dependency-name=chalk&package-manager=npm_and_yarn&previous-version=4.1.2&new-version=5.0.1)](https://docs.github.com/en/github/managing-security-vulnerabilities/about-dependabot-security-updates#about-compatibility-scores) Dependabot will resolve any conflicts with this PR as long as you don't alter it yourself. You can also trigger a rebase manually by commenting `@dependabot rebase`. [//]: # (dependabot-automerge-start) [//]: # (dependabot-automerge-end) --- <details> <summary>Dependabot commands and options</summary> <br /> You can trigger Dependabot actions by commenting on this PR: - `@dependabot rebase` will rebase this PR - `@dependabot recreate` will recreate this PR, overwriting any edits that have been made to it - `@dependabot merge` will merge this PR after your CI passes on it - `@dependabot squash and merge` will squash and merge this PR after your CI passes on it - `@dependabot cancel merge` will cancel a previously requested merge and block automerging - `@dependabot reopen` will reopen this PR if it is closed - `@dependabot close` will close this PR and stop Dependabot recreating it. You can achieve the same result by closing it manually - `@dependabot ignore this major version` will close this PR and stop Dependabot creating any more for this major version (unless you reopen the PR or upgrade to it yourself) - `@dependabot ignore this minor version` will close this PR and stop Dependabot creating any more for this minor version (unless you reopen the PR or upgrade to it yourself) - `@dependabot ignore this dependency` will close this PR and stop Dependabot creating any more for this dependency (unless you reopen the PR or upgrade to it yourself) </details> --- <sub>🔄 This issue represents a GitHub Pull Request. It cannot be merged through Gitea due to API limitations.</sub>
kerem 2026-03-17 01:16:35 +03:00
Sign in to join this conversation.
No milestone
No project
No assignees
1 participant
Notifications
Due date
The due date is invalid or out of range. Please use the format "yyyy-mm-dd".

No due date set.

Dependencies

No dependencies set.

Reference
starred/hoppscotch#3685
No description provided.