diff --git a/RELEASE_NOTES.md b/RELEASE_NOTES.md index e99c409af0..390e900ccf 100644 --- a/RELEASE_NOTES.md +++ b/RELEASE_NOTES.md @@ -4,6 +4,15 @@ The Narrative Interface allows users to craft KBase Narratives using a combinati This is built on the Jupyter Notebook v6.5.6 and IPython 8.25.0 (more notes will follow). +## Version 5.4.0 +- UIP-43 + - Change Narrative JSON downloads to use a download-to-staging app. + - Add an optional "wildcard" field to app cells that can be used to allow any data object as an app input. + - Add a text-only output field for app cells to optionally use. +- UIP-44 - Convert data object transform-and-download URLs to use the Blobstore endpoint instead of the Data Import Export service +- UIP-45 - Convert the report object viewer to use the Blobstore endpoint instead of the Data Import Export service +- Remove last references to the Data Import Export service so we can lay it to rest in KBase. + ## Version 5.3.0 - PTV-1845 - kbaseTabs now shows another tab after a closable tab is closed; diff --git a/package-lock.json b/package-lock.json index f4f975d0a0..ee36c24f21 100644 --- a/package-lock.json +++ b/package-lock.json @@ -1,12 +1,12 @@ { "name": "kbase-narrative-core", - "version": "5.3.0", + "version": "5.4.0", "lockfileVersion": 3, "requires": true, "packages": { "": { "name": "kbase-narrative-core", - "version": "5.3.0", + "version": "5.4.0", "dependencies": { "bluebird": "3.7.2", "bootstrap": "3.4.1", @@ -3443,9 +3443,9 @@ } }, "node_modules/caniuse-lite": { - "version": "1.0.30001642", - "resolved": "https://registry.npmjs.org/caniuse-lite/-/caniuse-lite-1.0.30001642.tgz", - "integrity": "sha512-3XQ0DoRgLijXJErLSl+bLnJ+Et4KqV1PY6JJBGAFlsNsz31zeAIncyeZfLCabHK/jtSh+671RM9YMldxjUPZtA==", + "version": "1.0.30001643", + "resolved": "https://registry.npmjs.org/caniuse-lite/-/caniuse-lite-1.0.30001643.tgz", + "integrity": "sha512-ERgWGNleEilSrHM6iUz/zJNSQTP8Mr21wDWpdgvRwcTXGAq6jMtOUPP4dqFPTdKqZ2wKTdtB+uucZ3MRpAUSmg==", "dev": true, "funding": [ { diff --git a/package.json b/package.json index cfacb4f11c..dab50166f6 100644 --- a/package.json +++ b/package.json @@ -1,7 +1,7 @@ { "name": "kbase-narrative-core", "description": "Core components for the KBase Narrative Interface", - "version": "5.3.0", + "version": "5.4.0", "private": true, "repository": "github.com/kbase/narrative", "engines": { diff --git a/src/biokbase/narrative/__init__.py b/src/biokbase/narrative/__init__.py index 0f87cf3e88..0655b4df1a 100644 --- a/src/biokbase/narrative/__init__.py +++ b/src/biokbase/narrative/__init__.py @@ -1,5 +1,5 @@ __all__ = ["magics", "common", "handlers", "contents", "services", "widgetmanager"] -__version__ = "5.3.0" +__version__ = "5.4.0" def version(): diff --git a/src/config.json b/src/config.json index 8c78983859..11f7c9173b 100644 --- a/src/config.json +++ b/src/config.json @@ -391,5 +391,5 @@ "globus_upload_url": "https://app.globus.org/file-manager?destination_id=c3c0a65f-5827-4834-b6c9-388b0b19953a" }, "use_local_widgets": true, - "version": "5.3.0" + "version": "5.4.0" } diff --git a/src/config.json.templ b/src/config.json.templ index 37fc87adc0..d8aa3181e9 100644 --- a/src/config.json.templ +++ b/src/config.json.templ @@ -391,5 +391,5 @@ "globus_upload_url": "https://app.globus.org/file-manager?destination_id=c3c0a65f-5827-4834-b6c9-388b0b19953a" }, "use_local_widgets": true, - "version": "5.3.0" + "version": "5.4.0" }