Skip to content

Commit

Permalink
Prep for 6.1.1 release (#1057)
Browse files Browse the repository at this point in the history
* Add password policy error fix to CHANGELOG.md

* move chromedriver to devdeps, update

* update CI to Node 18

* update builder to Chrome 119

* update saucelabs CLI
  • Loading branch information
jhuleatt committed Dec 8, 2023
1 parent 44884c7 commit 5ff6fde
Show file tree
Hide file tree
Showing 6 changed files with 18,818 additions and 8,747 deletions.
6 changes: 3 additions & 3 deletions .github/workflows/test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -21,16 +21,16 @@ jobs:
- name: Setup node
uses: actions/setup-node@v2-beta
with:
node-version: '14'
node-version: '18'
check-latest: true
- name: node_modules cache
id: node_modules_cache
uses: actions/cache@v2
with:
path: ./node_modules
key: ${{ runner.os }}-14-node_modules-${{ hashFiles('package-lock.json') }}
key: ${{ runner.os }}-18-node_modules-${{ hashFiles('package-lock.json') }}
restore-keys: |
${{ runner.os }}-14-node_modules-
${{ runner.os }}-18-node_modules-
- name: NPM install
if: steps.node_modules_cache.outputs.cache-hit != 'true'
run: npm ci
Expand Down
1 change: 1 addition & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
* Fix password policy error message handling in password reset flow (#1047)
6 changes: 3 additions & 3 deletions buildtools/container/Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@ RUN tar --strip-components=2 -C /usr/bin -xf hub.tgz hub-linux-amd64-2.11.2/bin/
# RUN wget https://dl.google.com/linux/direct/google-chrome-stable_current_amd64.deb
# RUN dpkg -i google-chrome-stable_current_amd64.deb; apt-get -fy install

# Pin Chrome v118 because we're pinning this version in CI.
# Pin Chrome v119 because we're pinning this version in CI.
# TODO: Install the lastest Chrome stable version once we unpin chrome version in CI.
RUN wget http://dl.google.com/linux/chrome/deb/pool/main/g/google-chrome-stable/google-chrome-stable_118.0.5993.70_amd64.deb
RUN dpkg -i google-chrome-stable_118.0.5993.70_amd64.deb; apt-get -fy install
RUN wget https://edgedl.me.gvt1.com/edgedl/chrome/chrome-for-testing/119.0.6045.105/linux64/chrome-linux64.zip
RUN dpkg -i google-chrome-stable_119.0.6045.105_amd64.deb; apt-get -fy install
4 changes: 2 additions & 2 deletions buildtools/sauce_connect.sh
Original file line number Diff line number Diff line change
Expand Up @@ -23,9 +23,9 @@

# Setup and start Sauce Connect locally.
if [[ $OSTYPE == 'darwin'* ]]; then
CONNECT_URL="https://saucelabs.com/downloads/sc-4.7.1-osx.zip"
CONNECT_URL="https://saucelabs.com/downloads/sc-4.9.2-osx.zip"
else
CONNECT_URL="https://saucelabs.com/downloads/sc-4.7.1-linux.tar.gz"
CONNECT_URL="https://saucelabs.com/downloads/sc-4.9.2-linux.tar.gz"
fi
CONNECT_DIR="/tmp/sauce-connect-$RANDOM"
CONNECT_DOWNLOAD="sc-latest-linux.tar.gz"
Expand Down
Loading

0 comments on commit 5ff6fde

Please sign in to comment.