Skip to content

Commit

Permalink
Merge pull request #236 from postmanlabs/release/v1.12.3
Browse files Browse the repository at this point in the history
Release version v1.12.3
  • Loading branch information
VShingala authored Jun 20, 2024
2 parents 87ba191 + 49c8de8 commit 33edd59
Show file tree
Hide file tree
Showing 7 changed files with 16 additions and 5 deletions.
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.12.3] - 2024-06-20

### Fixed

- Updated direct access to constructor prototype props to class props to make sure minification with keepClass attributes doesn't affect conversion.

## [v1.12.2] - 2024-05-21

### Fixed
Expand Down Expand Up @@ -106,7 +112,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.2...HEAD
[Unreleased]: https://github.com/postmanlabs/wsdl-to-postman/compare/v1.12.3...HEAD

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

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

Expand Down
1 change: 1 addition & 0 deletions lib/security/schemas/inputs/tokens/SAMLTokenInput.js
Original file line number Diff line number Diff line change
@@ -1,5 +1,6 @@
class SAMLTokenInput {
constructor() {
this.constructor_name = 'SAMLTokenInput';
this.includeToken = '';
this.issuerInfo = '';
this.claims = '';
Expand Down
1 change: 1 addition & 0 deletions lib/security/schemas/inputs/tokens/UsernameTokenInput.js
Original file line number Diff line number Diff line change
@@ -1,5 +1,6 @@
class UsernameTokenInput {
constructor() {
this.constructor_name = 'UsernameTokenInput';
this.includeToken = '';
this.issuerInfo = '';
this.claims = '';
Expand Down
Original file line number Diff line number Diff line change
@@ -1,5 +1,6 @@
class TransportBindingInput {
constructor() {
this.constructor_name = 'TransportBindingInput';
this.transportToken = '';
this.algorithmSuite = '';
this.layout = '';
Expand Down
2 changes: 1 addition & 1 deletion lib/utils/SOAPHeader.js
Original file line number Diff line number Diff line change
Expand Up @@ -158,7 +158,7 @@ class SOAPHeader {
'TransportBindingInput': this.processSSLTransport,
'SAMLTokenInput': this.processSAMLToken
};
return handlers[element.constructor.name];
return handlers[element.constructor_name];
}

/**
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": "@postman/wsdl-to-postman",
"version": "1.12.2",
"version": "1.12.3",
"description": "Convert a given WSDL specification (1.1) to Postman Collection",
"main": "index.js",
"bin": {
Expand Down

0 comments on commit 33edd59

Please sign in to comment.