Skip to content

Commit 5da30ca

Browse files
authored
Merge pull request #1392 from cmu-delphi/release/delphi-epidata-4.1.18
Release Delphi Epidata 4.1.18
2 parents bb8f5d5 + 0c00284 commit 5da30ca

File tree

13 files changed

+61
-26
lines changed

13 files changed

+61
-26
lines changed

.bumpversion.cfg

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
[bumpversion]
2-
current_version = 4.1.17
2+
current_version = 4.1.18
33
commit = False
44
tag = False
55

.gitignore

+32
Original file line numberDiff line numberDiff line change
@@ -11,3 +11,35 @@ __pycache__/
1111
/node_modules
1212
.mypy_cache
1313
/missing_db_signals.csv
14+
15+
16+
17+
##Added by Tina to avoid tracking R studio config files
18+
# History files
19+
.Rhistory
20+
.Rapp.history
21+
22+
# Session Data files
23+
.RData
24+
.RDataTmp
25+
26+
# User-specific files
27+
.Ruserdata
28+
29+
# RStudio files
30+
.Rproj.user/
31+
32+
# OAuth2 token, see https://github.com/hadley/httr/releases/tag/v0.3
33+
.httr-oauth
34+
35+
# knitr and R markdown default cache directories
36+
*_cache/
37+
/cache/
38+
39+
# R Environment Variables
40+
.Renviron
41+
42+
# RStudio Connect folder
43+
rsconnect/
44+
45+
*.Rproj

dev/local/setup.cfg

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[metadata]
22
name = Delphi Development
3-
version = 4.1.17
3+
version = 4.1.18
44

55
[options]
66
packages =

docs/Gemfile.lock

+4-4
Original file line numberDiff line numberDiff line change
@@ -205,23 +205,23 @@ GEM
205205
rb-fsevent (~> 0.10, >= 0.10.3)
206206
rb-inotify (~> 0.9, >= 0.9.10)
207207
mercenary (0.3.6)
208-
mini_portile2 (2.8.1)
208+
mini_portile2 (2.8.5)
209209
minima (2.5.1)
210210
jekyll (>= 3.5, < 5.0)
211211
jekyll-feed (~> 0.9)
212212
jekyll-seo-tag (~> 2.1)
213213
minitest (5.17.0)
214214
multipart-post (2.1.1)
215-
nokogiri (1.14.3)
216-
mini_portile2 (~> 2.8.0)
215+
nokogiri (1.16.2)
216+
mini_portile2 (~> 2.8.2)
217217
racc (~> 1.4)
218218
octokit (4.20.0)
219219
faraday (>= 0.9)
220220
sawyer (~> 0.8.0, >= 0.5.3)
221221
pathutil (0.16.2)
222222
forwardable-extended (~> 2.6)
223223
public_suffix (4.0.6)
224-
racc (1.6.2)
224+
racc (1.7.3)
225225
rb-fsevent (0.10.4)
226226
rb-inotify (0.10.1)
227227
ffi (~> 1.0)

docs/api/covidcast-signals/fb-survey.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
---
22
title: COVID-19 Trends and Impact Survey
3-
parent: Data Sources and Signals
3+
parent: Inactive Signals
44
grand_parent: COVIDcast Main Endpoint
55
---
66

docs/symptom-survey/publications.md

+3
Original file line numberDiff line numberDiff line change
@@ -26,6 +26,9 @@ Pandemic"](https://www.pnas.org/topic/548) in *PNAS*:
2626

2727
Research publications using the survey data include:
2828

29+
- R.R. Andridge (2024). [Using proxy pattern-mixture models to explain bias in
30+
estimates of COVID-19 vaccine uptake from two large surveys](https://doi.org/10.1093/jrsssa/qnae005).
31+
*Journal of the Royal Statistical Society Series A: Statistics in Society*.
2932
- H. Bui, S. Ekşioğlu, R. Proano, and S. N. Pinkley (2024). [An Analysis of
3033
COVID-19 Vaccine Hesitancy in the U.S.](https://doi.org/10.1080/24725854.2024.2301966).
3134
*IISE Transactions*.

src/client/delphi_epidata.R

+1-1
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@ Epidata <- (function() {
1515
# API base url
1616
BASE_URL <- getOption('epidata.url', default = 'https://api.delphi.cmu.edu/epidata/')
1717

18-
client_version <- '4.1.17'
18+
client_version <- '4.1.18'
1919

2020
auth <- getOption("epidata.auth", default = NA)
2121

src/client/delphi_epidata.js

+1-1
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,7 @@
2222
}
2323
})(this, function (exports, fetchImpl, jQuery) {
2424
const BASE_URL = "https://api.delphi.cmu.edu/epidata/";
25-
const client_version = "4.1.17";
25+
const client_version = "4.1.18";
2626

2727
// Helper function to cast values and/or ranges to strings
2828
function _listitem(value) {

src/client/packaging/npm/package.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
"name": "delphi_epidata",
33
"description": "Delphi Epidata API Client",
44
"authors": "Delphi Group",
5-
"version": "4.1.17",
5+
"version": "4.1.18",
66
"license": "MIT",
77
"homepage": "https://github.com/cmu-delphi/delphi-epidata",
88
"bugs": {
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
11
from .delphi_epidata import Epidata
22

33
name = "delphi_epidata"
4-
__version__ = "4.1.17"
4+
__version__ = "4.1.18"

src/client/packaging/pypi/setup.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@
55

66
setuptools.setup(
77
name="delphi_epidata",
8-
version="4.1.17",
8+
version="4.1.18",
99
author="David Farrow",
1010
author_email="[email protected]",
1111
description="A programmatic interface to Delphi's Epidata API.",

src/server/_config.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@
77

88
load_dotenv()
99

10-
VERSION = "4.1.17"
10+
VERSION = "4.1.18"
1111

1212
MAX_RESULTS = int(10e6)
1313
MAX_COMPATIBILITY_RESULTS = int(3650)

src/server/endpoints/covidcast_utils/db_signals.csv

+13-13
Large diffs are not rendered by default.

0 commit comments

Comments
 (0)