Skip to content

Commit

Permalink
Merge branch 'master' into 2131-workflow-visualize
Browse files Browse the repository at this point in the history
  • Loading branch information
Panaetius committed Oct 7, 2021
2 parents c84f1a5 + 1009fd8 commit fdc8e37
Show file tree
Hide file tree
Showing 4 changed files with 13 additions and 3 deletions.
8 changes: 8 additions & 0 deletions CHANGES.rst
Expand Up @@ -18,6 +18,14 @@
Changes
=======

`0.16.2 <https://github.com/SwissDataScienceCenter/renku-python/compare/v0.16.1...v0.16.2>`__ (2021-10-05)
----------------------------------------------------------------------------------------------------------

Bug Fixes
~~~~~~~~~

- **core:** Pin pyshacl version to 0.17.0.post1

`0.16.1 <https://github.com/SwissDataScienceCenter/renku-python/compare/v0.16.0...v0.16.1>`__ (2021-09-13)
----------------------------------------------------------------------------------------------------------

Expand Down
2 changes: 1 addition & 1 deletion helm-chart/renku-core/Chart.yaml
Expand Up @@ -3,4 +3,4 @@ appVersion: "1.0"
description: A Helm chart for Kubernetes
name: renku-core
icon: https://avatars0.githubusercontent.com/u/53332360?s=400&u=a4311d22842343604ef61a8c8a1e5793209a67e9&v=4
version: 0.16.0
version: 0.16.2
4 changes: 3 additions & 1 deletion renku/service/controllers/templates_read_manifest.py
Expand Up @@ -58,7 +58,9 @@ def template_manifest(self):
continue

# NOTE: prevent path traversal attack
icon_path = template_folder / ((template_folder / template["icon"]).resolve().relative_to(template_folder))
icon_path = template_folder / (
(template_folder / template["icon"]).resolve().relative_to(template_folder.resolve())
)

icon = Image.open(icon_path)
icon.thumbnail(MAX_ICON_SIZE)
Expand Down
2 changes: 1 addition & 1 deletion setup.py
Expand Up @@ -186,7 +186,7 @@ def run(self):
"pyjwt==2.1.0",
"pyld==2.0.3",
"pyOpenSSL>=19.0.0,<20.1.0",
"pyshacl>=0.17.0.post2,<0.18",
"pyshacl==0.17.0.post1",
"python-dateutil>=2.6.1,<2.8.3",
"python-editor==1.0.4",
"PyYAML>=5.4,<=5.4.1",
Expand Down

0 comments on commit fdc8e37

Please sign in to comment.