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 (non-major) #150

Closed
wants to merge 1 commit into from

Conversation

renovate[bot]
Copy link
Contributor

@renovate renovate bot commented Jan 20, 2024

Mend Renovate

This PR contains the following updates:

Package Change Age Adoption Passing Confidence
@types/node (source) 20.11.5 -> 20.11.16 age adoption passing confidence
@types/react (source) 18.2.48 -> 18.2.52 age adoption passing confidence
prettier (source) 3.2.4 -> 3.2.5 age adoption passing confidence
typescript (source) 5.0.3 -> 5.3.3 age adoption passing confidence

Release Notes

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"
      }
    }
  ]
}
Microsoft/TypeScript (typescript)

v5.3.3: TypeScript 5.3.3

Compare Source

For release notes, check out the release announcement.

For the complete list of fixed issues, check out the

Downloads are available on:

v5.3.2: TypeScript 5.3

Compare Source

For release notes, check out the release announcement.

For the complete list of fixed issues, check out the

Downloads are available on:

v5.2.2: TypeScript 5.2

Compare Source

For release notes, check out the release announcement.

For the complete list of fixed issues, check out the

Downloads are available on:

v5.1.6: TypeScript 5.1.6

Compare Source

For release notes, check out the release announcement.

For the complete list of fixed issues, check out the

Downloads are available on npm

v5.1.5: TypeScript 5.1.5

Compare Source

For release notes, check out the release announcement.

For the complete list of fixed issues, check out the

Downloads are available on:

v5.1.3: TypeScript 5.1.3

Compare Source

For release notes, check out the release announcement.

For the complete list of fixed issues, check out the

Downloads are available on:

v5.0.4: TypeScript 5.0.4

Compare Source

For release notes, check out the release announcement.

For the complete list of fixed issues, check out the

Downloads are available on:


Configuration

📅 Schedule: Branch creation - "on tuesday and thursday,every weekend" (UTC), Automerge - At any time (no schedule defined).

🚦 Automerge: Disabled by config. Please merge this manually once you are satisfied.

Rebasing: Whenever PR is behind base branch, 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.

Copy link

vercel bot commented Jan 20, 2024

The latest updates on your projects. Learn more about Vercel for Git ↗︎

Name Status Preview Comments Updated (UTC)
faucet ✅ Ready (Inspect) Visit Preview 💬 Add feedback Feb 8, 2024 6:47am

@renovate renovate bot force-pushed the renovate/devdependencies-(non-major) branch from feec995 to 2b57ae1 Compare January 22, 2024 09:51
@renovate renovate bot requested a review from a team as a code owner January 22, 2024 09:51
@renovate renovate bot force-pushed the renovate/devdependencies-(non-major) branch from 2b57ae1 to 20bf163 Compare January 22, 2024 09:55
@renovate renovate bot force-pushed the renovate/devdependencies-(non-major) branch from 20bf163 to 17f1309 Compare January 23, 2024 10:09
@renovate renovate bot changed the title chore(deps): update devdependencies (non-major) chore(deps): update dependency typescript to v5.3.3 Jan 23, 2024
@renovate renovate bot force-pushed the renovate/devdependencies-(non-major) branch from 17f1309 to cab0b04 Compare January 25, 2024 12:41
@renovate renovate bot force-pushed the renovate/devdependencies-(non-major) branch from cab0b04 to d159b5e Compare January 28, 2024 07:01
@renovate renovate bot changed the title chore(deps): update dependency typescript to v5.3.3 chore(deps): update devdependencies (non-major) Jan 28, 2024
@renovate renovate bot force-pushed the renovate/devdependencies-(non-major) branch from d159b5e to f29f87c Compare January 28, 2024 10:45
@renovate renovate bot force-pushed the renovate/devdependencies-(non-major) branch from f29f87c to 540a0de Compare January 30, 2024 05:07
@renovate renovate bot force-pushed the renovate/devdependencies-(non-major) branch from 540a0de to 4aef0ae Compare January 31, 2024 19:09
@renovate renovate bot force-pushed the renovate/devdependencies-(non-major) branch from 4aef0ae to 2f768b0 Compare February 1, 2024 14:28
@renovate renovate bot force-pushed the renovate/devdependencies-(non-major) branch from 2f768b0 to 1ea2b1d Compare February 1, 2024 20:14
@renovate renovate bot force-pushed the renovate/devdependencies-(non-major) branch from 1ea2b1d to 05ae2bb Compare February 2, 2024 19:55
@renovate renovate bot force-pushed the renovate/devdependencies-(non-major) branch from 05ae2bb to 9152612 Compare February 3, 2024 20:03
@renovate renovate bot force-pushed the renovate/devdependencies-(non-major) branch from 9152612 to ab35480 Compare February 3, 2024 23:18
@renovate renovate bot force-pushed the renovate/devdependencies-(non-major) branch from ab35480 to e3e18fe Compare February 4, 2024 12:04
@renovate renovate bot force-pushed the renovate/devdependencies-(non-major) branch from e3e18fe to 61f2c00 Compare February 4, 2024 21:51
@renovate renovate bot force-pushed the renovate/devdependencies-(non-major) branch from 61f2c00 to 6ed9a5b Compare February 5, 2024 07:27
@renovate renovate bot force-pushed the renovate/devdependencies-(non-major) branch from 6ed9a5b to 22abe5a Compare February 5, 2024 09:25
@renovate renovate bot force-pushed the renovate/devdependencies-(non-major) branch from 22abe5a to b331c90 Compare February 5, 2024 13:19
@renovate renovate bot force-pushed the renovate/devdependencies-(non-major) branch from b331c90 to 6aa1b4d Compare February 5, 2024 19:50
@renovate renovate bot force-pushed the renovate/devdependencies-(non-major) branch from 6aa1b4d to 7c129d5 Compare February 6, 2024 15:34
@renovate renovate bot force-pushed the renovate/devdependencies-(non-major) branch from 7c129d5 to 0712f13 Compare February 7, 2024 01:11
Signed-off-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>
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.

1 participant