Skip to content

Conversation

renovate[bot]
Copy link
Contributor

@renovate renovate bot commented Mar 6, 2024

Mend Renovate

This PR contains the following updates:

Package Type Update Change Age Adoption Passing Confidence
asottile/pyupgrade repository patch v3.15.0 -> v3.15.1 age adoption passing confidence
c2cciutils patch ==1.6.15 -> ==1.6.17 age adoption passing confidence
camptocamp/c2cciutils patch 1.6.15 -> 1.6.17 age adoption passing confidence
pre-commit patch ==3.6.0 -> ==3.6.2 age adoption passing confidence
prettier (source) patch 3.2.4 -> 3.2.5 age adoption passing confidence
pyjson5 (changelog) patch 1.6.5 -> 1.6.6 age adoption passing confidence

Note: The pre-commit manager in Renovate is not supported by the pre-commit maintainers or community. Please do not report any problems there, instead create a Discussion in the Renovate repository if you have any questions.


Release Notes

asottile/pyupgrade (asottile/pyupgrade)

v3.15.1

Compare Source

camptocamp/c2cciutils (c2cciutils)

v1.6.17

Compare Source

[1.6.17] - 2024-03-06
Changed
Updated
Contributors

Generated by Automation

v1.6.16

Compare Source

[1.6.16] - 2024-02-03

Changed

Contributors

Generated by Automation

pre-commit/pre-commit (pre-commit)

v3.6.2

Compare Source

==================

Fixes

v3.6.1

Compare Source

==================

Fixes
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"
      }
    }
  ]
}
Kijewski/pyjson5 (pyjson5)

v1.6.6

Compare Source

What's Changed

New Contributors

Full Changelog: Kijewski/pyjson5@v1.6.5...v1.6.6


Configuration

📅 Schedule: Branch creation - "after 5pm on the first day of the month" in timezone Europe/Zurich, Automerge - At any time (no schedule defined).

🚦 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 added the dependencies Update the dependencies label Mar 6, 2024
@renovate renovate bot enabled auto-merge (rebase) March 6, 2024 13:54
@renovate renovate bot merged commit c85a63a into master Mar 6, 2024
@renovate renovate bot deleted the renovate/patch-ci-dependencies branch March 6, 2024 14:05
@geo-ghci-int geo-ghci-int bot added this to the 1.5.2 milestone Jun 27, 2025
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
dependencies Update the dependencies
Projects
None yet
Development

Successfully merging this pull request may close these issues.

0 participants