obsidian-native-mcp 1.5.0 → 1.5.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/.github/workflows/ci.yml +1 -1
- package/.github/workflows/codeql.yml +24 -0
- package/.github/workflows/release.yml +1 -1
- package/.github/workflows/scorecard.yml +23 -0
- package/.nvmrc +1 -1
- package/CHANGELOG.md +6 -0
- package/README.md +2 -0
- package/dist/plugin/manifest.json +1 -1
- package/manifest.json +1 -1
- package/package.json +3 -3
- package/renovate.json +8 -2
package/.github/workflows/ci.yml
CHANGED
|
@@ -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
|
|
@@ -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
|
-
|
|
1
|
+
24
|
package/CHANGELOG.md
CHANGED
|
@@ -1,3 +1,9 @@
|
|
|
1
|
+
## [1.5.1](https://github.com/usrivastava92/obsidian-native-mcp/compare/1.5.0...1.5.1) (2026-06-17)
|
|
2
|
+
|
|
3
|
+
### Bug Fixes
|
|
4
|
+
|
|
5
|
+
- add contents:read permission to Scorecard workflow ([86c9fee](https://github.com/usrivastava92/obsidian-native-mcp/commit/86c9feeedb30844e8a0bf46e02c35415664f3bba))
|
|
6
|
+
|
|
1
7
|
# [1.5.0](https://github.com/usrivastava92/obsidian-native-mcp/compare/1.4.2...1.5.0) (2026-05-24)
|
|
2
8
|
|
|
3
9
|
### Features
|
package/README.md
CHANGED
|
@@ -9,6 +9,8 @@ Surgical edits, hash-based concurrency safety, no whole-file rewrites.
|
|
|
9
9
|
[](https://github.com/usrivastava92/obsidian-native-mcp/releases)
|
|
10
10
|
[](https://www.npmjs.com/package/obsidian-native-mcp)
|
|
11
11
|
[](LICENSE)
|
|
12
|
+
[](https://github.com/usrivastava92/obsidian-native-mcp/commits/main)
|
|
13
|
+
[](https://scorecard.dev/status/github.com/usrivastava92/obsidian-native-mcp)
|
|
12
14
|
|
|
13
15
|
</div>
|
|
14
16
|
|
package/manifest.json
CHANGED
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "obsidian-native-mcp",
|
|
3
|
-
"version": "1.5.
|
|
3
|
+
"version": "1.5.1",
|
|
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": "^
|
|
55
|
+
"@types/node": "^24.0.0",
|
|
56
56
|
"@types/picomatch": "^4.0.0",
|
|
57
|
-
"c8": "^
|
|
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
|
}
|