Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Prep for 6.1.1 release #1057

Merged
merged 6 commits into from
Dec 8, 2023
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
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
Loading