Skip to content
Draft
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion .bazelversion
Original file line number Diff line number Diff line change
@@ -1 +1 @@
9.1.1
9.2.0
4 changes: 2 additions & 2 deletions .github/workflows/bvt-lint.yml
Original file line number Diff line number Diff line change
Expand Up @@ -9,12 +9,12 @@ jobs:
- uses: actions/checkout@v7

- name: Setup Python
uses: actions/setup-python@v6
uses: actions/setup-python@v7.0.0
with:
python-version: "3.14"

- name: Cache pre-commit envs
uses: actions/cache@v5
uses: actions/cache@v6
with:
path: ~/.cache/pre-commit
key: pre-commit-${{ runner.os }}-${{ hashFiles('.pre-commit-config.yaml') }}
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/pipeline-bump-cpp-deps.yml
Original file line number Diff line number Diff line change
Expand Up @@ -37,7 +37,7 @@ jobs:
with:
token: ${{ steps.app-token.outputs.token }}

- uses: actions/setup-python@v6
- uses: actions/setup-python@v7.0.0
with:
python-version: "3.14"

Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/pipeline-bump-renovate-deps.yml
Original file line number Diff line number Diff line change
Expand Up @@ -34,7 +34,7 @@ jobs:

- uses: actions/checkout@v7

- uses: actions/setup-node@v6
- uses: actions/setup-node@v7
with:
node-version: lts/*

Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/pipeline-pages.yml
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@ jobs:
fetch-depth: 0 # Fetch all history for .GitInfo and .Lastmod

- name: Setup Python
uses: actions/setup-python@v6
uses: actions/setup-python@v7.0.0
with:
python-version: "3.14"

Expand Down
6 changes: 3 additions & 3 deletions .pre-commit-config.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@ repos:
args: ["--maxkb=1024"]

- repo: https://github.com/astral-sh/ruff-pre-commit
rev: v0.15.18
rev: v0.15.22
hooks:
- id: ruff-format

Expand All @@ -41,7 +41,7 @@ repos:
- id: meson-format
name: meson format
language: python
additional_dependencies: ["meson==1.11.1"]
additional_dependencies: ["meson==1.11.2"]
entry: meson
args: ["format", "--check-only", "--recursive", "meson.build"]
pass_filenames: false
Expand All @@ -50,7 +50,7 @@ repos:
- id: clang-format
name: clang-format
language: python
additional_dependencies: ["clang-format==22.1.5"]
additional_dependencies: ["clang-format==22.1.8"]
entry: python3 tools/format_cpp.py
pass_filenames: false
files: '\.(h|ixx|cpp|md)$'
6 changes: 3 additions & 3 deletions MODULE.bazel
Original file line number Diff line number Diff line change
Expand Up @@ -4,13 +4,13 @@ module(
)

bazel_dep(name = "platforms", version = "1.1.0")
bazel_dep(name = "rules_cc", version = "0.2.19")
bazel_dep(name = "rules_cc", version = "0.2.22")
bazel_dep(name = "bazel_skylib", version = "1.9.0")

bazel_dep(name = "googletest", version = "1.17.0.bcr.2", dev_dependency = True)
bazel_dep(name = "google_benchmark", version = "1.9.5", dev_dependency = True)
bazel_dep(name = "fmt", version = "12.1.0", dev_dependency = True)
bazel_dep(name = "rules_python", version = "2.0.3", dev_dependency = True)
bazel_dep(name = "fmt", version = "12.2.0", dev_dependency = True)
bazel_dep(name = "rules_python", version = "2.2.0", dev_dependency = True)

python = use_extension("@rules_python//python/extensions:python.bzl", "python", dev_dependency = True)
python.toolchain(
Expand Down
133 changes: 69 additions & 64 deletions MODULE.bazel.lock

Large diffs are not rendered by default.

4 changes: 2 additions & 2 deletions mkdocs/requirements.txt
Original file line number Diff line number Diff line change
Expand Up @@ -3,8 +3,8 @@ mdx_truly_sane_lists==1.3
mkdocs-awesome-pages-plugin==2.10.1
mkdocs-exclude==1.0.2
mkdocs-git-revision-date-localized-plugin==1.5.3
mkdocs-material==9.7.6
mkdocs-material==9.7.7
mkdocs-open-in-new-tab==1.0.8
mkdocs==1.6.1
pygments==2.20.0
pymdown-extensions==10.21.3
pymdown-extensions==11.0.1
Loading