Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

release 0.64.0 #3868

Merged
merged 4 commits into from
Jan 16, 2025
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
48 changes: 48 additions & 0 deletions CHANGELOG.rst
Original file line number Diff line number Diff line change
@@ -1,5 +1,53 @@
.. _changelog:

0.64.0
------

User-Facing Changes
~~~~~~~~~~~~~~~~~~~

**🌟 New Features**

- **UI**: Early access to Renku 2.0 now available for users to try out. (`#3474 <https://github.com/SwissDataScienceCenter/renku-ui/pull/3474>`__).
- **UI**: Configure disk storage for Renku 2.0 sessions launchers. (`#3463 <https://github.com/SwissDataScienceCenter/renku-ui/pull/3463>`__).

**✨ Improvements**

- **UI**: Cleanup the project and group settings pages (`#3472 <https://github.com/SwissDataScienceCenter/renku-ui/pull/3472>`__).
- **UI**: Hide the edit button when the user does not have permissions (`#3462 <https://github.com/SwissDataScienceCenter/renku-ui/pull/3462>`__).

**🐞 Bug Fixes**

- **UI**: Display all data connector password fields (`#3477 <https://github.com/SwissDataScienceCenter/renku-ui/pull/3477>`__).
- **UI**: Do not set default values for data connector fields (`#3483 <https://github.com/SwissDataScienceCenter/renku-ui/pull/3483>`__).
- **UI**: Redirect properly when changing slug (`#3467 <https://github.com/SwissDataScienceCenter/renku-ui/pull/3467>`__).
- **Data services**: Re-enable S3 customizations for data connectors, which adds back the Switch S3 provider(`#606 <https://github.com/SwissDataScienceCenter/renku-data-services/pull/606>`__)

Internal Changes
~~~~~~~~~~~~~~~~

**New Features**

- **Data services**: Support saving disk storage size for session launchers.

**Bug Fixes**

- **Data services**: Fix patching wrong environment variables when resuming sessions.
- **Data services**: Allow mount and work directories to be reset for session environments.
- **Data services**: Do not call data service through the network from itself.
- **Data services**: Make HEAD responses empty
- **Data services**: Merge all API files correctly.

Individual Components
~~~~~~~~~~~~~~~~~~~~~

- `renku-data-services 0.30.0 <https://github.com/SwissDataScienceCenter/renku-data-services/releases/tag/v0.30.0>`_
- `renku-data-services 0.31.0 <https://github.com/SwissDataScienceCenter/renku-data-services/releases/tag/v0.31.0>`_
- `renku-data-services 0.31.1 <https://github.com/SwissDataScienceCenter/renku-data-services/releases/tag/v0.31.1>`_
- `renku-ui 3.46.0 <https://github.com/SwissDataScienceCenter/renku-ui/releases/tag/3.46.0>`_
- `renku-ui 3.46.1 <https://github.com/SwissDataScienceCenter/renku-ui/releases/tag/3.46.1>`_


0.63.0
------

Expand Down
10 changes: 5 additions & 5 deletions helm-chart/renku/values.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -519,7 +519,7 @@ ui:
replicaCount: 1
image:
repository: renku/renku-ui
tag: "3.45.0"
tag: "3.46.1"
pullPolicy: IfNotPresent
## Optionally specify an array of imagePullSecrets.
## Secrets must be manually created in the namespace.
Expand Down Expand Up @@ -708,7 +708,7 @@ ui:
keepCookies: []
image:
repository: renku/renku-ui-server
tag: "3.45.0"
tag: "3.46.1"
pullPolicy: IfNotPresent
imagePullSecrets: []
nameOverride: ""
Expand Down Expand Up @@ -1459,14 +1459,14 @@ dataService:
create: true
image:
repository: renku/renku-data-service
tag: "0.29.0"
tag: "0.31.1"
pullPolicy: IfNotPresent
backgroundJobs:
events:
resources: {}
image:
repository: renku/data-service-background-jobs
tag: "0.29.0"
tag: "0.31.1"
pullPolicy: IfNotPresent
total:
resources: {}
Expand Down Expand Up @@ -1519,7 +1519,7 @@ authz:
secretsStorage:
image:
repository: renku/secrets-storage
tag: "0.29.0"
tag: "0.31.1"
pullPolicy: IfNotPresent
service:
type: ClusterIP
Expand Down
Loading