Skip to content

Commit 4966dae

Browse files
authored
chore(release): v0.19.0 release prep (#976)
* chore(firefox-bin): update to FF98 * chore(pre-commit): update and run pre-commit hooks * chore(conda): update environment.yaml * chore(javascript): update all package.jsons * chore(Release): update VERSION and CHANGELOG * chore(conda): remove mamba * chore(conda): added easyprocess dependency
1 parent 2cb6637 commit 4966dae

23 files changed

+4657
-8279
lines changed

.pre-commit-config.yaml

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,22 +1,22 @@
11
repos:
22
- repo: https://github.com/timothycrosley/isort
3-
rev: 5.9.2
3+
rev: 5.10.1
44
hooks:
55
- id: isort
66
- repo: https://github.com/psf/black
7-
rev: 21.11b1
7+
rev: 22.1.0
88
hooks:
99
- id: black
1010
language_version: python3
1111
- repo: https://github.com/pre-commit/mirrors-mypy
12-
rev: v0.910
12+
rev: v0.931
1313
hooks:
1414
- id: mypy
1515
additional_dependencies: [pytest, types-tabulate, types-PyYAML, types-redis]
1616
# We may need to add more and more dependencies here, as pre-commit
1717
# runs in an environment without our dependencies
1818
- repo: https://github.com/alessandrojcm/commitlint-pre-commit-hook
19-
rev: v6.0.0
19+
rev: v8.0.0
2020
hooks:
2121
- id: commitlint
2222
stages: [commit-msg]

CHANGELOG.md

Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,12 @@
11
# Changelog
22

3+
## v0.19.0 - 2022-03-10
4+
5+
Updates OpenWPM to Firefox 98
6+
7+
- Reverted workaround of manually creating user.js (#968) Thanks [@boolean5](https://github.com/boolean5)!
8+
- Removed invalid resource type (#966)
9+
310
## v0.18.0 - 2021-12-07
411

512
Updates OpenWPM to Firefox 95

Extension/firefox/feature.js/loggingdb.js

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -23,11 +23,11 @@ let listeningSocketCallback = async (data) => {
2323
break;
2424
case "Finalize":
2525
if (!visitID) {
26-
logWarn("Send Finalize while no visit_id was set")
26+
logWarn("Received Finalize while no visit_id was set")
2727
}
2828
if (_visitID !== visitID ) {
29-
logError("Send Finalize but visit_id didn't match. " +
30-
`Current visit_id ${visit_id}, sent visit_id ${_visit_id}.`);
29+
logError("Received Finalize but visit_id didn't match. " +
30+
`Current visit_id ${_visitID}, received visit_id ${visitID}.`);
3131
}
3232
data["browser_id"] = crawlID;
3333
data["success"] = true;

Extension/firefox/package-lock.json

Lines changed: 1556 additions & 856 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

Extension/firefox/package.json

Lines changed: 15 additions & 15 deletions
Original file line numberDiff line numberDiff line change
@@ -7,27 +7,27 @@
77
},
88
"devDependencies": {
99
"@types/download": "^8.0.1",
10-
"@typescript-eslint/parser": "^4.33.0",
11-
"body-parser": "^1.19.0",
10+
"@typescript-eslint/parser": "^5.16.0",
11+
"body-parser": "^1.19.2",
1212
"download": "^8.0.0",
13-
"eslint": "^7.32.0",
14-
"eslint-config-prettier": "^8.3.0",
13+
"eslint": "^8.11.0",
14+
"eslint-config-prettier": "^8.5.0",
1515
"eslint-plugin-fetch-options": "0.0.5",
1616
"eslint-plugin-html": "^6.2.0",
17-
"eslint-plugin-import": "^2.25.3",
17+
"eslint-plugin-import": "^2.25.4",
1818
"eslint-plugin-json": "^3.1.0",
19-
"eslint-plugin-mozilla": "^2.11.1",
20-
"eslint-plugin-no-unsanitized": "^3.2.0",
21-
"eslint-plugin-prettier": "^3.4.1",
22-
"express": "^4.17.1",
19+
"eslint-plugin-mozilla": "^2.11.3",
20+
"eslint-plugin-no-unsanitized": "^4.0.1",
21+
"eslint-plugin-prettier": "^4.0.0",
22+
"express": "^4.17.3",
2323
"npm-run-all": "^4.1.5",
24-
"prettier": "^1.19.1",
24+
"prettier": "^2.6.0",
2525
"safe-compare": "^1.1.4",
26-
"ts-loader": "^9.2.6",
27-
"typescript": "^4.5.2",
28-
"web-ext": "^6.6.0",
29-
"webpack": "^5.65.0",
30-
"webpack-cli": "^4.9.1"
26+
"ts-loader": "^9.2.8",
27+
"typescript": "^4.6.2",
28+
"web-ext": "^6.7.0",
29+
"webpack": "^5.70.0",
30+
"webpack-cli": "^4.9.2"
3131
},
3232
"engines": {
3333
"node": ">=7.0.0"

0 commit comments

Comments
 (0)