Skip to content

Commit

Permalink
update dependencies to fix security vulnerability (#210)
Browse files Browse the repository at this point in the history
  • Loading branch information
edaniszewski authored Oct 1, 2018
1 parent 54853b3 commit fde15ee
Show file tree
Hide file tree
Showing 5 changed files with 6 additions and 8 deletions.
2 changes: 1 addition & 1 deletion Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -126,7 +126,7 @@ run: docker ## Build and run Synse Server with emulator locally (localhost:5000
test: pycache-clean test-unit test-integration test-end-to-end ## Run all tests

.PHONY: test-end-to-end
test-end-to-end: pycache-clean req-translations ## Run the end to end tests
test-end-to-end: pycache-clean req-translations docker ## Run the end to end tests
ifdef HAS_PY36
docker-compose -f compose/synse.yml up -d --build
tox tests/end_to_end
Expand Down
3 changes: 0 additions & 3 deletions compose/synse.yml
Original file line number Diff line number Diff line change
Expand Up @@ -10,9 +10,6 @@ services:
synse-server:
container_name: synse-server
image: vaporio/synse-server:local
build:
context: ..
dockerfile: dockerfile/synse.dockerfile
environment:
- SYNSE_LOGGING=debug
ports:
Expand Down
5 changes: 3 additions & 2 deletions requirements.txt
Original file line number Diff line number Diff line change
Expand Up @@ -16,6 +16,7 @@ httptools==0.0.11 # via sanic
idna==2.7 # via requests
ipaddress==1.0.22 # via kubernetes
kubernetes==6.0.0
multidict==4.4.2 # via sanic
oauthlib==2.1.0 # via requests-oauthlib
protobuf==3.5.2.post1 # via grpcio
pyasn1-modules==0.2.1 # via google-auth
Expand All @@ -25,11 +26,11 @@ pyyaml==3.12
requests-oauthlib==1.0.0 # via kubernetes
requests==2.19.1 # via kubernetes, requests-oauthlib
rsa==3.4.2 # via google-auth
sanic==0.7.0
sanic==0.8.3
six==1.11.0 # via google-auth, grpcio, kubernetes, protobuf, python-dateutil, websocket-client
synse-grpc==1.0.1
ujson==1.35 # via sanic
urllib3==1.23 # via kubernetes, requests
uvloop==0.9.1 # via sanic
websocket-client==0.48.0 # via kubernetes
websockets==4.0.1 # via sanic
websockets==5.0.1 # via sanic
2 changes: 1 addition & 1 deletion setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -41,7 +41,7 @@
'grpcio',
'kubernetes',
'pyyaml',
'sanic',
'sanic>=0.8.0',
'synse-grpc>=1.0.1',
],
tests_require=[
Expand Down
2 changes: 1 addition & 1 deletion synse/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
"""

__title__ = 'synse'
__version__ = '2.1.1'
__version__ = '2.1.2'
__description__ = 'Synse Server'
__author__ = 'Vapor IO'
__author_email__ = 'vapor@vapor.io'
Expand Down

0 comments on commit fde15ee

Please sign in to comment.