Skip to content

Commit

Permalink
release 1.23.0 (#527)
Browse files Browse the repository at this point in the history
* release 1.23.0

* Fix linting error
  • Loading branch information
thim81 authored Oct 28, 2023
1 parent 6baee25 commit 05317fc
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 2 deletions.
4 changes: 3 additions & 1 deletion CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,11 +1,13 @@
## [Unreleased]

## v1.23.0 - (2023-10-23)
## v1.23.0 - (2023-10-28)

- orderOfOperations - Adjusted ordering string matching to be exact when wildcard is not present (#490)
- ContentTests - Add pm variable support for oneOf assertions in content tests (#520)
- Postman Sync - Set no limit to the body size on collection update (#517)
- Postman Sync - Removes extra query params from url for the file name (#525)
- Fuzzing - Exclude properties with reserved names from fuzzing (#514)
- Bugfix for overwriteRequestBody - should root overwrite (#524)
- Bumped dependencies

## v1.22.0 - (2023-03-26)
Expand Down
2 changes: 1 addition & 1 deletion src/services/DownloadService.ts
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ export class DownloadService {
url: url,
responseType: 'stream'
})
const fileName = url.replace(/\/$/, '').split('?')[0].split('/').pop();
const fileName = url.replace(/\/$/, '').split('?')[0].split('/').pop()
const filePath = `./tmp/${fileName}`

return await new Promise((resolve, reject) => {
Expand Down

0 comments on commit 05317fc

Please sign in to comment.