惯性聚合 高效追踪和阅读你感兴趣的博客、新闻、科技资讯
阅读原文 在惯性聚合中打开

推荐订阅源

奇客Solidot–传递最新科技情报
奇客Solidot–传递最新科技情报
博客园_首页
大猫的无限游戏
大猫的无限游戏
让小产品的独立变现更简单 - ezindie.com
让小产品的独立变现更简单 - ezindie.com
Apple Machine Learning Research
Apple Machine Learning Research
B
Blog
B
Blog RSS Feed
Cyber Security Advisories - MS-ISAC
Cyber Security Advisories - MS-ISAC
P
Proofpoint News Feed
MyScale Blog
MyScale Blog
Engineering at Meta
Engineering at Meta
量子位
H
Hackread – Cybersecurity News, Data Breaches, AI and More
T
Tailwind CSS Blog
Stack Overflow Blog
Stack Overflow Blog
N
Netflix TechBlog - Medium
T
The Blog of Author Tim Ferriss
U
Unit 42
aimingoo的专栏
aimingoo的专栏
博客园 - 叶小钗
博客园 - 【当耐特】
云风的 BLOG
云风的 BLOG
博客园 - Franky
博客园 - 聂微东

Hacker News: Show HN

PurrrrrFocus: Pomodoro Timer App - App Store Workflow Engine — Multi-Step Orchestration for Bun RapidPhoto: Pro Photo Editor App - App Store GitHub - DheerG/swarms: Achieve extraordinary results with claude code across a variety of tasks SPICE simulation → oscilloscope → verification with Claude Code — Lucas Gerads Show HN: VCoding – A 5 MB native Windows IDE with no dynamic dependencies Show HN: LLMs don't hallucinate because they're bad at math, it's the format GitHub - Agent-FM/agentfm-core: AgentFM is a peer-to-peer network that turns everyday computers into a decentralized AI supercomputer. AgentFM lets you run massive AI workloads directly across a global mesh of idle CPUs and GPUs. Show HN: Tracking Top US Science Olympiad Alumni over Last 25 Years GitHub - Potarix/agent-hub: One place to talk to all your agents Show HN: Runtime security for AI agents(injection,tool abuse, data exfiltration) GitHub - dubeyKartikay/lazyspotify: Terminal Spotify client for macOS and Linux GitHub - the-banana-tool/king-louie: Easy to use GUI Personal AI Assistant. Win/Linux/Mac. Show HN I made my vacation rental bookable by AI agents–no Airbnb, 0% commission GitHub - basteez/jsf-autoreload: maven plugin to enable hot reload on jsf projects uvm32/hosts/host-gdbstub at main · ringtailsoftware/uvm32 GitHub - labsai/EDDI: Config-driven engine that turns JSON into production-grade AI agents. Multi-agent orchestration, 12+ LLM providers, MCP/A2A protocols, RAG, persistent memory, and enterprise compliance (EU AI Act, GDPR, HIPAA). Built on Quarkus. GitHub - glitchnsec/fortyone-oss: AI Executive Assistant Platform Quickstart | Alien GitHub - muxshed/shed: One stream in, or many. Every destination, simultaneously. No cloud middleman, no per-channel fees, no limits. GitHub - ocrbase-hq/ocrbase: 📄 PDF/IMG ->.MD/JSON Document OCR API for PaddleOCR and GLMOCR. Self-hostable. GitHub - impactjo/home-memory: MCP server that lets your AI assistant remember everything about your home. GitHub - Sets88/dbcls: DbCls is a powerful terminal database client that supports various databases GitHub - neptun2000/heor-agent-mcp GitHub - SeanFDZ/macmind: Single-layer transformer in HyperTalk for the classic Macintosh RollQuation: Math Puzzles - Apps on Google Play GitHub - dropbox/witchcraft Show HN: Agent-cache – Multi-tier LLM/tool/session caching for Valkey and Redis GitHub - opentalon/opentalon: OpenTalon is an open-source platform built from the ground up in Go as a robust alternative to OpenClaw LinkedIn™ 职位抓取工具 - Chrome 应用商店
Release v1.0.0-alpha7 · pantoniou/libfyaml
fypanto · 2026-05-29 · via Hacker News: Show HN

libfyaml v1.0.0-alpha7

v1.0.0-alpha7 is a cache, emission, and Python packaging release for the 1.0
alpha line. It adds transparent parser cache support, switches generic emission
to the optimized event path by default, and improves Python wheel compatibility
through Stable ABI builds.

Modulo any show-stopper bugs found after release, this is expected to be the
last alpha before the 1.0 line moves into beta.

Highlights

  • add transparent parser cache support in the parser, fy-tool, and Python binding
  • switch generic emission to the optimized generic event emitter by default
  • build Python wheels against the Stable ABI (abi3, cp310) and add ARM wheel coverage
  • add keep-anchor parsing flags and Python keyword support
  • fix invalid UTF-8 emission and preserve partial UTF-8 bytes for quoting
  • improve C++ translation-unit compatibility across GCC, Clang, and MSVC

What Changed Since alpha6

Transparent Parse Cache

alpha7 introduces transparent parse cache support so repeated parsing
workflows can reuse parser state without changing the caller-facing model.

  • add the transparent parser cache implementation
  • expose transparent cache support in fy-tool
  • expose transparent parse functionality in the Python binding
  • add cache documentation, benchmarks, and regression tests

Generic Emission

Generic emission gets a significant implementation update:

  • add an optimized generic emission path
  • switch optimized generic emission on by default
  • add generic event-emitter tests
  • rework token emission for reuse
  • simplify generic indirect internals and export scalar-check helpers

Python Packaging

The Python binding packaging continues to tighten:

  • build the extension against the Stable ABI (abi3, cp310)
  • add Ubuntu and Windows ARM binary wheels
  • force extension builds to use PIC
  • fix Py_None refcount handling in document-state tag access
  • convert binding error paths toward a consistent goto err_out style

Correctness and Portability

This release also includes focused parser, emitter, and portability fixes:

  • add keep-anchor parser flags and Python keyword support
  • escape invalid UTF-8 in generic string emission
  • preserve partial UTF-8 bytes when quoting scalars
  • clone replayed stream-end tokens and cover token cleanup fuzz regressions
  • make public atomic macros usable from C++ translation units on GCC, Clang, and MSVC
  • add MSVC C++17 atomic fallback coverage

API Direction

The 1.0 direction is unchanged:

  • core API for parser/emitter/document control
  • generics for Python-like YAML/JSON value handling in C
  • reflection for typed YAML <-> C struct serdes

alpha7 mainly improves repeated-parse performance workflows, generic emitter
behavior, and Python distribution compatibility.

Installation

Using CMake:

find_package(libfyaml 1.0 REQUIRED)
target_link_libraries(your_app PRIVATE libfyaml::libfyaml)

Using pkg-config:

pkg-config --cflags libfyaml
pkg-config --libs libfyaml

Resources

  • README: README.md
  • Changelog: CHANGELOG.md
  • Generic guide: doc/generics-guide.rst
  • Reflection guide: doc/reflection-guide.rst
  • Examples overview: examples/README.md

Full Changelog: v1.0.0-alpha6...v1.0.0-alpha7