Skip to content

Commit af89ce6

Browse files
chore: release v2.9.0 (#3686)
* fix(service): accept commit-sha in config.show (#3685) * feat: add cloud storage support for session start (#3629) * chore: release v2.9.0 * update changelog
1 parent 48ff700 commit af89ce6

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

67 files changed

+1838
-812
lines changed

.pre-commit-config.yaml

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -43,6 +43,7 @@ repos:
4343
- --ignore=D105,D107,D202,D203,D212,D213,D401,D406,D407,D410,D411,D413
4444
additional_dependencies:
4545
- toml
46+
exclude: ^renku/ui/service/views/
4647
- repo: https://github.com/koalaman/shellcheck-precommit
4748
rev: v0.8.0
4849
hooks:

CHANGES.rst

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

21+
`2.9.0 <https://github.com/SwissDataScienceCenter/renku-python/compare/v2.8.2...v2.9.0>`__ (2024-01-17)
22+
-------------------------------------------------------------------------------------------------------
23+
24+
25+
Features
26+
~~~~~~~~
27+
28+
- add cloud storage support for session start
29+
(`#3629 <https://github.com/SwissDataScienceCenter/renku-python/issues/3629>`__)
30+
(`ec3173a <https://github.com/SwissDataScienceCenter/renku-python/commit/ec3173a8601d8dbf93626778b3da0bdce68e9060>`__)
31+
- **service:** date_published in datasets.list response
32+
(`#3648 <https://github.com/SwissDataScienceCenter/renku-python/issues/3648>`__)
33+
(`a7f4a22 <https://github.com/SwissDataScienceCenter/renku-python/commit/a7f4a224a1cc2108c3b091b751187bf03ebb83e4>`__)
34+
2135
`2.8.2 <https://github.com/SwissDataScienceCenter/renku-python/compare/v2.8.1...v2.8.2>`__ (2024-01-15)
2236
-------------------------------------------------------------------------------------------------------
2337

docs/_static/cheatsheet/cheatsheet.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -441,7 +441,7 @@
441441
]
442442
},
443443
{
444-
"command": "$ renku storage pull <path>...",
444+
"command": "$ renku lfs pull <path>...",
445445
"description": "Pull <path>'s from external storage (LFS).",
446446
"target": [
447447
"rp"
-2 Bytes
Binary file not shown.

docs/cheatsheet_hash

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,2 +1,2 @@
1-
5316163d742bdb6792ed8bcb35031f6c cheatsheet.tex
1+
b8a4fc75c7ba023773b0ccc2e98ebc02 cheatsheet.tex
22
c70c179e07f04186ec05497564165f11 sdsc_cheatsheet.cls

docs/cheatsheet_json_hash

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
1856fb451165d013777c7c4cdd56e575 cheatsheet.json
1+
171f230e9ec6372e52129df1bfcf485a cheatsheet.json

docs/reference/commands/storage.rst

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,4 +3,4 @@
33
renku storage
44
*************
55

6-
.. automodule:: renku.ui.cli.storage
6+
.. automodule:: renku.ui.cli.lfs

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.8.2
6+
version: 2.9.0

helm-chart/renku-core/values.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,4 +8,4 @@ global:
88
versions:
99
latest:
1010
image:
11-
tag: v2.8.2
11+
tag: v2.9.0

pyproject.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -241,7 +241,7 @@ pattern = """(?x) (?# ignore whitespace
241241
"""
242242

243243
[tool.pytest.ini_options]
244-
addopts = "--doctest-glob=\"*.rst\" --doctest-modules --cov --cov-report=term-missing --ignore=docs/cheatsheet/ --tb=line"
244+
addopts = "--doctest-glob=\"*.rst\" --doctest-modules --cov --cov-report=term-missing --ignore=docs/cheatsheet/ -ra"
245245
doctest_optionflags = "ALLOW_UNICODE"
246246
flake8-ignore = ["*.py", "E121", "E126", "E203", "E226", "E231", "W503", "W504", "docs/conf.py", "docs/cheatsheet/conf.py", "ALL"]
247247
flake8-max-line-length = 120

0 commit comments

Comments
 (0)