You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@buildstream.apache.org by tv...@apache.org on 2021/01/22 08:09:31 UTC

[buildstream] branch tristan/refactor-remote-config updated (6d35f20 -> 7bfbcdc)

This is an automated email from the ASF dual-hosted git repository.

tvb pushed a change to branch tristan/refactor-remote-config
in repository https://gitbox.apache.org/repos/asf/buildstream.git.


    omit 6d35f20  NEWS: Document breaking change, removed support for deprecated RE config
    omit b093b6f  _remotespec.py: Moving RemoteSpec and RemoteExecutionSpec to its own file
    omit 38cfe01  element.py: Remove local __remote_execution_specs instance variable
    omit 4c48065  node.pyi: Adding some missing type annotations
     add e8de0d5  _assetcache.py: Allow explicit re-initialization of remotes.
     add 8171596  element.py: Added internal API _mimic_artifact()
     add ab8f1dc  _artifactelement.py: Override _pull_done()
     add 432c195  _stream.py: Pre-emptive pulling of artifact metadata in some cases
     add 43c8206  _stream.py: Added new _reset() function.
     add 33a5107  tests/frontend/artifact_pull.py: Test pulling artifacts with various deps options
     add 01af64a  tests/frontend/artifact_checkout.py: Test checking out remote artifacts
     add 89d3af2  Merge pull request #1433 from apache/tristan/fix-recursive-artifact-pull
     add 19cd578  Allow certain operations to work without loading a project
     add 1c648cf  tests/frontend/artifact_list_contents.py: Use parametrized tests
     add 4eb2c07  tests/frontend/artifact_list_contents.py: Test listing artifact content without a project
     add 953c0ee  tests/frontend/artifact_checkout.py: Test artifact checkout without project
     add 15f0301  tests/frontend/artifact_delete.py: Test artifact deletion without a project
     add 1e4a48a  tests/frontend/artifact_log.py: Test artifact log without a project
     add 724337b  tests/frontend/artifact_pull.py: Test artifact pull without a project
     add cc66f9e  tests/frontend/artifact_show.py: Test artifact show without a project
     add 7dd7690  Merge pull request #1442 from apache/tristan/optional-project
     add edec287  node.pyi: Adding some missing type annotations
     add 4c55586  element.py: Remove local __remote_execution_specs instance variable
     add 2658eb0  _remotespec.py: Moving RemoteSpec and RemoteExecutionSpec to its own file
     add 7bfbcdc  NEWS: Document breaking change, removed support for deprecated RE config

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   (6d35f20)
            \
             N -- N -- N   refs/heads/tristan/refactor-remote-config (7bfbcdc)

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:
 src/buildstream/_artifactelement.py                |  11 ++
 src/buildstream/_assetcache.py                     |   9 +-
 src/buildstream/_frontend/app.py                   |  23 +--
 src/buildstream/_frontend/widget.py                |  12 +-
 src/buildstream/_stream.py                         | 196 ++++++++++++++++-----
 src/buildstream/_workspaces.py                     |  10 +-
 src/buildstream/element.py                         |  41 +++--
 tests/format/project.py                            |   7 +-
 tests/frontend/artifact_checkout.py                |  84 +++++++++
 tests/frontend/artifact_delete.py                  |   7 +-
 tests/frontend/artifact_list_contents.py           | 107 +++++------
 tests/frontend/artifact_log.py                     |  34 ++--
 tests/frontend/artifact_pull.py                    |  85 +++++++++
 tests/frontend/artifact_show.py                    |   7 +-
 .../foo.bst => project/elements/target-import.bst} |   4 +
 15 files changed, 484 insertions(+), 153 deletions(-)
 create mode 100644 tests/frontend/artifact_checkout.py
 create mode 100644 tests/frontend/artifact_pull.py
 copy tests/frontend/{logging/elements/foo.bst => project/elements/target-import.bst} (54%)