From bd4efdc5ec24eaaca1afeb3b333133d6df0d7b29 Mon Sep 17 00:00:00 2001 From: christian-bromann Date: Mon, 7 Sep 2020 18:22:20 +0200 Subject: [PATCH] v1.1.0 --- CHANGELOG.md | 18 +++++++++++++++--- Dockerfile | 2 +- README.md | 2 +- package.json | 34 +++++++++++++++------------------- 4 files changed, 32 insertions(+), 24 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 098428f..51d808b 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,8 +1,20 @@ # Changelog 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). +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). + +## [1.1.0] - 2020-09-07 + +### Added +- Support for Sauce Connect v4.6.2 + +### Changed +- Run `saucelabs/sauce-connect` image via DinD + +### Removed +- Ability to set `-f` or `--readyfile` parameter as it was not useful anyway + +[1.0.0]: https://github.com/saucelabs/sauce-connect-action/compare/1.0.0...1.1.0 ## [1.0.0] - 2019-09-25 @@ -15,4 +27,4 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0 ### Removed - N/A -[1.0.0]: https://github.com/joelwmale/sauce-connect-action/compare/1.0.0...1.0.0 \ No newline at end of file +[1.0.0]: https://github.com/saucelabs/sauce-connect-action/compare/1.0.0...1.0.0 diff --git a/Dockerfile b/Dockerfile index 7a4b402..ed2328f 100644 --- a/Dockerfile +++ b/Dockerfile @@ -1,6 +1,6 @@ FROM docker:stable -LABEL version="1.0.0" +LABEL version="1.1.0" LABEL repository="http://github.com/saucelabs/sauce-connect-action" LABEL homepage="http://github.com/saucelabs/sauce-connect-action" LABEL maintainer="Christian Bromann " diff --git a/README.md b/README.md index 84ba4ce..3208a17 100644 --- a/README.md +++ b/README.md @@ -12,7 +12,7 @@ jobs: name: Action Test steps: # ... - - uses: saucelabs/sauce-connect-action@v1.0.0 + - uses: saucelabs/sauce-connect-action@v1 with: username: ${{ secrets.SAUCE_USERNAME }} accessKey: ${{ secrets.SAUCE_ACCESS_KEY }} diff --git a/package.json b/package.json index 61e1b9f..0f63dc3 100644 --- a/package.json +++ b/package.json @@ -1,18 +1,10 @@ { - "name": "sauce-connect-action", - "version": "1.0.0", - "description": "A GitHub action to launch Sauce Connect Proxy", - "main": "index.js", - "scripts": { - "docker": "run-s docker:login docker:build docker:tag docker:push:*", - "docker:build": "docker build -t saucelabs/sauce-connect .", - "docker:login": "docker login -u \"$DOCKER_USERNAME\" -p \"$DOCKER_PASSWORD\"", - "docker:push:latest": "docker push saucelabs/sauce-connect-action:latest", - "docker:push:version": "docker push saucelabs/sauce-connect-action:$npm_package_version", - "docker:tag": "docker tag saucelabs/sauce-connect-action saucelabs/sauce-connect-action:$npm_package_version", - "test": "run-p test:*", - "test:setup": "http-server ./test -p 8080 > /dev/null 2>&1 &", - "test:run": "node ./test/test.js" + "author": "Christian Bromann ", + "version": "1.1.0", + "license": "MIT", + "homepage": "https://github.com/saucelabs/sauce-connect-action#readme", + "bugs": { + "url": "https://github.com/saucelabs/sauce-connect-action/issues" }, "repository": { "type": "git", @@ -24,12 +16,16 @@ "proxy", "saucelabs" ], - "author": "Christian Bromann ", - "license": "MIT", - "bugs": { - "url": "https://github.com/saucelabs/sauce-connect-action/issues" + "scripts": { + "docker": "run-s docker:build docker:tag docker:push:*", + "docker:build": "docker build -t saucelabs/sauce-connect .", + "docker:push:latest": "docker push saucelabs/sauce-connect-action:latest", + "docker:push:version": "docker push saucelabs/sauce-connect-action:$npm_package_version", + "docker:tag": "docker tag saucelabs/sauce-connect-action saucelabs/sauce-connect-action:$npm_package_version", + "test": "run-p test:*", + "test:setup": "http-server ./test -p 8080 > /dev/null 2>&1 &", + "test:run": "node ./test/test.js" }, - "homepage": "https://github.com/saucelabs/sauce-connect-action#readme", "devDependencies": { "http-server": "^0.12.3", "npm-run-all": "^4.1.5",