[ARVADOS-WORKBENCH2] updated: 2.1.0-304-g16e1524b

Git user git at public.arvados.org
Wed Apr 14 21:36:18 UTC 2021


Summary of changes:
 Makefile                                           |   6 +-
 README.md                                          | 100 +--
 cypress/integration/collection.spec.js             | 751 +++++++++++----------
 cypress/integration/favorites.spec.js              | 260 +++----
 cypress/integration/sharing.spec.js                |  81 +++
 cypress/integration/side-panel.spec.js             |  22 +-
 cypress/support/commands.js                        |  44 +-
 src/common/labels.ts                               |   5 +-
 src/common/plugintypes.ts                          | 178 +++++
 src/common/url.test.ts                             |  57 ++
 src/common/url.ts                                  |  20 +
 src/common/webdav.test.ts                          |  35 +-
 src/common/webdav.ts                               |   5 +-
 src/common/xml.ts                                  |  14 +-
 src/components/code-snippet/code-snippet.tsx       |   2 +-
 .../details-attribute/details-attribute.tsx        |  51 +-
 src/components/form-dialog/form-dialog.tsx         |   5 +-
 src/components/icon/icon.tsx                       |   2 +
 src/components/tree/tree.tsx                       |  49 +-
 src/components/tree/virtual-tree.tsx               |  11 +-
 src/index.tsx                                      |  16 +-
 src/models/api-client-authorization.ts             |   5 +-
 src/models/group.ts                                |   3 +-
 src/models/link.ts                                 |   5 +-
 src/models/project.ts                              |   2 +-
 src/plugins.tsx                                    |  30 +
 src/plugins/README.md                              |  65 ++
 src/plugins/blank/index.tsx                        |  22 +
 src/plugins/example/exampleComponents.tsx          | 131 ++++
 src/plugins/example/index.tsx                      |  85 +++
 src/plugins/root-redirect/index.tsx                |  20 +
 src/routes/route-change-handlers.ts                |   9 +-
 src/services/api/filter-builder.ts                 |   3 +
 .../collection-service-files-response.test.ts      | 103 +++
 .../collection-service-files-response.ts           |  28 +-
 .../collection-service/collection-service.ts       |   3 +-
 .../common-service/common-resource-service.test.ts |  11 +-
 src/services/common-service/common-service.test.ts |  32 +
 src/services/common-service/common-service.ts      |  15 +-
 .../project-service/project-service.test.ts        |   2 +-
 src/services/project-service/project-service.ts    |   2 +-
 src/store/auth/auth-action.test.ts                 |  97 ++-
 src/store/auth/auth-action.ts                      |  78 ++-
 src/store/auth/auth-reducer.ts                     | 103 +--
 src/store/breadcrumbs/breadcrumbs-actions.ts       |   2 +-
 src/store/collections/collection-info-actions.ts   |   6 +-
 .../context-menu/context-menu-actions.test.ts      | 127 ++--
 src/store/context-menu/context-menu-actions.ts     |  35 +-
 .../current-token-dialog-actions.tsx               |  26 -
 .../groups-panel-middleware-service.ts             |   2 +-
 src/store/navigation/navigation-action.ts          |  30 +-
 .../resource-type-filters.test.ts                  |  41 +-
 .../resource-type-filters/resource-type-filters.ts |  44 +-
 .../run-process-panel/run-process-panel-actions.ts |   4 +-
 .../side-panel-tree/side-panel-tree-actions.ts     |  40 +-
 src/store/side-panel/side-panel-action.ts          |  36 +-
 src/store/store.ts                                 |   9 +-
 src/store/token-dialog/token-dialog-actions.tsx    |  37 +
 src/store/tree-picker/tree-picker-actions.ts       |  12 +-
 src/store/users/users-actions.ts                   |   3 +-
 src/store/workbench/workbench-actions.ts           |   6 +-
 .../workflow-panel/workflow-panel-actions.test.ts  |  89 +++
 src/store/workflow-panel/workflow-panel-actions.ts |  21 +-
 .../auto-logout/auto-logout.test.tsx               |  22 +-
 src/views-components/auto-logout/auto-logout.tsx   |  55 +-
 .../action-sets/process-resource-action-set.ts     |  48 +-
 .../action-sets/project-action-set.test.ts         |  18 +-
 .../context-menu/action-sets/project-action-set.ts |  22 +-
 .../action-sets/project-admin-action-set.ts        |  15 +-
 src/views-components/context-menu/context-menu.tsx |   3 +
 .../current-token-dialog.test.tsx                  |  51 --
 .../current-token-dialog/current-token-dialog.tsx  | 108 ---
 src/views-components/data-explorer/renderers.tsx   |  14 +-
 .../details-panel/project-details.tsx              |  19 +-
 .../form-fields/project-form-fields.tsx            |   3 +-
 src/views-components/main-app-bar/account-menu.tsx |  72 +-
 src/views-components/main-app-bar/main-app-bar.tsx |  28 +-
 .../main-content-bar/main-content-bar.tsx          |  28 +-
 .../project-properties-dialog.tsx                  |  70 +-
 .../sharing-dialog/participant-select.tsx          |   2 +-
 .../side-panel-button/side-panel-button.tsx        |  47 +-
 .../side-panel-tree/side-panel-tree.tsx            |   8 +-
 .../token-dialog/token-dialog.test.tsx             |  80 +++
 src/views-components/token-dialog/token-dialog.tsx | 162 +++++
 src/views/project-panel/project-panel.tsx          |  10 +-
 .../run-process-panel/inputs/directory-input.tsx   |  12 +-
 src/views/run-process-panel/inputs/file-input.tsx  |  11 +-
 .../run-process-panel/run-process-inputs-form.tsx  |   4 +-
 src/views/workbench/workbench.tsx                  |  72 +-
 tools/run-integration-tests.sh                     |  11 +-
 90 files changed, 2909 insertions(+), 1224 deletions(-)
 create mode 100644 cypress/integration/sharing.spec.js
 create mode 100644 src/common/plugintypes.ts
 create mode 100644 src/common/url.test.ts
 create mode 100644 src/plugins.tsx
 create mode 100644 src/plugins/README.md
 create mode 100644 src/plugins/blank/index.tsx
 create mode 100644 src/plugins/example/exampleComponents.tsx
 create mode 100644 src/plugins/example/index.tsx
 create mode 100644 src/plugins/root-redirect/index.tsx
 create mode 100644 src/services/collection-service/collection-service-files-response.test.ts
 create mode 100644 src/services/common-service/common-service.test.ts
 delete mode 100644 src/store/current-token-dialog/current-token-dialog-actions.tsx
 create mode 100644 src/store/token-dialog/token-dialog-actions.tsx
 create mode 100644 src/store/workflow-panel/workflow-panel-actions.test.ts
 delete mode 100644 src/views-components/current-token-dialog/current-token-dialog.test.tsx
 delete mode 100644 src/views-components/current-token-dialog/current-token-dialog.tsx
 create mode 100644 src/views-components/token-dialog/token-dialog.test.tsx
 create mode 100644 src/views-components/token-dialog/token-dialog.tsx

  discards  d5cd2e3a03288f3f5189cea1b5463cac085b2f19 (commit)
       via  16e1524bc388723444dd72691b19ee2fa9a297dc (commit)
       via  274f2f9408e4553643af1b8154050f052132714e (commit)
       via  2b3fa73903f8f485df9783f16f00ad05098f9270 (commit)
       via  a45b5f6f12e4e87c3ff0ce6f79a4999fef6e8bc5 (commit)
       via  df6fe23e1a7094526810d1add9be01781f81dd4a (commit)
       via  a6e715bde937738f90e60512e962702e62e85655 (commit)
       via  7d9ce0248a1f4c2f9fe99230b274ecd1159f4c89 (commit)
       via  ef8e39a770f9c27a73553ac6fba524c790d644fd (commit)
       via  a6c092fe45fe0ff310800e82e224bc822890491a (commit)
       via  31e84a9315728c2f58a26bf0e9e1d2b38326fb86 (commit)
       via  0445c9903e02cf27b36c1b41ffbd76de81b9d2e8 (commit)
       via  5385afcada8666051658c6889c83848702497759 (commit)
       via  15073a5905fee439e6b3908d1e805050ff10936b (commit)
       via  c4acd652f0c5157326dc9fb0fb7f40de738cad08 (commit)
       via  5a7d3c08744413b659fd24be59992fc1daa486e5 (commit)
       via  f85cd7bb8f67072db7f2c45cae00c98984dc3f7f (commit)
       via  ebe401635f60309539380f674d492a409a45d36c (commit)
       via  370d78f65bca409aa1a295d94a96436959b568ae (commit)
       via  9555a2020771863c2e4f6b8802bd6850efb37713 (commit)
       via  b05f087c3e2bbaaa829d602af6d90fa565a9900e (commit)
       via  4e1fc4814be0e4cc3891fad0a0ec764b9212ccfd (commit)
       via  fa8284f51d4022cd36e9db5dd3534b45f1f6b76f (commit)
       via  5642c48285c296aa3b77760ed5d1431ccdb0f2f3 (commit)
       via  5436892f893d58526d94d28dac05afb5cff596aa (commit)
       via  6a6c17ba2b6936a2723d2c3698f8ef10ad8eec3d (commit)
       via  bde7ca868a0c201544476da6c049a98c1188dde9 (commit)
       via  3ecdcece8b6a4fd699582d6ae56def97970bdb2f (commit)
       via  f5f72a4ee9b00aab5492f8991677b6503a6f2ac3 (commit)
       via  c37e5ca83f9bf2dd7f3b1deca62b4ee1614dff99 (commit)
       via  21abfcbaba4e8e735f353a1e3b030dd5dae8465b (commit)
       via  ef1017fbad2ff46f5a169bb3fc7d097b5bb746f3 (commit)
       via  160378cd58ef72daacfc5577e3c23ddbc35a5f7f (commit)
       via  381ea9efdee553e5b52282f22add58d4859ab4ef (commit)
       via  fa03027f1954dfdd98c3d3d4f74ea3a016cf57c0 (commit)
       via  dd8c2373f5230831c051711d9e52a3b2defd9dd0 (commit)
       via  e4de9a43cee1a8859cb2a42ea01723d632621ce4 (commit)
       via  950ea822015652a479f236fff9ea8271b60f1ee9 (commit)
       via  623f5deee7b203090fb71f028e01ed55e0f8a38c (commit)
       via  30557563fd5fb704554f4d6109493f673ae7f5e5 (commit)
       via  8297f0f273e326e64145a48266805b0b3d073c32 (commit)
       via  407d1f609f40e8a7d21cf5846690b63706befaa4 (commit)
       via  7341f64486dd57087f89dd8b4fc92db87c3a9b20 (commit)
       via  f288fd05f404b8275974f5f82b738dd354ea8429 (commit)
       via  377e37a3c0c4f376cffb44709640a112df180323 (commit)
       via  a5f102e85afefd36d70f3460fdab5b6b95305e33 (commit)
       via  31d87f7d0812a2da0c74340c196a4f0b4a9f6b12 (commit)
       via  18e2272d85785c4fec83ae2b2b274ccfcfc2fec5 (commit)
       via  5d70775055baf4fab6ff97fff8daa80aa6711d70 (commit)
       via  4c2c72d649f421f63ba95b7bf3978491f78a6c72 (commit)
       via  825ea4fce4ba3568f6105c17e83f4769a9323759 (commit)
       via  630d36f4c40ef2544b2ce1a80eca34cd9aa16ea3 (commit)
       via  56156171fe65695dcec41f540735fd559655a11b (commit)
       via  e61a224071c6aba551e49bf078a120f29af00bb2 (commit)
       via  f21bb210446c4230bef9e5e50b4a9e9b1293bd3b (commit)
       via  a9bd08dd21a33168b1bc95a46d16c7947a9440d8 (commit)
       via  901a27dcbc5e09497f237d47555d8f713bb21cb9 (commit)
       via  d9ca0c62cb1d45df5c27dee5b9d896a3a9c423b3 (commit)
       via  60894bab3aaca17946060ecf2d3392452547c568 (commit)
       via  a2eefb6888ba68ffdf6efe49f4f05b388443330d (commit)
       via  835fca715fcf8da391049b46ae89f600569896f0 (commit)
       via  e84e9949a55f5e25682bf7c4e4656a123091f3ff (commit)
       via  21cb7a9d671099a17bcdaab1687310d0b9941650 (commit)
       via  e754a019ded68655ba7fc25bfb2d159cdef45c87 (commit)
       via  afdb6a890b2db8e9ab03a584e714e30a6747fd18 (commit)
       via  c9d21a5a2fc84e47cff7862648ccabe98a331e80 (commit)
       via  d2817690f88befb0c306e637d6e87367016c76e3 (commit)
       via  eb633efdb3fa8ecb0c2c6a5e35916585282436ea (commit)
       via  ab1faae94143599e5537b40211d6b4370e0ecef6 (commit)
       via  335fee64075faf3dac519fba45da5ecbe5008f33 (commit)
       via  6b5e94cfb15a88d33aba5e7c192cfbe6aec9ac8d (commit)
       via  e407e100aa0c2fd0a57b1a17a61e0ead775a0a21 (commit)
       via  aef54eeec8f2e7255e2da119a19d14879dfb7b72 (commit)
       via  a0a722d1920abbe1e20190d296be0c51daabefc2 (commit)
       via  0ecbcbd790d784e72f2e7c90fc6a417b79acd022 (commit)
       via  6a6a0ad3791c3d93f9881db8dc5bb30827af0898 (commit)
       via  eadb2e4a0005b89cb2ca1977bb6f53652e911249 (commit)
       via  bf112da6d20b47e94de5d486d943edc66b3e727f (commit)
       via  a51a9c10678118004ca3c4fb0af38c5c85d050eb (commit)
       via  44a5f6968f1c2fb449dfb22e1742d2770662e6a9 (commit)
       via  becf93a5f9d1f7d96a3ce868c9b70c3d0094cf45 (commit)
       via  d70bcf2acdaaae12a403cdcf047e7514b145d6e4 (commit)
       via  1492885f32eefc4599f4f44228a6adf2ed7b8f7f (commit)
       via  eb40293bac1e910aacec5cd6d10941394e059a8f (commit)
       via  0c04dddf8855474ea629a6b55be38f15fbc4ac4c (commit)
       via  6a66e260c343d4943a68e5ca5ce205e83ba039c6 (commit)
       via  0429d37860f633725ecff6bd923e196a61121881 (commit)
       via  1301bb460ffc3e8d179492a08dbdb3a67aa080f8 (commit)
       via  7d797c647a094822bc4f79be2715f47020e479d1 (commit)
       via  211054b9494b034611467321203618d8fbdf05e2 (commit)
       via  1d7fbccb64462c349ea223df3ac02817ba60bfe1 (commit)
       via  5620b9c4236bab9e9c98b6a4e955498823de4136 (commit)
       via  f326404ea8ff55f3b177877eeef1136af34d18ba (commit)
       via  b7eb7d60846333d93e91f98ec3e6fcdd94fca570 (commit)
       via  ba4e011fc9132aa17cc6c4e8e74a6310a308291e (commit)
       via  5f272aec410b2b1dce368c36570c6c786aefbd71 (commit)
       via  abe391c9f3a2a7ad954ecf81198268076b233ef8 (commit)

This update added new revisions after undoing existing revisions.  That is
to say, the old revision is not a strict subset of the new revision.  This
situation occurs when you --force push a change and generate a repository
containing something like this:

 * -- * -- B -- O -- O -- O (d5cd2e3a03288f3f5189cea1b5463cac085b2f19)
            \
             N -- N -- N (16e1524bc388723444dd72691b19ee2fa9a297dc)

When this happens we assume that you've already had alert emails for all
of the O revisions, and so we here report only the revisions in the N
branch from the common base, B.

Those revisions listed above that are new to this repository have
not appeared on any other notification email; so we list those
revisions in full, below.


commit 16e1524bc388723444dd72691b19ee2fa9a297dc
Author: Peter Amstutz <peter.amstutz at curii.com>
Date:   Mon Nov 16 12:21:20 2020 -0500

    Revert "Add ubuntu2004 packages, remove debian9 packages."
    
    This reverts commit 53829fa11fd0ce03bd4f45a4dfc4dfdeb00ab8f1.
    
    Arvados-DCO-1.1-Signed-off-by: Peter Amstutz <peter.amstutz at curii.com>

diff --git a/Makefile b/Makefile
index 6cf9c29d..12983bb8 100644
--- a/Makefile
+++ b/Makefile
@@ -17,7 +17,7 @@ VERSION?=$(shell ./version-at-commit.sh HEAD)
 # changes in the package. (i.e. example config files externally added
 ITERATION?=1
 
-TARGETS?="centos7 debian8 debian10 ubuntu1404 ubuntu1604 ubuntu1804 ubuntu2004"
+TARGETS?="centos7 debian8 debian9 debian10 ubuntu1404 ubuntu1604 ubuntu1804"
 
 ARVADOS_DIRECTORY?=unset
 

-----------------------------------------------------------------------


hooks/post-receive
-- 




More information about the arvados-commits mailing list