Skip to content

Bump @docmd/core from 0.6.9 to 0.7.1 in the npm-dependencies group#7

Open
dependabot[bot] wants to merge 1 commit into
mainfrom
dependabot/npm_and_yarn/npm-dependencies-9372a122be
Open

Bump @docmd/core from 0.6.9 to 0.7.1 in the npm-dependencies group#7
dependabot[bot] wants to merge 1 commit into
mainfrom
dependabot/npm_and_yarn/npm-dependencies-9372a122be

Conversation

@dependabot
Copy link
Copy Markdown
Contributor

@dependabot dependabot Bot commented on behalf of github Apr 18, 2026

Bumps the npm-dependencies group with 1 update: @docmd/core.

Updates @docmd/core from 0.6.9 to 0.7.1

Release notes

Sourced from @​docmd/core's releases.

docmd@0.7.1 🚀 (Advanced Plugin API Release)

The docmd 0.7.1 release introduces a major architectural improvement — the plugin system has been extracted into a dedicated @docmd/api package, bringing plugin descriptors, crash isolation, and capability enforcement to the ecosystem.

✨ Highlights

📦 @docmd/api - Dedicated Plugin Package

The plugin API surface - hook registration, WebSocket RPC dispatch, and source editing tools — now lives in its own dedicated package: @docmd/api.

npm install @docmd/api

This decouples the plugin ecosystem from the build engine, allowing plugin authors to depend on a lightweight API contract without pulling in the entire @docmd/core package.

Backward Compatible: All exports from @docmd/api are re-exported from @docmd/core. Existing code using @docmd/core imports continues to work without changes.

🛡️ Plugin Descriptors

Plugins can now export a plugin descriptor declaring their identity and capabilities:

export default {
  plugin: {
    name: 'my-analytics',
    version: '1.0.0',
    capabilities: ['head', 'body', 'post-build']
  },
generateScripts: (config, opts) => { ... },
onPostBuild: async (ctx) => { ... }
};

The engine validates descriptors at load time - invalid names, versions, or unknown capabilities are rejected immediately for official plugins, and emit warnings for third-party packages.

Migration Note: Descriptors are optional in 0.7.x. A soft deprecation warning is emitted for plugins without one. This will become a hard requirement in 0.8.0.

🔒 Plugin Isolation

Every hook invocation is now wrapped in a try/catch boundary. A broken plugin cannot crash the build or interfere with other plugins. Errors are logged and collected into a summary displayed at the end of the build:

⚠️  2 plugin error(s) occurred (build completed)

🔑 Capability Enforcement

... (truncated)

Commits

Dependabot compatibility score

Dependabot will resolve any conflicts with this PR as long as you don't alter it yourself. You can also trigger a rebase manually by commenting @dependabot rebase.


Dependabot commands and options

You can trigger Dependabot actions by commenting on this PR:

  • @dependabot rebase will rebase this PR
  • @dependabot recreate will recreate this PR, overwriting any edits that have been made to it
  • @dependabot show <dependency name> ignore conditions will show all of the ignore conditions of the specified dependency
  • @dependabot ignore <dependency name> major version will close this group update PR and stop Dependabot creating any more for the specific dependency's major version (unless you unignore this specific dependency's major version or upgrade to it yourself)
  • @dependabot ignore <dependency name> minor version will close this group update PR and stop Dependabot creating any more for the specific dependency's minor version (unless you unignore this specific dependency's minor version or upgrade to it yourself)
  • @dependabot ignore <dependency name> will close this group update PR and stop Dependabot creating any more for the specific dependency (unless you unignore this specific dependency or upgrade to it yourself)
  • @dependabot unignore <dependency name> will remove all of the ignore conditions of the specified dependency
  • @dependabot unignore <dependency name> <ignore condition> will remove the ignore condition of the specified dependency and ignore conditions

Bumps the npm-dependencies group with 1 update: [@docmd/core](https://github.com/docmd-io/docmd).


Updates `@docmd/core` from 0.6.9 to 0.7.1
- [Release notes](https://github.com/docmd-io/docmd/releases)
- [Commits](docmd-io/docmd@0.6.9...0.7.1)

---
updated-dependencies:
- dependency-name: "@docmd/core"
  dependency-version: 0.7.1
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: npm-dependencies
...

Signed-off-by: dependabot[bot] <support@github.com>
@dependabot dependabot Bot added dependencies Pull requests that update a dependency file javascript Pull requests that update javascript code labels Apr 18, 2026
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment

Labels

dependencies Pull requests that update a dependency file javascript Pull requests that update javascript code

Projects

None yet

Development

Successfully merging this pull request may close these issues.

0 participants