Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Release 2023.06.1 #273

Merged
merged 19 commits into from
Jun 23, 2023
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
Show all changes
19 commits
Select commit Hold shift + click to select a range
d56fb2a
fix(alerts): expand nightly downtime window
afeld Feb 28, 2023
294b845
fix(alerts): expand nightly downtime window (#248)
afeld Feb 28, 2023
041bc40
fix: make sure suppression window covers 5-minute windows near start
angela-tran Apr 10, 2023
abd8c42
Fix: expand suppression window (#251)
angela-tran Apr 11, 2023
98e240d
chore(deps): bump requests from 2.28.2 to 2.31.0
dependabot[bot] May 22, 2023
48ab615
chore(deps): bump requests from 2.28.2 to 2.31.0 (#259)
thekaveman Jun 20, 2023
e32b1d1
chore: update to latest eligibility-api
thekaveman Jun 20, 2023
bf5b2e7
Chore: update to latest eligibility-api (#263)
thekaveman Jun 20, 2023
4159438
chore(deps): bump flask from 2.2.3 to 2.3.2
thekaveman Jun 20, 2023
0471058
chore(deps): bump flask-restful from 0.3.9 to 0.3.10
dependabot[bot] Jun 20, 2023
0979946
chore(deps): bump flask-sqlalchemy from 3.0.3 to 3.0.4
dependabot[bot] Jun 20, 2023
65659d1
chore(deps): bump flask from 2.2.3 to 2.3.2 (#257)
thekaveman Jun 21, 2023
25f9c12
chore(deps): bump flask-sqlalchemy from 3.0.4 to 3.0.5
dependabot[bot] Jun 21, 2023
4f14fd4
chore(deps): bump flask-sqlalchemy from 3.0.4 to 3.0.5 (#264)
thekaveman Jun 21, 2023
93e027b
fix: increase time that Azure will wait for container to start
angela-tran Jun 22, 2023
fa99b1b
Fix: increase container startup time (#266)
angela-tran Jun 22, 2023
33260db
chore(release): bump version to 2023.06.1
angela-tran Jun 23, 2023
b1ecf5f
Prepare release 2023.06.1 (#270)
angela-tran Jun 23, 2023
9296f1c
Deploy 2023.06.1 to test (#271)
angela-tran Jun 23, 2023
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
10 changes: 5 additions & 5 deletions requirements.txt
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
eligibility-api==2023.01.1
Flask==2.2.3
Flask-RESTful==0.3.9
Flask-SQLAlchemy==3.0.3
requests==2.28.2
eligibility-api==2023.6.1
Flask==2.3.2
Flask-RESTful==0.3.10
Flask-SQLAlchemy==3.0.5
requests==2.31.0
2 changes: 1 addition & 1 deletion setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@

setup(
name="eligibility-server",
version="2023.02.1",
version="2023.06.1",
description="Server implementation of the Eligibility Verification API",
long_description=long_description,
long_description_content_type="text/markdown",
Expand Down
1 change: 1 addition & 0 deletions terraform/app_service.tf
Original file line number Diff line number Diff line change
Expand Up @@ -53,6 +53,7 @@ resource "azurerm_linux_web_app" "main" {
# this prevents the filesystem from being obscured by a mount
"WEBSITES_ENABLE_APP_SERVICE_STORAGE" = "false"
"WEBSITES_PORT" = "8000"
"WEBSITES_CONTAINER_START_TIME_LIMIT" = "1800"
}

identity {
Expand Down
4 changes: 2 additions & 2 deletions terraform/suppress.arm.json
Original file line number Diff line number Diff line change
Expand Up @@ -25,8 +25,8 @@
"recurrences": [
{
"recurrenceType": "Daily",
"startTime": "06:00:00",
"endTime": "06:10:00"
"startTime": "05:55:00",
"endTime": "06:20:00"
}
]
},
Expand Down