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

推荐订阅源

G
Google Developers Blog
博客园 - 司徒正美
Last Week in AI
Last Week in AI
Recent Announcements
Recent Announcements
Y
Y Combinator Blog
博客园 - 聂微东
M
MIT News - Artificial intelligence
博客园_首页
Jina AI
Jina AI
博客园 - 叶小钗
酷 壳 – CoolShell
酷 壳 – CoolShell
H
Hackread – Cybersecurity News, Data Breaches, AI and More
J
Java Code Geeks
F
Fortinet All Blogs
aimingoo的专栏
aimingoo的专栏
小众软件
小众软件
Vercel News
Vercel News
The Cloudflare Blog
钛媒体:引领未来商业与生活新知
钛媒体:引领未来商业与生活新知
云风的 BLOG
云风的 BLOG
N
Netflix TechBlog - Medium
B
Blog
Google DeepMind News
Google DeepMind News
freeCodeCamp Programming Tutorials: Python, JavaScript, Git & More

Obsidian Changelog

Obsidian 1.13.0 Mobile (Early access) Obsidian 1.13.0 Desktop (Early access) Obsidian 1.12.7 Mobile (Public) Obsidian 1.12.7 Desktop (Public) Obsidian 1.12.6 Mobile (Early access) Obsidian 1.12.6 Desktop (Early access) Obsidian 1.12.5 Mobile (Early access) Obsidian 1.12.5 Desktop (Early access) Obsidian 2026.02.27 (Public) Obsidian 1.12 Mobile (Public) Obsidian 1.12 Desktop (Public) Obsidian 1.12.4 Mobile (Early access) Obsidian 1.12.4 Desktop (Early access) Obsidian 1.12.3 Mobile (Early access) Obsidian 1.12.3 Desktop (Early access) Obsidian 1.12.2 Mobile (Early access) Obsidian 1.12.2 Desktop (Early access) Obsidian 1.12.1 Mobile (Early access) Obsidian 1.12.0 Mobile (Early access) Obsidian 1.12.1 Desktop (Early access) Obsidian 1.12.0 Desktop (Early access) Obsidian 1.11.7 Mobile (Public) Obsidian 1.11.7 Desktop (Public) Obsidian 1.11.7 Mobile (Early access) Obsidian 1.11.7 Desktop (Early access) Obsidian 1.11.6 Mobile (Early access) Obsidian 1.11.6 Desktop (Early access) Obsidian 1.11.5 Mobile (Public) Obsidian 1.11.5 Desktop (Public) Obsidian 1.11.5 Mobile (Early access)
Obsidian 1.9.2 Desktop (Early access)
2025-06-05 · via Obsidian Changelog
Breaking changes This release has major breaking changes to Bases. We have updated the Bases formula syntax and the file format to make formulas and filters more expressive and powerful. If you use Obsidian on multiple devices, we recommend upgrading all devices at the same time to avoid issues syncing base files with different syntax. The new formula syntax The new formula syntax is more flexible, easier to use, and better suited to extensibility. For those familiar with Javascript, the new syntax should feel familiar. New functions and types are described in our docs . Some highlights include: Functions are now object-oriented. Instead of contains(file.name, "Books") , the formula would be file.name.contains("Books") . Functions can now be chained. e.g. property.split(' ').sort()[0].lower() Property names are no longer wrapped in backticks (`). Instead, to reference properties with spaces or special characters, the syntax is note["Property Name"] There is a new type system which provides greater control when writing formulas. New functions, such as link , date and list for converting a value to a different type. New file properties: file.path , file.links (a list of all internal links in this file), and file.tags (a list of all tags in this file, including frontmatter). Some functions have been replaced by comparison operators. For example, dateBefore(date1, date2) is now date1 < date2 . Date modifications are now much simpler. Instead of dateModify(date, string) , you can use date + string , for example, date("01/01/2025") + "1 year" For help migrating existing Bases to the new syntax, take a look at the migration guide . File format changes The Bases ( .base ) file format has been updated for greater extensibility. There is a new properties section for all property configurations, such as displayName . Learn about the full syntax in our docs . Improvements Bases Shows number of results in the current view. Bases: Operator dropdown for filters is now searchable. Bases: Table cells with long text now expand to show the entire content when selected. No longer broken Tags view: Fixed "Show nested tags" showing the full tag name (e.g. #parent/child ) File explorer: Fixed "Move folder to..." menu item not showing in context menu. Bases: Fixed view not closing after deleting the file. Bases: Fixed codeblock not rendering when "Indent with tabs" is enabled.