Bump codecov/codecov-action from 5 to 6#4
Open
dependabot[bot] wants to merge 1 commit into
Open
Conversation
oratis
added a commit
that referenced
this pull request
May 12, 2026
Pure round-trip helpers for the upcoming Properties UI. Subset of YAML
sufficient for the typical Obsidian-style frontmatter:
- Scalars: bare strings, single/double-quoted strings, ints, floats,
booleans (true/false/yes/no), nulls (null, ~, empty)
- Inline arrays: tags: [a, b, "c d"] with quote-aware comma split
- Block arrays:
tags:
- a
- b
Out of scope: nested mappings, multi-line strings (| / >), anchors,
explicit type tags. Documents using those features keep their bodies
intact but the parser surfaces only the keys it understands; the
upcoming UI will mark unsupported keys read-only.
serialiser quotes scalars that would otherwise be parsed as a different
type ("true", "42", "1.5") or contain colon-space / leading-#, so a
round-trip produces equivalent YAML semantics.
Co-Authored-By: Claude Opus 4.7 (1M context) <noreply@anthropic.com>
oratis
added a commit
that referenced
this pull request
May 12, 2026
Renders the parsed YAML frontmatter as a typed key/value table above the WYSIWYG editor (hidden in source mode — raw YAML is already visible there). Type per row inferred from the parsed value: - text → <input type=text> - number → <input type=number> - boolean → <input type=checkbox> - list → comma-separated text input, split back to YAML block array - null → blank text input (writes to the same key when filled) Each edit re-serialises FM + body in place via updateActiveContent; × button removes a key; bottom row's submit adds a new key with an empty string default. Hidden entirely when the doc has no frontmatter — we don't auto-create one (use Insert YAML Frontmatter command). Co-Authored-By: Claude Opus 4.7 (1M context) <noreply@anthropic.com>
oratis
added a commit
that referenced
this pull request
May 12, 2026
Tier-2 #4 — power-user filters that compose against the existing tag-index and vault-files lists, with the free-text remainder still forwarded to the Rust searchVault command. Syntax: tag:#foo — files carrying #foo (literal # optional) tag:a tag:b — AND intersection across tags path:journal/ — paths containing the substring (case-insensitive) free text — forwarded to Rust as before combinations — operators stripped, free text searched, results filtered to the path-operator constraints Operator-only queries skip the Rust call entirely and return results from the in-memory tag index, so filtering by tag is instant. Co-Authored-By: Claude Opus 4.7 (1M context) <noreply@anthropic.com>
669f4ad to
d066b9e
Compare
Bumps [codecov/codecov-action](https://github.com/codecov/codecov-action) from 5 to 6. - [Release notes](https://github.com/codecov/codecov-action/releases) - [Changelog](https://github.com/codecov/codecov-action/blob/main/CHANGELOG.md) - [Commits](codecov/codecov-action@v5...v6) --- updated-dependencies: - dependency-name: codecov/codecov-action dependency-version: '6' dependency-type: direct:production update-type: version-update:semver-major ... Signed-off-by: dependabot[bot] <support@github.com>
d066b9e to
7be642d
Compare
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
Bumps codecov/codecov-action from 5 to 6.
Release notes
Sourced from codecov/codecov-action's releases.
... (truncated)
Changelog
Sourced from codecov/codecov-action's changelog.
... (truncated)
Commits
57e3a13Th/6.0.0 (#1928)f67d33dRevert "Revert "build(deps): bump actions/github-script from 7.0.1 to 8.0.0""...