Skip to content

Commit 50ba129

Browse files
release: 4.14.7
1 parent f094195 commit 50ba129

4 files changed

Lines changed: 11 additions & 3 deletions

File tree

CHANGELOG.md

Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -4,6 +4,13 @@ All notable changes to this project will be documented in this file. See [standa
44

55
## 4.X
66

7+
### [4.14.7](https://github.com/michaelpporter/breadcrumbs/compare/4.14.6...4.14.7) (2026-07-30)
8+
9+
### Bug Fixes
10+
11+
* **list_note**`BC-list-note-section` now actually scopes the list-note builder to the targeted heading, instead of being silently ignored. This branch's `list_note` builder predated the feature on `main`, so every list item in the note was processed regardless of section — including numbered lists in unrelated sections, whose `1.` markers got misread as field-override attempts and threw `invalid_edge_field` (#755). Ported `main`'s section-line resolution and filtering.
12+
* **logging** — the plugin no longer logs to the console by default. This branch's logger predated `main`'s recent overhaul: it kept a five-level DEBUG/INFO/WARN/ERROR/FEAT scheme routed entirely through `console.log` and defaulted to INFO, so ordinary operation (graph builds, settings loads, view redraws) was chatty by default. Collapsed to DEBUG/ERROR/SILENT, defaulting to SILENT, with `console.debug`/`console.error` used per level — matching `main` and Obsidian's plugin guidelines. Ported across the WASM boundary as well, so Rust-side logging (`Building Graph`, edge/node iteration errors) follows the same levels.
13+
714
### [4.14.6](https://github.com/michaelpporter/breadcrumbs/compare/4.14.5...4.14.6) (2026-07-26)
815

916
### Build

manifest.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
{
22
"id": "breadcrumbs",
33
"name": "Breadcrumbs",
4-
"version": "4.14.6",
4+
"version": "4.14.7",
55
"minAppVersion": "1.12.3",
66
"description": "Add structured hierarchies to your notes.",
77
"author": "MichaelPPorter",

package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "breadcrumbs",
3-
"version": "4.14.6",
3+
"version": "4.14.7",
44
"description": "Add typed-links to your Obsidian notes",
55
"main": "main.js",
66
"scripts": {

versions.json

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -306,5 +306,6 @@
306306
"4.14.4-beta.1": "1.12.3",
307307
"4.14.4": "1.12.3",
308308
"4.14.5": "1.12.3",
309-
"4.14.6": "1.12.3"
309+
"4.14.6": "1.12.3",
310+
"4.14.7": "1.12.3"
310311
}

0 commit comments

Comments
 (0)