arvados.git
4 months ago21842: styling
Lisa Knox [Wed, 25 Sep 2024 13:44:53 +0000 (09:44 -0400)]
21842: styling

Arvados-DCO-1.1-Signed-off-by: Lisa Knox <lisa.knox@curii.com>

4 months agoMerge branch '22133-dependency-upgrades-part-deux'
Lucas Di Pentima [Tue, 24 Sep 2024 23:11:48 +0000 (20:11 -0300)]
Merge branch '22133-dependency-upgrades-part-deux'

refs #22133

Arvados-DCO-1.1-Signed-off-by: Lucas Di Pentima <lucas.dipentima@curii.com>

4 months ago22133: Removes unused lodash.template & lodash.mergewith packages. 22133-dependency-upgrades-part-deux
Lucas Di Pentima [Tue, 24 Sep 2024 21:50:37 +0000 (18:50 -0300)]
22133: Removes unused lodash.template & lodash.mergewith packages.

Arvados-DCO-1.1-Signed-off-by: Lucas Di Pentima <lucas.dipentima@curii.com>

4 months ago22133: Upgrades path-to-regexp where possible.
Lucas Di Pentima [Tue, 24 Sep 2024 21:38:02 +0000 (18:38 -0300)]
22133: Upgrades path-to-regexp where possible.

There's one package (express) that keeps asking for a vulnerable
version of path-to-regexp.

Arvados-DCO-1.1-Signed-off-by: Lucas Di Pentima <lucas.dipentima@curii.com>

4 months ago22133: Upgrades socks to get a replacement for the vulnerable ip package
Lucas Di Pentima [Tue, 24 Sep 2024 21:13:02 +0000 (18:13 -0300)]
22133: Upgrades socks to get a replacement for the vulnerable ip package

Arvados-DCO-1.1-Signed-off-by: Lucas Di Pentima <lucas.dipentima@curii.com>

4 months ago13327: Fix test 13327-include-container-uuid
Peter Amstutz [Tue, 24 Sep 2024 21:02:23 +0000 (17:02 -0400)]
13327: Fix test

Arvados-DCO-1.1-Signed-off-by: Peter Amstutz <peter.amstutz@curii.com>

4 months ago22133: Upgrades ws to address CVE-2024-37890
Lucas Di Pentima [Tue, 24 Sep 2024 20:31:57 +0000 (17:31 -0300)]
22133: Upgrades ws to address CVE-2024-37890

Arvados-DCO-1.1-Signed-off-by: Lucas Di Pentima <lucas.dipentima@curii.com>

4 months agoMerge branch '22133-dependency-upgrades'
Lucas Di Pentima [Tue, 24 Sep 2024 20:15:44 +0000 (17:15 -0300)]
Merge branch '22133-dependency-upgrades'

refs #22133

Arvados-DCO-1.1-Signed-off-by: Lucas Di Pentima <lucas.dipentima@curii.com>

4 months ago13327: Add missing import
Peter Amstutz [Tue, 24 Sep 2024 19:40:04 +0000 (15:40 -0400)]
13327: Add missing import

Arvados-DCO-1.1-Signed-off-by: Peter Amstutz <peter.amstutz@curii.com>

4 months ago21842: adjust container height
Lisa Knox [Tue, 24 Sep 2024 19:28:18 +0000 (15:28 -0400)]
21842: adjust container height

Arvados-DCO-1.1-Signed-off-by: Lisa Knox <lisa.knox@curii.com>

4 months ago13327: Fix warnings
Peter Amstutz [Mon, 23 Sep 2024 16:37:04 +0000 (12:37 -0400)]
13327: Fix warnings

Arvados-DCO-1.1-Signed-off-by: Peter Amstutz <peter.amstutz@curii.com>

4 months ago13327: Remove unused imports
Peter Amstutz [Mon, 23 Sep 2024 16:29:44 +0000 (12:29 -0400)]
13327: Remove unused imports

Arvados-DCO-1.1-Signed-off-by: Peter Amstutz <peter.amstutz@curii.com>

4 months ago13327: Remove commented out code
Peter Amstutz [Mon, 23 Sep 2024 16:28:31 +0000 (12:28 -0400)]
13327: Remove commented out code

Arvados-DCO-1.1-Signed-off-by: Peter Amstutz <peter.amstutz@curii.com>

4 months ago13327: Display an error snackbar if container request can't be loaded.
Peter Amstutz [Mon, 23 Sep 2024 16:24:46 +0000 (12:24 -0400)]
13327: Display an error snackbar if container request can't be loaded.

Arvados-DCO-1.1-Signed-off-by: Peter Amstutz <peter.amstutz@curii.com>

4 months ago13327: Move API revision numbers to symbolic constants
Peter Amstutz [Mon, 23 Sep 2024 16:24:21 +0000 (12:24 -0400)]
13327: Move API revision numbers to symbolic constants

Arvados-DCO-1.1-Signed-off-by: Peter Amstutz <peter.amstutz@curii.com>

4 months ago13327: Tests should be mostly passing
Peter Amstutz [Tue, 17 Sep 2024 00:08:39 +0000 (20:08 -0400)]
13327: Tests should be mostly passing

Arvados-DCO-1.1-Signed-off-by: Peter Amstutz <peter.amstutz@curii.com>

4 months ago13327: "should show runtime status indicators" test passes again
Peter Amstutz [Mon, 16 Sep 2024 20:54:22 +0000 (16:54 -0400)]
13327: "should show runtime status indicators" test passes again

Arvados-DCO-1.1-Signed-off-by: Peter Amstutz <peter.amstutz@curii.com>

4 months ago13327: Fix typecheck errors
Peter Amstutz [Mon, 16 Sep 2024 19:41:02 +0000 (15:41 -0400)]
13327: Fix typecheck errors

Arvados-DCO-1.1-Signed-off-by: Peter Amstutz <peter.amstutz@curii.com>

4 months ago13327: More efficient implementation of the filterResources method
Peter Amstutz [Mon, 16 Sep 2024 16:09:06 +0000 (12:09 -0400)]
13327: More efficient implementation of the filterResources method

Firefox's built-in javascript profiler indicated that this one method
was accounted for something like 30% of the runtime to load a new page
of results.  (i.e. if it took 1 second to go to the next page, this
accounted for 0.3s of that).

The previous implementation was in a functional programming style that
was egregiously inefficient, by using a reducer that made a copy of
the entire array for every item added to it.

Replaced with a basic imperative implementation that minimizes
redundant copies.

Arvados-DCO-1.1-Signed-off-by: Peter Amstutz <peter.amstutz@curii.com>

4 months ago13327: Fix favorites/public favorites to use group contents API
Peter Amstutz [Thu, 12 Sep 2024 21:03:06 +0000 (17:03 -0400)]
13327: Fix favorites/public favorites to use group contents API

Arvados-DCO-1.1-Signed-off-by: Peter Amstutz <peter.amstutz@curii.com>

4 months ago13327: Add test case for using container.state in group contents
Peter Amstutz [Mon, 26 Aug 2024 20:34:10 +0000 (16:34 -0400)]
13327: Add test case for using container.state in group contents

Arvados-DCO-1.1-Signed-off-by: Peter Amstutz <peter.amstutz@curii.com>

4 months ago13327: Fix progress bar and workflow panel.
Peter Amstutz [Mon, 26 Aug 2024 19:50:05 +0000 (15:50 -0400)]
13327: Fix progress bar and workflow panel.

I think this covers everywhere containers are loaded/displayed.

Arvados-DCO-1.1-Signed-off-by: Peter Amstutz <peter.amstutz@curii.com>

4 months ago13327: Use 'container' filter on container requests with group contents
Peter Amstutz [Mon, 26 Aug 2024 19:19:07 +0000 (15:19 -0400)]
13327: Use 'container' filter on container requests with group contents

Arvados-DCO-1.1-Signed-off-by: Peter Amstutz <peter.amstutz@curii.com>

4 months ago13327: Fix table prefix
Peter Amstutz [Mon, 26 Aug 2024 19:17:30 +0000 (15:17 -0400)]
13327: Fix table prefix

Arvados-DCO-1.1-Signed-off-by: Peter Amstutz <peter.amstutz@curii.com>

4 months ago13327: Working on all processes
Peter Amstutz [Mon, 26 Aug 2024 17:54:50 +0000 (13:54 -0400)]
13327: Working on all processes

Arvados-DCO-1.1-Signed-off-by: Peter Amstutz <peter.amstutz@curii.com>

4 months ago13327: Using group contents include container_uuid WIP
Peter Amstutz [Thu, 12 Sep 2024 20:22:52 +0000 (16:22 -0400)]
13327: Using group contents include container_uuid WIP

Arvados-DCO-1.1-Signed-off-by: Peter Amstutz <peter.amstutz@curii.com>

4 months ago21842: removed tabbedList scrollbar
Lisa Knox [Tue, 24 Sep 2024 18:47:07 +0000 (14:47 -0400)]
21842: removed tabbedList scrollbar

Arvados-DCO-1.1-Signed-off-by: Lisa Knox <lisa.knox@curii.com>

4 months ago21842: removed 2 stray console.logs
Lisa Knox [Tue, 24 Sep 2024 18:14:59 +0000 (14:14 -0400)]
21842: removed 2 stray console.logs

Arvados-DCO-1.1-Signed-off-by: Lisa Knox <lisa.knox@curii.com>

4 months agoFix race-sensitive test.
Tom Clegg [Tue, 24 Sep 2024 17:41:11 +0000 (13:41 -0400)]
Fix race-sensitive test.

refs #2960

Arvados-DCO-1.1-Signed-off-by: Tom Clegg <tom@curii.com>

4 months ago22133: Upgrades google.golang.org/grpc to mitigate a potential CWE-200 22133-dependency-upgrades
Lucas Di Pentima [Tue, 24 Sep 2024 15:52:34 +0000 (12:52 -0300)]
22133: Upgrades google.golang.org/grpc to mitigate a potential CWE-200

Arvados-DCO-1.1-Signed-off-by: Lucas Di Pentima <lucas.dipentima@curii.com>

4 months ago22133: Upgrades styled-components and postcss to address CVE-2023-44270
Lucas Di Pentima [Tue, 24 Sep 2024 15:50:00 +0000 (12:50 -0300)]
22133: Upgrades styled-components and postcss to address CVE-2023-44270

Arvados-DCO-1.1-Signed-off-by: Lucas Di Pentima <lucas.dipentima@curii.com>

4 months ago22133: Upgrades micromatch to address CVE-2024-4067
Lucas Di Pentima [Tue, 24 Sep 2024 15:47:00 +0000 (12:47 -0300)]
22133: Upgrades micromatch to address CVE-2024-4067

Arvados-DCO-1.1-Signed-off-by: Lucas Di Pentima <lucas.dipentima@curii.com>

4 months ago22133: Upgrades braces to address CVE-2024-4068
Lucas Di Pentima [Tue, 24 Sep 2024 15:45:18 +0000 (12:45 -0300)]
22133: Upgrades braces to address CVE-2024-4068

Arvados-DCO-1.1-Signed-off-by: Lucas Di Pentima <lucas.dipentima@curii.com>

4 months ago22133: Upgrades express to address CVE-2024-43796
Lucas Di Pentima [Tue, 24 Sep 2024 15:43:40 +0000 (12:43 -0300)]
22133: Upgrades express to address CVE-2024-43796

Arvados-DCO-1.1-Signed-off-by: Lucas Di Pentima <lucas.dipentima@curii.com>

4 months agoMerge branch '22124-keepstore-double-slash'
Tom Clegg [Tue, 24 Sep 2024 15:35:50 +0000 (11:35 -0400)]
Merge branch '22124-keepstore-double-slash'

fixes #22124

Arvados-DCO-1.1-Signed-off-by: Tom Clegg <tom@curii.com>

4 months agoMerge branch '21702-keep-web-replace_files'
Tom Clegg [Tue, 24 Sep 2024 14:42:23 +0000 (10:42 -0400)]
Merge branch '21702-keep-web-replace_files'

closes #21702

Arvados-DCO-1.1-Signed-off-by: Tom Clegg <tom@curii.com>

4 months ago21842: fixed handleselect firing on hover
Lisa Knox [Tue, 24 Sep 2024 14:36:47 +0000 (10:36 -0400)]
21842: fixed handleselect firing on hover

Arvados-DCO-1.1-Signed-off-by: Lisa Knox <lisa.knox@curii.com>

4 months ago22132: Display scheduling status in logs panel
Peter Amstutz [Mon, 23 Sep 2024 19:59:24 +0000 (15:59 -0400)]
22132: Display scheduling status in logs panel

Removes all the code related to the previous display in the details
panel.

Arvados-DCO-1.1-Signed-off-by: Peter Amstutz <peter.amstutz@curii.com>

4 months ago21842: moved handletabchange to prevengt extra renders
Lisa Knox [Mon, 23 Sep 2024 18:47:02 +0000 (14:47 -0400)]
21842: moved handletabchange to prevengt extra renders

Arvados-DCO-1.1-Signed-off-by: Lisa Knox <lisa.knox@curii.com>

4 months ago21842: set listrefs to be a Record instead of an array
Lisa Knox [Mon, 23 Sep 2024 18:33:53 +0000 (14:33 -0400)]
21842: set listrefs to be a Record instead of an array

Arvados-DCO-1.1-Signed-off-by: Lisa Knox <lisa.knox@curii.com>

4 months agoUpdate gh action test command. Refs #21720
Stephen Smith [Mon, 23 Sep 2024 16:47:18 +0000 (12:47 -0400)]
Update gh action test command. Refs #21720

Arvados-DCO-1.1-Signed-off-by: Stephen Smith <stephen@curii.com>

4 months ago22124: Reject requests with double slash, except GET //locator. 22124-keepstore-double-slash
Tom Clegg [Mon, 23 Sep 2024 15:44:36 +0000 (11:44 -0400)]
22124: Reject requests with double slash, except GET //locator.

Previously we responded to "PUT //locator" with a 301 to a cleaned
path, which did not work because 301 tells clients to repeat the PUT
request as a GET.  Better to just respond 400, since this means the
client is broken or misconfigured.

There may be some clients that have been working successfully with the
301 redirect behavior because they only do GET and HEAD requests.  To
avoid breaking these, we continue to accept "GET //locator" -- but now
we just return the data instead of a redirect to "GET /locator".

Arvados-DCO-1.1-Signed-off-by: Tom Clegg <tom@curii.com>

4 months ago21842: fixed scroll wrap when selecting -1
Lisa Knox [Mon, 23 Sep 2024 15:39:25 +0000 (11:39 -0400)]
21842: fixed scroll wrap when selecting -1

Arvados-DCO-1.1-Signed-off-by: Lisa Knox <lisa.knox@curii.com>

4 months agoMerge branch '21121-cluster-activity' refs #21121
Peter Amstutz [Mon, 23 Sep 2024 15:35:03 +0000 (11:35 -0400)]
Merge branch '21121-cluster-activity' refs #21121

Arvados-DCO-1.1-Signed-off-by: Peter Amstutz <peter.amstutz@curii.com>

4 months ago21121: Fixed upgrading page typo
Peter Amstutz [Mon, 23 Sep 2024 15:34:17 +0000 (11:34 -0400)]
21121: Fixed upgrading page typo

Arvados-DCO-1.1-Signed-off-by: Peter Amstutz <peter.amstutz@curii.com>

4 months ago22124: Trim trailing slashes in ARVADOS_KEEP_SERVICES env var.
Tom Clegg [Mon, 23 Sep 2024 15:27:33 +0000 (11:27 -0400)]
22124: Trim trailing slashes in ARVADOS_KEEP_SERVICES env var.

Accept http://foo:12345/ as a synonym of http://foo:12345 instead of
failing requests with 400 errors later.

Arvados-DCO-1.1-Signed-off-by: Tom Clegg <tom@curii.com>

4 months ago21702: Merge branch 'main' into 21702-keep-web-replace_files 21702-keep-web-replace_files
Tom Clegg [Mon, 23 Sep 2024 14:26:43 +0000 (10:26 -0400)]
21702: Merge branch 'main' into 21702-keep-web-replace_files

Arvados-DCO-1.1-Signed-off-by: Tom Clegg <tom@curii.com>

4 months ago21702: Use Assert when subsequent trials depend on condition.
Tom Clegg [Mon, 23 Sep 2024 13:34:43 +0000 (09:34 -0400)]
21702: Use Assert when subsequent trials depend on condition.

Arvados-DCO-1.1-Signed-off-by: Tom Clegg <tom@curii.com>

4 months ago21702: Clean up formatting of RFC references.
Tom Clegg [Mon, 23 Sep 2024 13:34:13 +0000 (09:34 -0400)]
21702: Clean up formatting of RFC references.

Arvados-DCO-1.1-Signed-off-by: Tom Clegg <tom@curii.com>

4 months ago21842: added dense prop to List el
Lisa Knox [Mon, 23 Sep 2024 13:45:14 +0000 (09:45 -0400)]
21842: added dense prop to List el

Arvados-DCO-1.1-Signed-off-by: Lisa Knox <lisa.knox@curii.com>

4 months ago21842: fixed lost anchorEl bug
Lisa Knox [Mon, 23 Sep 2024 13:26:51 +0000 (09:26 -0400)]
21842: fixed lost anchorEl bug

Arvados-DCO-1.1-Signed-off-by: Lisa Knox <lisa.knox@curii.com>

4 months ago21842: changed anchorEl to container instead of input
Lisa Knox [Fri, 20 Sep 2024 20:11:39 +0000 (16:11 -0400)]
21842: changed anchorEl to container instead of input

Arvados-DCO-1.1-Signed-off-by: Lisa Knox <lisa.knox@curii.com>

4 months ago21842: set suggestions to stay open on select
Lisa Knox [Fri, 20 Sep 2024 19:43:52 +0000 (15:43 -0400)]
21842: set suggestions to stay open on select

Arvados-DCO-1.1-Signed-off-by: Lisa Knox <lisa.knox@curii.com>

4 months ago21842: tabbedList opens on input focus with spinner and labels
Lisa Knox [Fri, 20 Sep 2024 19:01:55 +0000 (15:01 -0400)]
21842: tabbedList opens on input focus with spinner and labels

Arvados-DCO-1.1-Signed-off-by: Lisa Knox <lisa.knox@curii.com>

4 months ago21720: added spinner to list when loading
Lisa Knox [Fri, 20 Sep 2024 18:24:45 +0000 (14:24 -0400)]
21720: added spinner to list when loading

Arvados-DCO-1.1-Signed-off-by: Lisa Knox <lisa.knox@curii.com>

4 months ago22133: Upgrades Workbench dependencies to address security issues
Lucas Di Pentima [Fri, 20 Sep 2024 13:38:11 +0000 (10:38 -0300)]
22133: Upgrades Workbench dependencies to address security issues

Arvados-DCO-1.1-Signed-off-by: Lucas Di Pentima <lucas.dipentima@curii.com>

4 months ago21842: set getSuggestions to trigger on input focus
Lisa Knox [Thu, 19 Sep 2024 19:12:03 +0000 (15:12 -0400)]
21842: set getSuggestions to trigger on input focus

Arvados-DCO-1.1-Signed-off-by: Lisa Knox <lisa.knox@curii.com>

4 months ago21842: removed minsuggestionslength, set limit to 10
Lisa Knox [Thu, 19 Sep 2024 18:10:52 +0000 (14:10 -0400)]
21842: removed minsuggestionslength, set limit to 10

Arvados-DCO-1.1-Signed-off-by: Lisa Knox <lisa.knox@curii.com>

4 months ago21842: moved tabPanel inside parent component to simplify styling
Lisa Knox [Thu, 19 Sep 2024 17:54:59 +0000 (13:54 -0400)]
21842: moved tabPanel inside parent component to simplify styling

Arvados-DCO-1.1-Signed-off-by: Lisa Knox <lisa.knox@curii.com>

4 months ago22133: Upgrades github.com/docker/docker to address CVE-2024-41110
Lucas Di Pentima [Thu, 19 Sep 2024 17:28:24 +0000 (14:28 -0300)]
22133: Upgrades github.com/docker/docker to address CVE-2024-41110

Arvados-DCO-1.1-Signed-off-by: Lucas Di Pentima <lucas.dipentima@curii.com>

4 months ago21842: fixed scrollbar going past scrollContainer
Lisa Knox [Thu, 19 Sep 2024 16:06:49 +0000 (12:06 -0400)]
21842: fixed scrollbar going past scrollContainer

Arvados-DCO-1.1-Signed-off-by: Lisa Knox <lisa.knox@curii.com>

4 months ago22134: Add PATH configuration to RailsAPI documentation 22134-railsapi-envvars
Brett Smith [Thu, 19 Sep 2024 15:56:12 +0000 (11:56 -0400)]
22134: Add PATH configuration to RailsAPI documentation

See last commit for rationale.

Arvados-DCO-1.1-Signed-off-by: Brett Smith <brett.smith@curii.com>

4 months ago21842: merge cleanup, changed ListItem to ListItemButton
Lisa Knox [Thu, 19 Sep 2024 15:16:07 +0000 (11:16 -0400)]
21842: merge cleanup, changed ListItem to ListItemButton

Arvados-DCO-1.1-Signed-off-by: Lisa Knox <lisa.knox@curii.com>

4 months ago22134: Define PATH in nginx+Passenger configuration
Brett Smith [Thu, 19 Sep 2024 14:54:55 +0000 (10:54 -0400)]
22134: Define PATH in nginx+Passenger configuration

RailsAPI needs this set to run `arvados-server`. To date this has been
handled by the default `passenger_load_shell_envvars on`, which starts
RailsAPI via `bash -l -c` to load environment variables from the shellrc
files in /etc. However, this can fail due to system configuration
changes, and we have seen Passenger try to start RailsAPI with an empty
PATH after a server reload/restart. Defining PATH here should make the
system more resilient against other system configuration changes.

Arvados-DCO-1.1-Signed-off-by: Brett Smith <brett.smith@curii.com>

4 months ago21121: Update documentation, some code cleanup and comments. 21121-cluster-activity
Peter Amstutz [Thu, 19 Sep 2024 14:52:47 +0000 (10:52 -0400)]
21121: Update documentation, some code cleanup and comments.

Arvados-DCO-1.1-Signed-off-by: Peter Amstutz <peter.amstutz@curii.com>

4 months agoMerge branch 'main' into 21842-improve-sharing
Lisa Knox [Thu, 19 Sep 2024 14:36:29 +0000 (10:36 -0400)]
Merge branch 'main' into 21842-improve-sharing

refs #21842

Arvados-DCO-1.1-Signed-off-by: Lisa Knox <lisa.knox@curii.com>

4 months ago21842: removed autofocus and set contents length in labels
Lisa Knox [Thu, 19 Sep 2024 14:03:25 +0000 (10:03 -0400)]
21842: removed autofocus and set contents length in labels

Arvados-DCO-1.1-Signed-off-by: Lisa Knox <lisa.knox@curii.com>

4 months ago21842: fixed edge case where ENTER would fire with nothing selected
Lisa Knox [Thu, 19 Sep 2024 13:23:13 +0000 (09:23 -0400)]
21842: fixed edge case where ENTER would fire with nothing selected

Arvados-DCO-1.1-Signed-off-by: Lisa Knox <lisa.knox@curii.com>

4 months agoMerge branch '21720-material-ui-upgrade'
Lisa Knox [Wed, 18 Sep 2024 20:26:01 +0000 (16:26 -0400)]
Merge branch '21720-material-ui-upgrade'

closes #21720

Arvados-DCO-1.1-Signed-off-by: Lisa Knox <lisa.knox@curii.com>

4 months ago21720: changed padding in code-snippet logs 21720-material-ui-upgrade
Lisa Knox [Wed, 18 Sep 2024 20:24:00 +0000 (16:24 -0400)]
21720: changed padding in code-snippet logs

Arvados-DCO-1.1-Signed-off-by: Lisa Knox <lisa.knox@curii.com>

4 months ago21720: fixed project test
Lisa Knox [Wed, 18 Sep 2024 18:09:57 +0000 (14:09 -0400)]
21720: fixed project test

Arvados-DCO-1.1-Signed-off-by: Lisa Knox <lisa.knox@curii.com>

4 months ago21720: fixed flaky process test
Lisa Knox [Wed, 18 Sep 2024 14:54:43 +0000 (10:54 -0400)]
21720: fixed flaky process test

Arvados-DCO-1.1-Signed-off-by: Lisa Knox <lisa.knox@curii.com>

4 months ago21720: converted groups-panel-middleware-service test
Lisa Knox [Wed, 18 Sep 2024 13:27:43 +0000 (09:27 -0400)]
21720: converted groups-panel-middleware-service test

Arvados-DCO-1.1-Signed-off-by: Lisa Knox <lisa.knox@curii.com>

4 months agoMerge branch '21909-r-sdk-3.0'
Brett Smith [Tue, 17 Sep 2024 21:14:55 +0000 (17:14 -0400)]
Merge branch '21909-r-sdk-3.0'

Refs #21909.

Arvados-DCO-1.1-Signed-off-by: Brett Smith <brett.smith@curii.com>

4 months ago21909: Add Brett Smith to R SDK authors list
Brett Smith [Tue, 17 Sep 2024 21:14:15 +0000 (17:14 -0400)]
21909: Add Brett Smith to R SDK authors list

Arvados-DCO-1.1-Signed-off-by: Brett Smith <brett.smith@curii.com>

4 months ago21720: fixed data-explorer-middleware test
Lisa Knox [Tue, 17 Sep 2024 19:14:02 +0000 (15:14 -0400)]
21720: fixed data-explorer-middleware test

Arvados-DCO-1.1-Signed-off-by: Lisa Knox <lisa.knox@curii.com>

4 months ago21720: fixed data-explorer.cy spec
Lisa Knox [Tue, 17 Sep 2024 19:08:36 +0000 (15:08 -0400)]
21720: fixed data-explorer.cy spec

* unrecognized char to "-"

Arvados-DCO-1.1-Signed-off-by: Lisa Knox <lisa.knox@curii.com>

4 months ago21720: fixed spec in data-explorer.cy.js
Lisa Knox [Tue, 17 Sep 2024 18:57:42 +0000 (14:57 -0400)]
21720: fixed spec in data-explorer.cy.js

* removed an autofocuslistener that didnt matter because it gets covered by popover anyway

Arvados-DCO-1.1-Signed-off-by: Lisa Knox <lisa.knox@curii.com>

4 months ago21720: merge cleanup
Lisa Knox [Tue, 17 Sep 2024 18:07:15 +0000 (14:07 -0400)]
21720: merge cleanup

Arvados-DCO-1.1-Signed-off-by: Lisa Knox <lisa.knox@curii.com>

4 months agoMerge branch 'main' into 21720-material-ui-upgrade
Lisa Knox [Tue, 17 Sep 2024 18:04:14 +0000 (14:04 -0400)]
Merge branch 'main' into 21720-material-ui-upgrade

refs #21720

Arvados-DCO-1.1-Signed-off-by: Lisa Knox <lisa.knox@curii.com>

4 months ago21720: fixed padding in panel log card lines
Lisa Knox [Tue, 17 Sep 2024 17:33:08 +0000 (13:33 -0400)]
21720: fixed padding in panel log card lines

Arvados-DCO-1.1-Signed-off-by: Lisa Knox <lisa.knox@curii.com>

4 months ago21720: moved search input adornment to fix occlusion with.placeholder text
Lisa Knox [Tue, 17 Sep 2024 17:22:03 +0000 (13:22 -0400)]
21720: moved search input adornment to fix occlusion with.placeholder text

Arvados-DCO-1.1-Signed-off-by: Lisa Knox <lisa.knox@curii.com>

4 months ago21720: removed unnecessary divider
Lisa Knox [Tue, 17 Sep 2024 17:10:23 +0000 (13:10 -0400)]
21720: removed unnecessary divider

Arvados-DCO-1.1-Signed-off-by: Lisa Knox <lisa.knox@curii.com>

4 months ago21720: fixed text color in data explorer
Lisa Knox [Tue, 17 Sep 2024 15:17:57 +0000 (11:17 -0400)]
21720: fixed text color in data explorer

Arvados-DCO-1.1-Signed-off-by: Lisa Knox <lisa.knox@curii.com>

4 months ago21720: fixed styling in multi-panel-view
Lisa Knox [Tue, 17 Sep 2024 14:58:32 +0000 (10:58 -0400)]
21720: fixed styling in multi-panel-view

Arvados-DCO-1.1-Signed-off-by: Lisa Knox <lisa.knox@curii.com>

4 months ago21720: remobed vestigial info button
Lisa Knox [Tue, 17 Sep 2024 14:32:26 +0000 (10:32 -0400)]
21720: remobed vestigial info button

Arvados-DCO-1.1-Signed-off-by: Lisa Knox <lisa.knox@curii.com>

4 months agoMerge branch '21893-input-collections-virtual-list' into main. Closes #21893
Stephen Smith [Tue, 17 Sep 2024 14:31:45 +0000 (10:31 -0400)]
Merge branch '21893-input-collections-virtual-list' into main. Closes #21893

Arvados-DCO-1.1-Signed-off-by: Stephen Smith <stephen@curii.com>

4 months ago21720: refectored listitem icon spacing
Lisa Knox [Tue, 17 Sep 2024 14:26:58 +0000 (10:26 -0400)]
21720: refectored listitem icon spacing

Arvados-DCO-1.1-Signed-off-by: Lisa Knox <lisa.knox@curii.com>

4 months ago21893: Make linter happy 21893-input-collections-virtual-list
Stephen Smith [Tue, 17 Sep 2024 14:07:38 +0000 (10:07 -0400)]
21893: Make linter happy

Arvados-DCO-1.1-Signed-off-by: Stephen Smith <stephen@curii.com>

4 months agoMerge branch '17074-optimize-itemsavailable' into main. Closes #17074
Stephen Smith [Tue, 17 Sep 2024 13:39:50 +0000 (09:39 -0400)]
Merge branch '17074-optimize-itemsavailable' into main. Closes #17074

Arvados-DCO-1.1-Signed-off-by: Stephen Smith <stephen@curii.com>

4 months agoMerge branch '21751-installer-cmk-support'
Lucas Di Pentima [Tue, 17 Sep 2024 13:37:31 +0000 (10:37 -0300)]
Merge branch '21751-installer-cmk-support'

closes #21751

Arvados-DCO-1.1-Signed-off-by: Lucas Di Pentima <lucas.dipentima@curii.com>

4 months ago21751: Fixes typo in resource naming. 21751-installer-cmk-support
Lucas Di Pentima [Tue, 17 Sep 2024 13:36:38 +0000 (10:36 -0300)]
21751: Fixes typo in resource naming.

Arvados-DCO-1.1-Signed-off-by: Lucas Di Pentima <lucas.dipentima@curii.com>

4 months agoMerge branch '22079-pysdk-reference-bugfixes'
Brett Smith [Tue, 17 Sep 2024 01:32:02 +0000 (21:32 -0400)]
Merge branch '22079-pysdk-reference-bugfixes'

Refs #22079.

Arvados-DCO-1.1-Signed-off-by: Brett Smith <brett.smith@curii.com>

4 months ago21893: Add separate custom column width styles for collection input table
Stephen Smith [Mon, 16 Sep 2024 19:46:43 +0000 (15:46 -0400)]
21893: Add separate custom column width styles for collection input table

Also fix ellipses-ing of collection link

Arvados-DCO-1.1-Signed-off-by: Stephen Smith <stephen@curii.com>

4 months ago21751: Adds CMK access policies to compute and dispatcher roles.
Lucas Di Pentima [Mon, 16 Sep 2024 19:46:40 +0000 (16:46 -0300)]
21751: Adds CMK access policies to compute and dispatcher roles.

When using customer-managed keys, access should be granted explicitly: the
dispatcher needs it to create instances with their EBS volume encrypted
and the compute nodes themselves need it too so that they can start the
ebs-autoscale feature.

Arvados-DCO-1.1-Signed-off-by: Lucas Di Pentima <lucas.dipentima@curii.com>

4 months ago21893: Implement virtual list for process io card input collections tab
Stephen Smith [Mon, 16 Sep 2024 19:10:54 +0000 (15:10 -0400)]
21893: Implement virtual list for process io card input collections tab

Arvados-DCO-1.1-Signed-off-by: Stephen Smith <stephen@curii.com>

4 months ago22126: Improve parsing of default values in PySDK reference 22079-pysdk-reference-bugfixes
Brett Smith [Mon, 16 Sep 2024 15:56:28 +0000 (11:56 -0400)]
22126: Improve parsing of default values in PySDK reference

Arvados-DCO-1.1-Signed-off-by: Brett Smith <brett.smith@curii.com>

4 months ago22126: Improve formatting of method parameter docstrings
Brett Smith [Mon, 16 Sep 2024 15:50:29 +0000 (11:50 -0400)]
22126: Improve formatting of method parameter docstrings

Arvados-DCO-1.1-Signed-off-by: Brett Smith <brett.smith@curii.com>

4 months ago22126: Improve whitespace in ArvadosAPIClient reference
Brett Smith [Mon, 16 Sep 2024 14:49:50 +0000 (10:49 -0400)]
22126: Improve whitespace in ArvadosAPIClient reference

Arvados-DCO-1.1-Signed-off-by: Brett Smith <brett.smith@curii.com>

4 months ago22126: Add defaults to PySDK methods reference
Brett Smith [Mon, 16 Sep 2024 14:44:30 +0000 (10:44 -0400)]
22126: Add defaults to PySDK methods reference

Resolve the issue in the earlier comment by marking parameters with no
advertised default as Optional[T] with a default value None.

Arvados-DCO-1.1-Signed-off-by: Brett Smith <brett.smith@curii.com>