Skip to content

Commit

Permalink
Merge pull request #949 from seriva/fix/CVE-2019-14864
Browse files Browse the repository at this point in the history
Fix for cve-2019-14864 vulnerability and minor issues
  • Loading branch information
seriva authored Feb 27, 2020
2 parents 5fb63ad + 91bafa9 commit 9914a5c
Show file tree
Hide file tree
Showing 6 changed files with 579 additions and 217 deletions.
2 changes: 1 addition & 1 deletion core/src/epicli/.devcontainer/requirements.txt
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
adal==1.2.2
ansible==2.8.6
ansible==2.8.8
antlr4-python3-runtime==4.7.2
applicationinsights==0.11.7
argcomplete==1.10.0
Expand Down
572 changes: 571 additions & 1 deletion core/src/epicli/cli/licenses.py

Large diffs are not rendered by default.

3 changes: 3 additions & 0 deletions core/src/epicli/prepare-bds.bat
Original file line number Diff line number Diff line change
Expand Up @@ -6,3 +6,6 @@ set /p EPICLI_VERSION=<cli/version.txt.py
pip download --no-clean --no-binary all -d %cd%/external/packages/ --build %cd%/external/ %cd%/dist/epicli-%EPICLI_VERSION%-py3-none-any.whl
rmdir /Q /S %cd%\external\packages\
rmdir /Q /S %cd%\external\epicli\
rmdir /Q /S %cd%\external\build\
rmdir /Q /S %cd%\external\dist\
rmdir /Q /S %cd%\external\epicli.egg-info\
3 changes: 3 additions & 0 deletions core/src/epicli/prepare-bds.sh
Original file line number Diff line number Diff line change
Expand Up @@ -6,3 +6,6 @@ read EPICLI_VERSION < cli/version.txt.py
pip download --no-clean --no-binary all -d $PWD/external/packages/ --build $PWD/external/ $PWD/dist/epicli-$EPICLI_VERSION-py3-none-any.whl
rm -rf $PWD/external/packages/
rm -rf $PWD/external/epicli/
rm -rf $PWD/external/build/
rm -rf $PWD/external/dist/
rm -rf $PWD/external/epicli.egg-info/
214 changes: 0 additions & 214 deletions core/src/epicli/requirements.txt

This file was deleted.

2 changes: 1 addition & 1 deletion core/src/epicli/setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@
with open('../../../LICENSE') as f:
license = f.read()

with open('requirements.txt') as f:
with open('.devcontainer/requirements.txt') as f:
requirements = f.read().splitlines()

datadir = os.path.join('data')
Expand Down

0 comments on commit 9914a5c

Please sign in to comment.