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

chore(deps): update dependencies (major) (major) #240

Closed
wants to merge 1 commit into from

Conversation

renovate[bot]
Copy link
Contributor

@renovate renovate bot commented Nov 3, 2021

Mend Renovate

This PR contains the following updates:

Package Change Age Adoption Passing Confidence
@sindresorhus/slugify 1.1.2 -> 2.1.0 age adoption passing confidence
chalk 4.1.2 -> 5.0.1 age adoption passing confidence
execa 5.1.1 -> 6.1.0 age adoption passing confidence
husky 7.0.4 -> 8.0.1 age adoption passing confidence
node-fetch 2.6.7 -> 3.2.10 age adoption passing confidence

Release Notes

sindresorhus/slugify

v2.1.0

Compare Source

v2.0.0

Compare Source

Breaking
  • Require Node.js 12 12498c9
  • This package is now pure ESM. Please read this.
  • slugify.counter moved to a named export slugifyWithCounter
chalk/chalk

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
sindresorhus/execa

v6.1.0

Compare Source

v6.0.0

Compare Source

Breaking
  • Require Node.js 12.20 (#​478) 7707880
  • This package is now pure ESM. Please read this.
  • Moved from a default export to named exports.
    • require('execa')import {execa} from 'execa'
    • require('execa').syncimport {execaSync} from 'execa'
    • require('execa').commandimport {execaCommand} from 'execa'
    • require('execa').commandSyncimport {execaCommandSync} from 'execa'
    • require('execa').nodeimport {execaNode} from 'execa'
typicode/husky

v8.0.1

Compare Source

  • fix: use POSIX equality operator

v8.0.0

Compare Source

What's Changed

Feats
Fixes
Docs
Chore
node-fetch/node-fetch

v3.2.10

Compare Source

Bug Fixes

v3.2.9

Compare Source

Bug Fixes
  • Headers: don't forward secure headers on protocol change (#​1599) (e87b093)

v3.2.8

Compare Source

Bug Fixes

v3.2.7

Compare Source

Bug Fixes

v3.2.6

Compare Source

Bug Fixes

v3.2.5

Compare Source

Bug Fixes

v3.2.4

Compare Source

Bug Fixes

v3.2.3

Compare Source

Bug Fixes

v3.2.2

Compare Source

Bug Fixes

v3.2.1

Compare Source

Bug Fixes

v3.2.0

Compare Source

Features

v3.1.1

Compare Source

Security patch release

Recommended to upgrade, to not leak sensitive cookie and authentication header information to 3th party host while a redirect occurred

What's Changed

New Contributors

Full Changelog: node-fetch/node-fetch@v3.1.0...v3.1.1

v3.1.0

Compare Source

What's Changed

New Contributors

Full Changelog: node-fetch/node-fetch@v3.0.0...v3.1.0

v3.0.0

Compare Source

version 3 is going out of a long beta period and switches to stable

One major change is that it's now a ESM only package
See changelog for more information about all the changes.


Configuration

📅 Schedule: Branch creation - "before 8am on Wednesday" (UTC), 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, click this checkbox.

This PR has been generated by Mend Renovate. View repository job log here.

@renovate renovate bot requested review from Jolg42 and millsp as code owners November 3, 2021 01:58
@renovate renovate bot force-pushed the renovate/major-dependencies-(major) branch 3 times, most recently from 902b601 to 22a6fc3 Compare November 8, 2021 19:23
@millsp
Copy link
Member

millsp commented Nov 9, 2021

Unrelated: some deps aren't pinned.

@renovate renovate bot force-pushed the renovate/major-dependencies-(major) branch from 22a6fc3 to 8ae5488 Compare November 10, 2021 17:01
@Jolg42
Copy link
Member

Jolg42 commented Nov 10, 2021

Fails with

packages/fetch-engine build$ tsc -d
Error: packages/fetch-engine build: ../../node_modules/.pnpm/tempy@2.0.0/node_modules/tempy/index.d.ts(2,22): error TS2307: Cannot find module 'node:buffer' or its corresponding type declarations.
Error: packages/fetch-engine build: src/downloadZip.ts(71,11): error TS2531: Object is possibly 'null'.
Error: packages/fetch-engine build: src/downloadZip.ts(83,29): error TS2531: Object is possibly 'null'.
Error: packages/fetch-engine build: src/downloadZip.ts(84,54): error TS2769: No overload matches this call.
packages/fetch-engine build:   Overload 1 of 3, '(stream: ReadableStream, options?: Options<ToStringEncoding> | undefined): Promise<string>', gave the following error.
packages/fetch-engine build:     Argument of type 'ReadableStream | null' is not assignable to parameter of type 'ReadableStream'.
packages/fetch-engine build:       Type 'null' is not assignable to type 'ReadableStream'.
packages/fetch-engine build:   Overload 2 of 3, '(stream: ReadableStream, options?: Options<"buffer"> | undefined): Promise<Buffer>', gave the following error.
packages/fetch-engine build:     Argument of type 'ReadableStream | null' is not assignable to parameter of type 'ReadableStream'.
packages/fetch-engine build:       Type 'null' is not assignable to type 'ReadableStream'.
Error: packages/fetch-engine build: src/getLatestTag.ts(210,5): error TS2322: Type 'unknown' is not assignable to type 'object | string[]'.
packages/fetch-engine build:   Type 'unknown' is not assignable to type 'string[]'.
packages/fetch-engine build: Failed

@Jolg42
Copy link
Member

Jolg42 commented Nov 10, 2021

Probably needs an upgrade of esbuild first

npm i --silent -g pnpm@6 esbuild@0.8.53 --unsafe-perm

@renovate renovate bot force-pushed the renovate/major-dependencies-(major) branch 4 times, most recently from 3ecaf3f to ac78a99 Compare November 14, 2021 12:46
@renovate renovate bot force-pushed the renovate/major-dependencies-(major) branch 7 times, most recently from ba12165 to 3857125 Compare November 24, 2021 09:08
@renovate renovate bot force-pushed the renovate/major-dependencies-(major) branch 9 times, most recently from e0fa363 to e01bebb Compare December 1, 2021 09:37
@renovate renovate bot force-pushed the renovate/major-dependencies-(major) branch 4 times, most recently from 01813e7 to ffa0feb Compare June 28, 2022 13:34
@renovate renovate bot changed the title chore(deps): update dependencies (major) (major) fix(deps): update dependencies (major) (major) Jun 28, 2022
@renovate renovate bot force-pushed the renovate/major-dependencies-(major) branch 10 times, most recently from b3408a6 to f4af3ba Compare July 1, 2022 13:24
@renovate renovate bot changed the title fix(deps): update dependencies (major) (major) chore(deps): update dependencies (major) (major) Jul 1, 2022
@Jolg42 Jolg42 added this to the 4.1.0 milestone Jul 4, 2022
Copy link
Member

@Jolg42 Jolg42 left a comment

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

We don't have tests to check if this works or not at the moment

@Jolg42 Jolg42 mentioned this pull request Jul 4, 2022
@renovate renovate bot force-pushed the renovate/major-dependencies-(major) branch 3 times, most recently from f3c4bcd to 739d646 Compare July 12, 2022 18:17
@renovate renovate bot force-pushed the renovate/major-dependencies-(major) branch 2 times, most recently from 1cfed77 to 25f7137 Compare July 20, 2022 06:50
@renovate renovate bot force-pushed the renovate/major-dependencies-(major) branch from 25f7137 to c057839 Compare July 31, 2022 11:00
@renovate renovate bot force-pushed the renovate/major-dependencies-(major) branch from c057839 to d0a7a12 Compare August 3, 2022 07:41
@millsp millsp closed this Aug 8, 2022
@millsp millsp deleted the renovate/major-dependencies-(major) branch August 8, 2022 16:28
@Jolg42
Copy link
Member

Jolg42 commented Aug 9, 2022

@millsp Why did you close it?

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
kind/tech A technical change. team/client Issue for team Client. tech/typescript Issue for tech TypeScript.
Projects
None yet
Development

Successfully merging this pull request may close these issues.

None yet

3 participants