@databiosphere/findable-ui 50.1.0 → 50.1.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
- ".": "50.1.0"
2
+ ".": "50.1.1"
3
3
  }
package/CHANGELOG.md CHANGED
@@ -1,5 +1,13 @@
1
1
  # Changelog
2
2
 
3
+ ## [50.1.1](https://github.com/DataBiosphere/findable-ui/compare/v50.1.0...v50.1.1) (2026-03-23)
4
+
5
+
6
+ ### Bug Fixes
7
+
8
+ * update NIH account text to NIH Researcher Auth Service (RAS) account ([#835](https://github.com/DataBiosphere/findable-ui/issues/835)) ([b5fbb62](https://github.com/DataBiosphere/findable-ui/commit/b5fbb6277cef7c586b7e4157f509d904fb719e59))
9
+ * update NIH account text to NIH Researcher Auth Service (RAS) account [#4719](https://github.com/DataBiosphere/findable-ui/issues/4719) ([b5fbb62](https://github.com/DataBiosphere/findable-ui/commit/b5fbb6277cef7c586b7e4157f509d904fb719e59))
10
+
3
11
  ## [50.1.0](https://github.com/DataBiosphere/findable-ui/compare/v50.0.0...v50.1.0) (2026-03-20)
4
12
 
5
13
 
@@ -30,7 +30,7 @@ function getExpireTimeInDays(expirationTimestamp) {
30
30
  */
31
31
  function getExpiryMessage(linkExpired, expirationTimestamp) {
32
32
  if (linkExpired) {
33
- return "Your NIH account link has expired.";
33
+ return "Your NIH Researcher Auth Service (RAS) account link has expired.";
34
34
  }
35
- return `Your NIH account link will expire in ${getExpireTimeInDays(expirationTimestamp)} days.`;
35
+ return `Your NIH Researcher Auth Service (RAS) account link will expire in ${getExpireTimeInDays(expirationTimestamp)} days.`;
36
36
  }
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@databiosphere/findable-ui",
3
- "version": "50.1.0",
3
+ "version": "50.1.1",
4
4
  "description": "",
5
5
  "scripts": {
6
6
  "test": "node --experimental-vm-modules node_modules/jest/bin/jest.js",
@@ -58,9 +58,9 @@ function getExpiryMessage(
58
58
  expirationTimestamp?: string,
59
59
  ): string {
60
60
  if (linkExpired) {
61
- return "Your NIH account link has expired.";
61
+ return "Your NIH Researcher Auth Service (RAS) account link has expired.";
62
62
  }
63
- return `Your NIH account link will expire in ${getExpireTimeInDays(
63
+ return `Your NIH Researcher Auth Service (RAS) account link will expire in ${getExpireTimeInDays(
64
64
  expirationTimestamp,
65
65
  )} days.`;
66
66
  }