@databiosphere/findable-ui 49.4.0 → 49.4.1

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
@@ -1,3 +1,3 @@
1
1
  {
2
- ".": "49.4.0"
2
+ ".": "49.4.1"
3
3
  }
package/CHANGELOG.md CHANGED
@@ -1,5 +1,13 @@
1
1
  # Changelog
2
2
 
3
+ ## [49.4.1](https://github.com/DataBiosphere/findable-ui/compare/v49.4.0...v49.4.1) (2026-03-10)
4
+
5
+
6
+ ### Bug Fixes
7
+
8
+ * update metadata download to use azul_url ([#817](https://github.com/DataBiosphere/findable-ui/issues/817)) ([e493d99](https://github.com/DataBiosphere/findable-ui/commit/e493d9938b3603ccd0bbf0d7f5dda2586ec53d00))
9
+ * update metadata download to use azul_url [#816](https://github.com/DataBiosphere/findable-ui/issues/816) ([e493d99](https://github.com/DataBiosphere/findable-ui/commit/e493d9938b3603ccd0bbf0d7f5dda2586ec53d00))
10
+
3
11
  ## [49.4.0](https://github.com/DataBiosphere/findable-ui/compare/v49.3.0...v49.4.0) (2026-03-04)
4
12
 
5
13
 
@@ -71,6 +71,6 @@ function getManifestSpreadsheet(files) {
71
71
  const file = files[0];
72
72
  return {
73
73
  fileName: file.files[0]?.name,
74
- fileUrl: buildFetchFileUrl(file.files[0]?.url),
74
+ fileUrl: buildFetchFileUrl(file.files[0]?.azul_url),
75
75
  };
76
76
  }
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@databiosphere/findable-ui",
3
- "version": "49.4.0",
3
+ "version": "49.4.1",
4
4
  "description": "",
5
5
  "scripts": {
6
6
  "test": "node --experimental-vm-modules node_modules/jest/bin/jest.js",
@@ -105,6 +105,6 @@ function getManifestSpreadsheet(
105
105
 
106
106
  return {
107
107
  fileName: file.files[0]?.name,
108
- fileUrl: buildFetchFileUrl(file.files[0]?.url),
108
+ fileUrl: buildFetchFileUrl(file.files[0]?.azul_url),
109
109
  };
110
110
  }