drupal-mcp-connector 0.10.0 → 1.0.0
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 +18 -0
- package/package.json +1 -1
package/CHANGELOG.md
CHANGED
|
@@ -7,6 +7,23 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
|
|
|
7
7
|
|
|
8
8
|
## [Unreleased]
|
|
9
9
|
|
|
10
|
+
## [1.0.0] - 2026-06-15
|
|
11
|
+
|
|
12
|
+
First stable release. The tool surface, security model, and configuration
|
|
13
|
+
schema are now considered stable and will follow semantic versioning.
|
|
14
|
+
|
|
15
|
+
### Added
|
|
16
|
+
- Stable **1.0** milestone: 89 tools across 20 modules with full read +
|
|
17
|
+
governed-write coverage (node/entity CRUD, revisions, moderation, scheduler,
|
|
18
|
+
fields, references, bulk operations, translations, paragraphs, structure,
|
|
19
|
+
search, and reports), `dryRun` preview on every write tool, the JSON:API and
|
|
20
|
+
GraphQL backends, the `write-plane` security preset, and multi-client launch
|
|
21
|
+
support (Claude Code, Claude Desktop, Grok Build).
|
|
22
|
+
|
|
23
|
+
### Changed
|
|
24
|
+
- No functional changes since 0.10.0 — this release promotes the 0.10.x feature
|
|
25
|
+
set to a stable 1.0 line.
|
|
26
|
+
|
|
10
27
|
## [0.10.0] - 2026-06-15
|
|
11
28
|
|
|
12
29
|
### Added
|
|
@@ -252,6 +269,7 @@ The connector is now **dual-protocol**: every tool runs against an abstract back
|
|
|
252
269
|
- User tools gained explicit PII-access assertions.
|
|
253
270
|
- Whole tree lint-clean (`npm run lint`) with object-injection sinks rewritten to safe lookups.
|
|
254
271
|
|
|
272
|
+
[1.0.0]: https://github.com/Wilkes-Liberty/drupal-mcp-connector/releases/tag/v1.0.0
|
|
255
273
|
[0.10.0]: https://github.com/Wilkes-Liberty/drupal-mcp-connector/releases/tag/v0.10.0
|
|
256
274
|
[0.9.1]: https://github.com/Wilkes-Liberty/drupal-mcp-connector/releases/tag/v0.9.1
|
|
257
275
|
[0.9.0]: https://github.com/Wilkes-Liberty/drupal-mcp-connector/releases/tag/v0.9.0
|
package/package.json
CHANGED