Skip to content

Commit 444b66a

Browse files
authored
Merge branch 'main' into add-almalinux-advisories
2 parents 930bb9c + a05b65e commit 444b66a

File tree

6 files changed

+13
-3
lines changed

6 files changed

+13
-3
lines changed

CHANGELOG.rst

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,11 @@
11
Release notes
22
=============
33

4+
Version v36.1.3
5+
---------------------
6+
7+
- Increase docker shared memory size #1896
8+
49

510
Version v36.1.2
611
---------------------

docker-compose.yml

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -9,6 +9,7 @@ services:
99
volumes:
1010
- db_data:/var/lib/postgresql/data/
1111
- ./etc/postgresql/postgresql.conf:/etc/postgresql/postgresql.conf
12+
shm_size: 1gb
1213

1314
vulnerablecode_redis:
1415
image: redis

requirements.txt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -27,7 +27,7 @@ dateparser==1.1.1
2727
decorator==5.1.1
2828
defusedxml==0.7.1
2929
distro==1.7.0
30-
Django==4.2.21
30+
Django==4.2.22
3131
django-crispy-forms==2.3
3232
django-environ==0.11.2
3333
django-filter==24.3

setup.cfg

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[metadata]
22
name = vulnerablecode
3-
version = 36.1.2
3+
version = 36.1.3
44
license = Apache-2.0 AND CC-BY-SA-4.0
55

66
# description must be on ONE line https://github.com/pypa/setuptools/issues/1390

vulnerabilities/templates/vulnerability_package_details.html

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -20,6 +20,10 @@
2020
<span class="tag is-white custom">
2121
{{ vulnerability.vulnerability_id }}
2222
</span>
23+
<br />
24+
<a href="{% url 'vulnerability_details' vulnerability.vulnerability_id %}" class="button is-small is-link mt-2">
25+
← Back to Vulnerability {{ vulnerability.vulnerability_id }}
26+
</a>
2327
</div>
2428
</article>
2529
<div id="tab-content">

vulnerablecode/__init__.py

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

1515
import git
1616

17-
__version__ = "36.1.2"
17+
__version__ = "36.1.3"
1818

1919

2020
PROJECT_DIR = Path(__file__).resolve().parent

0 commit comments

Comments
 (0)