From c9a7818d2285c6e8f3f193e11cce20da5b946d6b Mon Sep 17 00:00:00 2001 From: Julia Iwinski Date: Mon, 17 Nov 2025 14:15:35 -0700 Subject: [PATCH 1/2] IFMC-3161 append string argument to URL --- cypress/e2e/spec.cy.js | 4 ++-- src/App.js | 2 +- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/cypress/e2e/spec.cy.js b/cypress/e2e/spec.cy.js index a45e398..09773d5 100644 --- a/cypress/e2e/spec.cy.js +++ b/cypress/e2e/spec.cy.js @@ -25,7 +25,7 @@ context('SACDS', () => { }); it('Displays copyright text', () => { - cy.contains('© Copyright 2020, InCommon, LLC').should('be.visible'); + cy.contains('© Copyright 2024, InCommon, LLC').should('be.visible'); }); @@ -81,7 +81,7 @@ context('SACDS', () => { cy.get('.sa-button').should( 'have.attr', 'href', - `https://service.seamlessaccess.org/ds/?entityID=${entityID}&return=${returnUrl}` + `https://service.seamlessaccess.org/ds/?entityID=${entityID}&return=${encodeURIComponent(returnUrl)}&trustProfile=incommon-wayfinder` ); }); }) diff --git a/src/App.js b/src/App.js index 9e2e7df..8a7b1b0 100644 --- a/src/App.js +++ b/src/App.js @@ -134,7 +134,7 @@ function App() {

You are accessing the following service: {displayName}

Select your home organization:

- +
Seamless Access Logo
From 91dd9a7f6b01935c1a467a8578292a45e6365538 Mon Sep 17 00:00:00 2001 From: Dominic Martinez Date: Wed, 19 Nov 2025 12:34:17 -0700 Subject: [PATCH 2/2] Update README and version --- README.md | 10 ++++++++-- VERSION.txt | 2 +- 2 files changed, 9 insertions(+), 3 deletions(-) diff --git a/README.md b/README.md index 89210ce..2033232 100644 --- a/README.md +++ b/README.md @@ -32,9 +32,15 @@ This bundles React in production mode and compresses all the files into a versio The VERSIONS.txt file found in the root directory of this repo follows the Semantic Versioning system and should be updated accordingly whenever a new release is to be prepared. -Once the bundled artifact has been produced, it should be included as a binary attachment in a new GHE release corresponding to the appropriate commit complete with a version number tag matching that which is found in the VERSION.txt file. +Once the bundled artifact has been produced via +```sh +make build +``` +it should be included as a binary attachment in a new GHE release corresponding to the appropriate commit complete with a version number tag matching that which is found in the VERSION.txt file. + +The versioned release should then downloaded, decompressed, and put into the source directory within the IaC for wayfinder (currently `infrastructure-modules/wayfinder/src`). -The versioned release should then downloaded, decompressed, and put into the source directory within the IaC for wayfinder. At this point, applying the IaC changes will deploy the webapp. +At this point, applying the IaC changes will deploy the webapp. ## Other Available Commands diff --git a/VERSION.txt b/VERSION.txt index 7dea76e..6d7de6e 100644 --- a/VERSION.txt +++ b/VERSION.txt @@ -1 +1 @@ -1.0.1 +1.0.2