This is an automated email from the ASF dual-hosted git repository.

kevinjqliu pushed a commit to branch main
in repository https://gitbox.apache.org/repos/asf/iceberg.git


The following commit(s) were added to refs/heads/main by this push:
     new 3f74973619 site: add slug to be explicit about blog url (#15149)
3f74973619 is described below

commit 3f749736193cb6d4ae844873d98ad47ff3f640d9
Author: Kevin Liu <[email protected]>
AuthorDate: Mon Jan 26 21:12:23 2026 -0500

    site: add slug to be explicit about blog url (#15149)
    
    the mkdoc blog plugin calculate [slug (blog 
url)](https://squidfunk.github.io/mkdocs-material/plugins/blog/#meta.slug) 
automatically just the title but [uses a weird 
scheme](https://squidfunk.github.io/mkdocs-material/plugins/blog/#config.post_slugify)
    
    In #15141 it turned "Apache Iceberg C++ 0.2.0 Release" -> 
"apache-iceberg-c-020-release/", which removed the "++" and the version "."s
    
    This PR makes slug explicit so we can set the final url.
    Added slug to `site/docs/blog/posts/2026-01-10-iceberg-summit.md` just to 
be explicit
    
    I verified it locally
    * http://127.0.0.1:8000/blog/announcing-iceberg-summit-2026/
    * http://127.0.0.1:8000/blog/apache-iceberg-cpp-0.2.0-release/
---
 site/docs/blog/posts/2026-01-10-iceberg-summit.md            | 1 +
 site/docs/blog/posts/2026-01-26-iceberg-cpp-0.2.0-release.md | 1 +
 2 files changed, 2 insertions(+)

diff --git a/site/docs/blog/posts/2026-01-10-iceberg-summit.md 
b/site/docs/blog/posts/2026-01-10-iceberg-summit.md
index 3ffde047dc..4cff52421f 100644
--- a/site/docs/blog/posts/2026-01-10-iceberg-summit.md
+++ b/site/docs/blog/posts/2026-01-10-iceberg-summit.md
@@ -1,6 +1,7 @@
 ---
 date: 2026-01-10
 title: Announcing Iceberg Summit 2026
+slug: announcing-iceberg-summit-2026  # this is the url
 authors:
   - iceberg-pmc
 categories:
diff --git a/site/docs/blog/posts/2026-01-26-iceberg-cpp-0.2.0-release.md 
b/site/docs/blog/posts/2026-01-26-iceberg-cpp-0.2.0-release.md
index 3e6ed5f0c0..6c81cb4ea4 100644
--- a/site/docs/blog/posts/2026-01-26-iceberg-cpp-0.2.0-release.md
+++ b/site/docs/blog/posts/2026-01-26-iceberg-cpp-0.2.0-release.md
@@ -1,6 +1,7 @@
 ---
 date: 2026-01-26
 title: Apache Iceberg C++ 0.2.0 Release
+slug: apache-iceberg-cpp-0.2.0-release  # this is the blog url
 authors:
   - iceberg-pmc
 categories:

Reply via email to