Skip to content

Commit d53ae2d

Browse files
committed
Merge remote-tracking branch 'origin/main' into feature/v5
2 parents 8bb96ca + 4019542 commit d53ae2d

6 files changed

Lines changed: 13 additions & 12 deletions

File tree

.github/workflows/pipeline-bump-cpp-deps.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -71,7 +71,7 @@ jobs:
7171
if [ -n "$(gh pr list --head "$branch" --base "$BASE" --state open --json number --jq '.[0].number // empty')" ]; then
7272
echo "Updated the existing pull request."
7373
else
74-
gh pr create --base "$BASE" --head "$branch" \
74+
gh pr create --base "$BASE" --head "$branch" --draft \
7575
--title "Bump CMake and Meson dependencies" \
7676
--body 'Automated bump of the CMake FetchContent registries and the Meson wraps (tools/bump_cmake_meson_deps.py). The Renovate pipeline handles everything else.'
7777
fi

.pre-commit-config.yaml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@ repos:
1414
args: ["--maxkb=1024"]
1515

1616
- repo: https://github.com/astral-sh/ruff-pre-commit
17-
rev: v0.16.4
17+
rev: v0.16.6
1818
hooks:
1919
- id: ruff-format
2020

@@ -50,7 +50,7 @@ repos:
5050
- id: clang-format
5151
name: clang-format
5252
language: python
53-
additional_dependencies: ["clang-format==22.1.8"]
53+
additional_dependencies: ["clang-format==23.1.0"]
5454
entry: python3 tools/format_cpp.py
5555
pass_filenames: false
5656
files: '\.(h|ixx|cpp|md)$'

MODULE.bazel

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -7,10 +7,10 @@ bazel_dep(name = "platforms", version = "1.1.0")
77
bazel_dep(name = "rules_cc", version = "0.2.22")
88
bazel_dep(name = "bazel_skylib", version = "1.9.2")
99

10-
bazel_dep(name = "googletest", version = "1.18.0", dev_dependency = True)
10+
bazel_dep(name = "googletest", version = "1.18.0.bcr.1", dev_dependency = True)
1111
bazel_dep(name = "google_benchmark", version = "1.9.5", dev_dependency = True)
1212
bazel_dep(name = "fmt", version = "12.1.0", dev_dependency = True)
13-
bazel_dep(name = "rules_python", version = "2.3.2", dev_dependency = True)
13+
bazel_dep(name = "rules_python", version = "2.3.3", dev_dependency = True)
1414

1515
python = use_extension("@rules_python//python/extensions:python.bzl", "python", dev_dependency = True)
1616
python.toolchain(

MODULE.bazel.lock

Lines changed: 5 additions & 5 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

README.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -278,7 +278,7 @@ The library is not yet published to the [Bazel Central Registry](https://registr
278278

279279
With **Bzlmod** (Bazel 7+), add to your `MODULE.bazel`:
280280

281-
```python
281+
```starlark
282282
bazel_dep(name = "proxy", version = "5.0.0")
283283
git_override(
284284
module_name = "proxy",
@@ -289,7 +289,7 @@ git_override(
289289

290290
With **legacy WORKSPACE mode** (Bazel 5.1+ without Bzlmod), add to your `WORKSPACE`:
291291

292-
```python
292+
```starlark
293293
load("@bazel_tools//tools/build_defs/repo:git.bzl", "git_repository")
294294
git_repository(
295295
name = "proxy",

renovate.json

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -14,6 +14,7 @@
1414
"separateMajorMinor": false,
1515
"prHourlyLimit": 0,
1616
"branchPrefix": "auto/bump-renovate-",
17+
"draftPR": true,
1718
"packageRules": [
1819
{
1920
"description": "One weekly PR on auto/bump-renovate-deps.",

0 commit comments

Comments
 (0)