Skip to content

Commit 80f0268

Browse files
committed
Merge branch 'master' into develop
2 parents f2a7632 + fc50767 commit 80f0268

File tree

5 files changed

+38
-5
lines changed

5 files changed

+38
-5
lines changed

CHANGES.rst

Lines changed: 32 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -18,6 +18,38 @@
1818
Changes
1919
=======
2020

21+
`2.5.0 <https://github.com/SwissDataScienceCenter/renku-python/compare/v2.4.1...v2.5.0>`__ (2023-06-02)
22+
-------------------------------------------------------------------------------------------------------
23+
24+
Bug Fixes
25+
~~~~~~~~~
26+
27+
- **cli:** fix dataset update with external files
28+
(`#3379 <https://github.com/SwissDataScienceCenter/renku-python/issues/3379>`__)
29+
(`e02e5bf <https://github.com/SwissDataScienceCenter/renku-python/commit/e02e5bf846f8e63e3e2b116edb1bc7ee54bacdbc>`__)
30+
- **cli:** fix special paths in workflow files and bump `toil` / `cwltool`
31+
(`#3489 <https://github.com/SwissDataScienceCenter/renku-python/issues/3489>`__)
32+
(`28086cf <https://github.com/SwissDataScienceCenter/renku-python/commit/28086cf1361c86109c8e0e1c59c5704a5a663f30>`__)
33+
- **service:** fix working with branches
34+
(`#3472 <https://github.com/SwissDataScienceCenter/renku-python/issues/3472>`__)
35+
(`0eaf204 <https://github.com/SwissDataScienceCenter/renku-python/commit/0eaf204365d38bbf82bd2d0df357abbf61c18548>`__)
36+
- **service:** return proper errors on migrations check endpoint
37+
(`#3334 <https://github.com/SwissDataScienceCenter/renku-python/issues/3334>`__)
38+
(`6237dc7 <https://github.com/SwissDataScienceCenter/renku-python/commit/6237dc71eb894cfef2b013d2c3fd5dd7defd6499>`__)
39+
40+
Features
41+
~~~~~~~~
42+
43+
- **core:** pass docker run args to session start
44+
(`#3487 <https://github.com/SwissDataScienceCenter/renku-python/issues/3487>`__)
45+
(`9cbb465 <https://github.com/SwissDataScienceCenter/renku-python/commit/9cbb46591a48720e04d0adc03e0305855f3fe836>`__)
46+
- **core:** shell completion for sessions
47+
(`#3450 <https://github.com/SwissDataScienceCenter/renku-python/issues/3450>`__)
48+
(`9fa63dd <https://github.com/SwissDataScienceCenter/renku-python/commit/9fa63dd869f4424b076e12c9ed351c6e0e7c7c47>`__)
49+
- **dataset:** export dataset keywords
50+
(`#3454 <https://github.com/SwissDataScienceCenter/renku-python/issues/3454>`__)
51+
(`feb3f14 <https://github.com/SwissDataScienceCenter/renku-python/commit/feb3f1435e9de0e75a6e01075c13b1bc58f70989>`__)
52+
2153
`2.4.1 <https://github.com/SwissDataScienceCenter/renku-python/compare/v2.4.0...v2.4.1>`__ (2023-05-12)
2254
-------------------------------------------------------------------------------------------------------
2355

docs/spelling_wordlist.txt

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -281,6 +281,7 @@ unlinking
281281
unmapped
282282
unmerged
283283
Unmount
284+
unmount
284285
unpushed
285286
untracked
286287
untracked

helm-chart/renku-core/Chart.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,4 +3,4 @@ appVersion: "1.0"
33
description: A Helm chart for Kubernetes
44
name: renku-core
55
icon: https://avatars0.githubusercontent.com/u/53332360?s=400&u=a4311d22842343604ef61a8c8a1e5793209a67e9&v=4
6-
version: 2.4.1
6+
version: 2.5.0

helm-chart/renku-core/values.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -97,7 +97,7 @@ versions:
9797
fullnameOverride: ""
9898
image:
9999
repository: renku/renku-core
100-
tag: "v2.4.1"
100+
tag: "v2.5.0"
101101
pullPolicy: IfNotPresent
102102
v9:
103103
name: v9

renku/ui/cli/dataset.py

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1155,7 +1155,7 @@ def get_dataset_files(records):
11551155
ctx.exit(1)
11561156

11571157

1158-
@dataset.command(hidden=True)
1158+
@dataset.command()
11591159
@click.argument("name", shell_complete=shell_complete_datasets)
11601160
@click.option(
11611161
"-l",
@@ -1173,7 +1173,7 @@ def pull(name, location):
11731173
pull_cloud_storage_command().with_communicator(communicator).build().execute(name=name, location=location)
11741174

11751175

1176-
@dataset.command(hidden=True)
1176+
@dataset.command()
11771177
@click.argument("name", shell_complete=shell_complete_datasets)
11781178
@click.option(
11791179
"-e",
@@ -1197,7 +1197,7 @@ def mount(name, existing, unmount, yes):
11971197
command.execute(name=name, existing=existing, yes=yes)
11981198

11991199

1200-
@dataset.command(hidden=True)
1200+
@dataset.command()
12011201
@click.argument("name", shell_complete=shell_complete_datasets)
12021202
def unmount(name):
12031203
"""Unmount a backend storage in the dataset's data directory."""

0 commit comments

Comments
 (0)