Skip to content

Commit

Permalink
Release prep v0.21.1 (#1010)
Browse files Browse the repository at this point in the history
* fix(sleep): reduce sleep in demo.py to old value

* fix(deploy_firefox): correct file permissions for fifo

* feat(dependencies): ran scripts/update.sh

* docs(changelog): document v0.21.1

* fix(actions): update actions version
  • Loading branch information
vringar committed Oct 13, 2022
1 parent caf7bc5 commit d050824
Show file tree
Hide file tree
Showing 11 changed files with 5,271 additions and 927 deletions.
6 changes: 3 additions & 3 deletions .github/workflows/build-container.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -29,12 +29,12 @@ jobs:
echo ::set-output name=tags::${TAGS}
- name: Checkout
uses: actions/checkout@v2
uses: actions/checkout@v3
- name: Set up Docker Buildx
id: buildx
uses: docker/setup-buildx-action@v1
- name: Cache Docker layers
uses: actions/cache@v2
uses: actions/cache@v3
with:
path: /tmp/.buildx-cache
key: ${{ runner.os }}-buildx-${{ github.sha }}
Expand All @@ -47,7 +47,7 @@ jobs:
password: ${{ secrets.DOCKERHUB_USER_PASSWORD }}
- name: Build and push
id: docker_build
uses: docker/build-push-action@v2
uses: docker/build-push-action@v3
with:
context: ./
file: ./Dockerfile
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/codeql-analysis.yml
Original file line number Diff line number Diff line change
Expand Up @@ -38,7 +38,7 @@ jobs:

steps:
- name: Checkout repository
uses: actions/checkout@v2
uses: actions/checkout@v3

# Initializes the CodeQL tools for scanning.
- name: Initialize CodeQL
Expand Down
10 changes: 5 additions & 5 deletions .github/workflows/run-tests.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -14,14 +14,14 @@ jobs:
runs-on: ubuntu-latest
steps:
# All of these steps are just setup
- uses: actions/checkout@v2
- uses: actions/checkout@v3
- name: Setting MINICONDA_PATH
run: echo "MINICONDA_PATH=$HOME/miniconda" >> $GITHUB_ENV
- name: Setting OPENWPM_CONDA_PATH
run: echo "OPENWPM_CONDA_PATH=$MINICONDA_PATH/envs/openwpm" >> $GITHUB_ENV
# If the environment.yaml hasn't changed we just reuse the entire conda install
- id: cache
uses: actions/cache@v2
uses: actions/cache@v3
env:
cache-name: conda-cache
with:
Expand Down Expand Up @@ -52,9 +52,9 @@ jobs:
fail-fast: false
steps:
# All of these steps are just setup, maybe we should wrap them in an action
- uses: actions/checkout@v2
- uses: actions/checkout@v3
- name: Cache node modules
uses: actions/cache@v2
uses: actions/cache@v3
env:
cache-name: cache-node-modules
with:
Expand All @@ -69,7 +69,7 @@ jobs:

# If the environment.yaml hasn't changed we just reuse the entire conda install
- id: conda-cache
uses: actions/cache@v2
uses: actions/cache@v3
env:
cache-name: conda-cache
with:
Expand Down
4 changes: 4 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,9 @@
# Changelog

## v0.21.1 - 2022-10-13

Fix erronous change to demo.py

## v0.21.0 - 2022-09-26

Update to Firefox 105
Expand Down
2 changes: 1 addition & 1 deletion VERSION
Original file line number Diff line number Diff line change
@@ -1 +1 @@
0.21.0
0.21.1
2 changes: 1 addition & 1 deletion demo.py
Original file line number Diff line number Diff line change
Expand Up @@ -69,7 +69,7 @@ def callback(success: bool, val: str = site) -> None:
)

# Start by visiting the page
command_sequence.append_command(GetCommand(url=site, sleep=120), timeout=180)
command_sequence.append_command(GetCommand(url=site, sleep=3), timeout=60)
# Have a look at custom_command.py to see how to implement your own command
command_sequence.append_command(LinkCountingCommand())

Expand Down
20 changes: 10 additions & 10 deletions environment.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -14,35 +14,35 @@ dependencies:
- isort=5.10.1
- leveldb=1.23
- multiprocess=0.70.13
- mypy=0.971
- nodejs=18.9.0
- mypy=0.982
- nodejs=18.10.0
- pandas=1.5.0
- pillow=9.2.0
- pip=22.2.2
- pre-commit=2.20.0
- psutil=5.9.2
- pyarrow=9.0.0
- pytest-asyncio=0.19.0
- pytest-cov=3.0.0
- pytest-cov=4.0.0
- pytest=7.1.3
- python=3.10.6
- pyvirtualdisplay=3.0
- recommonmark=0.7.1
- redis-py=4.3.4
- s3fs=2022.8.2
- selenium=4.4.0
- sentry-sdk=1.9.9
- selenium=4.5.0
- sentry-sdk=1.9.10
- sphinx-markdown-tables=0.0.17
- sphinx=5.2.1
- tabulate=0.8.10
- sphinx=5.2.3
- tabulate=0.9.0
- tblib=1.7.0
- wget=1.20.3
- pip:
- dataclasses-json==0.5.7
- domain-utils==0.7.1
- jsonschema==4.16.0
- plyvel==1.4.0
- types-pyyaml==6.0.11
- types-redis==4.3.20
- types-tabulate==0.8.11
- types-pyyaml==6.0.12
- types-redis==4.3.21.1
- types-tabulate==0.9.0.0
name: openwpm
3 changes: 2 additions & 1 deletion openwpm/deploy_browsers/selenium_firefox.py
Original file line number Diff line number Diff line change
Expand Up @@ -30,7 +30,7 @@ def mktempfifo(suffix="", prefix="tmp", dir=None):
name = next(names)
file = os.path.join(dir, prefix + name + suffix)
try:
os.mkfifo(file, 384) # 0600
os.mkfifo(file, 0o600)
return file
except OSError as e:
if e.errno == errno.EEXIST:
Expand Down Expand Up @@ -61,6 +61,7 @@ def run(self) -> None:
# We might not ever get EOF on the FIFO, so instead we delete
# it after we receive the first line (which means the other
# end has actually opened it).
assert self.fifo is not None
try:
with open(self.fifo, "rt") as f:
for line in f:
Expand Down
Loading

0 comments on commit d050824

Please sign in to comment.