Skip to content

Commit b2342fd

Browse files
authored
Merge pull request #6 from flightaware/dependencies_update
Update dependencies in fids backends
2 parents 7e2be74 + 0bea484 commit b2342fd

File tree

6 files changed

+7
-6
lines changed

6 files changed

+7
-6
lines changed

backend/java/pom.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -31,7 +31,7 @@
3131
<dependency>
3232
<groupId>com.fasterxml.jackson.core</groupId>
3333
<artifactId>jackson-databind</artifactId>
34-
<version>2.13.1</version>
34+
<version>2.13.2.1</version>
3535
</dependency>
3636
<dependency>
3737
<groupId>com.github.ben-manes.caffeine</groupId>

backend/python/Dockerfile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -20,4 +20,4 @@ ENV PATH="$VIRTUAL_ENV/bin:$PATH"
2020

2121
COPY --chown=aeroapps backend/python/app.py .
2222

23-
CMD ["python3", "app.py"]
23+
CMD ["python3", "app.py"]

backend/python/Makefile

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -42,4 +42,3 @@ type-check: venv
4242

4343
test: venv
4444
$(call pytool, unittest, discover -s test)
45-

backend/python/requirements/base.in

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,4 +3,4 @@
33
Flask==1.1.2
44
flask-cors==3.0.9
55
requests
6-
Flask-Caching
6+
Flask-Caching

backend/python/requirements/base.txt

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,6 +4,8 @@
44
#
55
# pip-compile --output-file=base.txt base.in
66
#
7+
cachelib==0.9.0
8+
# via flask-caching
79
certifi==2021.10.8
810
# via requests
911
charset-normalizer==2.0.7
@@ -15,7 +17,7 @@ flask==1.1.2
1517
# -r base.in
1618
# flask-caching
1719
# flask-cors
18-
flask-caching==1.10.1
20+
flask-caching==1.11.1
1921
# via -r base.in
2022
flask-cors==3.0.9
2123
# via -r base.in

backend/python/requirements/dev.in

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
11
-c base.txt test.txt
22
mypy==0.740
33
black
4-
pylint==2.4.4
4+
pylint==2.4.4

0 commit comments

Comments
 (0)