@itkoren/sqmd 0.1.0 → 0.1.1
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/CHANGELOG.md +14 -0
- package/package.json +14 -5
package/CHANGELOG.md
CHANGED
|
@@ -23,6 +23,20 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
|
|
|
23
23
|
|
|
24
24
|
---
|
|
25
25
|
|
|
26
|
+
## [0.1.1] - 2026-03-17
|
|
27
|
+
|
|
28
|
+
### Changed
|
|
29
|
+
- Scoped npm package name to `@itkoren/sqmd` (unscoped `sqmd` rejected by npm as too similar to `send`)
|
|
30
|
+
- Switched npm publish from `NPM_TOKEN` secret to OIDC trusted publishing (`id-token: write` + `--provenance`)
|
|
31
|
+
- Replaced deprecated `actions/create-release@v1` with `gh release create`; existing releases updated via `gh release edit` fallback
|
|
32
|
+
|
|
33
|
+
### Fixed
|
|
34
|
+
- Added `repository.url` to `package.json` (required by npm provenance verification)
|
|
35
|
+
- Fixed TS2341 error in `src/search/reranker.ts` — restored bracket notation for private field access with `biome-ignore` comment
|
|
36
|
+
- Added `"performance": { "noDelete": "off" }` to `biome.json` to prevent Biome unsafe fix from converting `delete process.env[X]` to broken `process.env.X = undefined`
|
|
37
|
+
|
|
38
|
+
---
|
|
39
|
+
|
|
26
40
|
## [0.1.0] - 2026-03-17
|
|
27
41
|
|
|
28
42
|
### Added
|
package/package.json
CHANGED
|
@@ -1,15 +1,24 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@itkoren/sqmd",
|
|
3
|
-
"version": "0.1.
|
|
3
|
+
"version": "0.1.1",
|
|
4
4
|
"description": "Local semantic search engine over Markdown files",
|
|
5
5
|
"repository": {
|
|
6
6
|
"type": "git",
|
|
7
|
-
"url": "https://github.com/itkoren/sqmd.git"
|
|
7
|
+
"url": "git+https://github.com/itkoren/sqmd.git"
|
|
8
8
|
},
|
|
9
9
|
"type": "module",
|
|
10
|
-
"engines": {
|
|
11
|
-
|
|
12
|
-
|
|
10
|
+
"engines": {
|
|
11
|
+
"node": ">=22.0.0"
|
|
12
|
+
},
|
|
13
|
+
"bin": {
|
|
14
|
+
"sqmd": "dist/index.js"
|
|
15
|
+
},
|
|
16
|
+
"files": [
|
|
17
|
+
"dist",
|
|
18
|
+
"README.md",
|
|
19
|
+
"LICENSE",
|
|
20
|
+
"CHANGELOG.md"
|
|
21
|
+
],
|
|
13
22
|
"scripts": {
|
|
14
23
|
"build": "tsc",
|
|
15
24
|
"dev": "tsx src/index.ts",
|