From b470c4acdbe92ce8d7609503305f430988cfc8b9 Mon Sep 17 00:00:00 2001 From: Nubenetes Bot Date: Fri, 19 Jun 2026 16:04:21 +0200 Subject: [PATCH] fix: escape pipe chars in digest table link titles MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Titles containing ' | ' (e.g. "Neo, Now in the Terminal | Pulumi Blog") broke the Markdown table renderer because the unescaped pipe was parsed as a column separator. Root cause: v2_optimizer.py escaped pipes in the 'why' column but not in the link title — one-line fix adds `.replace("|", r"\|")` to `t`. Also corrects the 4 already-rendered broken entries in tech-digest.md. Co-Authored-By: Claude Sonnet 4.6 --- src/v2_optimizer.py | 2 +- v2-docs/tech-digest.md | 8 ++++---- 2 files changed, 5 insertions(+), 5 deletions(-) diff --git a/src/v2_optimizer.py b/src/v2_optimizer.py index a34ee9c6..0385ab13 100644 --- a/src/v2_optimizer.py +++ b/src/v2_optimizer.py @@ -983,7 +983,7 @@ class V2VisionEngine: md += " | :--- | :--- | :---: | :--- |\n" for item in items: impact_badge = {"critical": "🔴", "high": "🟡", "medium": "🔵"}.get(item.get("impact", "medium"), "🔵") - t = nuclear_strip(item.get("title", "Unknown")) + t = nuclear_strip(item.get("title", "Unknown")).replace("|", r"\|") why = (item.get("why", "") or "").replace("|", "-").replace("\n", " ") md += f' | {item.get("date", "")} | [{t}]({item.get("url", "#")}) | {impact_badge} {item.get("impact", "medium")} | {why} |\n' md += "\n" diff --git a/v2-docs/tech-digest.md b/v2-docs/tech-digest.md index 9caa292e..4fb18b08 100644 --- a/v2-docs/tech-digest.md +++ b/v2-docs/tech-digest.md @@ -165,10 +165,10 @@ search: | Date | Resource | Impact | Why It Matters | | :--- | :--- | :---: | :--- | | 2026-06-02 | [OpenTofu 1.12: the Feature Terraform Never Shipped](https://www.infoq.com/news/2026/05/opentofu-release-terraform) | 🔴 critical | OpenTofu 1.12 solves a major historical limitation of upstream Terraform by introducing dynamic, modular configurations, representing a significant milestone for the open-source fork. | - | 2026-06-02 | [The Agentic Infrastructure Era | Pulumi Releases](https://www.pulumi.com/releases/agentic-infrastructure-era) | 🔴 critical | This release marks a fundamental paradigm shift in cloud engineering toward autonomous, agent-driven infrastructure provisioning and self-healing environments. | + | 2026-06-02 | [The Agentic Infrastructure Era \| Pulumi Releases](https://www.pulumi.com/releases/agentic-infrastructure-era) | 🔴 critical | This release marks a fundamental paradigm shift in cloud engineering toward autonomous, agent-driven infrastructure provisioning and self-healing environments. | | 2026-06-02 | [New in Terraform 1.15: Dynamic sources, variable deprecation, and more](https://www.hashicorp.com/en/blog/new-in-terraform-115-dynamic-sources-variable-deprecation-and-more) | 🟡 high | The introduction of native dynamic module sources and version parsing in Terraform 1.15 directly improves how enterprises manage and inject variable configurations into upstream dependencies. | | 2026-05-29 | [github.com/terraform-aws-modules/terraform-aws-eks: AWS EKS Terraform module](https://github.com/terraform-aws-modules/terraform-aws-eks) | 🟡 high | As the industry-standard module for deploying AWS EKS, this resource remains a critical foundational component for cloud-native Kubernetes infrastructure. | - | 2026-06-02 | [Neo, Now in the Terminal | Pulumi Blog](https://www.pulumi.com/blog/pulumi-neo-cli) | 🟡 high | Bringing the Neo AI assistant directly into the terminal interface introduces a highly novel, agentic UX for local infrastructure generation and debugging. | + | 2026-06-02 | [Neo, Now in the Terminal \| Pulumi Blog](https://www.pulumi.com/blog/pulumi-neo-cli) | 🟡 high | Bringing the Neo AI assistant directly into the terminal interface introduces a highly novel, agentic UX for local infrastructure generation and debugging. | | 2026-06-09 | [github.com/microsoft/terraform-provider-azuredevops/releases/tag/v1.0.0](https://github.com/microsoft/terraform-provider-azuredevops/releases/tag/v1.0.0) | 🟡 high | Reaching GA v1.0.0 establishes critical production-readiness for enterprises looking to fully govern their Azure DevOps platforms through declarative IaC. | | 2026-06-03 | [Infracost 🌟](https://github.com/infracost/infracost) | 🟡 high | This tool enables proactive FinOps governance by parsing HCL files to output precise cloud cost projections before infrastructure changes are applied. | | 2026-03-05 | [Kubestack Gitops Framework](https://github.com/kbst/terraform-kubestack) | 🟡 high | A specialized GitOps framework that natively leverages Terraform's configuration inheritance to streamline multi-cluster Kubernetes platform deployments. | @@ -498,7 +498,7 @@ search: | Date | Resource | Impact | Why It Matters | | :--- | :--- | :---: | :--- | | 2026-06-02 | [OpenTofu 1.12: the Feature Terraform Never Shipped](https://www.infoq.com/news/2026/05/opentofu-release-terraform) | 🔴 critical | Successfully solves a long-standing limitation in modular configuration, marking a significant milestone for the OpenTofu open-source fork. | - | 2026-06-02 | [The Agentic Infrastructure Era | Pulumi Releases](https://www.pulumi.com/releases/agentic-infrastructure-era) | 🔴 critical | Introduces a major paradigm shift toward autonomous, agent-driven cloud provisioning and self-healing infrastructure systems. | + | 2026-06-02 | [The Agentic Infrastructure Era \| Pulumi Releases](https://www.pulumi.com/releases/agentic-infrastructure-era) | 🔴 critical | Introduces a major paradigm shift toward autonomous, agent-driven cloud provisioning and self-healing infrastructure systems. | | 2026-06-02 | [New in Terraform 1.15: Dynamic sources, variable deprecation, and more](https://www.hashicorp.com/en/blog/new-in-terraform-115-dynamic-sources-variable-deprecation-and-more) | 🔴 critical | Introduces native dynamic module sources and versioning, fundamentally changing how practitioners configure upstream dependencies at initialization. | | 2026-05-29 | [github.com/terraform-aws-modules/terraform-aws-eks: AWS EKS Terraform module](https://github.com/terraform-aws-modules/terraform-aws-eks) | 🟡 high | Serves as the battle-tested, community-standard blueprint for orchestrating complex enterprise Amazon EKS cluster deployments. | | 2025-12-10 | [terraform-cdk 🌟](https://github.com/hashicorp/terraform-cdk) | 🟡 high | Allows software engineering teams to use imperative languages like TypeScript and Python to build declarative cloud native infrastructure. | @@ -831,7 +831,7 @@ search: | Date | Resource | Impact | Why It Matters | | :--- | :--- | :---: | :--- | | 2026-06-02 | [OpenTofu 1.12: the Feature Terraform Never Shipped](https://www.infoq.com/news/2026/05/opentofu-release-terraform) | 🔴 critical | Solves a decade-old modular limitation of Terraform, solidifying OpenTofu as a highly capable, community-driven open alternative. | - | 2026-06-02 | [The Agentic Infrastructure Era | Pulumi Releases](https://www.pulumi.com/releases/agentic-infrastructure-era) | 🔴 critical | Introduces a major paradigm shift toward autonomous, agent-driven cloud provisioning using AI integrations. | + | 2026-06-02 | [The Agentic Infrastructure Era \| Pulumi Releases](https://www.pulumi.com/releases/agentic-infrastructure-era) | 🔴 critical | Introduces a major paradigm shift toward autonomous, agent-driven cloud provisioning using AI integrations. | | 2026-06-02 | [New in Terraform 1.15: Dynamic sources, variable deprecation, and more](https://www.hashicorp.com/en/blog/new-in-terraform-115-dynamic-sources-variable-deprecation-and-more) | 🟡 high | Brings crucial native dynamic module sources and configurations to the industry's most widely adopted IaC tool. | | 2026-05-29 | [github.com/terraform-aws-modules/terraform-aws-eks: AWS EKS Terraform module](https://github.com/terraform-aws-modules/terraform-aws-eks) | 🟡 high | Serves as the foundational, community-standard module for orchestrating secure and scalable AWS EKS clusters. | | 2025-11-27 | [github.com/Azure-Samples/aks-platform-engineering Building a Platform Engineering Environment on Azure Kubernetes Service (AKS) 🌟](https://github.com/Azure-Samples/aks-platform-engineering) | 🟡 high | Provides an official, enterprise-grade reference architecture for building platform engineering environments on AKS. |