Skip to content

v1.10.0

Compare
Choose a tag to compare
@github-actions github-actions released this 19 Sep 13:55
627a26d

1.10.0 (2024-09-18)

Features

Multiple collections (and paths) can now be configured using the static.json file.

globus.transfer.collections can now be configured to an array of TransferCollectionConfiguration objects.

     "globus": {
        "transfer": {
          "collections": [
            {
              "collection_id": "543aade1-db97-4a4b-9bdf-0b58e78dfa69"
            },
            {
              "collection_id": "8062693f-f8c2-46be-86d0-de651a974ff3",
              "path": "/home/u_odwnwpvxpjhatlzwj4ap3svc3q/My First Folder"
            }
          ]
        }
        // ...
      }

When this property is provided, the user will be presented with a source selector.

Screen Cast 2024-09-18 at 4 30 40 PM

globus.transfer.collection_id can still be used to enforce a single collection/path without the selector.

Fixes

  • ensure AuthorizationManager methods are awaited (#263) (1306141)