Skip to content

Commit 3544b77

Browse files
authored
feat: update to rclone v1.70.0+renku-1 (#903)
1 parent 4f5366a commit 3544b77

File tree

9 files changed

+1193
-58
lines changed

9 files changed

+1193
-58
lines changed

.devcontainer/devcontainer.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -38,7 +38,7 @@
3838
"ghcr.io/devcontainers/features/go:1": {},
3939
"./rclone": {
4040
"rclone_repository": "https://github.com/SwissDataScienceCenter/rclone.git",
41-
"rclone_ref": "v1.69.3+renku-1"
41+
"rclone_ref": "v1.70.0+renku-1"
4242
}
4343
},
4444
"overrideFeatureInstallOrder": [

components/renku_data_services/data_connectors/api.spec.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -766,7 +766,7 @@ components:
766766
type:
767767
type: string
768768
description: data type of option value. RClone has more options but they map to the ones listed here.
769-
enum: ["int", "bool", "string", "Time", "Duration", "MultiEncoder", "SizeSuffix", "SpaceSepList", "CommaSepList", "Tristate", "Encoding", "Bits"]
769+
enum: ["int", "bool", "string", "stringArray", "Time", "Duration", "MultiEncoder", "SizeSuffix", "SpaceSepList", "CommaSepList", "Tristate", "Encoding", "Bits"]
770770
required:
771771
- name
772772
- help

components/renku_data_services/data_connectors/apispec.py

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
# generated by datamodel-codegen:
22
# filename: api.spec.yaml
3-
# timestamp: 2025-04-24T09:27:48+00:00
3+
# timestamp: 2025-06-19T07:18:06+00:00
44

55
from __future__ import annotations
66

@@ -25,6 +25,7 @@ class Type(Enum):
2525
int = "int"
2626
bool = "bool"
2727
string = "string"
28+
stringArray = "stringArray"
2829
Time = "Time"
2930
Duration = "Duration"
3031
MultiEncoder = "MultiEncoder"

components/renku_data_services/storage/api.spec.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -431,7 +431,7 @@ components:
431431
type:
432432
type: string
433433
description: data type of option value. RClone has more options but they map to the ones listed here.
434-
enum: ["int", "bool", "string", "Time", "Duration", "MultiEncoder", "SizeSuffix", "SpaceSepList", "CommaSepList", "Tristate", "Encoding", "Bits"]
434+
enum: ["int", "bool", "string", "stringArray", "Time", "Duration", "MultiEncoder", "SizeSuffix", "SpaceSepList", "CommaSepList", "Tristate", "Encoding", "Bits"]
435435
required:
436436
- name
437437
- help

components/renku_data_services/storage/apispec.py

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
# generated by datamodel-codegen:
22
# filename: api.spec.yaml
3-
# timestamp: 2025-04-17T08:59:31+00:00
3+
# timestamp: 2025-06-19T07:18:05+00:00
44

55
from __future__ import annotations
66

@@ -30,6 +30,7 @@ class Type(Enum):
3030
int = "int"
3131
bool = "bool"
3232
string = "string"
33+
stringArray = "stringArray"
3334
Time = "Time"
3435
Duration = "Duration"
3536
MultiEncoder = "MultiEncoder"

0 commit comments

Comments
 (0)