Skip to content

Commit

Permalink
Merge pull request #47 from saucelabs/dans-4.8.0
Browse files Browse the repository at this point in the history
Updating SC version
  • Loading branch information
waggledans committed May 11, 2022
2 parents e5d7e02 + 7f4f982 commit bffcc8b
Show file tree
Hide file tree
Showing 5 changed files with 17 additions and 4 deletions.
5 changes: 5 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,11 @@ All notable changes to this project will be documented in this file.

The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/), and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html).

## [2.2.0] - 2022-05-11

### Changed
- update to Sauce Connect `v4.8.0`

## [2.1.1] - 2022-01-29

### Changed
Expand Down
1 change: 1 addition & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -63,6 +63,7 @@ Please refer to [Sauce Labs documentation](https://docs.saucelabs.com/dev/cli/sa
- `scproxyPort`
- `sePort`
- `sharedTunnel`
- `statusAddress`
- `tunnelDomains`
- `tunnelIdentifier`
- `tunnelName`
Expand Down
7 changes: 5 additions & 2 deletions action.yml
Original file line number Diff line number Diff line change
Expand Up @@ -31,7 +31,7 @@ inputs:
description: Rotate logfile after reaching <bytes> size. Disabled by default.
required: false
metricsAddress:
description: 'host:port for the internal web server used to expose client side metrics. (default "localhost:8888")'
description: '[DEPRECATED in 4.8.0] host:port for the status server used to expose client metrics.'
required: false
noAutodetect:
description: Disable the autodetection of proxy settings.
Expand Down Expand Up @@ -69,6 +69,9 @@ inputs:
sharedTunnel:
description: Share the tunnels within the same organization.
required: false
statusAddress:
description: 'host:port for the status server used to expose client status.'
required: false
tunnelCainfo:
description: CA certificate bundle to use for verifying tunnel connections. (default "/usr/local/etc/openssl/cert.pem")
required: false
Expand All @@ -90,7 +93,7 @@ inputs:
scVersion:
description: Version of the saucelabs/sauce-connect docker image.
required: false
default: '4.7.1'
default: '4.8.0'
retryTimeout:
description: Do not retry if this amount of minutes has passed since starting.
required: false
Expand Down
6 changes: 5 additions & 1 deletion src/option-mapping.json
Original file line number Diff line number Diff line change
Expand Up @@ -36,7 +36,11 @@
},
{
"actionOption": "metricsAddress",
"dockerOption": "metrics-address"
"dockerOption": "status-address"
},
{
"actionOption": "statusAddress",
"dockerOption": "status-address"
},
{
"actionOption": "noAutodetect",
Expand Down
2 changes: 1 addition & 1 deletion test/test.js
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ let browser
platformName: 'Windows 10',
browserVersion: 'latest',
'sauce:options': {
tunnelIdentifier: 'github-action-tunnel',
tunnelName: 'github-action-tunnel',
build: `Build #${process.env.GITHUB_RUN_NUMBER}`
}
}
Expand Down

0 comments on commit bffcc8b

Please sign in to comment.