[arvados-workbench2] updated: 2.4.0-200-ga4622a09

git repository hosting git at public.arvados.org
Mon Oct 3 14:36:18 UTC 2022


Summary of changes:
 .gitignore                                         |     9 +
 .licenseignore                                     |     3 +
 .yarn/releases/yarn-3.2.0.cjs                      |   785 +
 .yarnrc.yml                                        |     6 +
 Makefile                                           |    11 +-
 cypress.json                                       |     3 +-
 cypress/integration/collection.spec.js             |   172 +-
 cypress/integration/create-workflow.spec.js        |    19 +-
 cypress/integration/favorites.spec.js              |    14 +-
 cypress/integration/group-manage.spec.js           |     1 +
 cypress/integration/page-not-found.spec.js         |    26 +-
 cypress/integration/process.spec.js                |   277 +
 cypress/integration/project.spec.js                |   131 +-
 cypress/integration/search.spec.js                 |   234 +-
 cypress/integration/sharing.spec.js                |    50 +-
 cypress/integration/side-panel.spec.js             |    23 +-
 cypress/integration/user-profile.spec.js           |   449 +
 cypress/integration/virtual-machine-admin.spec.js  |   286 +
 cypress/support/commands.js                        |   233 +-
 cypress/support/index.d.ts                         |    24 +
 docker/Dockerfile                                  |    25 +-
 package.json                                       |    16 +-
 public/webshell/index.html                         |    12 +-
 public/webshell/shell_in_a_box.js                  |     4 +-
 src/common/app-info.ts                             |     2 +-
 src/common/config.ts                               |     2 +
 src/common/custom-theme.ts                         |    13 +-
 src/common/labels.ts                               |     2 +
 src/common/redirect-to.test.ts                     |     8 +-
 src/common/redirect-to.ts                          |    57 +-
 src/common/url.ts                                  |     2 +-
 src/components/autocomplete/autocomplete.tsx       |     2 +-
 src/components/breadcrumbs/breadcrumbs.tsx         |    13 +-
 src/components/chips-input/chips-input.tsx         |    47 +-
 src/components/code-snippet/code-snippet.tsx       |    63 +-
 .../collection-panel-files.tsx                     |   421 +-
 src/components/column-selector/column-selector.tsx |     1 +
 src/components/context-menu/context-menu.tsx       |     4 +
 .../copy-to-clipboard-snackbar.tsx                 |    58 +
 src/components/data-explorer/data-explorer.tsx     |   136 +-
 .../data-table-default-view.tsx                    |     5 +-
 .../data-table-filters-popover.tsx                 |    64 +-
 .../data-table-filters/data-table-filters-tree.tsx |    17 +-
 src/components/data-table/data-table.test.tsx      |     2 +
 src/components/data-table/data-table.tsx           |    35 +-
 .../default-code-snippet/default-code-snippet.tsx  |     9 +-
 src/components/default-view/default-view.tsx       |     3 +-
 src/components/file-tree/file-thumbnail.tsx        |     2 +-
 src/components/file-tree/file-tree-item.tsx        |    66 +-
 src/components/file-tree/file-tree.tsx             |    57 -
 src/components/icon/icon.tsx                       |    32 +-
 .../multi-panel-view/multi-panel-view.tsx          |    60 +-
 .../refresh-button/refresh-button.test.tsx         |     4 +-
 src/components/refresh-button/refresh-button.tsx   |     5 +
 src/components/select-field/select-field.tsx       |    10 +-
 src/components/tree/tree.tsx                       |     3 +
 src/index.tsx                                      |    15 +-
 src/models/collection.ts                           |    35 +
 src/models/container.ts                            |     2 +
 src/models/details.ts                              |     3 +-
 src/models/group.ts                                |    16 +-
 src/models/log.ts                                  |     4 +-
 src/models/permission.ts                           |     1 +
 src/models/runtime-status.ts                       |    11 +
 src/models/tree.ts                                 |    15 +-
 src/models/user.test.ts                            |     2 +-
 src/models/user.ts                                 |    10 +-
 src/models/vocabulary.test.ts                      |    83 +-
 src/models/vocabulary.ts                           |    78 +-
 src/models/workflow.ts                             |     4 +-
 src/routes/route-change-handlers.ts                |    17 +-
 src/routes/routes.ts                               |    23 +-
 .../api-client-authorization-service.test.ts       |    87 +
 .../api-client-authorization-service.ts            |    36 +-
 src/services/api/filter-builder.ts                 |    15 +-
 src/services/api/url-builder.ts                    |     4 +-
 src/services/auth-service/auth-service.ts          |    11 +-
 .../collection-service/collection-service.test.ts  |    56 +-
 .../collection-service/collection-service.ts       |    25 +-
 src/services/common-service/common-service.ts      |    20 +-
 src/services/user-service/user-service.ts          |    21 +-
 src/store/advanced-tab/advanced-tab.tsx            |    31 +-
 .../all-processes-panel-middleware-service.ts      |    44 +-
 src/store/auth/auth-action-session.ts              |     2 +-
 src/store/auth/auth-action.ts                      |    16 +-
 src/store/auth/auth-reducer.ts                     |     4 +-
 src/store/breadcrumbs/breadcrumbs-actions.ts       |    44 +-
 .../collection-panel/collection-panel-action.ts    |    21 +-
 .../collection-panel-files-actions.ts              |    26 -
 .../collection-panel/collection-panel-reducer.ts   |     5 -
 .../collections/collection-partial-copy-actions.ts |     6 +-
 src/store/collections/collection-update-actions.ts |     2 +-
 src/store/collections/collection-upload-actions.ts |    19 +-
 src/store/context-menu/context-menu-actions.ts     |    33 +-
 src/store/context-menu/context-menu-filters.ts     |    40 +
 src/store/data-explorer/data-explorer-reducer.ts   |     2 +-
 .../group-details-panel-actions.ts                 |    43 +-
 ...oup-details-panel-members-middleware-service.ts |     9 +-
 ...details-panel-permissions-middleware-service.ts |     8 +-
 .../groups-panel-middleware-service.ts             |     4 +
 src/store/my-account/my-account-panel-actions.ts   |    30 -
 src/store/navigation/navigation-action.ts          |    22 +-
 .../open-in-new-tab/open-in-new-tab.actions.ts     |    40 +-
 .../process-logs-panel-actions.ts                  |    65 +-
 .../process-logs-panel-reducer.ts                  |     5 +-
 src/store/process-logs-panel/process-logs-panel.ts |     8 +-
 src/store/process-panel/process-panel-actions.ts   |    11 +-
 src/store/process-panel/process-panel.ts           |     9 +
 src/store/processes/process-command-actions.ts     |    28 -
 src/store/processes/process.ts                     |    48 +-
 src/store/processes/processes-actions.ts           |    51 +-
 .../project-panel-middleware-service.ts            |    43 +-
 src/store/projects/project-update-actions.ts       |     6 +-
 .../resource-type-filters.test.ts                  |    66 +-
 .../resource-type-filters/resource-type-filters.ts |    74 +-
 .../run-process-panel-actions.test.ts              |    27 +-
 .../run-process-panel/run-process-panel-actions.ts |    20 +-
 .../shared-with-me-middleware-service.ts           |     4 +
 .../shared-with-me-panel-actions.ts                |    11 +-
 src/store/sharing-dialog/sharing-dialog-actions.ts |   191 +-
 .../side-panel-tree/side-panel-tree-actions.ts     |     2 -
 src/store/store.ts                                 |     6 +
 .../subprocess-panel-middleware-service.ts         |     6 +-
 src/store/user-profile/user-profile-actions.ts     |   177 +
 .../user-profile-groups-middleware-service.ts      |    81 +
 src/store/users/user-panel-middleware-service.ts   |    74 +-
 src/store/users/users-actions.ts                   |   161 +-
 .../virtual-machines/virtual-machines-actions.ts   |   152 +
 src/store/workbench/workbench-actions.ts           |   115 +-
 .../workflow-panel/workflow-panel-actions.test.ts  |     1 -
 src/store/workflow-panel/workflow-panel-actions.ts |    26 +-
 src/validators/validators.tsx                      |     2 +
 .../advanced-tab-dialog/advanced-tab-dialog.tsx    |    27 +-
 .../advanced-tab-dialog/metadataTab.tsx            |     4 +-
 .../collection-panel-files.ts                      |    75 +-
 .../create-collection-properties-form.tsx          |     5 +-
 .../update-collection-properties-form.tsx          |     5 +-
 .../api-client-authorization-action-set.ts         |     2 +-
 .../action-sets/collection-action-set.ts           |     2 +-
 .../context-menu/action-sets/group-action-set.ts   |     2 +-
 .../action-sets/group-member-action-set.ts         |     4 +-
 .../action-sets/keep-service-action-set.ts         |     2 +-
 .../context-menu/action-sets/link-action-set.ts    |     2 +-
 .../context-menu/action-sets/process-action-set.ts |   132 -
 .../action-sets/process-resource-action-set.ts     |    54 +-
 .../process-resource-admin-action-set.ts           |    79 -
 .../context-menu/action-sets/project-action-set.ts |     2 +-
 .../action-sets/repository-action-set.ts           |     2 +-
 .../action-sets/search-results-action-set.ts       |    42 +
 .../context-menu/action-sets/ssh-key-action-set.ts |     2 +-
 .../action-sets/trashed-collection-action-set.ts   |     2 +-
 .../context-menu/action-sets/user-action-set.ts    |    72 +-
 .../action-sets/virtual-machine-action-set.ts      |     2 +-
 .../action-sets/workflow-action-set.ts             |    15 +
 .../actions/copy-to-clipboard-action.tsx           |     6 +-
 .../context-menu/actions/helpers.test.ts           |     8 +-
 .../context-menu/actions/helpers.ts                |     9 +-
 src/views-components/context-menu/context-menu.tsx |    20 +-
 .../data-explorer/data-explorer.tsx                |    16 +-
 .../data-explorer/renderers.test.tsx               |    75 +-
 src/views-components/data-explorer/renderers.tsx   |   246 +-
 .../details-panel/collection-details.tsx           |     9 +-
 .../details-panel/details-panel.tsx                |    15 +-
 .../details-panel/process-details.tsx              |     2 +-
 .../details-panel/project-details.tsx              |    40 +-
 .../details-panel/workflow-details.tsx             |    87 +
 .../dialog-create/dialog-user-create.tsx           |    12 +-
 .../dialog-forms/files-upload-collection-dialog.ts |     5 +-
 .../dialog-forms/setup-shell-account-dialog.tsx    |    86 -
 .../form-fields/user-form-fields.tsx               |    41 +-
 src/views-components/login-form/login-form.tsx     |     6 +-
 src/views-components/main-app-bar/account-menu.tsx |     2 +-
 .../main-content-bar/main-content-bar.tsx          |    79 +-
 .../process-command-dialog.tsx                     |    61 -
 .../process-runtime-status.tsx                     |   124 +
 .../create-project-properties-form.tsx             |     5 +-
 .../update-project-properties-form.tsx             |     5 +-
 .../property-field-common.tsx                      |     1 +
 .../property-key-field.tsx                         |    32 +-
 .../property-value-field.tsx                       |    13 +-
 .../resource-properties-form.tsx                   |     7 +-
 .../resource-properties-list.tsx                   |     4 +-
 .../sharing-dialog/advanced-view-switch.tsx        |    25 -
 .../sharing-dialog/participant-select.tsx          |    15 +-
 .../sharing-dialog-component.test.tsx              |    71 +
 .../sharing-dialog/sharing-dialog-component.tsx    |   190 +-
 .../sharing-dialog/sharing-dialog-content.tsx      |    28 -
 .../sharing-dialog/sharing-dialog.tsx              |    77 +-
 .../sharing-management-form-component.tsx          |     7 +-
 .../sharing-public-access-form-component.tsx       |     1 +
 .../sharing-dialog/sharing-public-access-form.tsx  |     5 +-
 .../sharing-dialog/sharing-urls-component.test.tsx |    72 +
 .../sharing-dialog/sharing-urls-component.tsx      |    95 +
 .../sharing-dialog/sharing-urls.tsx                |    53 +
 .../sharing-dialog/visibility-level-select.tsx     |     1 +
 .../side-panel-button/side-panel-button.tsx        |     2 +-
 .../side-panel-tree/side-panel-tree.tsx            |     5 +-
 .../token-dialog/token-dialog.test.tsx             |    34 +-
 .../activate-dialog.tsx}                           |     9 +-
 .../deactivate-dialog.tsx}                         |     9 +-
 src/views-components/user-dialog/manage-dialog.tsx |    77 -
 .../setup-dialog.tsx}                              |     9 +-
 .../virtual-machines-dialog/add-login-dialog.tsx   |    71 +
 .../virtual-machines-dialog/group-array-input.tsx  |    73 +
 .../remove-login-dialog.tsx}                       |     9 +-
 .../all-processes-panel/all-processes-panel.tsx    |    11 +-
 .../api-client-authorization-panel-root.tsx        |    11 +-
 .../collection-content-address-panel.tsx           |    11 +-
 src/views/collection-panel/collection-panel.tsx    |    58 +-
 src/views/favorite-panel/favorite-panel.tsx        |    14 +-
 .../group-details-panel/group-details-panel.tsx    |   105 +-
 src/views/inactive-panel/inactive-panel.test.tsx   |    63 +
 src/views/inactive-panel/inactive-panel.tsx        |    37 +-
 .../link-account-panel/link-account-panel-root.tsx |   239 +-
 src/views/link-panel/link-panel-root.tsx           |    11 +-
 .../my-account-panel/my-account-panel-root.tsx     |   164 -
 src/views/my-account-panel/my-account-panel.tsx    |    27 -
 .../process-log-panel/process-log-code-snippet.tsx |    43 -
 .../process-log-panel/process-log-main-card.tsx    |   120 -
 .../process-log-panel/process-log-panel-root.tsx   |    36 -
 src/views/process-log-panel/process-log-panel.tsx  |    51 -
 src/views/process-panel/process-cmd-card.tsx       |   133 +
 .../process-panel/process-details-attributes.tsx   |   183 +-
 src/views/process-panel/process-details-card.tsx   |    74 +-
 .../process-panel/process-information-card.tsx     |   164 -
 src/views/process-panel/process-log-card.tsx       |   181 +
 .../process-panel/process-log-code-snippet.tsx     |   129 +
 .../process-log-form.tsx                           |    23 +-
 src/views/process-panel/process-panel-root.tsx     |    52 +-
 src/views/process-panel/process-panel.tsx          |    48 +-
 src/views/project-panel/project-panel.tsx          |    20 +-
 .../public-favorites-panel.tsx                     |    13 +-
 .../{directory-input.tsx => project-input.tsx}     |    91 +-
 .../run-process-panel/run-process-basic-form.tsx   |    16 +-
 .../run-process-panel/run-process-panel-root.tsx   |    55 +-
 .../run-process-panel/run-process-second-step.tsx  |    11 +-
 .../search-results-panel-view.tsx                  |    68 +-
 .../search-results-panel/search-results-panel.tsx  |     7 +-
 .../shared-with-me-panel/shared-with-me-panel.tsx  |     5 +-
 .../subprocess-panel/subprocess-panel-root.tsx     |    10 +-
 src/views/trash-panel/trash-panel.tsx              |     9 +-
 src/views/user-panel/user-panel.tsx                |   122 +-
 .../user-profile-panel/user-profile-panel-root.tsx |   349 +
 .../user-profile-panel/user-profile-panel.tsx      |    43 +
 .../virtual-machine-admin-panel.tsx                |    55 +-
 .../virtual-machine-user-panel.tsx                 |    72 +-
 src/views/workbench/workbench.tsx                  |    25 +-
 .../workflow-panel/workflow-description-card.tsx   |    26 +-
 src/views/workflow-panel/workflow-panel-view.tsx   |     4 +-
 src/websocket/websocket.ts                         |     7 +
 tools/arvados_config.yml                           |     3 +
 tools/run-integration-tests.sh                     |    14 +-
 yarn.lock                                          | 33202 +++++++++++--------
 253 files changed, 27713 insertions(+), 17523 deletions(-)
 create mode 100755 .yarn/releases/yarn-3.2.0.cjs
 create mode 100644 .yarnrc.yml
 create mode 100644 cypress/integration/process.spec.js
 create mode 100644 cypress/integration/user-profile.spec.js
 create mode 100644 cypress/integration/virtual-machine-admin.spec.js
 create mode 100644 cypress/support/index.d.ts
 create mode 100644 src/components/copy-to-clipboard-snackbar/copy-to-clipboard-snackbar.tsx
 delete mode 100644 src/components/file-tree/file-tree.tsx
 create mode 100644 src/models/runtime-status.ts
 create mode 100644 src/services/api-client-authorization-service/api-client-authorization-service.test.ts
 create mode 100644 src/store/context-menu/context-menu-filters.ts
 delete mode 100644 src/store/my-account/my-account-panel-actions.ts
 delete mode 100644 src/store/processes/process-command-actions.ts
 create mode 100644 src/store/user-profile/user-profile-actions.ts
 create mode 100644 src/store/user-profile/user-profile-groups-middleware-service.ts
 delete mode 100644 src/views-components/context-menu/action-sets/process-action-set.ts
 delete mode 100644 src/views-components/context-menu/action-sets/process-resource-admin-action-set.ts
 create mode 100644 src/views-components/context-menu/action-sets/search-results-action-set.ts
 create mode 100644 src/views-components/context-menu/action-sets/workflow-action-set.ts
 create mode 100644 src/views-components/details-panel/workflow-details.tsx
 delete mode 100644 src/views-components/dialog-forms/setup-shell-account-dialog.tsx
 delete mode 100644 src/views-components/process-command-dialog/process-command-dialog.tsx
 create mode 100644 src/views-components/process-runtime-status/process-runtime-status.tsx
 delete mode 100644 src/views-components/sharing-dialog/advanced-view-switch.tsx
 create mode 100644 src/views-components/sharing-dialog/sharing-dialog-component.test.tsx
 delete mode 100644 src/views-components/sharing-dialog/sharing-dialog-content.tsx
 create mode 100644 src/views-components/sharing-dialog/sharing-urls-component.test.tsx
 create mode 100644 src/views-components/sharing-dialog/sharing-urls-component.tsx
 create mode 100644 src/views-components/sharing-dialog/sharing-urls.tsx
 copy src/views-components/{ssh-keys-dialog/remove-dialog.tsx => user-dialog/activate-dialog.tsx} (71%)
 copy src/views-components/{ssh-keys-dialog/remove-dialog.tsx => user-dialog/deactivate-dialog.tsx} (71%)
 delete mode 100644 src/views-components/user-dialog/manage-dialog.tsx
 copy src/views-components/{ssh-keys-dialog/remove-dialog.tsx => user-dialog/setup-dialog.tsx} (71%)
 create mode 100644 src/views-components/virtual-machines-dialog/add-login-dialog.tsx
 create mode 100644 src/views-components/virtual-machines-dialog/group-array-input.tsx
 copy src/views-components/{process-remove-dialog/process-remove-dialog.tsx => virtual-machines-dialog/remove-login-dialog.tsx} (58%)
 create mode 100644 src/views/inactive-panel/inactive-panel.test.tsx
 delete mode 100644 src/views/my-account-panel/my-account-panel-root.tsx
 delete mode 100644 src/views/my-account-panel/my-account-panel.tsx
 delete mode 100644 src/views/process-log-panel/process-log-code-snippet.tsx
 delete mode 100644 src/views/process-log-panel/process-log-main-card.tsx
 delete mode 100644 src/views/process-log-panel/process-log-panel-root.tsx
 delete mode 100644 src/views/process-log-panel/process-log-panel.tsx
 create mode 100644 src/views/process-panel/process-cmd-card.tsx
 delete mode 100644 src/views/process-panel/process-information-card.tsx
 create mode 100644 src/views/process-panel/process-log-card.tsx
 create mode 100644 src/views/process-panel/process-log-code-snippet.tsx
 rename src/views/{process-log-panel => process-panel}/process-log-form.tsx (79%)
 copy src/views/run-process-panel/inputs/{directory-input.tsx => project-input.tsx} (60%)
 create mode 100644 src/views/user-profile-panel/user-profile-panel-root.tsx
 create mode 100644 src/views/user-profile-panel/user-profile-panel.tsx

       via  a4622a09650e7074abdecf3a03361c95859b5463 (commit)
       via  8c34b0f275ac1ecf18257e6de7687d01d620e1c1 (commit)
       via  c48d10802d4ae95273f8b98e622e5df200cdc3a7 (commit)
       via  96086f4ff017f24b8436d92f6a5b7f6ec566276e (commit)
       via  701add841618f48eda933c22e9226a8a237e12a6 (commit)
       via  3f7e1a8afad27920adf8f03ce82eeb1ae58aa84f (commit)
       via  c4a5e3c6af1aa8af29403c3b65296dd6ec64def8 (commit)
       via  a28f006ec8fc7d0934c07845df56a4c2c6550f61 (commit)
       via  9cd0c2757db479fb75e150d52d4871d9a88af364 (commit)
       via  54805dd83a984d4e34bb35146d2505bac12bc1d0 (commit)
       via  31ccf5ef29dd45c26633ad7e6c38502a36a3269c (commit)
       via  30d0e55a5b76a6c485737b1b669387bbe5d4dbea (commit)
       via  da5e144c103d5abb2bca727f40a14e5da052264e (commit)
       via  b469528b5aeb65fc8ce891db28ae20183a141aa2 (commit)
       via  7e5633a7611e686389fa0c6b9f8b47db492e5bb7 (commit)
       via  9bebca676bc02aff8f90ae496a0a1bf15af94555 (commit)
       via  c88bb4d5e97a168a4f2209112bdac97577eb35f9 (commit)
       via  3f639fdc993a3723c4bf98621bc291aa139d5e09 (commit)
       via  32fbcbb4677d149cd0ef0b5c5eead1c9fa25ef5f (commit)
       via  98d3f7708860701b02055643da4ba9412720bf4b (commit)
       via  119cee6f881abb202b9690217beba2e23d6959db (commit)
       via  0ca47168549500d98d98354abdddb586629aeae5 (commit)
       via  e257a39cf400e4c454f71d7f02a5c483571f2907 (commit)
       via  34d812f41cb270711da12cd02313a88dcb85d3a4 (commit)
       via  eb37d946f9aba8c06ad1b4c4d209943e9ec10ff8 (commit)
       via  8b4f3ecb7f75b676fd027736605de02dc2602045 (commit)
       via  27a44ab748de60349c27ab751a68398099ac3563 (commit)
       via  9afa6683615d76c6783c81ca3ef224cfadb5a11e (commit)
       via  779c11eec0987729b1be87f9f2e9f578c7b6c0a7 (commit)
       via  5d7bd1113f9decfb87d002954f6c11e0bfc53d04 (commit)
       via  2157030354bef3870b2703804ec18aab48cce27d (commit)
       via  d6e180f251c934a6c9b504eae5bbe50215240e19 (commit)
       via  b61a12ca0d14433ddb10a6d6361a18b1f127c98e (commit)
       via  cd015a3c1aa2511da7c0063125a24065d37799bb (commit)
       via  7467e941ed63e8885144e90c9ca11929f738b13a (commit)
       via  6aa9f73fef64bbca1e3b71eb526946d69d014246 (commit)
       via  7eb16e136a720bdfda5a4d4782d9cce1d00f5ded (commit)
       via  00720cddd593eaec785f7e0104068177bcfde67d (commit)
       via  760c35a45846cdcc0e1d796f0741d530e80bcd31 (commit)
       via  e2ac5434eb436b0e8ca8205dfe83d4ef1bcdd4c5 (commit)
       via  761e9780888a343e0655563acea23577eeb5d29a (commit)
       via  829d595bb4b9e7c0a8a1dd38995b4b5e197841f5 (commit)
       via  6ab5c8019be196ba0e7ff401f2734f181f4f7ced (commit)
       via  bbc64c1641d37f8e793a901b93be439e7a8f229e (commit)
       via  620d5745b5fb97e08945c15048ad5439e5bbe80c (commit)
       via  c492c89c16f1e5061da277e112aa06777de4461e (commit)
       via  9ae74b6dd7f14cd244a6c283b87aca0638e08a27 (commit)
       via  6b316062dcb8425145f3456f3b62abc1830776cd (commit)
       via  8e2f0bc7db026f646c3c08bc10fe4897bda7bdd8 (commit)
       via  d87ff106a9f51defe5aafab2ad23dc1dee267b29 (commit)
       via  22c5c7be1500c7fa0b9d23fd5004aa0839671dcf (commit)
       via  ad83bd90361b2b99fa37b3d052714d7918e64529 (commit)
       via  92e2168c33e2ae98e03fae72520dd8ec3e4a1150 (commit)
       via  2454ac35292a79594c32a80430740317ed5005cf (commit)
       via  25d64433dff3ffcf083c2cedd8d849de49a691d1 (commit)
       via  053625d3e7d95abc91edf4346d5db3aad440c412 (commit)
       via  3ebe70ccec47fe17491415736701e6e1ce1956c3 (commit)
       via  103b02cad3a181951a3872fa8f6a811a7125fdda (commit)
       via  cb2699f27ab6ea2587b7842e28cbd0941ea03535 (commit)
       via  9876549a482c2c330143f5c9eebc8ab47cb8fa1d (commit)
       via  92bab47864916d852ef1c8f9579dafe8ae40f124 (commit)
       via  95bba613751af0c9371e15dc8d2d1612079a6fe5 (commit)
       via  52b5bb0ea3c28cd2095837fea61509a70eb792fb (commit)
       via  765f6475a53ac7e635b737642ef375459324a117 (commit)
       via  c21c6582a12fe3968e3ef3a4786de5dfacce3b18 (commit)
       via  6c42bd0ca04911ece6403af74852a1e34d483c8f (commit)
       via  4c0099ec3509061ca3f507658689bf3bba77e5ea (commit)
       via  7b94876543bd53cf2ab676e3f6dab0f9e4fffd3f (commit)
       via  5550460d7ca90ad69b325ec58897cb0d55210bca (commit)
       via  b7f56fcd62b9b91e6c806707a5fd12f03d88a92a (commit)
       via  67543767e81f22686d3216700813714349f15f49 (commit)
       via  e1e17729d024637f9f3392611c9a59dc31e5db23 (commit)
       via  9a59fad2b6a97af963728a5111395f9caa71802f (commit)
       via  24d11ff837843675b37f1a844152ca0e74a12dea (commit)
       via  ede9027245c18871358536ebf7d5e39a9291926f (commit)
       via  148f9fba3eede1027ceb07657c4c7eaaa244d6d8 (commit)
       via  16ac6823842cbb5fcc27903476e3ab673ebd7077 (commit)
       via  58800bbe6e474679dcfbc03735541a578280dd85 (commit)
       via  852a6a393297d03ca5259ddb6aa7aedff4a000ea (commit)
       via  10465af2a9575f004b8f516d8c74b50413531972 (commit)
       via  f0f1a84dcd35f11214f0c534f8490f6a4f648b48 (commit)
       via  05010c44073b52c0e414d180cfc21bae215c4d33 (commit)
       via  bc0466c49bb8adab2f162d05c83fb30ed005bd6d (commit)
       via  b3b92e78c7da8fc6a2f4db78746cbc10bb11cc86 (commit)
       via  f1e1967ba28a81ff43b7229dbee27dd5e0ba6c13 (commit)
       via  d892b953431e67c2c8df25c4387f2111b88b820f (commit)
       via  ed5eba6574a98f8acfe4f1fc0c063b9347b656c1 (commit)
       via  198ae2eb95d997550d1d647916b38bb8b3f536e9 (commit)
       via  00dd0a8f134729754f01f24f642fe82c08873dae (commit)
       via  e868a45a2a187dca9812c5e6e201503f3e427e08 (commit)
       via  970c338729ef7490f380b82c4a0acdb33a8fbe98 (commit)
       via  614e5664c62ac01307744e29072ca1804cb7e676 (commit)
       via  d6a28995f22dc04688444c0098b185717f7d4ed4 (commit)
       via  0721e16721a598a2d0eea501e7efd265219f134f (commit)
       via  555a6df1236e6c36a2552ee6100225c389f4c884 (commit)
       via  89a2555cc00f750dfa07dc57a2908059fc52c935 (commit)
       via  2903199054f8ac49ff15386fa576a0765032fa25 (commit)
       via  c69c6d43021b29186717ad30bea95cf50ee8c1e6 (commit)
       via  0537bee45712945bd97d28f6d28118f7589a6840 (commit)
       via  96fdc9e2e344e86378dd156593d8166f309ea1af (commit)
       via  bf6ffb898a38a806ea0dd98daca7b3801923b62f (commit)
       via  1a49d9366053df6119bf855d3bfcbc5373744101 (commit)
       via  d7f25e0db329c2fb8c2325f7ff28ce7a99cc2467 (commit)
       via  4ff4d54006bc6c619616f6fc229b4374c5d83879 (commit)
       via  e3064da256b0c0f78e97bfe53825a5c0bf11a4cb (commit)
       via  ea78e1afd181e1e6bf667cce24ad101e39d78b78 (commit)
       via  46c5d0d6ab1e39af6a8c12a7d620e0b03cde8a53 (commit)
       via  d1c2611350e47527730f6d3b226b998abf15a607 (commit)
       via  2d230988f0c91d088e68bc0aecb1fd91d52c1f1f (commit)
       via  851262322c7c5b35f4052b0351b77f190def77b0 (commit)
       via  2129d2a8fc553a0e89b374bdad2226ff3b3d377e (commit)
       via  6fbb4eca48ea5907887e61d60b60987cf2d1c8ca (commit)
       via  0bd774be1714eb7bb815cef3d44803eac6c735ec (commit)
       via  f912f003853b42c745041796220e28536629a548 (commit)
       via  8c5147b7367e994e897357766a85e9b7b8e28f24 (commit)
       via  ae6892150bb19c974d8af4cb323760f52a2ea19e (commit)
       via  d416c9aa7b70da4f8998792a42616b991d882f26 (commit)
       via  0e3d1681d9ed60bae0b91b368efb1325f5aee239 (commit)
       via  3c3d3d40033879249cd8e8f483f30cfa565d31bd (commit)
       via  cc9e1b294ee50dbb25d68e89538ac1a7a3643396 (commit)
       via  b375eb7f05d9862716f5c27ef8450043453c52ba (commit)
       via  015c7956121aceeade3d92243022c51e552d7a32 (commit)
       via  3c3126fed9f0d045644402b8ad4f6bc35a05db80 (commit)
       via  4f26fc6e11a411c11fc481b937c2e073f4858081 (commit)
       via  6cba13dd33c09ab8255b847aa4a614d3cf6eee8a (commit)
       via  d5fd29f0a82ca2df47b1b382f705a6df287f926e (commit)
       via  8dce1fa34833d40dad114eed8895fd5e6d7df28d (commit)
       via  056e5b954c34946428c2b9fcbc3c49c2670ec305 (commit)
       via  684419a1bede6b57e8c6bc384e1664b8ed73d930 (commit)
       via  66adcf8ab86e764a8829fbd604e27df53d6f24a1 (commit)
       via  709996fdd46c5993944753fab7919676e0cbd60d (commit)
       via  a4c96d2e98d9f2971e9268355bd31331c2b6a5e2 (commit)
       via  a51d9df296fa297f2b21201d497ed48b4639c8e9 (commit)
       via  f0ecfdc83d1807bfd81b285b76351e48db2ff992 (commit)
       via  07bcb7d7b574ce4dfd5d335618f683e6fb1c7d4f (commit)
       via  f55d7e31aa315de4eece3139c4fa1df7d6eb929e (commit)
       via  5124df4b34de48cdf5387197e7b728b7590e8ae8 (commit)
       via  4ee084a36d4adf2740f84875c47d81de566ec7b1 (commit)
       via  efda60590a2ed0942a8091d978d73fb047bd4a26 (commit)
       via  63539b816f355df818e4205d5da0b7b7416c9966 (commit)
       via  57e121908bd6a8767cb9e29288d71e51bf1c6911 (commit)
       via  add44b50131fc6a1e982a1af333f0e1f26803b3f (commit)
       via  282606d6586ed26675ef27f9f53cfeb0375dafc8 (commit)
       via  e239324108497e94222407d62b9c70ddffa42ab4 (commit)
       via  8e191ecaf0e507dd1d685ca3ebeab954652d8e9e (commit)
       via  a89c34e7cba3d8381302ff142c37e1a8b39ca80e (commit)
       via  9ec7a1bf9888c2e517c7f9e0bf595c70795d5da8 (commit)
       via  eb23ad3ba751b675858ef20ade568cd8c8688caa (commit)
       via  38e6956f75e723cf5c442188c0e570e282d04395 (commit)
       via  8da1b3425ad850194d473df1436ac61b6312d452 (commit)
       via  a4a67b0a5436effb92f682c6edb512700420c374 (commit)
       via  93926d5be6b62da8d8bedea1c9c3a63fd4e71b31 (commit)
       via  5248f137a53e981e6c6207c212688fbd08e2cdc9 (commit)
       via  d918b7408326b3d1193fc49c8049b5dbbc93a767 (commit)
       via  1bc3f80b1aebb3c81b55e1afaad0a649aa9b3b9f (commit)
       via  bc91a5fab017163d856ad559d0b435921cb7ee17 (commit)
       via  627755be39986d87f292332c37b411147fa28d78 (commit)
       via  1297a59f47368687666de59ff352870f7dafc64c (commit)
       via  70d7d9736369c173db2e3ab8ab98add0c0f3bd1e (commit)
       via  042f8362da7b7e835d2451169eecafc5ea4d258d (commit)
       via  7baacecfced2112da01ae9b9709109d63f4dfcc3 (commit)
       via  69b8e9f8b19a151062a28e8eedbf7bf99322d93c (commit)
       via  9d76aaa7f959780465232366551c5f1e970d1752 (commit)
       via  e93453d8882428f0cfeda3f7692e843185b734c7 (commit)
       via  020ebbaeb17659f86d3480b7fc89146f8ce0d02e (commit)
       via  2742a401dcc330697a14d2edb3c4c81115f67402 (commit)
       via  d39fc21c7dec5878a9f508295add946216818139 (commit)
       via  1bb147efcf6a17c0b4237c790757dd54994005b2 (commit)
       via  29d9fdf79b6225638877b64bab88029d18b00264 (commit)
       via  406ae9a8f9851fcadb16592f245a13c2311de95a (commit)
       via  43a3f5a12405b52e012097f19c5d25eaaf670ee4 (commit)
       via  fe2fcf6bb2af8938ea5d90d49d11b5b35971976d (commit)
       via  9062dd55d4d815d83d602d029830230ddb210524 (commit)
       via  9858ad74ab6f81c55c06c8f05b20ccd0ec67dd7a (commit)
       via  5a0db55c7b4751b18f8d2a1ffe3ab3b5813b20c6 (commit)
       via  082c1782d96a4b1c897df64d9b325d102a5c1144 (commit)
       via  444c41ca81c90ff172c7b1d99ff78f52bff991e8 (commit)
       via  139421ac9ab6a7f60ad7762d1787d79533ce6831 (commit)
       via  3dd4b3bc31fea7f614290131d0ade5c0e0ffc595 (commit)
       via  08ac60f877d6495a748747a3a0d30ca9f0e289d5 (commit)
       via  4e1495220aae8fdcca2dc40d3f6d13dfc83e38b6 (commit)
       via  03578e716a63e7c5e0ce75cb70d0aaa803c02a77 (commit)
       via  18425d0dfa8a652fef8377a6fb09018f55d2beec (commit)
       via  7c6d47d766b7b37463281387d8badbfe18522d09 (commit)
       via  a9d377ba93f19f1b4ebb389d3baa23b26ef0d860 (commit)
       via  078bedef5794ee91497d4dd12157c86d6e490969 (commit)
       via  a5750c261be0991d8ebbe107115c9c5b01236f8d (commit)
       via  0d61292f1ce718f5cc252f45d6e220c70246c922 (commit)
       via  b812133ea0d9c9a4c52b200731deaba1045478e3 (commit)
       via  5de4c8e78a96433482063a53dfce0056902da654 (commit)
       via  dec2560060035f165662cff34b3a8916927a7ee6 (commit)
       via  890f88cf8828ae1d8dde8cb8c104226837187353 (commit)
       via  441e4724de4b3fb091a514cd1ac817c29952acd0 (commit)
       via  286c37bd2d4ea8322f20b9f04e74afd04d531afa (commit)
       via  8d374520f28b507e8934d57be46374044fb93e2f (commit)
       via  52b7cea2ae6e69e5ccfebb6a393ab6054f39c552 (commit)
       via  14b107de3fe4c29f4a37f1958bad99e2b82d2b24 (commit)
       via  8045851b13e03215f3f2c8be6d54b43bd4619862 (commit)
       via  41b06aa91cc156dba92c763beeac741d249ffb01 (commit)
       via  41f6f1e495c82fcfa79b87cf718fa2e9cd91c726 (commit)
       via  08c3068f2fb8fe2e2e651951b961e2e88de1ffb1 (commit)
       via  b13aaa8909cc1f8b4edf8d32fda9580a3c899418 (commit)
       via  952bcc8f3ef686a2463931bc3f88457398163df7 (commit)
       via  c1c27e7fe3cbe068e939994e20b26a78348597c6 (commit)
       via  272907ed21b66b72144237bf54a5347051f8693c (commit)
       via  a7031136f64556a75204141b327f694192235cfd (commit)
       via  e4a198bd0cc9ed174cb68345623ce9fbd8923951 (commit)
       via  2ab43f230662c3f5d7d7ff75c08bdab0c66b22b0 (commit)
       via  8426035efad90f0745bf1c3e43da3027ef5c2805 (commit)
       via  3b4d9c223bbbd3778063eda39b5bf633b4b47e30 (commit)
       via  1ef4bffbfa4d05ae4356ef22b3964d6152310fb9 (commit)
       via  9828c767c310f24aea087aaa9f33a2134f0b1809 (commit)
       via  352e8d13baae99e7f4e9f1b88253d6988541fecb (commit)
       via  5cefad212822a48c83af1d38cbe14368c0cb1a20 (commit)
       via  342f4ed11da7860e834928aa79974f096a8f6291 (commit)
       via  079923a5211b0a7a8c234657b6bb804ef52669a3 (commit)
       via  d839ac44e90bfca5e07e8cc5ddf56c30deabc008 (commit)
       via  d5f11bb2fbb20c85e8ef857caedd58adf333e522 (commit)
       via  fa947bf995717dafce322213fabb84fbf5fd6d67 (commit)
       via  08f915990ffe4588c076efce4d01e0b3bed2b398 (commit)
       via  b5113014027f01ed066365b6579f39681cb49b88 (commit)
       via  736b2d3cc858cfba93bedf5367f5af6c1852fcfe (commit)
       via  d4d0208892ea0f0f4bf79691770b14aca89db92b (commit)
       via  864465d579c4b2caf06fce87b1861674758135f6 (commit)
       via  563b376a94e7e3a56206c5ba90154f3531bff1f7 (commit)
       via  c8a07de05867fe2e959eb0063a674a4f026f5b76 (commit)
       via  44d370d6e0e9e91dbc579e7d990667d52ad67b17 (commit)
       via  992852b9506bd3092bd052c681afca966478f88b (commit)
       via  d1fa1c888be0d956178cc29cd78dbb924a7606c1 (commit)
       via  35d85b5905b1bfed1d5b7a43882afe79780ee6d2 (commit)
       via  0c6cf2fccc1f1c2a175610312d4b1b83adf9df75 (commit)
       via  3826b30cb25c2a1cb22729981412f091a8443076 (commit)
       via  6ddc4f58120358fa12de736c49be69f8373b4068 (commit)
       via  d0c2059e292a1c7848f6a8b40e126cd812aeb5f2 (commit)
       via  cafed6458d46b99a1dc28deef0ea60b985af03dd (commit)
       via  cfe5ff035578ede95613b0c545708466da78cbea (commit)
       via  3dad010ab289e3409827221ee2a337b4417ee5df (commit)
       via  51f7337782c238ecb7d43490268bf90b856150a2 (commit)
       via  4bc7ca180691fc56bee6f4e69288945313ab40d1 (commit)
       via  5c8a5dd07252ed2ac431c53fccc9e2fb649c3014 (commit)
       via  4a2789c9974a1fa0f851a3bb2aa24bff5b029c48 (commit)
       via  909844cdb1eda3d4cd31f3fa1818ee7eca62d319 (commit)
       via  4aee3fa5225c21771b23666d29be9d796758a65f (commit)
       via  38fecec459a6ed195c771540bab9367835f968c8 (commit)
       via  ed59f8b637bc1131ec95e7215efb8bfa4fde9f04 (commit)
       via  6d49676d1505f09223d85a488e79ca678201a81b (commit)
       via  7e9513099881d63a99a70c69ddd71c5d83567fa4 (commit)
       via  066c2178f99f8fb5c818bc453b49ba8341d440a6 (commit)
       via  09b2d7a937291e1e74d773a4227c4cfc63c30972 (commit)
       via  a5cbf89b125947ddebacfb4475149d77a18d1851 (commit)
       via  5e020488f67b5bc919796e0dc8b0b9f3b3ff23b0 (commit)
       via  4b75b09d1c75d6796e75efc55e7b06917834b63e (commit)
       via  ac317fdfc6cc1bfdee257580a03a6054edac05a2 (commit)
       via  ebb5bf6fc93912af4013cb74b751e877c292eee7 (commit)
       via  a952fb030d5744b12dbf65da33f2c3651c4d8c8e (commit)
       via  2e2a7379407d3afd1f8d95ed29a059ff4fd3633e (commit)
       via  46b878b9773789f7a953f58f3de2cc4bf370e153 (commit)
       via  31965b61efb1eee31ddd2a64d80db289fc319077 (commit)
       via  f70341e64c09fcb1565e86aad7a0226b700f6bed (commit)
       via  96a705a50db3d742fd897c12a236b8a44bbcaffb (commit)
       via  ab13bb0f02c562635b95b3bdf908bd9941d149e4 (commit)
       via  36b2ed3407e92cb7788a87eb52badd18eb7b2b18 (commit)
       via  695ee8df0aeadd5eb788ca29da6450813880da76 (commit)
       via  514574540614593941c39592d9f9972f770e0cb7 (commit)
       via  71a95158c62c2dd106e1874c0b811c56b35cf9cc (commit)
       via  888c698aa77e4cfdeb346bed8995ba0ec2c17a08 (commit)
       via  aa14e6d194dde8f2ce473c0ed3b5d0b63af19c5c (commit)
       via  cfa81dfc3041cb459c8a0918a2732dfcf3a11d40 (commit)
       via  91e1cb59f8dc3de8d870f230b9446763da91cced (commit)
       via  c77d85e1b722e2140736af692235ceed24952563 (commit)
       via  7ace628b611d7674e420262d9fc5e757e8c686a6 (commit)
       via  8c5bc6e7730ce5f689b03af434c0c482b33c6a58 (commit)
       via  80852d13ef70331d0b5dcb7c0741956967129728 (commit)
       via  7435f8f863ff94834d7188772547cfb0cd4ba1d4 (commit)
       via  925a083d8e82281a6d1de1f1021a88da147e5bac (commit)
       via  9da78c51275666c685545d29cd92ffa0d32f7b2f (commit)
       via  addb01b6d7636a8963ddb1eff4799ebc96f44739 (commit)
       via  4e862392eae3d1a1846b3f33c6e29f4e68c31aca (commit)
       via  3583b37935585f9b19605d98c47ccef73c23cb15 (commit)
       via  33963600639e6e7f3cd4afea9d4210ee815c180b (commit)
       via  c0bbd8e4f7c38eacece83de646afe2b5689c6b86 (commit)
       via  6e335a900ab99ddc7b7288e00d20a54f6c75ec8f (commit)
       via  33502c3ee0e24d155193938bbbce2968d2947593 (commit)
       via  e42867f560b3c2f4c09cf6a2c07c964c63714141 (commit)
       via  0e86ce9638f17cf801b6dbf08e6dfd91edf89153 (commit)
       via  f8f33868de654c1bdded337cb2ad5c486ccf1c93 (commit)
       via  219e27b40906188857d9d85123dd565fd33bb916 (commit)
       via  36c33008be2896228d3040c756d80e8878907655 (commit)
       via  5ec1472f3309b09bfcbba16148181d5d4a343f63 (commit)
       via  6ffb66eb2b86f14b38a6c55faacdc34617183c67 (commit)
       via  b174d2cdf5fbc3c2ea42a1f6157c82c724d4c977 (commit)
       via  b68d6b620d1e442bd2a231fa8a6d50b2678215f5 (commit)
       via  e4dd4d0e84d0b14c9e71cd72f45e0099273476f1 (commit)
       via  b6bcf00e089f6f14f59a031ab0139b5420df9bdd (commit)
       via  0a7823d45623c1472f0ddc9b3e1dfa5619be2353 (commit)
       via  1e771e8083df71d11da85dae8bfd0a0cdfb1737f (commit)
       via  ae946826d1670cb786688e859bc1f3257150ae75 (commit)
       via  5e805cf2209d3afe42699e4658d8a12e50bcd5a4 (commit)
       via  efb6e397a2d9ec98c8a9fa1f47bea66d8651bb81 (commit)
       via  c72cb99d0f37aa86cd595d77d742c69c25ff2fba (commit)
       via  261201611113224f4a61b3979f6cd9992c4aa6c6 (commit)
       via  1422847e9da8c3d96cf777bac1742e300435657c (commit)
       via  939593fbdd53bcca1c9c5e2247b3f279fdcf1523 (commit)
       via  87ba49100005ac43690cd2f77b2f797154998d01 (commit)
       via  3e3eaa213219ebcac9b52c8fbe3ec3ef7c39c863 (commit)
       via  b178ea37c7a247a6399ecf1112d5f8c8aae12136 (commit)
       via  d861bd54089e9279cd03b2e4561869ee877b9559 (commit)
       via  66705a683fbfffb14da7d61aec634ff2ecefde5e (commit)
       via  1313e9c9a5f250b71aa8136c077176c38b8db902 (commit)
       via  ad4c219935f5ca3a9682b8afd45d3619789b0975 (commit)
       via  606119d81b87f4e5e835c777b012f56e7d5c146d (commit)
       via  6159313a798f750d2e5d5c41b79b7a2a259611f8 (commit)
       via  df8b88b958c46cbf28c332bb05b3620ab1e819f2 (commit)
       via  c797ff39572137b5552f76f29d39b94c7554b1a0 (commit)
       via  9cc4ce49c735ca76a5aaab30bf62a4e861bda426 (commit)
       via  bdb36daa28e58f24975c58b54eaecaa593c8ad95 (commit)
       via  c2a580be1484629e557b967524473a75b2d02274 (commit)
       via  de10071369ab482d70bb63fe45df317d6bd3f6c5 (commit)
       via  8b1d2274b5905c34e0f692b1284f61d9270119a7 (commit)
       via  f9d1c360e059ed07909abd7bc83a61fcd3e2746d (commit)
       via  ee3ec96e1241b4cc3afe99da3d9ea86bb784dc5f (commit)
       via  12357159649d171bcdb729bff71a49bc264457ff (commit)
       via  e9735ea9dc6980f0706bb1e0a3a92384450994fa (commit)
       via  281300c86c615248d124c8b5bb6b7a3461b63349 (commit)
       via  bdf8aade1be61bafe65e4226a1eae86a1a6d8499 (commit)
       via  5b88c131a4bbff645ab7791ce9d6c2e3dcca49a9 (commit)
       via  39f2ecd2cfa22d7dd6e1dc94f9952bd5c5c13ef2 (commit)
       via  3c9eb7d7611832176fe11ab77e749d397afadb09 (commit)
       via  85836abe716b2403f3b7fe75c551e4ace3995157 (commit)
       via  a425862f19b6a056b0ea646878ac13d63b22de48 (commit)
       via  7f160d39308e02e571543b2958320f387b5372ab (commit)
       via  facccf58114be4d8c7a08286cd2197bd222abdc1 (commit)
       via  89a4eb90454f12be703f711279d0867781013631 (commit)
       via  22b351e5d49e861d1b1f73b87689e986002cb08a (commit)
       via  f528cc85e7687e1d899860c4226984bd067c5bd3 (commit)
       via  4c3a13a90d7c32d85ab5350633b2e12beedd9e52 (commit)
       via  c952afae1af2fb31b68be04f70bd7ae6f9d52aba (commit)
       via  2d83472fca1859de9eae82abdf4af4b5d86a62cc (commit)
       via  394ebdfd13fe40a7096f484c46a353d2537f4c9a (commit)
       via  df0c0d462a52003cd722d25520cd7a4ad6583c57 (commit)
      from  aa0d2c85179c0122749808d5326ca07e946beaa5 (commit)

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 a4622a09650e7074abdecf3a03361c95859b5463
Author: Lucas Di Pentima <lucas.dipentima at curii.com>
Date:   Mon Oct 3 11:34:52 2022 -0300

    Upgrades caniuse-lite package. No issue #
    
    This should be done periodically to get less polyfills on our production build.
    https://github.com/browserslist/update-db#readme
    
    Arvados-DCO-1.1-Signed-off-by: Lucas Di Pentima <lucas.dipentima at curii.com>

diff --git a/yarn.lock b/yarn.lock
index 6dfb5b18..db7bf6ea 100644
--- a/yarn.lock
+++ b/yarn.lock
@@ -4970,13 +4970,20 @@ __metadata:
   languageName: node
   linkType: hard
 
-"caniuse-lite at npm:1.0.30001299, caniuse-lite at npm:^1.0.0, caniuse-lite at npm:^1.0.30000981, caniuse-lite at npm:^1.0.30001035, caniuse-lite at npm:^1.0.30001109, caniuse-lite at npm:^1.0.30001219":
+"caniuse-lite at npm:1.0.30001299":
   version: 1.0.30001299
   resolution: "caniuse-lite at npm:1.0.30001299"
   checksum: c770f60ebf3e0cc8043ba4db0ebec12d7a595a6b50cb4437c3c5c55b04de9d2413f711f2828be761e8c37bb46b927a8abe6b199b8f0ffc1a34af0ebdee84be27
   languageName: node
   linkType: hard
 
+"caniuse-lite at npm:^1.0.0, caniuse-lite at npm:^1.0.30000981, caniuse-lite at npm:^1.0.30001035, caniuse-lite at npm:^1.0.30001109, caniuse-lite at npm:^1.0.30001219":
+  version: 1.0.30001414
+  resolution: "caniuse-lite at npm:1.0.30001414"
+  checksum: 97210cfd15ded093b20c33d35bef9711a88402c3345411dad420c991a41a3e38ad17fd66721e8334c86e9b2e4aa2c1851d3631f1441afb73b92d93b2b8ca890d
+  languageName: node
+  linkType: hard
+
 "capture-exit at npm:^2.0.0":
   version: 2.0.0
   resolution: "capture-exit at npm:2.0.0"

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


hooks/post-receive
-- 




More information about the arvados-commits mailing list