-
Notifications
You must be signed in to change notification settings - Fork 16
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #133 from SUNET/release.1.1
Release.1.1
- Loading branch information
Showing
45 changed files
with
1,840 additions
and
454 deletions.
There are no files selected for viewing
31 changes: 31 additions & 0 deletions
31
alembic/versions/8a635012afa7_add_new_interface_config_types.py
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,31 @@ | ||
"""add new interface config types | ||
Revision ID: 8a635012afa7 | ||
Revises: 395427a732d6 | ||
Create Date: 2020-03-26 09:21:15.439761 | ||
""" | ||
from alembic import op | ||
import sqlalchemy as sa | ||
|
||
|
||
# revision identifiers, used by Alembic. | ||
revision = '8a635012afa7' | ||
down_revision = '395427a732d6' | ||
branch_labels = None | ||
depends_on = None | ||
|
||
|
||
def upgrade(): | ||
# ### commands auto generated by Alembic - please adjust! ### | ||
# ### end Alembic commands ### | ||
op.execute("COMMIT") | ||
op.execute("ALTER TYPE interfaceconfigtype ADD VALUE 'TEMPLATE' AFTER 'CUSTOM'") | ||
op.execute("ALTER TYPE interfaceconfigtype ADD VALUE 'MLAG_PEER' AFTER 'TEMPLATE'") | ||
op.execute("ALTER TYPE interfaceconfigtype ADD VALUE 'ACCESS_DOWNLINK' AFTER 'ACCESS_UPLINK'") | ||
|
||
|
||
def downgrade(): | ||
# ### commands auto generated by Alembic - please adjust! ### | ||
pass | ||
# ### end Alembic commands ### |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -12,4 +12,4 @@ autorestart=true | |
|
||
[program:nginx] | ||
command=/usr/sbin/nginx -g "daemon off;" | ||
autorestart=true | ||
autorestart=true |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,24 +1,26 @@ | ||
alembic==1.4.0 | ||
alembic==1.4.2 | ||
APScheduler==3.6.3 | ||
coverage==5.0.3 | ||
coverage==5.2.1 | ||
Flask-Cors==3.0.8 | ||
Flask-JWT-Extended==3.24.1 | ||
flask-restx==0.1.1 | ||
Flask-SocketIO==4.2.1 | ||
gevent==1.4.0 | ||
GitPython==3.1.0 | ||
mypy==0.761 | ||
flask-restx==0.2.0 | ||
Flask-SocketIO==4.3.1 | ||
gevent==20.6.2 | ||
GitPython==3.1.7 | ||
mypy==0.782 | ||
mypy-extensions==0.4.3 | ||
nornir==2.4.0 | ||
napalm==3.1.0 | ||
nose==1.3.7 | ||
pluggy==0.13.1 | ||
psycopg2==2.8.4 | ||
psycopg2-binary==2.8.4 | ||
redis==3.4.1 | ||
psycopg2==2.8.5 | ||
psycopg2-binary==2.8.5 | ||
redis==3.5.3 | ||
redis-lru==0.1.0 | ||
Sphinx==2.4.3 | ||
SQLAlchemy==1.3.13 | ||
Sphinx==3.2.1 | ||
SQLAlchemy==1.3.19 | ||
sqlalchemy-stubs==0.3 | ||
SQLAlchemy-Utils==0.36.1 | ||
pydantic==1.4 | ||
Werkzeug==0.16.1 | ||
SQLAlchemy-Utils==0.36.8 | ||
pydantic==1.6.1 | ||
Werkzeug==1.0.1 | ||
greenlet==0.4.16 |
Oops, something went wrong.