Skip to content

Commit 17b6929

Browse files
authored
1.3.1: fix vulnerabilities (#645)
Add CHANGELOG.md Signed-off-by: Laurent Rochette <laurent.rochette@codefresh.io>
1 parent 1e3840c commit 17b6929

File tree

4 files changed

+18
-4
lines changed

4 files changed

+18
-4
lines changed

incubating/argo-cd-sync/CHANGELOG.md

Lines changed: 14 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,14 @@
1+
# Changelog
2+
## [1.3.1] - 2023-09-18
3+
### Changed
4+
5+
### Fixed
6+
- CVE-2023-37920 - upgrade Python module certifi to 2023.7.22
7+
- CVE-2019-8457 - upgrade base image to python:3.11.5-slim-bookworm
8+
9+
## [1.3.0] - 2023-05-19
10+
### Changed
11+
- Adding IMAGE_NAME parameter
12+
- Adding example
13+
14+
### Fixed

incubating/argo-cd-sync/Dockerfile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
FROM python:3.11.2-slim-buster
1+
FROM python:3.11.5-slim-bookworm
22
WORKDIR /app
33
COPY requirements.txt requirements.txt
44
RUN pip3 install -r requirements.txt

incubating/argo-cd-sync/requirements.txt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
backoff==2.2.1
2-
certifi==2022.12.7
2+
certifi==2023.7.22
33
charset-normalizer==3.1.0
44
gql==3.4.0
55
graphql-core==3.2.3

incubating/argo-cd-sync/step.yaml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
kind: step-type
22
metadata:
33
name: argo-cd-sync
4-
version: 1.3.0
4+
version: 1.3.1
55
isPublic: true
66
description: Syncs Argo CD apps managed by our GitOps Runtimes
77
sources:
@@ -111,7 +111,7 @@ spec:
111111
},
112112
"IMAGE_TAG": {
113113
"type": "string",
114-
"default": "1.3.0",
114+
"default": "1.3.1",
115115
"description": "OPTIONAL - To overwrite the tag to use"
116116
}
117117
}

0 commit comments

Comments
 (0)