Skip to content

Commit de5c381

Browse files
committed
chore: bump pyyaml min version
Bump pyyaml minimum version to 6.0 due to vulnerability in 5.0. JIRA: TRIVIAL risk: low
1 parent 9b53837 commit de5c381

File tree

5 files changed

+5
-5
lines changed

5 files changed

+5
-5
lines changed

gooddata-dbt/requirements.txt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
pyyaml>=5.1
1+
pyyaml>=6.0
22
attrs>=21.4.0,<=24.2.0
33
cattrs>=22.1.0,<=24.1.1
44
requests~=2.32.0

gooddata-dbt/setup.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@
88

99
REQUIRES = [
1010
"gooddata-sdk~=1.33.0",
11-
"pyyaml>=5.1",
11+
"pyyaml>=6.0",
1212
"attrs>=21.4.0,<=24.2.0",
1313
"cattrs>=22.1.0,<=24.1.1",
1414
"requests~=2.32.0",

gooddata-sdk/requirements.txt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
python-dateutil >= 2.5.3
2-
pyyaml>=5.1
2+
pyyaml>=6.0
33
attrs>=21.4.0,<=24.2.0
44
cattrs>=22.1.0,<=24.1.1
55
brotli==1.1.0

gooddata-sdk/setup.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@
99
REQUIRES = [
1010
"gooddata-api-client~=1.33.0",
1111
"python-dateutil>=2.5.3",
12-
"pyyaml>=5.1",
12+
"pyyaml>=6.0",
1313
"attrs>=21.4.0,<=24.2.0",
1414
"cattrs>=22.1.0,<=24.1.1",
1515
"brotli==1.1.0",

tests-support/setup.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
from setuptools import find_packages, setup
44

55
REQUIRES = [
6-
"pyyaml>=5.1",
6+
"pyyaml>=6.0",
77
]
88

99
setup(

0 commit comments

Comments
 (0)