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

fix(deps): update all major dependencies (major) #7

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

Conversation

renovate[bot]
Copy link

@renovate renovate bot commented Sep 22, 2019

Mend Renovate

This PR contains the following updates:

Package Change Age Adoption Passing Confidence
chalk 2.4.2 -> 5.3.0 age adoption passing confidence
meow 5.0.0 -> 13.2.0 age adoption passing confidence
ora 3.4.0 -> 8.0.1 age adoption passing confidence
puppeteer (source) 1.19.0 -> 23.0.1 age adoption passing confidence
release-it 12.3.5 -> 17.6.0 age adoption passing confidence

Release Notes

chalk/chalk (chalk)

v5.3.0

Compare Source

v5.2.0

Compare Source

v5.1.2

Compare Source

v5.1.1

Compare Source

  • Improved the names of exports introduced in 5.1.0 (#​567) 6e0df05
    • We of course preserved the old names.

v5.1.0

Compare Source

v5.0.1

Compare Source

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

v5.0.0

Compare Source

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';

-chalk`2 + 3 = {bold ${2 + 3}}`;
+chalkTemplate`2 + 3 = {bold ${2 + 3}}`;
Improvements

v4.1.2

Compare Source

  • Readme updates

v4.1.1

Compare Source

v4.1.0

Compare Source

v4.0.0

Compare Source

Breaking
  • Require Node.js 10 61999a4
  • Change the Level TypeScript type to be a union instead of enum f0f4638
-if (chalk.level > Level.None) {}
+if (chalk.level > 0) {}
Improvements
  • Use Object.setPrototypeOf as __proto__ could potentially be disabled (#​387) 63469d3

v3.0.0

Compare Source

This release has been in development for more than a year and massively improves performance and the time it takes to import Chalk.

Thanks to @​stroncium for his hard work on this. 🙌

Breaking
  • Require Node.js 8 3ef170b
  • Remove the .enabled property in favor of .level (#​356) 1f77953
    • Why: It was confusing to users to have two properties for detecting color support.
    • Migrate:
-if (chalk.enabled) {}
+if (chalk.level > 0) {}
  • Remove chalk.constructor() in favor of chalk.Instance() (#​322) de2f4cd
    • Migrate:
-new chalk.constructor({level: 1});
+new chalk.Instance({level: 1})
Minor breaking
-import chalk from 'chalk';
+import chalk = require('chalk');
  • Drop built-in Flow type definition d3be9c6
    • Why: None of us use Flow and we were not good at maintaining the type definition. You can get the types at flow-typed (needs to be updated to Chalk v3, open an issue on flow-typed).
  • Rename the ChalkOptions TypeScript type to Options cf66156
  • Remove dim style workaround for Windows (#​331) cd5de7a
    • Why: The issue was fixed in newer Windows 10 builds.
  • Remove the blue color workaround for Windows (#​330) 2ca015c
    • Why: The issue was fixed in newer Windows 10 builds.
Enhancements
Color detection
Fixes
  • Fix support for nested styles (#​335) 87156ce
  • Fix const enum for TypeScript (#​364) 4e65299
  • Fix TypeScript type for supportsColor which is top‑level only (#​342) b3e9b91
  • Fix TypeScript type for chalk.supportsColor (#​347) d82b2a6
  • Fix TypeScript type for tagged template literal argument to accept unknown instead of just string (#​316) 7f6e563
sindresorhus/meow (meow)

v13.2.0

Compare Source

v13.1.0

Compare Source

  • Remove hardRejection option 99fe7a6
    • It's the default behavior in Node.js since Node.js 16.

v13.0.0

Compare Source

Breaking
Improvements

v12.1.1

Compare Source

v12.1.0

Compare Source

v12.0.1

Compare Source

v12.0.0

Compare Source

Breaking
Improvements

Thanks to @​tommy-mitchell for doing most of the work on this release 🙌


v11.0.0

Compare Source

Breaking
Improvements

v10.1.5

Compare Source

v10.1.4

Compare Source

  • Fix autoHelp and autoVersion with allowUnknownFlags set to false (#​215) 25a0903

v10.1.3

Compare Source

v10.1.2

Compare Source

v10.1.1

Compare Source

  • Fix failure with isMultiple when isRequired function returns false (#​194) e1f0e24

v10.1.0

Compare Source

v10.0.1

Compare Source

v10.0.0

Compare Source

Breaking
  • Require Node.js 12 (#​181) 05320ac
  • This package is now pure ESM. Please read this.
  • You must now pass in the importMeta option so meow can find your package.json:
 const cli = meow(…, {
+	importMeta: import.meta
 });

Previously, meow used some tricks to infer the location of your package.json, but this no longer works in ESM.

v9.0.0

Compare Source

Breaking
  • Strictly validate flag config (#​168) 1609709
    This is a breaking change if you incorrectly used kebab-case format for flags (was never officially supported) in the meow config:
 meow(``, {
 	flags: {
-		'foo-bar': {
+		fooBar: {
 			type: 'boolean'
 		}
 	}
 });

v8.1.2

Compare Source

v8.1.1

Compare Source

v8.1.0

Compare Source

v8.0.0

Compare Source

Breaking
Fixes

v7.1.1

Compare Source

v7.1.0

Compare Source

  • Improve flags option TypeScript types to acknowledge isMultiple and isRequired options (#​154) e38789f

v7.0.1

Compare Source

v7.0.0

Compare Source

Breaking
Improvements

v6.1.1

Compare Source

v6.1.0

Compare Source

v6.0.1

Compare Source

v6.0.0

Compare Source

Breaking
  • Require Node.js 8 cd635d4
  • Remove flag's aliases from the flags property (#​108) f36715c
  • Only consider enabling autoHelp/autoVersion in case there is only one argument in process.argv (#​114) cd29865
  • Switch from loud-rejection to hard-rejection f60c26e
Enhancements
sindresorhus/ora (ora)

v8.0.1

Compare Source

  • Fix the process not exiting 89a1f31

v8.0.0

Compare Source

Breaking
Improvements

v7.0.1

Compare Source

v7.0.0

Compare Source

Breaking

v6.3.1

Compare Source

  • Fix Node.js 12 compatibility 4b1c2be

v6.3.0

Compare Source

v6.2.0

Compare Source

  • Add spinners export to be able to access all available spinners (#​222) f2ac111

v6.1.2

Compare Source

v6.1.1

Compare Source

v6.1.0

Compare Source

  • Expose the spinner interval as a getter 447812b
  • Internal refactoring. If you use any undocumented properties, this may break for you.

v6.0.1

Compare Source

v6.0.0

Compare Source

Breaking
  • Require Node.js 12.20 ede1a54
  • This package is now pure ESM. Please read this.
  • ora.promise is now a named import called oraPromise (#​181) 9c01990
    • import {oraPromise} from 'ora';
  • oraPromise now returns the given promise instead of this (#​181) 9c01990
    • This lets you await it directly, which is more useful than chaining.
Improvements

v5.4.1

Compare Source

v5.4.0

Compare Source

  • Improve detection for terminals supporting Unicode c884e0d

v5.3.0

Compare Source

  • Use nice spinner on VSCode's terminal and Windows Terminal (#​167) af52bbd

v5.2.0

Compare Source

v5.1.0

Compare Source

v5.0.0

Compare Source

Breaking

v4.1.1

Compare Source

v4.1.0

Compare Source

v4.0.5

Compare Source

  • Silence Jest warning when Ora is required in a test (#​150) 594865f

v4.0.4

Compare Source

v4.0.3

Compare Source

  • Fix discardStdin option (#​135) a4b2253
    It's now also a noop on Windows as it turns out it's impossible to reliably discard stdin there without affecting other things.

v4.0.2

Compare Source

  • Fix handling of Ctrl+C on spinners beyond first one (#​131) 17761e9

v4.0.1

Compare Source

  • Set the correct interval when changing spinner by name (#​128) 4a8cd09

v4.0.0

Compare Source

Breaking
  • Require Node.js 8 6459090
  • Discard stdin by default (#​112) b1f140b
    This prevents the spinner from twitching on input, outputting broken lines on Enter key presses, and prevents buffering of input while the spinner is running.
Breaking for TypeScript users
  • Only use a CommonJS export for the TypeScript definition
    You need to change import ora from 'ora'; to import ora = require('ora');
Fixes
puppeteer/puppeteer (puppeteer)

v23.0.1

Compare Source

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

Compare Source

v22.14.0

Compare Source

v22.13.1

Compare Source

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

Compare Source

v22.12.0

Compare Source

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-core: v22.10.0

Compare Source

Features
Bug Fixes

v22.9.0: puppeteer-core: v22.9.0

Compare Source

Features

v22.8.2: puppeteer-core: v22.8.2

Compare Source

Bug Fixes

v22.8.1: puppeteer-core: v22.8.1

Compare Source

Bug Fixes

v22.8.0: puppeteer-core: v22.8.0

Compare Source

Features
Bug Fixes

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: v22.4.0

Compare Source

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

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](https://togithub.com/pupp


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 was generated by Mend Renovate. View the repository job log.

@renovate renovate bot added the renovate label Sep 22, 2019
@renovate renovate bot force-pushed the renovate/major-all-major-dependencies branch 2 times, most recently from cc3303c to 3f67de1 Compare September 29, 2019 05:26
@renovate renovate bot force-pushed the renovate/major-all-major-dependencies branch from 3f67de1 to eb1f799 Compare November 10, 2019 19:57
@renovate renovate bot changed the title fix(deps): update dependency ora to v4 Update all major dependencies (major) Nov 10, 2019
@renovate renovate bot force-pushed the renovate/major-all-major-dependencies branch from eb1f799 to 5adbb38 Compare November 13, 2019 10:25
@renovate renovate bot force-pushed the renovate/major-all-major-dependencies branch from 5adbb38 to 155d24b Compare December 7, 2019 14:57
@renovate renovate bot force-pushed the renovate/major-all-major-dependencies branch from 155d24b to 723a16e Compare February 8, 2020 13:55
@renovate renovate bot force-pushed the renovate/major-all-major-dependencies branch from 723a16e to 2aaa090 Compare February 16, 2020 06:59
@renovate renovate bot force-pushed the renovate/major-all-major-dependencies branch from 2aaa090 to eca4571 Compare March 10, 2020 15:59
@renovate renovate bot force-pushed the renovate/major-all-major-dependencies branch from eca4571 to 8dbcd6d Compare April 26, 2020 09:59
@renovate renovate bot force-pushed the renovate/major-all-major-dependencies branch from 8dbcd6d to 4a59086 Compare May 5, 2020 13:53
@renovate renovate bot force-pushed the renovate/major-all-major-dependencies branch from 4a59086 to bee9d5c Compare May 15, 2020 07:50
@renovate renovate bot force-pushed the renovate/major-all-major-dependencies branch from bee9d5c to 9165d5a Compare July 1, 2020 11:57
@renovate renovate bot force-pushed the renovate/major-all-major-dependencies branch from 9165d5a to c8c495d Compare July 10, 2020 10:55
@renovate renovate bot force-pushed the renovate/major-all-major-dependencies branch from c8c495d to df235b9 Compare August 20, 2020 23:59
@renovate renovate bot force-pushed the renovate/major-all-major-dependencies branch from df235b9 to 2cc37ca Compare October 29, 2020 17:59
@renovate renovate bot changed the title Update all major dependencies (major) fix(deps): update all major dependencies (major) Oct 29, 2020
@renovate renovate bot force-pushed the renovate/major-all-major-dependencies branch from 2cc37ca to 2158795 Compare November 28, 2020 09:57
@renovate renovate bot force-pushed the renovate/major-all-major-dependencies branch 2 times, most recently from 1502697 to f4da947 Compare January 9, 2021 15:55
@renovate renovate bot force-pushed the renovate/major-all-major-dependencies branch from f4da947 to 71e650d Compare January 22, 2021 23:58
@renovate renovate bot force-pushed the renovate/major-all-major-dependencies branch 2 times, most recently from db0a33a to eb962b3 Compare February 10, 2021 13:49
@renovate renovate bot force-pushed the renovate/major-all-major-dependencies branch from eb962b3 to e206d51 Compare April 26, 2021 14:35
@renovate renovate bot force-pushed the renovate/major-all-major-dependencies branch from e206d51 to 782497c Compare May 9, 2021 21:40
@renovate renovate bot force-pushed the renovate/major-all-major-dependencies branch from 782497c to 410c4f3 Compare June 6, 2021 22:50
@renovate renovate bot force-pushed the renovate/major-all-major-dependencies branch from 410c4f3 to 2f7c210 Compare June 14, 2021 22:08
@renovate renovate bot force-pushed the renovate/major-all-major-dependencies branch from 2f7c210 to 88935b1 Compare October 19, 2021 01:44
@renovate renovate bot force-pushed the renovate/major-all-major-dependencies branch from 88935b1 to 2be38f9 Compare March 7, 2022 15:56
@renovate renovate bot force-pushed the renovate/major-all-major-dependencies branch 3 times, most recently from 2ab4fa6 to bc4ce01 Compare April 12, 2024 10:04
@renovate renovate bot force-pushed the renovate/major-all-major-dependencies branch from bc4ce01 to a4c1d62 Compare April 15, 2024 07:57
@renovate renovate bot force-pushed the renovate/major-all-major-dependencies branch 3 times, most recently from 3a375f2 to 6001ae2 Compare April 26, 2024 08:10
@renovate renovate bot force-pushed the renovate/major-all-major-dependencies branch from 6001ae2 to 9aa73f0 Compare May 6, 2024 09:51
@renovate renovate bot force-pushed the renovate/major-all-major-dependencies branch 3 times, most recently from 978cfc5 to 5b3109d Compare May 16, 2024 09:11
@renovate renovate bot force-pushed the renovate/major-all-major-dependencies branch 2 times, most recently from 8b1a38f to e05d90d Compare May 24, 2024 07:39
@renovate renovate bot force-pushed the renovate/major-all-major-dependencies branch 3 times, most recently from 2f1dd5c to 707f83c Compare June 17, 2024 10:15
@renovate renovate bot force-pushed the renovate/major-all-major-dependencies branch 3 times, most recently from a17f2cc to a2341ce Compare June 21, 2024 09:47
@renovate renovate bot force-pushed the renovate/major-all-major-dependencies branch 2 times, most recently from 7f2be45 to 5a8df9a Compare July 1, 2024 23:52
@renovate renovate bot force-pushed the renovate/major-all-major-dependencies branch 4 times, most recently from bc2edbe to d71a86f Compare July 14, 2024 08:22
@renovate renovate bot force-pushed the renovate/major-all-major-dependencies branch from d71a86f to 9781301 Compare July 17, 2024 11:30
@renovate renovate bot force-pushed the renovate/major-all-major-dependencies branch 2 times, most recently from 211acca to 2b475fb Compare July 31, 2024 15:47
@renovate renovate bot force-pushed the renovate/major-all-major-dependencies branch from 2b475fb to 806131c Compare August 7, 2024 14:57
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
Projects
None yet
Development

Successfully merging this pull request may close these issues.

None yet

0 participants