Skip to content

Conversation

renovate[bot]
Copy link
Contributor

@renovate renovate bot commented Dec 11, 2024

This PR contains the following updates:

Package Change Age Confidence
commit-and-tag-version ^12.5.0 -> ^12.6.0 age confidence
prettier (source) ^3.4.2 -> ^3.6.2 age confidence
renovate (source) ^41.99.7 -> ^41.152.2 age confidence

Release Notes

absolute-version/commit-and-tag-version (commit-and-tag-version)

v12.6.0

Compare Source

Features
  • add --config option to allow custom config file path (#​237) (3958e68)

v12.5.2

Compare Source

Bug Fixes
  • Correct use of fs, so we no longer emit a deprecation warning for fs.F_OK (7fe66bb), closes #​240

v12.5.1

Compare Source

Bug Fixes
prettier/prettier (prettier)

v3.6.2

Compare Source

diff

Markdown: Add missing blank line around code block (#​17675 by @​fisker)
<!-- Input -->
1. Some text, and code block below, with newline after code block

   ```yaml
   ---
   foo: bar
   ```

   1. Another
   2. List

<!-- Prettier 3.6.1 -->
1. Some text, and code block below, with newline after code block

   ```yaml
   ---
   foo: bar
   ```
   1. Another
   2. List

<!-- Prettier 3.6.2 -->
1. Some text, and code block below, with newline after code block

   ```yaml
   ---
   foo: bar
   ```

   1. Another
   2. List

v3.6.1

Compare Source

diff

TypeScript: Allow const without initializer (#​17650, #​17654 by @​fisker)
// Input
export const version: string;

// Prettier 3.6.0 (--parser=babel-ts)
SyntaxError: Unexpected token (1:21)
> 1 | export const version: string;
    |                     ^

// Prettier 3.6.0 (--parser=oxc-ts)
SyntaxError: Missing initializer in const declaration (1:14)
> 1 | export const version: string;
    |              ^^^^^^^^^^^^^^^

// Prettier 3.6.1
export const version: string;
Miscellaneous: Avoid closing files multiple times (#​17665 by @​43081j)

When reading a file to infer the interpreter from a shebang, we use the
n-readlines library to read the first line in order to get the shebang.

This library closes files when it reaches EOF, and we later try close the same
files again. We now close files only if n-readlines did not already close
them.

v3.6.0

Compare Source

diff

🔗 Release Notes

v3.5.3

Compare Source

v3.5.2

Compare Source

diff

Remove module-sync condition (#​17156 by @​fisker)

In Prettier 3.5.0, we added module-sync condition to package.json, so that require("prettier") can use ESM version, but turns out it doesn't work if CommonJS and ESM plugins both imports builtin plugins. To solve this problem, we decide simply remove the module-sync condition, so require("prettier") will still use the CommonJS version, we'll revisit until require(ESM) feature is more stable.

v3.5.1

Compare Source

diff

Fix CLI crash when cache for old version exists (#​17100 by @​sosukesuzuki)

Prettier 3.5 uses a different cache format than previous versions, Prettier 3.5.0 crashes when reading existing cache file, Prettier 3.5.1 fixed the problem.

Support dockercompose and github-actions-workflow in VSCode (#​17101 by @​remcohaszing)

Prettier now supports the dockercompose and github-actions-workflow languages in Visual Studio Code.

v3.5.0

Compare Source

diff

🔗 Release Notes

renovatebot/renovate (renovate)

v41.152.2

Compare Source

Bug Fixes
  • deps: update ghcr.io/renovatebot/base-image docker tag to v10.66.1 (main) (#​38683) (f663e6b)

v41.152.1

Compare Source

Bug Fixes
  • deps: update ghcr.io/containerbase/sidecar docker tag to v13.23.2 (main) (#​38682) (2fc0d85)
Miscellaneous Chores

v41.152.0

Compare Source

Features
  • deps: update ghcr.io/renovatebot/base-image docker tag to v10.66.0 (main) (#​38678) (60a91fb)

v41.151.2

Compare Source

Bug Fixes
  • deps: update ghcr.io/renovatebot/base-image docker tag to v10.65.2 (main) (#​38677) (b47489f)
Miscellaneous Chores
  • deps: update containerbase/internal-tools action to v3.14.0 (main) (#​38672) (30047d2)
  • deps: update github/codeql-action action to v3.30.9 (main) (#​38675) (4ce9331)
  • deps: update prom/prometheus docker tag to v3.7.1 (main) (#​38671) (66126b0)
  • minimumReleaseAgeBehaviour: correct warning message (#​38663) (765a5eb)

v41.151.1

Compare Source

Bug Fixes
  • deps: update ghcr.io/renovatebot/base-image docker tag to v10.65.1 (main) (#​38667) (30097cb)
Miscellaneous Chores
Tests

v41.151.0

Compare Source

Features
  • deps: update ghcr.io/renovatebot/base-image docker tag to v10.65.0 (main) (#​38654) (944d369)
Build System

v41.150.1

Compare Source

Bug Fixes
  • deps: update ghcr.io/containerbase/sidecar docker tag to v13.23.1 (main) (#​38652) (5b33304)
Miscellaneous Chores
  • deps: update ghcr.io/containerbase/devcontainer docker tag to v13.23.1 (main) (#​38651) (7d245d7)

v41.150.0

Compare Source

Features
Miscellaneous Chores

v41.149.2

Compare Source

Bug Fixes
  • deps: update ghcr.io/renovatebot/base-image docker tag to v10.64.4 (main) (#​38645) (2a73de9)
Documentation
  • avoid editors flagging comments in renovate.json (#​38640) (20f658a)
  • aws-machine-image: clarify that currentImageName is updated by Renovate (#​38474) (42efa00)
Miscellaneous Chores
Tests

v41.149.1

Compare Source

Bug Fixes
  • deps: update dependency mkdocs-material to v9.6.22 (main) (#​38632) (24a828f)

v41.149.0

Compare Source

Features
Bug Fixes
Miscellaneous Chores
Code Refactoring

v41.148.6

Compare Source

Bug Fixes
  • deps: update ghcr.io/renovatebot/base-image docker tag to v10.64.3 (main) (#​38626) (6fd2b96)

v41.148.5

Compare Source

Bug Fixes
  • deps: update ghcr.io/renovatebot/base-image docker tag to v10.64.2 (main) (#​38618) (edece5a)
Miscellaneous Chores

v41.148.4

Compare Source

Build System

v41.148.3

Compare Source

Bug Fixes
  • merge-confidence: ensure that Maven coordinate lookups are URL escaped (#​38464) (1291c62)
Documentation
Miscellaneous Chores
Tests
Build System
Continuous Integration

v41.148.2

Compare Source

Documentation
Miscellaneous Chores
Build System
Continuous Integration

v41.148.1

Compare Source

Bug Fixes
  • deps: update ghcr.io/renovatebot/base-image docker tag to v10.64.1 (main) (#​38597) (76d8167)
Miscellaneous Chores

v41.148.0

Compare Source

Features
  • deps: update ghcr.io/renovatebot/base-image docker tag to v10.64.0 (main) (#​38594) (7bfadaf)
Bug Fixes
  • deps: update ghcr.io/containerbase/sidecar docker tag to v13.23.0 (main) (#​38595) (8e10d55)

v41.147.1

Compare Source

Miscellaneous Chores
  • deps: update ghcr.io/containerbase/devcontainer docker tag to v13.23.0 (main) (#​38591) (565e286)
Build System

v41.147.0

Compare Source

Features
  • deps: update ghcr.io/renovatebot/base-image docker tag to v10.62.0 (main) (#​38588) (d43a764)
Miscellaneous Chores
  • deps: update ghcr.io/containerbase/devcontainer docker tag to v13.22.0 (main) (#​38587) (bb20103)

v41.146.8

Compare Source

Bug Fixes
  • deps: update ghcr.io/containerbase/sidecar docker tag to v13.21.0 (main) (#​38586) (85d41b6)
Miscellaneous Chores
  • deps: update ghcr.io/containerbase/devcontainer docker tag to v13.21.0 (main) (#​38585) (84f30d7)

v41.146.7

Compare Source

Build System
  • deps: update opentelemetry-js monorepo to v0.206.0 (main) (#​38584) (b241911)

v41.146.6

Compare Source

Bug Fixes
  • deps: update ghcr.io/renovatebot/base-image docker tag to v10.61.4 (main) (#​38579) (855aade)
Miscellaneous Chores

v41.146.5

Compare Source

Bug Fixes
  • datasource/typst: explictly pass registryUrl as baseUrl to githubHttp (#​38571) (5ed93bb)
  • deps: update ghcr.io/containerbase/sidecar docker tag to v13.20.6 (main) (#​38576) (3012fdd)
Miscellaneous Chores
  • deps: update dependency pnpm to v10.18.1 (main) (#​38573) (3b303f6)
  • deps: update ghcr.io/containerbase/devcontainer docker tag to v13.20.5 (main) (#​38574) (05f32b7)
  • deps: update ghcr.io/containerbase/devcontainer docker tag to v13.20.6 (main) (#​38575) (c8da498)

v41.146.4

Compare Source

Bug Fixes
  • deps: update ghcr.io/containerbase/sidecar docker tag to v13.20.5 (main) (#​38569) (021023e)

v41.146.3

Compare Source

Bug Fixes
Miscellaneous Chores

v41.146.2

Compare Source

Bug Fixes
  • deps: update ghcr.io/renovatebot/base-image docker tag to v10.61.1 (main) (#​38563) (03af5bd)

v41.146.1

Compare Source

Bug Fixes
  • deps: update ghcr.io/containerbase/sidecar docker tag to v13.20.3 (main) (#​38562) (4d541d1)
Documentation
Miscellaneous Chores

v41.146.0

Compare Source

Features
  • deps: update ghcr.io/renovatebot/base-image docker tag to v10.61.0 (main) (#​38544) (3bd9d82)
Miscellaneous Chores

v41.145.3

Compare Source

Bug Fixes
  • deps: update ghcr.io/renovatebot/base-image docker tag to v10.60.3 (main) (#​38542) (0acb1b5)

v41.145.2

Compare Source

Bug Fixes
  • deps: update ghcr.io/containerbase/sidecar docker tag to v13.20.2 (main) (#​38540) (b4da6f3)
  • deps: update ghcr.io/renovatebot/base-image docker tag to v10.60.2 (main) (#​38541) (a3a1a12)
Miscellaneous Chores
  • deps: update actions/dependency-review-action action to v4.8.1 (main) (#​38537) (81baa0d)
  • deps: update containerbase/internal-tools action to v3.13.15 (main) (#​38534) (0fd8ee6)
  • deps: update ghcr.io/containerbase/devcontainer docker tag to v13.20.2 (main) (#​38538) (d879650)

v41.145.1

Compare Source

Bug Fixes
  • deps: update ghcr.io/containerbase/sidecar docker tag to v13.20.1 (main) (#​38532) (53bbf7f)
  • deps: update ghcr.io/renovatebot/base-image docker tag to v10.60.1 (main) (#​38533) (c691b10)

v41.145.0

Compare Source

Features
  • deps: update ghcr.io/renovatebot/base-image docker tag to v10.60.0 (main) (#​38526) (9124516)
Miscellaneous Chores
  • deps: update ghcr.io/containerbase/devcontainer docker tag to v13.20.1 (main) (#​38529) (3f793ae)
  • deps: update github/codeql-action action to v3.30.8 (main) (#​38530) (0442c7f)

v41.144.4

Compare Source

Bug Fixes
  • deps: update ghcr.io/containerbase/sidecar docker tag to v13.20.0 (main) (#​38525) (ddf6254)
Miscellaneous Chores
  • deps: update ghcr.io/containerbase/devcontainer docker tag to v13.19.0 (main) (#​38520) (0ebf116)
  • deps: update ghcr.io/containerbase/devcontainer docker tag to v13.20.0 (main) (#​38524) (16ba0ae)

v41.144.3

Compare Source

Bug Fixes
  • deps: update ghcr.io/containerbase/sidecar docker tag to v13.18.3 (main) (#​38518) (1454e10)
  • deps: update ghcr.io/renovatebot/base-image docker tag to v10.59.3 (main) (#​38519) (7d9964a)

v41.144.2

Compare Source

Bug Fixes
  • deps: update ghcr.io/renovatebot/base-image docker tag to v10.59.2 (main) (#​38517) (94fb491)
Documentation
  • osv: clarify all calls are via offline copy of OSV database (#​38492) (ebf111f)
Miscellaneous Chores

v41.144.1

Compare Source

Bug Fixes
  • deps: update ghcr.io/renovatebot/base-image docker tag to v10.59.1 (main) (#​38510) (4c5d55f)

v41.144.0

Compare Source

Features
  • deps: update ghcr.io/renovatebot/base-image docker tag to v10.59.0 (main) (#​38506) (ca48a84)

v41.143.3

Compare Source

Bug Fixes
  • deps: update ghcr.io/containerbase/sidecar docker tag to v13.18.2 (main) (#​38504) (7e7fed5)
  • deps: update ghcr.io/renovatebot/base-image docker tag to v10.58.2 (main) (#​38505) (88bd064)
Miscellaneous Chores

v41.143.2

Compare Source

Bug Fixes
Documentation
Miscellaneous Chores

v41.143.1

Compare Source

Bug Fixes
Miscellaneous Chores

v41.143.0

Compare Source

Features

v41.142.1

Compare Source

Bug Fixes
  • deps: update ghcr.io/renovatebot/base-image docker tag to v10.58.1 (main) (#​38472) (376419b)
Documentation
Miscellaneous Chores
  • deps: update containerbase/internal-tools action to v3.13.14 (main) (#​38459) (cf36b19)
Code Refactoring

v41.142.0

Compare Source

Features
Miscellaneous Chores

v41.141.0

Compare Source

Features
  • deps: update ghcr.io/renovatebot/base-image docker tag to v10.58.0 (main) (#​38453) (c408abd)

v41.140.3

Compare Source

Bug Fixes
  • deps: update ghcr.io/renovatebot/base-image docker tag to v10.57.2 (main) (#​38452) (97cb8ac)
Miscellaneous Chores

Configuration

📅 Schedule: Branch creation - At any time (no schedule defined), 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, check this box

This PR was generated by Mend Renovate. View the repository job log.

@renovate renovate bot force-pushed the renovate/all-minor-patch branch from 60b2cc4 to 284c4bc Compare December 11, 2024 19:25
@renovate renovate bot changed the title chore(deps): update devdependency renovate to ^39.62.4 chore(deps): update devdependency renovate to ^39.62.5 Dec 11, 2024
@renovate renovate bot force-pushed the renovate/all-minor-patch branch from 284c4bc to 242889d Compare December 12, 2024 00:41
@renovate renovate bot changed the title chore(deps): update devdependency renovate to ^39.62.5 chore(deps): update devdependency renovate to ^39.62.6 Dec 12, 2024
@renovate renovate bot force-pushed the renovate/all-minor-patch branch from 242889d to 54fc1ce Compare December 12, 2024 21:15
@renovate renovate bot changed the title chore(deps): update devdependency renovate to ^39.62.6 chore(deps): update devdependency renovate to ^39.63.1 Dec 12, 2024
@renovate renovate bot force-pushed the renovate/all-minor-patch branch from 54fc1ce to e751d1b Compare December 13, 2024 09:33
@renovate renovate bot changed the title chore(deps): update devdependency renovate to ^39.63.1 chore(deps): update devdependency renovate to ^39.64.0 Dec 13, 2024
@renovate renovate bot changed the title chore(deps): update devdependency renovate to ^39.64.0 chore(deps): update devdependency renovate to ^39.65.0 Dec 13, 2024
@renovate renovate bot force-pushed the renovate/all-minor-patch branch 2 times, most recently from 9539d15 to e7ba8a4 Compare December 13, 2024 21:26
@renovate renovate bot changed the title chore(deps): update devdependency renovate to ^39.65.0 chore(deps): update devdependency renovate to ^39.65.2 Dec 13, 2024
@renovate renovate bot force-pushed the renovate/all-minor-patch branch from e7ba8a4 to dd8e448 Compare December 14, 2024 01:19
@renovate renovate bot changed the title chore(deps): update devdependency renovate to ^39.65.2 chore(deps): update devdependency renovate to ^39.66.0 Dec 14, 2024
@renovate renovate bot force-pushed the renovate/all-minor-patch branch from dd8e448 to 5066165 Compare December 14, 2024 09:46
@renovate renovate bot changed the title chore(deps): update devdependency renovate to ^39.66.0 chore(deps): update devdependency renovate to ^39.68.1 Dec 14, 2024
@renovate renovate bot force-pushed the renovate/all-minor-patch branch from 5066165 to 138981a Compare December 14, 2024 12:12
@renovate renovate bot changed the title chore(deps): update devdependency renovate to ^39.68.1 chore(deps): update devdependency renovate to ^39.69.0 Dec 14, 2024
@renovate renovate bot force-pushed the renovate/all-minor-patch branch from 138981a to fd625ea Compare December 14, 2024 21:50
@renovate renovate bot changed the title chore(deps): update devdependency renovate to ^39.69.0 chore(deps): update devdependency renovate to ^39.69.1 Dec 14, 2024
@renovate renovate bot force-pushed the renovate/all-minor-patch branch from fd625ea to d0ea2fb Compare December 15, 2024 06:01
@renovate renovate bot changed the title chore(deps): update devdependency renovate to ^39.69.1 chore(deps): update devdependency renovate to ^39.69.2 Dec 15, 2024
@renovate renovate bot force-pushed the renovate/all-minor-patch branch from d0ea2fb to a0e690d Compare December 16, 2024 10:21
@renovate renovate bot changed the title chore(deps): update devdependency renovate to ^39.69.2 chore(deps): update devdependency renovate to ^39.69.3 Dec 16, 2024
@renovate renovate bot force-pushed the renovate/all-minor-patch branch from a0e690d to 354e87a Compare December 16, 2024 19:19
@renovate renovate bot changed the title chore(deps): update devdependency renovate to ^39.69.3 chore(deps): update devdependency renovate to ^39.69.4 Dec 16, 2024
@renovate renovate bot force-pushed the renovate/all-minor-patch branch from 354e87a to c1b68b6 Compare December 16, 2024 22:40
@renovate renovate bot changed the title chore(deps): update devdependency renovate to ^39.69.4 chore(deps): update devdependency renovate to ^39.70.0 Dec 16, 2024
@renovate renovate bot force-pushed the renovate/all-minor-patch branch from c1b68b6 to 65f01e6 Compare December 17, 2024 04:37
@renovate renovate bot force-pushed the renovate/all-minor-patch branch 22 times, most recently from 4b47af0 to 2477771 Compare October 14, 2025 14:42
@renovate renovate bot force-pushed the renovate/all-minor-patch branch 6 times, most recently from 45647b7 to 91f20d9 Compare October 18, 2025 04:03
@renovate renovate bot force-pushed the renovate/all-minor-patch branch from 91f20d9 to eb8e97a Compare October 18, 2025 09:51
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