Skip to content

deps(actions): Bump release-drafter/release-drafter from 6 to 7#4

Closed
dependabot[bot] wants to merge 2 commits into
mainfrom
dependabot/github_actions/release-drafter/release-drafter-7
Closed

deps(actions): Bump release-drafter/release-drafter from 6 to 7#4
dependabot[bot] wants to merge 2 commits into
mainfrom
dependabot/github_actions/release-drafter/release-drafter-7

Conversation

@dependabot

@dependabot dependabot Bot commented on behalf of github May 19, 2026

Copy link
Copy Markdown

Bumps release-drafter/release-drafter from 6 to 7.

Release notes

Sourced from release-drafter/release-drafter's releases.

v7.0.0

What's Changed

Breaking

Bug Fixes

Maintenance

Documentation

Other changes

Dependency Updates

Full Changelog: release-drafter/release-drafter@v6.4.0...v7.0.0

v6.4.0

What's Changed

New

Maintenance

... (truncated)

Commits
  • c2e2804 chore: release v7.3.0
  • 0c28acd feat: recover recently merged PRs missed by associated PRs lag (#1604)
  • 3052ee0 fix: restore prerelease-identifier on first run when no prior releases exist ...
  • 0503d11 ci: rebuild dist after codegen so generated PRs include bundle updates (#1605)
  • a553731 chore: update generated GraphQL types (#1600)
  • c5dd361 ci: add warning on automatic codegen PRs
  • 705c5af ci: add maintenance label to automated codegen updates
  • acfaf4f chore: clarify base repository pr filtering (#1599)
  • d181a5a fix: prevent using commitish like refs/pull (#1598)
  • f188d08 feat: switch release discovery to ref comparison and explicit missing-baselin...
  • Additional commits viewable in compare view

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 this major version will close this PR and stop Dependabot creating any more for this major version (unless you reopen the PR or upgrade to it yourself)
  • @dependabot ignore this minor version will close this PR and stop Dependabot creating any more for this minor version (unless you reopen the PR or upgrade to it yourself)
  • @dependabot ignore this dependency will close this PR and stop Dependabot creating any more for this dependency (unless you reopen the PR or upgrade to it yourself)

Dryade and others added 2 commits May 19, 2026 22:48
…ugin authoring

Mirrors the dryade-plugins-sdk/ subtree from DryadeAI/dryade-internal
at phase 339 completion. Ships:

- Plugin / Agent / Tool / Route / Config / HealthCheck / ManageableComponent
  Protocols (typing.Protocol + @runtime_checkable, zero core.* imports)
- Supporting Protocols: KV, Leash, IsolationLevel, Auth, DB, Channels,
  Hooks, Logging
- compute_plugin_hash_pair (CONTRACT_VERSION = 4, SHA-256 + SHA3-256,
  byte-identical to Dryade core's _compute_plugin_hash_pair)
- ManifestV2 dataclass + bundled v2 JSON Schema (importlib.resources)
- testing/ subpackage — FakeHost, MockKV, MockConfig, MockLLM, factories
  for hermetic plugin pytest without Dryade core
- 177 tests (54 protocol + 44 security-disclosure + 31 brand-leak +
  26 examples-build + 22 docs-links/examples)
- 5 runnable example plugins (hello_world, with_tool, with_llm,
  with_ui, multi_agent)
- mkdocs-material documentation site (deploys to sdk.dryade.ai)
- 10 GitHub Actions workflows: CI matrix py3.11/3.12/3.13, OIDC PyPI
  publish on v* tag, docs, OpenSSF Scorecard, CodeQL, dependency-review,
  labeler, welcome, release-drafter, all-contributors
- README v2 with hero, badges, Star History, demo embed
- SECURITY.md (GitHub Security Advisories + security@dryade.ai)
- CHANGELOG.md (Keep-a-Changelog)
- CONTRIBUTING.md with server-enforced branch policy
- CODE_OF_CONDUCT.md (Contributor Covenant 2.1 by reference)
- LICENSE (DSUL — Dryade Source-Usable License)
- Issue templates + PR template + label set + .all-contributorsrc
- llms.txt manifest for AI crawler discovery

License: LicenseRef-DSUL (PEP 639). Python 3.11+. Built with Hatchling.
Hash contract: v4 (SHA-256 + SHA3-256). Branch policy: server-enforced
PR-gated (mirrors DryadeAI/Dryade:main).

Co-Authored-By: Dammerzone <dammerzone@users.noreply.github.com>
Bumps [release-drafter/release-drafter](https://github.com/release-drafter/release-drafter) from 6 to 7.
- [Release notes](https://github.com/release-drafter/release-drafter/releases)
- [Commits](release-drafter/release-drafter@v6...v7)

---
updated-dependencies:
- dependency-name: release-drafter/release-drafter
  dependency-version: '7'
  dependency-type: direct:production
  update-type: version-update:semver-major
...

Signed-off-by: dependabot[bot] <support@github.com>
@dependabot @github

dependabot Bot commented on behalf of github May 19, 2026

Copy link
Copy Markdown
Author

Labels

The following labels could not be found: dependencies, github-actions. Please create them before Dependabot can add them to a pull request.

Please fix the above issues or remove invalid values from dependabot.yml.

@github-actions github-actions Bot added the chore label May 19, 2026
DryadeCore added a commit that referenced this pull request May 20, 2026
…depkg (#6)

Two author-surface gaps from sdk_proof e2e:

Gap #4@route was a no-op decorator. The decorator now stamps a
canonical _dryade_route_meta dict on the wrapped callable (keeping the
legacy `spec` attribute for backwards compatibility), and the SDK ships
two new helpers in dryade_plugins_sdk.plugin:

  - collect_routes(plugin) — walks dir(plugin), returns
    [(meta, callable), ...] ordered by __qualname__.
  - build_router(plugin) -> fastapi.APIRouter — produces a FastAPI
    router from every decorated method; lazy-imports FastAPI so plugins
    without routes don't pull it in; returns plugin.router unchanged
    when present so the legacy pattern keeps working.

with_tool example now uses @route + build_router as the canonical
reference pattern.

Gap #6 — dryade plugin package emitted no SBOM. The packager now embeds
a CycloneDX 1.5 SBOM as sbom.cdx.json in every .dryadepkg. Full SBOM via
cyclonedx-py when available, minimal shim otherwise. The manifest's
`sbom` field records the source (minimal-shim | cyclonedx-py) so
consumers can read the source without unpacking the SBOM file.

Tests:
  - tests/test_route_decorator.py: 8 cases covering decorator metadata,
    collect_routes ordering + legacy-spec fallback, build_router output
    via FastAPI TestClient, plugin.router passthrough, empty-router path.
  - tests/test_package_sbom.py: asserts every .dryadepkg contains a
    valid CycloneDX 1.5 SBOM and the manifest carries the sbom-source
    flag.

Co-authored-by: Dryade <contact@dryade.ai>
Co-authored-by: Dammerzone <dammerzone@users.noreply.github.com>
@DryadeCore DryadeCore closed this May 26, 2026
DryadeCore pushed a commit that referenced this pull request May 26, 2026
…depkg (#6)

Two author-surface gaps from end-to-end author testing:

Gap #4@route was a no-op decorator. The decorator now stamps a
canonical _dryade_route_meta dict on the wrapped callable (keeping the
legacy `spec` attribute for backwards compatibility), and the SDK ships
two new helpers in dryade_plugins_sdk.plugin:

  - collect_routes(plugin) — walks dir(plugin), returns
    [(meta, callable), ...] ordered by __qualname__.
  - build_router(plugin) -> fastapi.APIRouter — produces a FastAPI
    router from every decorated method; lazy-imports FastAPI so plugins
    without routes don't pull it in; returns plugin.router unchanged
    when present so the legacy pattern keeps working.

with_tool example now uses @route + build_router as the canonical
reference pattern.

Gap #6 — dryade plugin package emitted no SBOM. The packager now embeds
a CycloneDX 1.5 SBOM as sbom.cdx.json in every .dryadepkg. Full SBOM via
cyclonedx-py when available, minimal shim otherwise. The manifest's
`sbom` field records the source (minimal-shim | cyclonedx-py) so
consumers can read the source without unpacking the SBOM file.

Tests:
  - tests/test_route_decorator.py: 8 cases covering decorator metadata,
    collect_routes ordering + legacy-spec fallback, build_router output
    via FastAPI TestClient, plugin.router passthrough, empty-router path.
  - tests/test_package_sbom.py: asserts every .dryadepkg contains a
    valid CycloneDX 1.5 SBOM and the manifest carries the sbom-source
    flag.

Co-authored-by: Dryade <contact@dryade.ai>
Co-authored-by: Dammerzone <dammerzone@users.noreply.github.com>
@dependabot @github

dependabot Bot commented on behalf of github May 26, 2026

Copy link
Copy Markdown
Author

OK, I won't notify you again about this release, but will get in touch when a new version is available. If you'd rather skip all updates until the next major or minor version, let me know by commenting @dependabot ignore this major version or @dependabot ignore this minor version. You can also ignore all major, minor, or patch releases for a dependency by adding an ignore condition with the desired update_types to your config file.

If you change your mind, just re-open this PR and I'll resolve any conflicts on it.

@dependabot dependabot Bot deleted the dependabot/github_actions/release-drafter/release-drafter-7 branch May 26, 2026 17:26
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment

Labels

Projects

None yet

Development

Successfully merging this pull request may close these issues.

1 participant