Skip to content

Commit 869ea93

Browse files
chore: release v1.0.6 (#2689)
1 parent 39cf089 commit 869ea93

Some content is hidden

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

45 files changed

+1031
-752
lines changed

.github/workflows/test_deploy.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -157,7 +157,7 @@ jobs:
157157
git config --global --add user.email "[email protected]"
158158
- name: Build cheatsheet
159159
run: |
160-
sphinx-build -b latex -c docs/cheatsheet/ docs docs/latex/
160+
sphinx-build -b latex -c docs/cheatsheet/ docs docs/latex/ -W
161161
cd docs/latex/
162162
xelatex cheatsheet
163163
cat <(md5sum cheatsheet.tex) <(md5sum sdsc_cheatsheet.cls) > ../cheatsheet_hash_new

.pre-commit-config.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
repos:
22
- repo: https://github.com/ambv/black
3-
rev: 21.6b0
3+
rev: 22.1.0
44
hooks:
55
- id: black
66
language_version: python3

CHANGES.rst

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

21+
`1.0.6 <https://github.com/SwissDataScienceCenter/renku-python/compare/v1.0.5...v1.0.6>`__ (2022-02-15)
22+
-------------------------------------------------------------------------------------------------------
23+
24+
Bug Fixes
25+
~~~~~~~~~
26+
27+
- **core:** fix file size in dataset imported from renku
28+
(`#2637 <https://github.com/SwissDataScienceCenter/renku-python/issues/2637>`__)
29+
(`fc58c81 <https://github.com/SwissDataScienceCenter/renku-python/commit/fc58c8100ebb0ecb31038d21f899ae953758a04d>`__)
30+
- **service:** bump Pillow to 9.0+ to fix security vulnerability
31+
(`#2645 <https://github.com/SwissDataScienceCenter/renku-python/issues/2645>`__)
32+
(`6002279 <https://github.com/SwissDataScienceCenter/renku-python/commit/6002279767c3b2ce9cfe2ee56691a47c8869780d>`__)
33+
- **service:** remove json requirement from project.lock_status
34+
(`#2676 <https://github.com/SwissDataScienceCenter/renku-python/issues/2676>`__)
35+
(`7744a2d <https://github.com/SwissDataScienceCenter/renku-python/commit/7744a2d629950bad13d9d0374ba11e0841a4a962>`__)
36+
37+
Features
38+
~~~~~~~~
39+
40+
- **service:** expose warnings and errors on cache.migrate endpoint
41+
(`#2681 <https://github.com/SwissDataScienceCenter/renku-python/issues/2681>`__)
42+
(`8d4db90 <https://github.com/SwissDataScienceCenter/renku-python/commit/8d4db905598a512f2e351f081d519cf3295fd14b>`__)
43+
44+
2145
`1.0.5 <https://github.com/SwissDataScienceCenter/renku-python/compare/v1.0.4...v1.0.5>`__ (2022-02-07)
2246
-------------------------------------------------------------------------------------------------------
2347

-1 Bytes
Binary file not shown.

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: 1.0.5
6+
version: 1.0.6

helm-chart/renku-core/templates/deployment.yaml

Lines changed: 12 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -95,10 +95,12 @@ spec:
9595
value: /renku/openapi.json
9696
- name: SERVICE_LOG_LEVEL
9797
value: {{ $.Values.logLevel }}
98+
- name: SENTRY_ENABLED
99+
value: {{ $.Values.sentry.enabled | quote }}
98100
- name: SENTRY_DSN
99101
value: {{ $.Values.sentry.dsn }}
100102
- name: SENTRY_SAMPLE_RATE
101-
value: {{ $.Values.sentry.sample_rate | quote }}
103+
value: {{ $.Values.sentry.sampleRate | quote }}
102104
- name: SENTRY_ENV
103105
value: {{ $.Values.sentry.environment }}
104106
- name: DEBUG_MODE
@@ -163,10 +165,12 @@ spec:
163165
value: {{ $.Values.cleanupProjectsTTL | quote }}
164166
- name: DEPLOYMENT_LOG_LEVEL
165167
value: {{ $.Values.logLevel }}
168+
- name: SENTRY_ENABLED
169+
value: {{ $.Values.sentry.enabled | quote }}
166170
- name: SENTRY_DSN
167171
value: {{ $.Values.sentry.dsn }}
168172
- name: SENTRY_SAMPLE_RATE
169-
value: {{ $.Values.sentry.sample_rate | quote }}
173+
value: {{ $.Values.sentry.sampleRate | quote }}
170174
- name: SENTRY_ENV
171175
value: {{ $.Values.sentry.environment }}
172176
- name: GIT_LFS_SKIP_SMUDGE
@@ -206,10 +210,12 @@ spec:
206210
value: {{ $.Values.cleanupProjectsTTL | quote }}
207211
- name: DEPLOYMENT_LOG_LEVEL
208212
value: {{ $.Values.logLevel }}
213+
- name: SENTRY_ENABLED
214+
value: {{ $.Values.sentry.enabled | quote }}
209215
- name: SENTRY_DSN
210216
value: {{ $.Values.sentry.dsn }}
211217
- name: SENTRY_SAMPLE_RATE
212-
value: {{ $.Values.sentry.sample_rate | quote }}
218+
value: {{ $.Values.sentry.sampleRate | quote }}
213219
- name: SENTRY_ENV
214220
value: {{ $.Values.sentry.environment }}
215221
- name: GIT_LFS_SKIP_SMUDGE
@@ -241,10 +247,12 @@ spec:
241247
value: {{ $.Values.cacheDirectory | quote }}
242248
- name: RENKU_SVC_CLEANUP_INTERVAL
243249
value: {{ $.Values.cleanupInterval | quote }}
250+
- name: SENTRY_ENABLED
251+
value: {{ $.Values.sentry.enabled | quote }}
244252
- name: SENTRY_DSN
245253
value: {{ $.Values.sentry.dsn }}
246254
- name: SENTRY_SAMPLE_RATE
247-
value: {{ $.Values.sentry.sample_rate | quote }}
255+
value: {{ $.Values.sentry.sampleRate | quote }}
248256
- name: SENTRY_ENV
249257
value: {{ $.Values.sentry.environment }}
250258
{{- include "certificates.env.python" $ | nindent 12 }}

helm-chart/renku-core/values.schema.json

Lines changed: 5 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -152,6 +152,10 @@
152152
"sentry": {
153153
"description": "Definition of sentry instance to use to log warnings/errors",
154154
"properties": {
155+
"enabled": {
156+
"description": "Flag to turn on/off Sentry",
157+
"type": "boolean"
158+
},
155159
"dsn": {
156160
"description": "URI of the sentry Data Source Name",
157161
"type": ["string", "null"]
@@ -160,7 +164,7 @@
160164
"description": "Name of the sentry environment to post to",
161165
"type": ["string", "null"]
162166
},
163-
"sample_rate": {
167+
"sampleRate": {
164168
"description": "Portion of requests to track in Sentry performance tracing",
165169
"type": ["number", "null"]
166170
}

helm-chart/renku-core/values.yaml

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -98,9 +98,10 @@ redis:
9898

9999
## Add sentry configuration
100100
sentry:
101+
enabled: false
101102
dsn:
102103
environment:
103-
sample_rate: 0.2
104+
sampleRate: 0.2
104105

105106
## Enable debug mode
106107
## WARNING: DO NOT enable this in production as it exposes the service container. It is to be used for
@@ -117,7 +118,7 @@ versions:
117118
fullnameOverride: ""
118119
image:
119120
repository: renku/renku-core
120-
tag: "v1.0.5"
121+
tag: "v1.0.6"
121122
pullPolicy: IfNotPresent
122123
v8:
123124
name: v8

0 commit comments

Comments
 (0)