Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
24 changes: 24 additions & 0 deletions planning/changelog/2026-09-06.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,24 @@
# Daily changelog — September 06, 2026

**Date:** 2026-09-06
**PRs merged:** 5

---

## Summary

A quiet day: the previous day's automated daily-update PR merged, an `audit-architecture` sweep routed three more hand-rolled path-containment checks through the shared helper, and Dependabot landed three routine dependency bumps.

## What shipped

### [#1481 refactor(paths): route three hoisted-prefix containment checks through isPathInFolder](https://github.com/allenhutchison/obsidian-gemini/pull/1481)

The `audit-architecture` sweep found three more sites in `scheduled-task-manager.ts` and `file-backed-feature-manager.ts` hand-rolling `path.startsWith(folder + '/')` instead of calling `isPathInFolder()` — invisible to the ESLint guard added in #1472 because the concatenation was hoisted into a `prefix` local a line earlier, so the `.startsWith()` argument was a plain identifier rather than the binary expression the rule's selector matches. Behavior-preserving: `isPathInFolder` only differs from the strict-prefix form by an added `p === f` arm that's unreachable at these call sites (file path vs. folder path). No new tests — the change is a provable no-op covered by the existing suite.

### [#1483 chore(daily): 2026-09-06 daily update](https://github.com/allenhutchison/obsidian-gemini/pull/1483)

The automated daily-update run for 2026-09-05: wrote that day's changelog (4 merged PRs), ran a docs audit that found no drift, and confirmed no unlabeled open issues.

### Dependency bumps: #1478, #1479, #1480

Dependabot bumps: `openai` 7.6.0 → 7.9.0 in the production-dependencies group, `actions/deploy-pages` 5.0.0 → 5.0.1, and a 7-package dev-dependencies group update.
Loading