Skip to content

Commit 0ef90e9

Browse files
authored
Merge branch 'main' into issue-1023
2 parents d7991cd + c527aa0 commit 0ef90e9

File tree

11 files changed

+17
-17
lines changed

11 files changed

+17
-17
lines changed

docker-compose.yml

Lines changed: 2 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,11 +1,9 @@
1-
version: "3.7"
2-
31
services:
42
docs:
5-
image: python:3.8
3+
image: python:3.13
64
command: sh -c "pip install -r requirements.txt && mkdocs serve -a 0.0.0.0:8000"
75
working_dir: /docs
86
volumes:
97
- ./:/docs
108
ports:
11-
- 8000:8000
9+
- 8000:8000

docs/site/theme/partials/nav.html

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -18,6 +18,7 @@
1818
-->
1919

2020
<!-- Determine class according to configuration -->
21+
{% import "partials/nav-item.html" as item with context %}
2122
{% set class = "md-nav md-nav--primary" %}
2223
{% if "navigation.tabs" in features %}
2324
{% set class = class ~ " md-nav--lifted" %}
@@ -45,8 +46,7 @@
4546
<ul class="md-nav__list" data-md-scrollfix>
4647
{% for nav_item in nav %}
4748
{% set path = "__nav_" ~ loop.index %}
48-
{% set level = 1 %}
49-
{% include "partials/nav-item.html" %}
49+
{{ item.render(nav_item, path, 1) }}
5050
{% endfor %}
5151
<li class="community-callout-wrapper">
5252
<div class="community-callout">

mkdocs.yml

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -30,6 +30,8 @@ markdown_extensions:
3030
- pymdownx.superfences
3131
- pymdownx.tabbed:
3232
alternate_style: true
33+
- toc:
34+
permalink: true
3335

3436
nav:
3537
- Home: index.md

package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@
88
],
99
"scripts": {
1010
"pre-commit": "lint-staged",
11-
"docs:serve": "docker-compose up",
11+
"docs:serve": "docker compose up",
1212
"test": "vitest run",
1313
"test:ci": "npm run test -- --coverage",
1414
"format": "prettier --write package.json \"packages/**/*.ts\" \".github/**/*.yml\"",
Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
FROM cockroachdb/cockroach:v25.2.0
1+
FROM cockroachdb/cockroach:v25.2.2

packages/modules/gcloud/Dockerfile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,3 @@
1-
FROM gcr.io/google.com/cloudsdktool/cloud-sdk:525.0.0-emulators
1+
FROM gcr.io/google.com/cloudsdktool/cloud-sdk:529.0.0-emulators
22
FROM fsouza/fake-gcs-server:1.52.2
33
FROM ghcr.io/goccy/bigquery-emulator:0.6.6
Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
FROM mariadb:11.7.2
1+
FROM mariadb:11.8.2

packages/modules/neo4j/Dockerfile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
FROM neo4j:5.26.7
1+
FROM neo4j:5.26.8
Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
FROM docker.redpanda.com/redpandadata/redpanda:v25.1.4
1+
FROM docker.redpanda.com/redpandadata/redpanda:v25.1.7
Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
FROM semitechnologies/weaviate:1.31.0
1+
FROM semitechnologies/weaviate:1.31.5

0 commit comments

Comments
 (0)