Skip to content

Commit

Permalink
fix: update renku-ui to 3.37.1 (#3801)
Browse files Browse the repository at this point in the history
Updates the UI to fix the HTTP 500 upon logging in with gateway 1.1.0.
  • Loading branch information
leafty authored Oct 9, 2024
1 parent 2cf4645 commit 2710e2d
Show file tree
Hide file tree
Showing 3 changed files with 5 additions and 4 deletions.
1 change: 1 addition & 0 deletions CHANGELOG.rst
Original file line number Diff line number Diff line change
Expand Up @@ -49,6 +49,7 @@ Individual Components
- `renku-search 0.6.1 <https://github.com/SwissDataScienceCenter/renku-search/releases/tag/v0.6.0>`_
- `renku-ui 3.36.0 <https://github.com/SwissDataScienceCenter/renku-ui/releases/tag/3.36.0>`_
- `renku-ui 3.37.0 <https://github.com/SwissDataScienceCenter/renku-ui/releases/tag/3.37.0>`_
- `renku-ui 3.37.1 <https://github.com/SwissDataScienceCenter/renku-ui/releases/tag/3.37.1>`_
- `renku-gateway 1.1.0 <https://github.com/SwissDataScienceCenter/renku-gateway/releases/tag/1.1.0>`_
- `renku-data-services 0.21.0 <https://github.com/SwissDataScienceCenter/renku-data-services/releases/tag/v0.21.0>`__
- `renku-data-services 0.22.0 <https://github.com/SwissDataScienceCenter/renku-data-services/releases/tag/v0.22.0>`__
Expand Down
4 changes: 2 additions & 2 deletions cypress-tests/cypress/support/commands/login.ts
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@ const register = (
firstName?: string,
lastName?: string
) => {
cy.visit("/login");
cy.visit("/api/auth/login");

// ? wait to be assess whether tokens were refreshed automatically or we really need to register
cy.wait(1000); // eslint-disable-line cypress/no-unnecessary-waiting
Expand Down Expand Up @@ -141,7 +141,7 @@ function logout() {
cy.get("#profile-dropdown").should("be.visible").click();
cy.get("#logout-link").should("be.visible").click();
// Make sure we fully log out
cy.wait(1_000);
cy.wait(15_000);
}

export default function registerLoginCommands() {
Expand Down
4 changes: 2 additions & 2 deletions helm-chart/renku/values.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -654,7 +654,7 @@ ui:
replicaCount: 1
image:
repository: renku/renku-ui
tag: "3.37.0"
tag: "3.37.1"
pullPolicy: IfNotPresent
## Optionally specify an array of imagePullSecrets.
## Secrets must be manually created in the namespace.
Expand Down Expand Up @@ -843,7 +843,7 @@ ui:
keepCookies: []
image:
repository: renku/renku-ui-server
tag: "3.37.0"
tag: "3.37.1"
pullPolicy: IfNotPresent
imagePullSecrets: []
nameOverride: ""
Expand Down

0 comments on commit 2710e2d

Please sign in to comment.