Skip to content

Commit

Permalink
Merge pull request #13 from stackb/protopkg-deps
Browse files Browse the repository at this point in the history
Add ProtoPackage.dependencies
  • Loading branch information
pcj committed Jun 22, 2023
2 parents 69f5c53 + 3340d92 commit 523727e
Show file tree
Hide file tree
Showing 2 changed files with 70 additions and 57 deletions.
120 changes: 65 additions & 55 deletions build/stack/protobuf/package/v1alpha1/package.pb.go

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

7 changes: 5 additions & 2 deletions build/stack/protobuf/package/v1alpha1/package.proto
Original file line number Diff line number Diff line change
Expand Up @@ -96,9 +96,12 @@ message ProtoPackage {
google.protobuf.Timestamp created_at = 7;
// name is the unique natural name for the package
string name = 8;
// object hash code of the sum of the assets, sorted alphanumerically by
// filename.
// object hash code of the assets (sorted alphanumerically by filename).
// The equivalent json object that would be hashed is `{"assets": [LIST OF
// ASSETS]}`.
string hash = 9;
// list of direct package dependencies with hashed form (e.g. '{name}@protoreflecthash.v0:0e24bad962e415eb78b7e030d8037580cefbb3a8798865cdd026b549e7d7787b')
repeated string dependencies = 10;
}

// ProtoPackages is a set of packages
Expand Down

0 comments on commit 523727e

Please sign in to comment.