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 devdependencies #39

Merged
merged 1 commit into from
Feb 5, 2024
Merged

Conversation

renovate[bot]
Copy link
Contributor

@renovate renovate bot commented Jan 15, 2024

Mend Renovate

This PR contains the following updates:

Package Change Age Adoption Passing Confidence
@edge-runtime/jest-environment (source) 2.3.7 -> 2.3.8 age adoption passing confidence
@edge-runtime/types (source) 2.2.7 -> 2.2.8 age adoption passing confidence
@types/jest (source) 29.5.11 -> 29.5.12 age adoption passing confidence
@types/node (source) 20.11.0 -> 20.11.16 age adoption passing confidence
@vercel/style-guide 5.1.0 -> 5.2.0 age adoption passing confidence
husky 9.0.6 -> 9.0.10 age adoption passing confidence
lint-staged 15.2.0 -> 15.2.1 age adoption passing confidence
prettier (source) 3.2.2 -> 3.2.5 age adoption passing confidence
ts-jest (source) 29.1.1 -> 29.1.2 age adoption passing confidence

Release Notes

vercel/edge-runtime (@​edge-runtime/jest-environment)

v2.3.8

Compare Source

Patch Changes
vercel/edge-runtime (@​edge-runtime/types)

v2.2.8

Compare Source

Patch Changes
vercel/style-guide (@​vercel/style-guide)

v5.2.0

Compare Source

Bug Fixes
Features
typicode/husky (husky)

v9.0.10

Compare Source

v9.0.9

Compare Source

v9.0.8

Compare Source

v9.0.7

Compare Source

okonet/lint-staged (lint-staged)

v15.2.1

Compare Source

Patch Changes
  • #​1387 e4023f6 Thanks @​iiroj! - Ignore stdin of spawned commands so that they don't get stuck waiting. Until now, lint-staged has used the default settings to spawn linter commands. This means the stdin of the spawned commands has accepted input, and essentially gotten stuck waiting. Now the stdin is ignored and commands will no longer get stuck. If you relied on this behavior, please open a new issue and describe how; the behavior has not been intended.
prettier/prettier (prettier)

v3.2.5

Compare Source

diff

Support Angular inline styles as single template literal (#​15968 by @​sosukesuzuki)

Angular v17 supports single string inline styles.

// Input
@​Component({
  template: `<div>...</div>`,
  styles: `h1 { color: blue; }`,
})
export class AppComponent {}

// Prettier 3.2.4
@&#8203;Component({
  template: `<div>...</div>`,
  styles: `h1 { color: blue; }`,
})
export class AppComponent {}

// Prettier 3.2.5
@&#8203;Component({
  template: `<div>...</div>`,
  styles: `
    h1 {
      color: blue;
    }
  `,
})
export class AppComponent {}
Unexpected embedded formatting for Angular template (#​15969 by @​JounQin)

Computed template should not be considered as Angular component template

// Input
const template = "foobar";

@&#8203;Component({
  [template]: `<h1>{{       hello }}</h1>`,
})
export class AppComponent {}

// Prettier 3.2.4
const template = "foobar";

@&#8203;Component({
  [template]: `<h1>{{ hello }}</h1>`,
})
export class AppComponent {}

// Prettier 3.2.5
const template = "foobar";

@&#8203;Component({
  [template]: `<h1>{{       hello }}</h1>`,
})
export class AppComponent {}
Use "json" parser for tsconfig.json by default (#​16012 by @​sosukesuzuki)

In v2.3.0, we introduced "jsonc" parser which adds trialing comma by default.

When adding a new parser we also define how it will be used based on the linguist-languages data.

tsconfig.json is a special file used by TypeScript, it uses .json file extension, but it actually uses the JSON with Comments syntax. However, we found that there are many third-party tools not recognize it correctly because of the confusing .json file extension.

We decide to treat it as a JSON file for now to avoid the extra configuration step.

To keep using the "jsonc" parser for your tsconfig.json files, add the following to your .pretterrc file

{
  "overrides": [
    {
      "files": ["tsconfig.json", "jsconfig.json"],
      "options": {
        "parser": "jsonc"
      }
    }
  ]
}

v3.2.4

Compare Source

diff

Fix incorrect parser inference (#​15947 by @​fisker)

Files like .eslintrc.json were incorrectly formatted as JSONC files.

// Input
prettier --file-info .eslintrc.json
{ "ignored": false, "inferredParser": "jsonc" }

// Prettier 3.2.4
prettier --file-info .eslintrc.json
{ "ignored": false, "inferredParser": "json" }

v3.2.3

Compare Source

diff

Throw errors for invalid code (#​15881 by @​fisker, @​Josh-Cena, @​auvred)
// Input
1++;

// Prettier 3.2.2
1++;

// Prettier 3.2.3
SyntaxError: Invalid left-hand side expression in unary operation (1:1)
> 1 | 1++;
    | ^
// Input
try {} catch (error = 1){}

// Prettier 3.2.2
try {
} catch (error) {}

// Prettier 3.2.3
SyntaxError: Catch clause variable cannot have an initializer. (1:23)
> 1 | try {} catch (error = 1){}
    |                       ^
Fix parser inference (#​15927 by @​fisker)
// Prettier 3.2.2
prettier --file-info tsconfig.json
{ "ignored": false, "inferredParser": "json" }

// Prettier 3.2.3
prettier --file-info tsconfig.json
{ "ignored": false, "inferredParser": "jsonc" }
kulshekhar/ts-jest (ts-jest)

v29.1.2

Compare Source

Bug Fixes

Configuration

📅 Schedule: Branch creation - At any time (no schedule defined), Automerge - "before 4am on Monday" (UTC).

🚦 Automerge: Enabled.

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 has been generated by Mend Renovate. View repository job log here.

@renovate renovate bot changed the title chore(deps): update dependency @types/node to v20.11.1 chore(deps): update dependency @types/node to v20.11.2 Jan 15, 2024
@renovate renovate bot changed the title chore(deps): update dependency @types/node to v20.11.2 chore(deps): update dependency @types/node to v20.11.3 Jan 16, 2024
@renovate renovate bot force-pushed the renovate/devdependencies branch 2 times, most recently from f862cf6 to 7208d9a Compare January 16, 2024 12:23
@renovate renovate bot changed the title chore(deps): update dependency @types/node to v20.11.3 chore(deps): update dependency @types/node to v20.11.4 Jan 16, 2024
@renovate renovate bot changed the title chore(deps): update dependency @types/node to v20.11.4 chore(deps): update devdependencies Jan 17, 2024
@renovate renovate bot force-pushed the renovate/devdependencies branch 5 times, most recently from d4a8a00 to 9a0acee Compare January 23, 2024 13:39
@renovate renovate bot force-pushed the renovate/devdependencies branch 9 times, most recently from 7745d03 to e8a8969 Compare January 31, 2024 01:49
@renovate renovate bot force-pushed the renovate/devdependencies branch 6 times, most recently from f46ad7d to 333e5b2 Compare February 2, 2024 03:22
@renovate renovate bot merged commit 519b1a7 into main Feb 5, 2024
7 checks passed
@renovate renovate bot deleted the renovate/devdependencies branch February 5, 2024 00:38
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

Successfully merging this pull request may close these issues.

None yet

0 participants