Skip to content

Commit

Permalink
Release (#1078)
Browse files Browse the repository at this point in the history
* chore(release): update dependencies

* chore(release): update dependencies

* chore(firefox): upgrade to FF 121

* chore(Changelog): update CHANGELOG.md

* fix(test): adjust column numbers to match firefox's precise tracking

* feat(ci): use different check names for different test groups

This way the different tests won't override each other and it will be easier to
spot failing tests.
Currently this can only be done by manually inspecting the logs

* fix(action): escape names in shell

* revert(ci): use junit-report.xml as the local file name
  • Loading branch information
vringar authored Dec 24, 2023
1 parent af299f6 commit 25c537e
Show file tree
Hide file tree
Showing 10 changed files with 4,261 additions and 4,594 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/run-tests.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -144,6 +144,6 @@ jobs:
uses: dorny/test-reporter@v1
if: success() || failure() # run this step even if previous step failed
with:
name: OpenWPM # Name of the check run which will be created
name: ${{matrix.test-groups}} # Name of the check run which will be created
path: junit-report.xml # Path to test results
reporter: java-junit # Format of test results
8 changes: 4 additions & 4 deletions .pre-commit-config.yaml
Original file line number Diff line number Diff line change
@@ -1,23 +1,23 @@
repos:
- repo: https://github.com/timothycrosley/isort
rev: 5.12.0
rev: 5.13.2
hooks:
- id: isort
- repo: https://github.com/psf/black
rev: 23.7.0
rev: 23.12.1
hooks:
- id: black
language_version: python3
- repo: https://github.com/pre-commit/mirrors-mypy
rev: v1.5.1
rev: v1.8.0
hooks:
- id: mypy
additional_dependencies:
[pytest, types-tabulate, types-PyYAML, types-redis]
# We may need to add more and more dependencies here, as pre-commit
# runs in an environment without our dependencies
- repo: https://github.com/alessandrojcm/commitlint-pre-commit-hook
rev: v9.5.0
rev: v9.10.0
hooks:
- id: commitlint
stages: [commit-msg]
7 changes: 7 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,12 @@
# Changelog

## v0.26.0 - 2023-12-23

Bump to Firefox 121

Type cleanup in WebExtension #1069 Thanks to @MohammadMahdiJavid for the extensive bug report
Fix race condition during shutdown #1073

## v0.25.0 - 2023-10-13

Bump to Firefox 118.0.2
Expand Down
2,515 changes: 1,086 additions & 1,429 deletions Extension/package-lock.json

Large diffs are not rendered by default.

2 changes: 1 addition & 1 deletion VERSION
Original file line number Diff line number Diff line change
@@ -1 +1 @@
0.25.0
0.26.0
47 changes: 23 additions & 24 deletions environment.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -3,48 +3,47 @@ channels:
- main
dependencies:
- beautifulsoup4=4.12.2
- black=23.9.1
- black=23.12.1
- click=8.1.7
- codecov=2.1.13
- dill=0.3.7
- dill=0.3.7
- easyprocess=1.1
- gcsfs=2023.9.2
- gcsfs=2023.12.2.post1
- geckodriver=0.33.0
- ipython=8.16.1
- isort=5.12.0
- ipython=8.19.0
- isort=5.13.2
- leveldb=1.23
- multiprocess=0.70.15
- mypy=1.6.0
- nodejs=20.8.0
- pandas=2.1.1
- pillow=10.0.1
- pip=23.2.1
- mypy=1.8.0
- nodejs=20.9.0
- pandas=2.1.4
- pillow=10.1.0
- pip=23.3.2
- plyvel=1.5.0
- pre-commit=3.4.0
- psutil=5.9.5
- pyarrow=13.0.0
- pytest-asyncio=0.21.1
- pre-commit=3.6.0
- psutil=5.9.7
- pyarrow=14.0.2
- pytest-asyncio=0.23.2
- pytest-cov=4.1.0
- pytest=7.4.2
- python=3.12.0
- pytest=7.4.3
- python=3.12.1
- pyvirtualdisplay=2.2
- recommonmark=0.7.1
- redis-py=5.0.1
- s3fs=2023.9.2
- selenium=4.13.0
- sentry-sdk=1.32.0
- s3fs=2023.12.2
- selenium=4.16.0
- sentry-sdk=1.39.1
- sphinx-markdown-tables=0.0.17
- sphinx=7.2.6
- tabulate=0.9.0
- tblib=2.0.0
- tblib=3.0.0
- wget=1.20.3
- pip:
- dataclasses-json==0.6.1
- dataclasses-json==0.6.3
- domain-utils==0.7.1
- jsonschema==4.19.1
- tranco==0.6
- jsonschema==4.20.0
- tranco==0.7.1
- types-pyyaml==6.0.12.12
- types-redis==4.6.0.7
- types-redis==4.6.0.11
- types-tabulate==0.9.0.3
name: openwpm
2 changes: 1 addition & 1 deletion openwpm/utilities/rediswq.py
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@ class RedisWQ(object):
https://kubernetes.io/docs/tasks/job/fine-parallel-processing-work-queue
"""

def __init__(self, name, max_retries=2, **redis_kwargs):
def __init__(self, name: str, max_retries=2, **redis_kwargs: Any) -> None:
"""Redis worker queue instance
The default connection parameters are:
Expand Down
Loading

0 comments on commit 25c537e

Please sign in to comment.