This is an automated email from the ASF dual-hosted git repository.
tvb pushed a change to branch tristan/sboms
in repository https://gitbox.apache.org/repos/asf/buildstream.git
omit 1c31343eb frontend: Support %{source-info} in `bst show`
omit 680acae85 local source: Implement collect_source_info()
omit 73845384d downloadablefilesource.py: Implement collect_source_info()
omit 79cbf87a2 source.py: Add collect_source_info() abstract method.
omit 86436120c source.py: Added missing documentation for AliasSubstitution
add e8e9dff59 Empty commit to work around a potential versioneer bug
add 08f37aeb2 casserver.py: Fix error handling in `ByteStream.Read()`
add a3e280a69 Merge pull request #1999 from apache/juerg/test-proxy-server
add 0da729d7a cascache.py: Support directory mtime in `checkout()`
add 8c45f26a5 tests/internals/storage_vdir_import.py: Set mtime for
directories
add 922b1507b Merge pull request #2001 from apache/juerg/directory-mtime
add 2ac844438 _protos: Regenerate with protobuf 5.28.3 and grpcio 1.68.0
add d7c73b8ec _protos: Update local_cas.proto from buildbox
add f4dd45081 doc/source/using_config.rst: Add connection configuration
section
add 228fead29 Support gRPC connection options for retry and timeout
add 6c06e1b11 Merge pull request #1987 from apache/juerg/grpc-settings
add c87a8e8f3 source.py: Added missing documentation for AliasSubstitution
add 75e39aa77 source.py: Add collect_source_info() abstract method.
add 67af0d81d downloadablefilesource.py: Implement collect_source_info()
add 5e3ffdec9 local source: Implement collect_source_info()
add 66ad14b72 frontend: Support %{source-info} in `bst show`
This update added new revisions after undoing existing revisions.
That is to say, some revisions that were in the old version of the
branch are not in the new version. This situation occurs
when a user --force pushes a change and generates a repository
containing something like this:
* -- * -- B -- O -- O -- O (1c31343eb)
\
N -- N -- N refs/heads/tristan/sboms (66ad14b72)
You should already have received notification emails for all of the O
revisions, and so the following emails describe only the N revisions
from the common base, B.
Any revisions marked "omit" are not gone; other references still
refer to them. Any revisions marked "discard" are gone forever.
No new revisions were added by this update.
Summary of changes:
doc/source/using_config.rst | 64 +-
src/buildstream/_cas/cascache.py | 5 +
src/buildstream/_cas/casdprocessmanager.py | 6 +
src/buildstream/_cas/casserver.py | 3 +-
.../bazel/remote/asset/v1/remote_asset_pb2.py | 160 ++---
.../bazel/remote/asset/v1/remote_asset_pb2.pyi | 131 ++++
.../bazel/remote/asset/v1/remote_asset_pb2_grpc.py | 94 ++-
.../remote/execution/v2/remote_execution_pb2.py | 762 +++++----------------
.../remote/execution/v2/remote_execution_pb2.pyi | 624 +++++++++++++++++
.../execution/v2/remote_execution_pb2_grpc.py | 186 ++++-
.../_protos/build/bazel/semver/semver_pb2.py | 36 +-
.../_protos/build/bazel/semver/semver_pb2.pyi | 17 +
.../_protos/build/bazel/semver/semver_pb2_grpc.py | 20 +
.../_protos/build/buildgrid/local_cas.proto | 34 +
.../_protos/build/buildgrid/local_cas_pb2.py | 374 +++-------
.../_protos/build/buildgrid/local_cas_pb2.pyi | 268 ++++++++
.../_protos/build/buildgrid/local_cas_pb2_grpc.py | 227 ++++--
.../_protos/buildstream/v2/artifact_pb2.py | 62 +-
.../_protos/buildstream/v2/artifact_pb2.pyi | 64 ++
.../_protos/buildstream/v2/artifact_pb2_grpc.py | 20 +
.../_protos/buildstream/v2/source_pb2.py | 36 +-
.../_protos/buildstream/v2/source_pb2.pyi | 15 +
.../_protos/buildstream/v2/source_pb2_grpc.py | 20 +
.../_protos/google/api/annotations_pb2.py | 29 +-
.../_protos/google/api/annotations_pb2.pyi | 8 +
.../_protos/google/api/annotations_pb2_grpc.py | 20 +
src/buildstream/_protos/google/api/http_pb2.py | 62 +-
src/buildstream/_protos/google/api/http_pb2.pyi | 44 ++
.../_protos/google/api/http_pb2_grpc.py | 20 +
.../_protos/google/bytestream/bytestream_pb2.py | 103 +--
.../_protos/google/bytestream/bytestream_pb2.pyi | 55 ++
.../google/bytestream/bytestream_pb2_grpc.py | 75 +-
.../_protos/google/longrunning/operations_pb2.py | 119 ++--
.../_protos/google/longrunning/operations_pb2.pyi | 62 ++
.../google/longrunning/operations_pb2_grpc.py | 93 ++-
src/buildstream/_protos/google/rpc/code_pb2.py | 50 +-
src/buildstream/_protos/google/rpc/code_pb2.pyi | 42 ++
.../_protos/google/rpc/code_pb2_grpc.py | 20 +
src/buildstream/_protos/google/rpc/status_pb2.py | 38 +-
src/buildstream/_protos/google/rpc/status_pb2.pyi | 17 +
.../_protos/google/rpc/status_pb2_grpc.py | 20 +
src/buildstream/_remotespec.py | 33 +
tests/internals/storage_vdir_import.py | 6 +
43 files changed, 2691 insertions(+), 1453 deletions(-)
create mode 100644
src/buildstream/_protos/build/bazel/remote/asset/v1/remote_asset_pb2.pyi
create mode 100644
src/buildstream/_protos/build/bazel/remote/execution/v2/remote_execution_pb2.pyi
create mode 100644 src/buildstream/_protos/build/bazel/semver/semver_pb2.pyi
create mode 100644 src/buildstream/_protos/build/buildgrid/local_cas_pb2.pyi
create mode 100644 src/buildstream/_protos/buildstream/v2/artifact_pb2.pyi
create mode 100644 src/buildstream/_protos/buildstream/v2/source_pb2.pyi
create mode 100644 src/buildstream/_protos/google/api/annotations_pb2.pyi
create mode 100644 src/buildstream/_protos/google/api/http_pb2.pyi
create mode 100644 src/buildstream/_protos/google/bytestream/bytestream_pb2.pyi
create mode 100644
src/buildstream/_protos/google/longrunning/operations_pb2.pyi
create mode 100644 src/buildstream/_protos/google/rpc/code_pb2.pyi
create mode 100644 src/buildstream/_protos/google/rpc/status_pb2.pyi