From 86ab075ac5d9b5d20004dc8635b1bfe63cb16ca2 Mon Sep 17 00:00:00 2001 From: "github-actions[bot]" <41898282+github-actions[bot]@users.noreply.github.com> Date: Fri, 15 Nov 2024 11:55:29 -0600 Subject: [PATCH] chore(main): release 2.1.0 (#371) :robot: I have created a release *beep* *boop* --- ## [2.1.0](https://github.com/globus/static-data-portal/compare/2.0.0...2.1.0) (2024-11-15) ### Features * Adds "Clear Selected" button to the source file browser. ([79058b6](https://github.com/globus/static-data-portal/commit/79058b6b2828a7c30f4c9552e42e7a730d7ca9c5)) * Adds "Search All Collections" toggle in the search panel. ([79058b6](https://github.com/globus/static-data-portal/commit/79058b6b2828a7c30f4c9552e42e7a730d7ca9c5)) * Updates Destination search to hide collections the user does not have Transfer-related permissions on (by default) ([#370](https://github.com/globus/static-data-portal/issues/370)) ([79058b6](https://github.com/globus/static-data-portal/commit/79058b6b2828a7c30f4c9552e42e7a730d7ca9c5)) ### Fixes * Address issue causing the default header image not rendering on deep pages when portal was published. ([#369](https://github.com/globus/static-data-portal/issues/369)) ([ac3b7d2](https://github.com/globus/static-data-portal/commit/ac3b7d23abbe241968b98aec993479691148ff71)) --- This PR was generated with [Release Please](https://github.com/googleapis/release-please). See [documentation](https://github.com/googleapis/release-please#release-please). Co-authored-by: github-actions[bot] <41898282+github-actions[bot]@users.noreply.github.com> --- .release-please-manifest.json | 2 +- CHANGELOG.md | 14 ++++++++++++++ package-lock.json | 4 ++-- package.json | 2 +- utils/globus.ts | 2 +- 5 files changed, 19 insertions(+), 5 deletions(-) diff --git a/.release-please-manifest.json b/.release-please-manifest.json index 895bf0e..969d3db 100644 --- a/.release-please-manifest.json +++ b/.release-please-manifest.json @@ -1,3 +1,3 @@ { - ".": "2.0.0" + ".": "2.1.0" } diff --git a/CHANGELOG.md b/CHANGELOG.md index 4c6b1f6..b3f9399 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,5 +1,19 @@ # Changelog +## [2.1.0](https://github.com/globus/static-data-portal/compare/2.0.0...2.1.0) (2024-11-15) + + +### Features + +* Adds "Clear Selected" button to the source file browser. ([79058b6](https://github.com/globus/static-data-portal/commit/79058b6b2828a7c30f4c9552e42e7a730d7ca9c5)) +* Adds "Search All Collections" toggle in the search panel. ([79058b6](https://github.com/globus/static-data-portal/commit/79058b6b2828a7c30f4c9552e42e7a730d7ca9c5)) +* Updates Destination search to hide collections the user does not have Transfer-related permissions on (by default) ([#370](https://github.com/globus/static-data-portal/issues/370)) ([79058b6](https://github.com/globus/static-data-portal/commit/79058b6b2828a7c30f4c9552e42e7a730d7ca9c5)) + + +### Fixes + +* Address issue causing the default header image not rendering on deep pages when portal was published. ([#369](https://github.com/globus/static-data-portal/issues/369)) ([ac3b7d2](https://github.com/globus/static-data-portal/commit/ac3b7d23abbe241968b98aec993479691148ff71)) + ## [2.0.0](https://github.com/globus/static-data-portal/compare/1.12.0...2.0.0) (2024-10-29) diff --git a/package-lock.json b/package-lock.json index c80dbfd..06ab7e9 100644 --- a/package-lock.json +++ b/package-lock.json @@ -1,12 +1,12 @@ { "name": "@globus/static-data-portal", - "version": "2.0.0", + "version": "2.1.0", "lockfileVersion": 3, "requires": true, "packages": { "": { "name": "@globus/static-data-portal", - "version": "2.0.0", + "version": "2.1.0", "license": "Apache-2.0", "dependencies": { "@chakra-ui/icons": "^2.2.4", diff --git a/package.json b/package.json index cdcf60d..44eb77b 100644 --- a/package.json +++ b/package.json @@ -1,6 +1,6 @@ { "name": "@globus/static-data-portal", - "version": "2.0.0", + "version": "2.1.0", "repository": "github:globus/static-data-portal", "files": [], "license": "Apache-2.0", diff --git a/utils/globus.ts b/utils/globus.ts index aec4435..6bde88e 100644 --- a/utils/globus.ts +++ b/utils/globus.ts @@ -4,7 +4,7 @@ import { FileDocument } from "@globus/sdk/cjs/services/transfer/service/file-ope export const CLIENT_INFO = { product: "@globus/static-data-portal", // x-release-please-start-version - version: "2.0.0", + version: "2.1.0", // x-release-please-end };