Add requires field to package manifest output#1612
Merged
teresaromero merged 4 commits intoelastic:mainfrom Mar 10, 2026
Merged
Add requires field to package manifest output#1612teresaromero merged 4 commits intoelastic:mainfrom
requires field to package manifest output#1612teresaromero merged 4 commits intoelastic:mainfrom
Conversation
✅ Snyk checks have passed. No issues have been found so far.
💻 Catch issues earlier using the plugins for VS Code, JetBrains IDEs, Visual Studio, and Eclipse. |
teresaromero
added a commit
to teresaromero/package-registry
that referenced
this pull request
Mar 10, 2026
Made-with: Cursor
teresaromero
added a commit
to teresaromero/package-registry
that referenced
this pull request
Mar 10, 2026
Made-with: Cursor
7b7d740 to
609b988
Compare
mrodm
reviewed
Mar 10, 2026
- Introduced `PackageRequirement` and `PackageRequirements` types to define dependencies on other packages. - Updated the `BasePackage` struct to include a `Requires` field for package dependencies. - Modified various JSON files to include `requires` field with input dependencies for `sql_input` version `0.2.0`.
Made-with: Cursor
…s in the `PackageRequirement` struct to enforce mandatory dependencies.
609b988 to
1e5ecd0
Compare
💚 Build Succeeded
History
|
Merged
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
Add
requiresfield to package manifest outputExpose the package-spec
requiresfield in registry responses so clients can see integration package dependencies (input and content) before downloading.Changes
PackageRequirementandPackageRequirementstypes and arequiresfield onBasePackage.manifest.ymland included in GET /package/{name}/{version} and GET /search when present.requiresin the manifest omit the key from the JSON (no change for existing packages).Dependencies
This PR should be merged after #1605. That PR is required to be merged first.