Skip to content

Commit 5ff6fde

Browse files
authored
Prep for 6.1.1 release (#1057)
* 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
1 parent 44884c7 commit 5ff6fde

File tree

6 files changed

+18818
-8747
lines changed

6 files changed

+18818
-8747
lines changed

.github/workflows/test.yml

+3-3
Original file line numberDiff line numberDiff line change
@@ -21,16 +21,16 @@ jobs:
2121
- name: Setup node
2222
uses: actions/setup-node@v2-beta
2323
with:
24-
node-version: '14'
24+
node-version: '18'
2525
check-latest: true
2626
- name: node_modules cache
2727
id: node_modules_cache
2828
uses: actions/cache@v2
2929
with:
3030
path: ./node_modules
31-
key: ${{ runner.os }}-14-node_modules-${{ hashFiles('package-lock.json') }}
31+
key: ${{ runner.os }}-18-node_modules-${{ hashFiles('package-lock.json') }}
3232
restore-keys: |
33-
${{ runner.os }}-14-node_modules-
33+
${{ runner.os }}-18-node_modules-
3434
- name: NPM install
3535
if: steps.node_modules_cache.outputs.cache-hit != 'true'
3636
run: npm ci

CHANGELOG.md

+1
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
* Fix password policy error message handling in password reset flow (#1047)

buildtools/container/Dockerfile

+3-3
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@ RUN tar --strip-components=2 -C /usr/bin -xf hub.tgz hub-linux-amd64-2.11.2/bin/
1616
# RUN wget https://dl.google.com/linux/direct/google-chrome-stable_current_amd64.deb
1717
# RUN dpkg -i google-chrome-stable_current_amd64.deb; apt-get -fy install
1818

19-
# Pin Chrome v118 because we're pinning this version in CI.
19+
# Pin Chrome v119 because we're pinning this version in CI.
2020
# TODO: Install the lastest Chrome stable version once we unpin chrome version in CI.
21-
RUN wget http://dl.google.com/linux/chrome/deb/pool/main/g/google-chrome-stable/google-chrome-stable_118.0.5993.70_amd64.deb
22-
RUN dpkg -i google-chrome-stable_118.0.5993.70_amd64.deb; apt-get -fy install
21+
RUN wget https://edgedl.me.gvt1.com/edgedl/chrome/chrome-for-testing/119.0.6045.105/linux64/chrome-linux64.zip
22+
RUN dpkg -i google-chrome-stable_119.0.6045.105_amd64.deb; apt-get -fy install

buildtools/sauce_connect.sh

+2-2
Original file line numberDiff line numberDiff line change
@@ -23,9 +23,9 @@
2323

2424
# Setup and start Sauce Connect locally.
2525
if [[ $OSTYPE == 'darwin'* ]]; then
26-
CONNECT_URL="https://saucelabs.com/downloads/sc-4.7.1-osx.zip"
26+
CONNECT_URL="https://saucelabs.com/downloads/sc-4.9.2-osx.zip"
2727
else
28-
CONNECT_URL="https://saucelabs.com/downloads/sc-4.7.1-linux.tar.gz"
28+
CONNECT_URL="https://saucelabs.com/downloads/sc-4.9.2-linux.tar.gz"
2929
fi
3030
CONNECT_DIR="/tmp/sauce-connect-$RANDOM"
3131
CONNECT_DOWNLOAD="sc-latest-linux.tar.gz"

0 commit comments

Comments
 (0)