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 version v1.13.0 #240

Merged
merged 5 commits into from
Jul 10, 2024
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
10 changes: 9 additions & 1 deletion CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,12 @@

## [Unreleased]

## [v1.13.0] - 2024-07-10

### Chore

- Updated postman-collection to v4.4.0.

## [v1.12.3] - 2024-06-20

### Fixed
Expand Down Expand Up @@ -112,7 +118,9 @@ Newer releases follow the [Keep a Changelog](https://keepachangelog.com) format.
- Stable release
- Removed libxmljs from package.json

[Unreleased]: https://github.com/postmanlabs/wsdl-to-postman/compare/v1.12.3...HEAD
[Unreleased]: https://github.com/postmanlabs/wsdl-to-postman/compare/v1.13.0...HEAD

[v1.13.0]: https://github.com/postmanlabs/wsdl-to-postman/compare/v1.12.3...v1.13.0

[v1.12.3]: https://github.com/postmanlabs/wsdl-to-postman/compare/v1.12.2...v1.12.3

Expand Down
4 changes: 2 additions & 2 deletions lib/TransactionValidator.js
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
const sdk = require('postman-collection'),
const { Url } = require('postman-collection/lib/collection/url'),
{
QueryParamsValidator
} = require('./transactionValidator/QueryParamsValidator'),
Expand Down Expand Up @@ -408,7 +408,7 @@ class TransactionValidator {
getItemRequestProcessedInfo(itemRequest, parsedXmlMessage, operationFromWSDL) {
let rawURL = this.getUrlPath(itemRequest.url),
soapActionName = '',
fullURL = (new sdk.Url(itemRequest.url)).toString(),
fullURL = (new Url(itemRequest.url)).toString(),
soapActionHeader,
requestHeaderArray = [],
{ methodName, protocol } = this.resolveMethodNameAndProtocol(itemRequest, parsedXmlMessage, operationFromWSDL);
Expand Down
12 changes: 5 additions & 7 deletions lib/WsdlToPostmanCollectionMapper.js
Original file line number Diff line number Diff line change
Expand Up @@ -3,13 +3,11 @@ const {
} = require('./utils/urlUtils');

const XML = 'xml',
{
Collection,
Response,
ItemGroup,
Item,
Header
} = require('postman-collection'),
{ Collection } = require('postman-collection/lib/collection/collection'),
{ Header } = require('postman-collection/lib/collection/header'),
{ ItemGroup } = require('postman-collection/lib/collection/item-group'),
{ Item } = require('postman-collection/lib/collection/item'),
{ Response } = require('postman-collection/lib/collection/response'),
{ WsdlToPostmanCollectionBodyMapper } = require('./WsdlToPostmanCollectionBodyMapper'),
UserError = require('../lib/UserError'),
FOLDER_OPTIONS = {
Expand Down
Loading
Loading