From b039fb56ed84e158386de3ab58ef34396afeaa5f Mon Sep 17 00:00:00 2001 From: "github-actions[bot]" <41898282+github-actions[bot]@users.noreply.github.com> Date: Thu, 23 Jul 2026 22:51:37 +0000 Subject: [PATCH] chore: version package --- .changeset/fix-decode-uri-non-ascii.md | 5 ----- CHANGELOG.md | 6 ++++++ package.json | 2 +- 3 files changed, 7 insertions(+), 6 deletions(-) delete mode 100644 .changeset/fix-decode-uri-non-ascii.md diff --git a/.changeset/fix-decode-uri-non-ascii.md b/.changeset/fix-decode-uri-non-ascii.md deleted file mode 100644 index f6acaf4..0000000 --- a/.changeset/fix-decode-uri-non-ascii.md +++ /dev/null @@ -1,5 +0,0 @@ ---- -"@quartz-community/utils": patch ---- - -Fix `getFullSlugFromUrl()` to decode URI-encoded pathnames. Non-ASCII characters (Cyrillic, Chinese, etc.) in page titles were URL-encoded in the browser pathname but not decoded before slug comparison, causing mismatches in graph, search, and other client-side features. diff --git a/CHANGELOG.md b/CHANGELOG.md index 0ffeab6..1c5e2d3 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,5 +1,11 @@ # Changelog +## 0.1.1 + +### Patch Changes + +- 1eb2dd8: Fix `getFullSlugFromUrl()` to decode URI-encoded pathnames. Non-ASCII characters (Cyrillic, Chinese, etc.) in page titles were URL-encoded in the browser pathname but not decoded before slug comparison, causing mismatches in graph, search, and other client-side features. + All notable changes to this project will be documented in this file. The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.1.0/) diff --git a/package.json b/package.json index b779b18..dfbaac0 100644 --- a/package.json +++ b/package.json @@ -1,6 +1,6 @@ { "name": "@quartz-community/utils", - "version": "0.1.0", + "version": "0.1.1", "description": "Shared utility functions for Quartz community plugins.", "type": "module", "license": "MIT",