obsidian-native-mcp 1.5.0 → 1.5.2

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.
@@ -90,7 +90,7 @@ jobs:
90
90
  if: github.event_name != 'push' || !contains(github.event.head_commit.message, '[skip ci]')
91
91
  steps:
92
92
  - uses: actions/checkout@v4
93
- - uses: actions/setup-node@v4
93
+ - uses: actions/setup-node@v6
94
94
  with:
95
95
  node-version-file: .nvmrc
96
96
  cache: npm
@@ -0,0 +1,24 @@
1
+ name: CodeQL
2
+ on:
3
+ push:
4
+ branches: [main, master]
5
+ pull_request:
6
+ branches: [main, master]
7
+ schedule:
8
+ - cron: '0 8 * * 1'
9
+ jobs:
10
+ analyze:
11
+ runs-on: ubuntu-latest
12
+ permissions:
13
+ security-events: write
14
+ strategy:
15
+ fail-fast: false
16
+ matrix:
17
+ language: [javascript-typescript]
18
+ steps:
19
+ - uses: actions/checkout@v6
20
+ - uses: github/codeql-action/init@v4
21
+ with:
22
+ languages: ${{ matrix.language }}
23
+ - uses: github/codeql-action/autobuild@v4
24
+ - uses: github/codeql-action/analyze@v4
@@ -54,7 +54,7 @@ jobs:
54
54
  runs-on: ubuntu-latest
55
55
  steps:
56
56
  - name: Ensure target commit passed CI build
57
- uses: actions/github-script@v7
57
+ uses: actions/github-script@v9
58
58
  with:
59
59
  script: |
60
60
  const { owner, repo } = context.repo;
@@ -0,0 +1,23 @@
1
+ name: OpenSSF Scorecard
2
+ on:
3
+ push:
4
+ branches: [main, master]
5
+ schedule:
6
+ - cron: '0 8 * * 1'
7
+ permissions:
8
+ contents: read
9
+ id-token: write
10
+ security-events: write
11
+ jobs:
12
+ analysis:
13
+ runs-on: ubuntu-latest
14
+ steps:
15
+ - uses: actions/checkout@v6
16
+ - uses: ossf/scorecard-action@v2
17
+ with:
18
+ results_file: results.sarif
19
+ results_format: sarif
20
+ publish_results: true
21
+ - uses: github/codeql-action/upload-sarif@v4
22
+ with:
23
+ sarif_file: results.sarif
package/.nvmrc CHANGED
@@ -1 +1 @@
1
- 22
1
+ 24
package/CHANGELOG.md CHANGED
@@ -1,3 +1,15 @@
1
+ ## [1.5.2](https://github.com/usrivastava92/obsidian-native-mcp/compare/1.5.1...1.5.2) (2026-06-17)
2
+
3
+ ### Bug Fixes
4
+
5
+ - restore proper spacing between badges ([4d286bf](https://github.com/usrivastava92/obsidian-native-mcp/commit/4d286bf5c8e31bca25836a0d0b24f08ec59f1038))
6
+
7
+ ## [1.5.1](https://github.com/usrivastava92/obsidian-native-mcp/compare/1.5.0...1.5.1) (2026-06-17)
8
+
9
+ ### Bug Fixes
10
+
11
+ - add contents:read permission to Scorecard workflow ([86c9fee](https://github.com/usrivastava92/obsidian-native-mcp/commit/86c9feeedb30844e8a0bf46e02c35415664f3bba))
12
+
1
13
  # [1.5.0](https://github.com/usrivastava92/obsidian-native-mcp/compare/1.4.2...1.5.0) (2026-05-24)
2
14
 
3
15
  ### Features
package/README.md CHANGED
@@ -9,6 +9,7 @@ Surgical edits, hash-based concurrency safety, no whole-file rewrites.
9
9
  [![Release](https://img.shields.io/github/v/release/usrivastava92/obsidian-native-mcp?logo=semanticrelease)](https://github.com/usrivastava92/obsidian-native-mcp/releases)
10
10
  [![npm](https://img.shields.io/npm/v/obsidian-native-mcp?logo=npm)](https://www.npmjs.com/package/obsidian-native-mcp)
11
11
  [![License: MIT](https://img.shields.io/badge/license-MIT-blue)](LICENSE)
12
+ [![OpenSSF Scorecard](https://api.scorecard.dev/projects/github.com/usrivastava92/obsidian-native-mcp/badge)](https://scorecard.dev/status/github.com/usrivastava92/obsidian-native-mcp)
12
13
 
13
14
  </div>
14
15
 
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "id": "native-mcp",
3
3
  "name": "Native MCP",
4
- "version": "1.5.0",
4
+ "version": "1.5.2",
5
5
  "minAppVersion": "1.5.0",
6
6
  "description": "MCP server for AI assistants to read, search, create, and modify notes in your vaults",
7
7
  "author": "Utkarsh Srivastava",
package/manifest.json CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "id": "native-mcp",
3
3
  "name": "Native MCP",
4
- "version": "1.5.0",
4
+ "version": "1.5.2",
5
5
  "minAppVersion": "1.5.0",
6
6
  "description": "MCP server for AI assistants to read, search, create, and modify notes in your vaults",
7
7
  "author": "Utkarsh Srivastava",
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "obsidian-native-mcp",
3
- "version": "1.5.0",
3
+ "version": "1.5.2",
4
4
  "description": "Zero-dependency MCP server for Obsidian vaults. Direct filesystem access — no Obsidian process or REST API plugin needed.",
5
5
  "license": "MIT",
6
6
  "type": "module",
@@ -52,9 +52,9 @@
52
52
  "@semantic-release/exec": "^7.1.0",
53
53
  "@semantic-release/git": "^10.0.1",
54
54
  "@types/mdast": "^4.0.4",
55
- "@types/node": "^22.0.0",
55
+ "@types/node": "^24.0.0",
56
56
  "@types/picomatch": "^4.0.0",
57
- "c8": "^10.1.3",
57
+ "c8": "^11.0.0",
58
58
  "esbuild": "^0.25.0",
59
59
  "eslint": "^10.3.0",
60
60
  "husky": "^9.1.7",
package/renovate.json CHANGED
@@ -1,6 +1,12 @@
1
1
  {
2
2
  "$schema": "https://docs.renovatebot.com/renovate-schema.json",
3
3
  "extends": [
4
- "config:recommended"
5
- ]
4
+ "config:recommended",
5
+ "group:allNonMajor"
6
+ ],
7
+ "schedule": ["on saturday"],
8
+ "timezone": "Asia/Kolkata",
9
+ "labels": ["dependencies"],
10
+ "prHourlyLimit": 10,
11
+ "prConcurrentLimit": 10
6
12
  }