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

release 1.23.0 #527

Merged
merged 2 commits into from
Oct 28, 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
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
Loading