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 non-major dependencies #2

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

Conversation

renovate[bot]
Copy link

@renovate renovate bot commented Mar 12, 2024

This PR contains the following updates:

Package Change Age Adoption Passing Confidence
@types/node (source) 22.5.4 -> 22.13.8 age adoption passing confidence
ansis 3.3.2 -> 3.17.0 age adoption passing confidence
chalk 5.3.0 -> 5.4.1 age adoption passing confidence
dotenv 16.4.5 -> 16.4.7 age adoption passing confidence
picocolors 1.1.0 -> 1.1.1 age adoption passing confidence
pnpm (source) 9.10.0 -> 9.15.6 age adoption passing confidence
prettier (source) 3.3.3 -> 3.5.2 age adoption passing confidence
typescript (source) 5.6.2 -> 5.8.2 age adoption passing confidence
vitest (source) 2.0.5 -> 2.1.9 age adoption passing confidence

Release Notes

webdiscus/ansis (ansis)

v3.17.0

Compare Source

  • feat: add support for old typescript < 5.6 to fix the error TS2526:
    A 'this' type is available only in a non-static member of a class or interface.
    NOTE: if you use already typescript >= 5.6, you can skip this version.

v3.16.0

Compare Source

  • chore: after testing bump version to release version 3.16.0

v3.15.0

Compare Source

  • feat: reduce the package size by ~200 bytes.
  • refactor: invisible micro optimisations.
  • chore: after testing in many projects bump v3.15.0-beta.2 to release v3.15.0.
  • chore: update dev dependencies.
  • test: add tests for tsup bundler.

v3.14.0

Compare Source

  • feat: add support for chromium-based browsers.
    Now you can use truecolor in the consoles of Chrome, Edge, Brave, and other Chromium-based browsers.
    Browsers that do not support ANSI codes will display black and white text.
  • refactor: slight reduce the package size by ~40 bytes.

v3.12.0

Compare Source

  • feat: add support for \n as a newline in template literals, e.g.: green`Hello\nWorld` renders:
    Hello
    World

v3.11.0

Compare Source

  • feat: add support for legacy Node.js v14 (in package.json for npm was changed the engines to "node": ">=14")
  • test: add test in GitHub workflow for legacy Node.js versions: 14, 16
  • chore: update dev dependencies

v3.10.0

Compare Source

  • feat: ansis.reset() returns the reset escape code \e[0m
  • feat: micro optimisations for slight performance improvements
  • chore: code cleanup
  • docs: update readme

v3.9.0

Compare Source

  • feat: revert handling of null and undefined values to empty string as before v3.7.0, #​25

v3.8.1

Compare Source

  • refactor: optimize package size

v3.8.0

Compare Source

  • feat: enforce a specific color support by a FORCE_COLOR value:

    • false - Disables colors
    • 0 - Disables colors
    • true (or unset) - Auto detects the supported colors (if no color detected, enforce truecolor)
    • 1 - Enables 16 colors
    • 2 - Enables 256 colors
    • 3 - Enables truecolor
  • fix: if the function argument is an empty string should be returned an empty string w/o escape codes:

    ansis.red('') => '', // returns empty string w/o escape codes
  • refactor: optimize code by size

v3.7.0

Compare Source

  • fix: cast falsy values false, null, undefined, NaN to a string.
    In previous versions, the empty string '' was returned for falsy values.
  • fix: functions with argument 0 , e.g. ansis.red(0), returning empty string '', now return colored value '0'
  • test: add tests for function arguments with various types

v3.6.0

Compare Source

  • feat: remove undocumented pointless dummy function ansis(any)

[!WARNING]
This is not a BREAKING CHANGE because it was never officially documented!

import ansis from 'ansis';
ansis('text'); // <= now will occur the ERROR TS2349: This expression is not callable.

This warning applies only to projects where Chalk was replaced with Ansis and something like chalk('text') was used.

Just replace ansis('text') with 'text'.

The ansis('text') function was a dummy and did nothing except return the same input string.

  • chore: update license to current date

v3.5.2

Compare Source

  • fix: TS2339: Property 'strip' does not exist on type when the TS compiler option module is node16
  • refactor: optimize index.d.ts to reduce package size from 7.3 kB to 7.0 kB

v3.5.1

Compare Source

  • refactor: invisible code optimisation

v3.5.0

Compare Source

  • refactor: optimise npm package to reduce size by 3 kB, from 10.3 kB to 7.3 kB
  • feat: add support the COLORTERM variable for values: truecolor, 24bit, ansi256, ansi (16 colors)
  • feat: add support the xterm-direct terminal to detect the truecolor
  • fix: remove detection environment variable GPG_TTY introduced in 3.5.0-beta.0 version, because it make no sense
  • fix: default import in TypeScript, compiled with tsc:
    import ansis from 'ansis' now works so well as import * as ansis from 'ansis'

v3.4.0

Compare Source

  • refactor: optimise npm package to reduce size by ~1 KB, from 11.3 kB to 10.3 kB
chalk/chalk (chalk)

v5.4.1

Compare Source

v5.4.0

Compare Source

  • Update CIRCLECI environments to return level 3 color support f838120
motdotla/dotenv (dotenv)

v16.4.7

Compare Source

Changed
  • Ignore .tap folder when publishing. (oops, sorry about that everyone. - @​motdotla) #​848

v16.4.6

Compare Source

Changed
  • Clean up stale dev dependencies #​847
  • Various README updates clarifying usage and alternative solutions using dotenvx
alexeyraspopov/picocolors (picocolors)

v1.1.1

Compare Source

  • Moved TypeScript declarations to a d.ts file (#​82)
  • Reworked color detection algorithm to properly work with empty strings in NO_COLOR and FORCE_COLOR env variables (#​87)
  • Eliminated require() call to make the package compatible with some tools (#​87)
pnpm/pnpm (pnpm)

v9.15.6: pnpm 9.15.6

Compare Source

Patch Changes

  • Fix instruction for updating pnpm with corepack #​9101.
  • Print pnpm's version after the execution time at the end of the console output.
  • The pnpm version specified by packageManager cannot start with v.
  • Fix a bug causing catalog snapshots to be removed from the pnpm-lock.yaml file when using --fix-lockfile and --filter. #​8639
  • Fix a bug causing catalog protocol dependencies to not re-resolve on a filtered install #​8638.

v9.15.5: pnpm 9.15.5

Compare Source

Patch Changes

  • Verify that the package name is valid when executing the publish command.
  • When running pnpm install, the preprepare and postprepare scripts of the project should be executed #​8989.
  • Quote args for scripts with shell-quote to support new lines (on POSIX only) #​8980.
  • Proxy settings should be respected, when resolving Git-hosted dependencies #​6530.
  • Replace strip-ansi with the built-in util.stripVTControlCharacters #​9009.

Platinum Sponsors

Bit Bit Figma

Gold Sponsors

Discord Prisma
u|screen JetBrains
Nx CodeRabbit
Route4Me Workleap
Canva

v9.15.4: pnpm 9.15.4

Compare Source

Patch Changes

  • Ensure that recursive pnpm update --latest <pkg> updates only the specified package, with dedupe-peer-dependents=true.

Platinum Sponsors

Bit Bit Figma

Gold Sponsors

Discord Prisma
u|screen JetBrains
Nx CodeRabbit
Route4Me Workleap
Canva

v9.15.3: pnpm 9.15.3

Compare Source

Patch Changes

  • Fixed the Regex used to find the package manifest during packing #​8938.
  • pnpm update --filter <pattern> --latest <pkg> should only change the specified package for the specified workspace, when dedupe-peer-dependents is set to true #​8877.
  • Exclude .DS_Store file at patch-commit #​8922.
  • Fix a bug in which pnpm patch is unable to bring back old patch without specifying @version suffix #​8919.

Platinum Sponsors

Bit Bit Figma

Gold Sponsors

Discord Prisma
u|screen JetBrains
Nx CodeRabbit
Route4Me Workleap
Canva

v9.15.2: pnpm 9.15.2

Compare Source

Patch Changes
  • Fixed publish/pack error with workspace dependencies with relative paths #​8904. It was broken in v9.4.0 (398472c).
  • Use double quotes in the command suggestion by pnpm patch on Windows #​7546.
  • Do not fall back to SSH, when resolving a git-hosted package if git ls-remote works via HTTPS #​8906.
  • Improve how packages with blocked lifecycle scripts are reported during installation. Always print the list of ignored scripts at the end of the output. Include a hint about how to allow the execution of those packages.
Platinum Sponsors
Bit Bit Figma
Gold Sponsors
Discord Prisma
u|screen JetBrains
Nx CodeRabbit
Route4Me Workleap
Canva

v9.15.1: pnpm 9.15.1

Compare Source

Patch Changes
  • pnpm remove should not link dependencies from the workspace, when link-workspace-packages is set to false #​7674.
  • Installation with hoisted node_modules should not fail, when a dependency has itself in its own peer dependencies #​8854.
Platinum Sponsors
Bit Bit Figma
Gold Sponsors
Discord Prisma
u|screen JetBrains
Nx CodeRabbit
Route4Me

v9.15.0: pnpm 9.15

Compare Source

Minor Changes

  • Metadata directory version bumped to force fresh cache after we shipped a fix to the metadata write function. This change is backward compatible as install doesn't require a metadata cache.

Patch Changes

  • pnpm update --global should not crash if there are no any global packages installed #​7898.
  • Fix an exception when running pnpm update --interactive if catalogs are used.

Platinum Sponsors

Bit Bit Figma

Gold Sponsors

Discord Prisma
u|screen JetBrains
Nx CodeRabbit
Route4Me

v9.14.4: pnpm 9.14.4

Compare Source

Patch Changes

  • Don't ever save mutated metadata to the metadata cache.

Platinum Sponsors

Bit Bit Figma

Gold Sponsors

Discord Prisma
u|screen JetBrains
Nx CodeRabbit
Route4Me

Silver Sponsors

Leniolabs_ Vercel
Depot moonrepo
devowl.io Cerbos
vlt Vite
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/all-minor-patch branch from c2424b4 to df47565 Compare March 14, 2024 00:00
@renovate renovate bot changed the title Update dependency @types/node to v20.11.26 Update dependency @types/node to v20.11.27 Mar 14, 2024
@renovate renovate bot force-pushed the renovate/all-minor-patch branch from df47565 to 3f709a4 Compare March 15, 2024 20:56
@renovate renovate bot changed the title Update dependency @types/node to v20.11.27 Update all non-major dependencies Mar 15, 2024
@renovate renovate bot force-pushed the renovate/all-minor-patch branch 4 times, most recently from 4e2f693 to 214f3df Compare March 21, 2024 08:48
@renovate renovate bot force-pushed the renovate/all-minor-patch branch 4 times, most recently from 2d34eaa to a91159a Compare March 31, 2024 02:40
@renovate renovate bot force-pushed the renovate/all-minor-patch branch 4 times, most recently from 47186b2 to 8496f35 Compare April 6, 2024 17:52
@renovate renovate bot force-pushed the renovate/all-minor-patch branch 3 times, most recently from 5124f03 to ba8c36c Compare April 15, 2024 02:52
@renovate renovate bot force-pushed the renovate/all-minor-patch branch 3 times, most recently from 38850f1 to 6897253 Compare April 30, 2024 23:48
@renovate renovate bot force-pushed the renovate/all-minor-patch branch from 6897253 to cfc55c1 Compare May 2, 2024 11:35
@renovate renovate bot changed the title Update all non-major dependencies Update all non-major dependencies - autoclosed May 3, 2024
@renovate renovate bot closed this May 3, 2024
@renovate renovate bot deleted the renovate/all-minor-patch branch May 3, 2024 23:49
@renovate renovate bot changed the title Update all non-major dependencies - autoclosed Update all non-major dependencies May 5, 2024
@renovate renovate bot reopened this May 5, 2024
@renovate renovate bot restored the renovate/all-minor-patch branch May 5, 2024 05:36
@renovate renovate bot force-pushed the renovate/all-minor-patch branch 2 times, most recently from b4d008a to 7f04020 Compare December 11, 2024 17:38
@renovate renovate bot force-pushed the renovate/all-minor-patch branch 2 times, most recently from 34efffb to e578062 Compare December 21, 2024 14:32
@renovate renovate bot force-pushed the renovate/all-minor-patch branch 5 times, most recently from b43e589 to 986ec6b Compare December 29, 2024 08:30
@renovate renovate bot force-pushed the renovate/all-minor-patch branch 4 times, most recently from 0ad69cb to 9dcba2e Compare January 6, 2025 19:08
@renovate renovate bot force-pushed the renovate/all-minor-patch branch 3 times, most recently from 55e2597 to 54c6e02 Compare January 15, 2025 07:26
@renovate renovate bot force-pushed the renovate/all-minor-patch branch 2 times, most recently from 464317f to 1484e2e Compare January 24, 2025 04:04
@renovate renovate bot force-pushed the renovate/all-minor-patch branch 3 times, most recently from 1d1216f to 143ee43 Compare February 5, 2025 03:43
@renovate renovate bot force-pushed the renovate/all-minor-patch branch 2 times, most recently from 0d9a3fe to 0adee41 Compare February 15, 2025 08:02
@renovate renovate bot force-pushed the renovate/all-minor-patch branch 3 times, most recently from 190bebe to 21ee43e Compare February 22, 2025 16:01
@renovate renovate bot force-pushed the renovate/all-minor-patch branch 2 times, most recently from 3dd6f63 to 37a08f3 Compare March 1, 2025 03:38
@renovate renovate bot force-pushed the renovate/all-minor-patch branch from 37a08f3 to 09426fe Compare March 2, 2025 08:05
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Projects
None yet
Development

Successfully merging this pull request may close these issues.

0 participants