Skip to content

Commit

Permalink
Release 0.3.2
Browse files Browse the repository at this point in the history
  • Loading branch information
aslakhellesoy committed Mar 4, 2022
1 parent bd635f2 commit 224b0b4
Show file tree
Hide file tree
Showing 5 changed files with 12 additions and 46 deletions.
1 change: 1 addition & 0 deletions .prettierignore
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
CHANGELOG.md
43 changes: 4 additions & 39 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -7,127 +7,92 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0

## [Unreleased]

## [0.3.1] - 2022-03-04
## [0.3.2] - 2022-03-04

## [0.3.1] - 2022-03-04
### Fixed

- Provide correct SHA for GitHub Actions

## [0.3.0] - 2022-02-09

### Added

- Add new `--max-time <seconds>` option
- Add new `--ignore-error` option

## [0.2.0] - 2022-02-07

### Added

- Basic Auth authentication has been added

### Changed

- The GitHub Action must specify `username`
- The CLI must specify `--username`
- The CLI shortopt `-u` is an alias for `--username` (and not `--url` as it was in previous versions)

### Removed

- Vercel authentication (password only) has been removed

## [0.1.0] - 2022-01-31

### Added

- Zip non `.zip` files by default. This can be overriden by specifying `zip: false` (GitHub Action) or `--no-zip` (Command Line)

## [0.0.14] - 2022-01-27

### Fixed

- Expand `~` in report globs [#3](https://github.com/SmartBear/one-report-publisher/pull/2)

## [0.0.13] - 2022-01-27

### Fixed

- Fix `--reports` option in CLI [#2](https://github.com/SmartBear/one-report-publisher/pull/2)

## [0.0.12] - 2022-01-26

### Fixed

- Add shebang in CLI

## [0.0.11] - 2022-01-26

### Added

- Added a command-line, making it possible to run with `npx @smartbear/one-report-publisher`

## [0.0.10] - 2022-01-26

### Added

- Made output more verbose when a file can not be published

## [0.0.9] - 2022-01-26

### Added

- Support publication of .zip files
- Support publication of .ndjson files

## [0.0.8] - 2022-01-26

### Fixed

- Put publishing back into test workflow

## [0.0.7] - 2022-01-26

### Fixed

- Extract separate workflow for publishing results

## [0.0.6] - 2022-01-26

### Fixed

- Fix release workflow again

## [0.0.5] - 2022-01-26

### Fixed

- Fix release workflow again

## [0.0.4] - 2022-01-26

### Fixed

- Fix release workflow again

## [0.0.3] - 2022-01-26

### Fixed

- Fix release workflow again

## [0.0.2] - 2022-01-26

### Fixed

- Fix release workflow

## [0.0.1] - 2022-01-26

### Added

- First release

[unreleased]: https://github.com/smartbear/one-report-publisher/compare/v0.3.1...HEAD
[Unreleased]: https://github.com/smartbear/one-report-publisher/compare/v0.3.2...HEAD
[0.3.2]: https://github.com/smartbear/one-report-publisher/compare/v0.3.1...v0.3.2
[0.3.1]: https://github.com/smartbear/one-report-publisher/compare/v0.3.0...v0.3.1
[0.3.0]: https://github.com/smartbear/one-report-publisher/compare/v0.2.0...v0.3.0
[0.2.0]: https://github.com/smartbear/one-report-publisher/compare/v0.1.0...v0.2.0
Expand Down
8 changes: 4 additions & 4 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -27,7 +27,7 @@ step failed.
```yml
- name: 'Publish to OneReport'
if: ${{ always() }}
uses: smartbear/[email protected].1
uses: smartbear/[email protected].2
with:
organization-id: F5222E06-BA05-4C82-949A-2FE537B6F59F
username: anyone
Expand All @@ -46,7 +46,7 @@ installed (for example [cimg/node](https://circleci.com/developer/images/image/c
- run:
name: Publish test results to OneReport
command: |
npx @smartbear/[email protected].1 \
npx @smartbear/[email protected].2 \
--organization-id F5222E06-BA05-4C82-949A-2FE537B6F59F \
--username anyone \
--password ${ONE_REPORT_PASSWORD} \
Expand All @@ -58,7 +58,7 @@ installed (for example [cimg/node](https://circleci.com/developer/images/image/c
The command-line tool can be used in any CI pipeline that has the `npx` command available (it needs to have Node.js installed).

```
npx @smartbear/one-report-publisher@v0.3.1 --help
npx @smartbear/one-report-publisher@v0.3.2 --help

Usage: one-report-publisher [options]

Expand All @@ -77,7 +77,7 @@ Options:
Example:
```
npx @smartbear/one-report-publisher@0.3.1 \
npx @smartbear/one-report-publisher@0.3.2 \
--organization-id F5222E06-BA05-4C82-949A-2FE537B6F59F \
--username anyone \
--password ${ONE_REPORT_PASSWORD} \
Expand Down
4 changes: 2 additions & 2 deletions package-lock.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@smartbear/one-report-publisher",
"version": "0.3.1",
"version": "0.3.2",
"description": "Publish Test Results to SmartBear OneReport",
"type": "module",
"main": "dist/cjs/src/index.js",
Expand Down

0 comments on commit 224b0b4

Please sign in to comment.