Skip to content

Commit 902276c

Browse files
authored
Bump PyYAML to 6.0.1 (#857)
1 parent 2c67dd5 commit 902276c

8 files changed

+9
-10
lines changed

dev/bump_version.json

-1
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,6 @@
44
"mwdb/version.py": "app_version = \"$VERSION\"",
55
"mwdb/web/package.json": "\"name\": \"mwdb-web\",\\s+\"version\": \"$VERSION\"",
66
"mwdb/web/package-lock.json": "\"name\": \"mwdb-web\",\\s+\"version\": \"$VERSION\"",
7-
"mwdb/web/src/commons/package.json": "\"version\": \"$VERSION\"",
87
"docs/conf.py": "release = '$VERSION'",
98
"docker-compose.yml": "image: certpl/mwdb(?:-web)?\\:v$VERSION"
109
},

docker-compose.yml

+2-2
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@ services:
99
depends_on:
1010
- postgres
1111
- redis
12-
image: certpl/mwdb:v2.9.0
12+
image: certpl/mwdb:v2.9.1
1313
restart: on-failure
1414
env_file:
1515
# NOTE: use gen_vars.sh in order to generate this file
@@ -22,7 +22,7 @@ services:
2222
build:
2323
context: .
2424
dockerfile: deploy/docker/Dockerfile-web
25-
image: certpl/mwdb-web:v2.9.0
25+
image: certpl/mwdb-web:v2.9.1
2626
ports:
2727
- "80:80"
2828
restart: on-failure

docs/conf.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,7 @@
2121
author = 'CERT Polska'
2222

2323
# The full version, including alpha/beta/rc tags
24-
release = '2.9.0'
24+
release = '2.9.1'
2525

2626

2727
# -- General configuration ---------------------------------------------------

mwdb/version.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -4,5 +4,5 @@
44
except IOError:
55
git_revision = ""
66

7-
app_version = "2.9.0"
7+
app_version = "2.9.1"
88
app_build_version = f"{app_version}+{git_revision}" if git_revision else app_version

mwdb/web/package-lock.json

+2-2
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

mwdb/web/package.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "mwdb-web",
3-
"version": "2.9.0",
3+
"version": "2.9.1",
44
"private": true,
55
"scripts": {
66
"dev": "vite",

requirements.txt

+1-1
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@ luqum==0.7.4
1717
python-json-logger==2.0.2
1818
click==8.1.3
1919
click-default-group==1.2.2
20-
PyYAML==5.4
20+
PyYAML==6.0.1
2121
redis==4.5.4
2222
boto3==1.24.38
2323
typed-config==1.1.0

setup.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@
77
"""
88

99
setup(name="mwdb-core",
10-
version="2.9.0",
10+
version="2.9.1",
1111
description="MWDB Core malware database",
1212
long_description=LONG_DESCRIPTION,
1313
author="CERT Polska",

0 commit comments

Comments
 (0)