Skip to content

Commit 8b52821

Browse files
committed
Merge branch 'release_25.1' into dev
2 parents a68cbf3 + bf9aef3 commit 8b52821

2 files changed

Lines changed: 8 additions & 2 deletions

File tree

client/src/components/Collections/wizard/UploadFetchWorkbook.vue

Lines changed: 4 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,8 @@
22
import { BCardGroup } from "bootstrap-vue";
33
import { computed } from "vue";
44
5+
import { withPrefix } from "@/utils/redirect";
6+
57
import type { ParsedFetchWorkbookForCollectionCollectionType, RulesCreatingWhat } from "./types";
68
79
import CardDownloadWorkbook from "./CardDownloadWorkbook.vue";
@@ -25,7 +27,7 @@ const emit = defineEmits(["workbookContents"]);
2527
const generateWorkbookHref = computed(() => {
2628
let type;
2729
if (props.creatingWhat === "datasets") {
28-
type = "dataset";
30+
type = "datasets";
2931
} else if (props.includeCollectionName) {
3032
type = "collections";
3133
} else {
@@ -36,7 +38,7 @@ const generateWorkbookHref = computed(() => {
3638
if (type === "collection" || type === "collections") {
3739
url = `${url}&collection_type=${props.collectionType}`;
3840
}
39-
return url;
41+
return withPrefix(url);
4042
});
4143
</script>
4244

lib/galaxy/tool_util/xsd/galaxy.xsd

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -72,6 +72,10 @@ List of behavior changes associated with profile versions:
7272
7373
- require a valid `data_ref` attribute for `data_column` parameters
7474
75+
### 25.1
76+
77+
- Do not use user preferences to store credentials for tools anymore. Use the new `<credentials>` tag in the `<requirements>` section of the tool XML instead.
78+
7579
### Examples
7680
7781
A normal tool:

0 commit comments

Comments
 (0)