OffNet Newsroom

Daily topic roundup

Automation / DevOps / IaC

Sunday, July 26, 2026 · 6 stories, curated & summarized — click any story for the source.

Amazon MWAA now supports Apache Airflow 2.11.2, a maintenance release focused on security and stability. This update patches core dependencies, improves task lifecycle management for queued tasks, and enhances secrets masking in logs. It also includes UI corrections and provider package updates for S3 and CloudWatch log delivery.

  • MWAA environments can now be created or upgraded to Airflow 2.11.2.
  • Security patches applied to core dependencies and webserver layers.
  • Fixed task lifecycle management issues for queued tasks.
  • Enhanced secrets masking reduces sensitive data exposure in logs.
  • Updates include S3 and CloudWatch log provider packages.
CHECKLISTKey MWAA 2.11.2 UpdatesUpgrade MWAA environments to Airflow 2.11.2Apply security patches to core dependenciesFix task lifecycle issues for queued tasksEnhance secrets masking in logs
Percona Blog database ↺ since 07-25

Percona MongoDB Tools Now Ship CycloneDX SBOMs for Instant CVE Scanning

Percona has updated PBM 2.15.0 and PCSM 0.9.0 to include CycloneDX 1.6 Software Bill of Materials in all release artifacts, including binaries and Docker images. This allows teams to immediately scan for vulnerabilities using compatible tools like Trivy or Grype upon deployment. The integration streamlines security compliance by providing machine-readable dependency data from day one.

  • PBM 2.15.0 and PCSM 0.9.0 include CycloneDX 1.6 SBOMs in all artifacts.
  • Scan Docker images quickly with Trivy using the --sbom-sources oci flag.
  • Use any CycloneDX-compatible tool like Grype to detect CVEs immediately.
  • SBOMs are available in tarballs, RPMs, DEBs, and container images.
CHECKLISTImmediate SBOM Integration StepsUpdate to PBM 2.15.0 and PCSM 0.9.0Scan Docker images with Trivy using --sbom-sourcesUse Grype for CycloneDX-compatible CVE detectionLeverage SBOMs in tarballs, RPMs, DEBs, and images
AWS What's New awsdatabase ↺ since 07-24

AWS Lambda Durable Execution SDK for .NET hits GA

AWS has made the Durable Execution SDK for .NET generally available, allowing C# developers to build resilient, long-running workflows directly within Lambda. This SDK enables automatic progress checkpointing and execution pauses of up to a year for external events, eliminating the need for custom tracking or external orchestration services. It supports complex patterns like payment pipelines, AI agent orchestration, and human-in-the-loop approvals using an idiomatic C# interface.

  • Build long-running Lambda workflows without external orchestration tools.
  • Automatic checkpointing ensures resilience against unexpected failures.
  • Execution can pause for up to a year while waiting on events.
  • Idiomatic C# SDK simplifies development of durable functions.
  • Ideal for payment pipelines, AI agents, and approval workflows.
HOW IT WORKSDurable Execution Workflow1Start Lambda function execution2Auto-checkpoint progress continuously3Pause for external events4Resume from last checkpoint5Complete long-running workflow
InfoQ generaldevops ↺ since 07-25

Zalando’s In-Process Client-Side Load Balancer Hits 1M RPS

Zalando engineered an in-process, client-side load balancer to manage a high-throughput API processing approximately one million requests per second. This architectural shift delivered more predictable latency characteristics and reduced overall infrastructure expenses. The implementation also provided superior observability, allowing the team to pinpoint failure origins with greater precision.

  • Client-side load balancing shifts decision logic from network edge to application process.
  • Predictable latency improves significantly under high load compared to traditional proxies.
  • Infrastructure costs drop by removing dedicated load balancing hardware or services.
  • Enhanced visibility allows faster root cause analysis for distributed failures.
TRADE-OFFClient-Side vs Traditional LBTraditional ProxyDedicated hardware costs add upLatency spikes under high loadBlind to app-level failuresZalando Client-SideNo extra infrastructure spendPredictable latency at scalePrecise failure root causevs
GitHub Trending (daily) githubrepos ↺ since 07-24 ⚠ unverified date/source

Alibaba releases OpenCodeReview: hybrid LLM and deterministic code review tool

Alibaba has open-sourced OpenCodeReview, an AI-powered CLI tool originally used internally to serve tens of thousands of developers. The tool employs a hybrid architecture combining deterministic pipelines with an LLM Agent to analyze Git diffs and identify defects. It supports OpenAI and Anthropic compatible endpoints and includes a built-in ruleset for issues like NPE, thread-safety, XSS, and SQL injection.

  • Hybrid architecture merges deterministic checks with LLM agents for precise line-level comments.
  • Battle-tested at Alibaba scale, serving tens of thousands of developers over two years.
  • Configurable model endpoints support OpenAI and Anthropic compatible interfaces.
  • Built-in fine-tuned ruleset detects NPE, thread-safety, XSS, and SQL injection risks.
HOW IT WORKSOpenCodeReview Pipeline1Parse Git diffs2Run deterministic checks3LLM agent analysis4Generate line comments
AWS What's New awsdatabase ↺ since 07-23

AWS Secrets Manager now publishes secret update notifications to Amazon EventBridge

AWS Secrets Manager has added native support for publishing events to Amazon EventBridge whenever a secret value changes. This replaces the previous method of relying on parsed CloudTrail events, which required matching multiple API calls like rotation success or PutSecretValue. The new direct integration allows for real-time, event-driven workflows that can trigger targets such as Lambda, SNS, SQS, or Step Functions upon secret updates.

  • Eliminates the need to parse multiple CloudTrail API events to detect secret changes.
  • Enables direct EventBridge rules to trigger on active secret value updates.
  • Supports real-time workflows via Lambda, SNS, SQS, or Step Functions.
  • Simplifies proactive credential caching and rotation handling strategies.
HOW IT WORKSReal-time Secret Update Workflow1Secret value changes in Secrets Manager2Direct event published to EventBridge3EventBridge rule matches the update4Target service triggers automatically5Application receives real-time notification