Skip to content

chore(deps): update devdependencies (non-major)

Renovate Bot requested to merge renovate/devdependencies-(non-major) into main

This MR contains the following updates:

Package Type Update Change
@codedependant/semantic-release-docker devDependencies patch 4.5.0 -> 4.5.1
@commitlint/cli (source) devDependencies minor 18.4.4 -> 18.6.0
@commitlint/config-conventional (source) devDependencies minor 18.4.4 -> 18.6.0
@commitlint/cz-commitlint (source) devDependencies minor 18.4.4 -> 18.6.0
prettier (source) devDependencies patch 3.2.4 -> 3.2.5

Release Notes

esatterwhite/semantic-release-docker (@​codedependant/semantic-release-docker)

v4.5.1

Compare Source

Bug Fixes
  • image: account for stderr when looking for an image sha ba9eec2 - Eric Satterwhite, closes: #​46
conventional-changelog/commitlint (@​commitlint/cli)

v18.6.0

Compare Source

Note: Version bump only for package @​commitlint/cli

v18.5.0

Compare Source

Features

18.4.4 (2024-01-04)

Note: Version bump only for package @​commitlint/cli

18.4.3 (2023-11-21)

Note: Version bump only for package @​commitlint/cli

18.4.2 (2023-11-16)

Note: Version bump only for package @​commitlint/cli

18.4.1 (2023-11-12)

Note: Version bump only for package @​commitlint/cli

conventional-changelog/commitlint (@​commitlint/config-conventional)

v18.6.0

Compare Source

Features

v18.5.0

Compare Source

Note: Version bump only for package @​commitlint/config-conventional

18.4.4 (2024-01-04)

Note: Version bump only for package @​commitlint/config-conventional

18.4.3 (2023-11-21)

Note: Version bump only for package @​commitlint/config-conventional

18.4.2 (2023-11-16)

Note: Version bump only for package @​commitlint/config-conventional

conventional-changelog/commitlint (@​commitlint/cz-commitlint)

v18.6.0

Compare Source

Note: Version bump only for package @​commitlint/cz-commitlint

v18.5.0

Compare Source

Note: Version bump only for package @​commitlint/cz-commitlint

18.4.4 (2024-01-04)

Note: Version bump only for package @​commitlint/cz-commitlint

18.4.3 (2023-11-21)

Note: Version bump only for package @​commitlint/cz-commitlint

18.4.2 (2023-11-16)

Note: Version bump only for package @​commitlint/cz-commitlint

18.4.1 (2023-11-12)

Note: Version bump only for package @​commitlint/cz-commitlint

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 v3.2.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"
      }
    }
  ]
}

Configuration

📅 Schedule: Branch creation - At any time (no schedule defined), Automerge - At any time (no schedule defined).

🚦 Automerge: Enabled.

Rebasing: Whenever MR is behind base branch, or you tick the rebase/retry checkbox.

👻 Immortal: This MR will be recreated if closed unmerged. Get config help if that's undesired.


  • If you want to rebase/retry this MR, check this box

This MR has been generated by Renovate Bot.

Merge Request-Berichte

Lade