diff --git a/.release-please-manifest.json b/.release-please-manifest.json index 099626f..4fcfdf7 100644 --- a/.release-please-manifest.json +++ b/.release-please-manifest.json @@ -1,3 +1,3 @@ { - ".": "1.8.0" + ".": "1.9.0" } diff --git a/CHANGELOG.md b/CHANGELOG.md index c70f84c..4535876 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,5 +1,18 @@ # Changelog +## [1.9.0](https://github.com/globus/static-data-portal/compare/1.8.0...1.9.0) (2024-08-26) + + +### Features + +* Updates the "Path" field to be editable for easy directory navigation. ([#242](https://github.com/globus/static-data-portal/issues/242)) ([a3a2d03](https://github.com/globus/static-data-portal/commit/a3a2d03bc4857e413c596f6884397467c259b612)) + + +### Fixes + +* Address scenarios where post-consent an existing (refreshed) token would be used instead of the result of the token response. ([a3a2d03](https://github.com/globus/static-data-portal/commit/a3a2d03bc4857e413c596f6884397467c259b612)) +* **Search:** Ensures GCSv5 Endpoints ("nonfunctional" endpoints that do not support transfer) are not displayed in destination collection search results. ([#231](https://github.com/globus/static-data-portal/issues/231)) ([1702e62](https://github.com/globus/static-data-portal/commit/1702e629f4ca7f01ee692481669a5c7d165762f2)) + ## [1.8.0](https://github.com/globus/static-data-portal/compare/1.7.1...1.8.0) (2024-08-19) diff --git a/package-lock.json b/package-lock.json index 9243656..64a6170 100644 --- a/package-lock.json +++ b/package-lock.json @@ -1,12 +1,12 @@ { "name": "@globus/static-data-portal", - "version": "1.8.0", + "version": "1.9.0", "lockfileVersion": 3, "requires": true, "packages": { "": { "name": "@globus/static-data-portal", - "version": "1.8.0", + "version": "1.9.0", "license": "Apache-2.0", "dependencies": { "@chakra-ui/icons": "^2.1.1", @@ -31,7 +31,7 @@ "@globus/types": "^0.0.7", "@heroicons/react": "^2.1.5", "@playwright/test": "^1.46.1", - "@tanstack/eslint-plugin-query": "^5.52.0", + "@tanstack/eslint-plugin-query": "^5.51.15", "@types/node": "^22", "@types/react": "^18", "@types/react-dom": "^18", @@ -2272,9 +2272,9 @@ } }, "node_modules/@tanstack/eslint-plugin-query": { - "version": "5.52.0", - "resolved": "https://registry.npmjs.org/@tanstack/eslint-plugin-query/-/eslint-plugin-query-5.52.0.tgz", - "integrity": "sha512-i02fOM3TRURI46AswPNlKb4Gwu+/mAPssI+pVu0AifA7/qzOJRgco17vdqjq/VgChKLLIltd9/KI4MCJFFfWEw==", + "version": "5.51.15", + "resolved": "https://registry.npmjs.org/@tanstack/eslint-plugin-query/-/eslint-plugin-query-5.51.15.tgz", + "integrity": "sha512-btX03EOGvNxTGJDqHMmQwfSt/hp93Z8I4FNBijoyEdDnjGi4jVjpGP7nEi9LaMnHFsylucptVGb6GQngWs07bA==", "dev": true, "dependencies": { "@typescript-eslint/utils": "8.0.0-alpha.30" diff --git a/package.json b/package.json index 65adfc0..26aead7 100644 --- a/package.json +++ b/package.json @@ -1,6 +1,6 @@ { "name": "@globus/static-data-portal", - "version": "1.8.0", + "version": "1.9.0", "repository": "github:globus/static-data-portal", "files": [], "license": "Apache-2.0", @@ -36,7 +36,7 @@ "@globus/types": "^0.0.7", "@heroicons/react": "^2.1.5", "@playwright/test": "^1.46.1", - "@tanstack/eslint-plugin-query": "^5.52.0", + "@tanstack/eslint-plugin-query": "^5.51.15", "@types/node": "^22", "@types/react": "^18", "@types/react-dom": "^18", diff --git a/utils/globus.ts b/utils/globus.ts index c8cc0c2..f41cb9c 100644 --- a/utils/globus.ts +++ b/utils/globus.ts @@ -1,6 +1,6 @@ export const CLIENT_INFO = { product: "@globus/static-data-portal", // x-release-please-start-version - version: "1.8.0", + version: "1.9.0", // x-release-please-end };