[PR #2765] [CLOSED] build(deps-dev): bump chalk from 4.1.2 to 5.1.0 #4054

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

📋 Pull Request Information

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

Base: mainHead: dependabot/npm_and_yarn/chalk-5.1.0


📝 Commits (1)

  • 9ed3836 build(deps-dev): bump chalk from 4.1.2 to 5.1.0

📊 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.1.0.

Release notes

Sourced from chalk's releases.

v5.1.0

  • Expose style names (#566) d7d7571

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

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 need to use TypeScript 4.7 or later. 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/2765 **Author:** [@dependabot[bot]](https://github.com/apps/dependabot) **Created:** 10/10/2022 **Status:** ❌ Closed **Base:** `main` ← **Head:** `dependabot/npm_and_yarn/chalk-5.1.0` --- ### 📝 Commits (1) - [`9ed3836`](https://github.com/hoppscotch/hoppscotch/commit/9ed38366be0ef3ec6711c4931a99011a5633ca28) build(deps-dev): bump chalk from 4.1.2 to 5.1.0 ### 📊 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.1.0. <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.1.0</h2> <ul> <li>Expose style names (<a href="https://github-redirect.dependabot.com/chalk/chalk/issues/566">#566</a>) d7d7571</li> </ul> <p><a href="https://github.com/chalk/chalk/compare/v5.0.1...v5.1.0">https://github.com/chalk/chalk/compare/v5.0.1...v5.1.0</a></p> <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 need to use TypeScript 4.7 or later. <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/92c55db46f2396c18764e55e6a52dcb49884a42b"><code>92c55db</code></a> 5.1.0</li> <li><a href="https://github.com/chalk/chalk/commit/d7d75717b3d5a482edd0a1b98b35c7443791709f"><code>d7d7571</code></a> Expose style names (<a href="https://github-redirect.dependabot.com/chalk/chalk/issues/566">#566</a>)</li> <li><a href="https://github.com/chalk/chalk/commit/96f44c976bfcad5651b50831821ce75b441d272b"><code>96f44c9</code></a> Meta tweaks</li> <li><a href="https://github.com/chalk/chalk/commit/c2311622c3f5b972cf80b9f353ea82679cc77edf"><code>c231162</code></a> Use template literal types for simple color name transformations in the TypeS...</li> <li><a href="https://github.com/chalk/chalk/commit/ba5c385ecf6c2ad8a0fadb8b94e1ea515c8f9496"><code>ba5c385</code></a> Update screenshot</li> <li><a href="https://github.com/chalk/chalk/commit/503b9d35cd0a1fe2ac80deadd06def00db8221a0"><code>503b9d3</code></a> Update Replit badge (<a href="https://github-redirect.dependabot.com/chalk/chalk/issues/551">#551</a>)</li> <li><a href="https://github.com/chalk/chalk/commit/b17d862944f9efea1ee12aaf80fe19ed5063a34d"><code>b17d862</code></a> Improve browser detection (<a href="https://github-redirect.dependabot.com/chalk/chalk/issues/542">#542</a>)</li> <li><a href="https://github.com/chalk/chalk/commit/d28690e66b184dc19b9baaea1cce900737aa8ccc"><code>d28690e</code></a> Refactor: Replace deprecated <code>String#substr()</code> (<a href="https://github-redirect.dependabot.com/chalk/chalk/issues/541">#541</a>)</li> <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>Additional commits viewable in <a href="https://github.com/chalk/chalk/compare/v4.1.2...v5.1.0">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.1.0)](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:37:24 +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#4054
No description provided.