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

[pull] develop from postmanlabs:develop #59

Merged
merged 54 commits into from
Oct 28, 2023
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
Show all changes
54 commits
Select commit Hold shift + click to select a range
5cd19e9
Fix for TypeError: OPENAPI3.0: Cannot read properties of undefined (r…
aman-v-singh Jun 30, 2023
8d4d79d
Merge branch 'postmanlabs:develop' into Cannot_read_properties_of_und…
aman-v-singh Jun 30, 2023
d2752d5
Check for typeof paths[path] to be object
aman-v-singh Jun 30, 2023
2a393cb
Check for paths[path] to be not null
aman-v-singh Jun 30, 2023
202fbea
Update schemaUtils.js
aman-v-singh Jun 30, 2023
77578d2
Added support for resolving remote URL refs without support for deep …
prashantRaghu Jul 11, 2023
2359345
Added missing ref resolver arg
prashantRaghu Jul 12, 2023
72bc9bc
Fixed resolution of refs from refs
prashantRaghu Jul 17, 2023
c5ff50b
Merge pull request #742 from aman-v-singh/Cannot_read_properties_of_u…
VShingala Aug 2, 2023
41059e0
Fixed linting issues
prashantRaghu Aug 7, 2023
c9cbf14
Fixed failing tests and added new ones for remote ref resolution
prashantRaghu Aug 8, 2023
8b6eb7b
Fixed a check
prashantRaghu Aug 8, 2023
8171baa
Add test for yaml support
prashantRaghu Aug 8, 2023
eb1f18c
Fixed linting issues
prashantRaghu Aug 8, 2023
10741f2
Fix path value to a fixture
prashantRaghu Aug 8, 2023
b8c928b
Update the URL thats passed to remoteRefResolver
prashantRaghu Aug 8, 2023
82ecc91
Removed an unused method
prashantRaghu Aug 8, 2023
ac6f740
Add JSDocs
prashantRaghu Aug 8, 2023
7cb2ba4
Bump ajv to 8.11.0
prashantRaghu Aug 16, 2023
a8da616
Merge branch 'develop' of github.com:postmanlabs/openapi-to-postman i…
prashantRaghu Aug 16, 2023
f8cb8aa
Update package-lock
prashantRaghu Aug 16, 2023
142defa
Added handling if remoteRefResolver threw err
prashantRaghu Aug 17, 2023
88e461e
Revert a refactor that introduces more code paths than required
prashantRaghu Aug 17, 2023
da3d42c
Refactor code to keep existing code paths as is
prashantRaghu Aug 17, 2023
b0ffbb9
Added test scenarios for yaml output
prashantRaghu Aug 17, 2023
37003c1
Added handling for circular refs
prashantRaghu Aug 17, 2023
67b9fe3
Added changelog
prashantRaghu Aug 18, 2023
8b045f8
Update changelog
prashantRaghu Aug 18, 2023
29aa86c
Merge pull request #747 from postmanlabs/feature/add-support-for-remo…
prashantRaghu Aug 18, 2023
90af665
Prepare release v4.16.0
web-flow Aug 18, 2023
150a7c0
Merge pull request #754 from postmanlabs/release/v4.16.0
prashantRaghu Aug 18, 2023
06d5027
Add description for path variables if present
Sep 4, 2023
c984919
Add unit test
Sep 7, 2023
50e1eb0
Merge pull request #760 from postmanlabs/feature/add-description
VShingala Sep 7, 2023
1f7e031
Copy path variable description to generated collection
jatin3893 Sep 11, 2023
e12d879
Add cases for testing required/optional properties
jatin3893 Sep 11, 2023
8c91ad5
Update lock file
jatin3893 Sep 11, 2023
d470688
Fix line length lint checks
jatin3893 Sep 11, 2023
281abdd
Update test description
jatin3893 Sep 11, 2023
17211ac
Merge pull request #761 from postmanlabs/feature/CUE-3989
jatin3893 Sep 11, 2023
8823ceb
Revert "Add description for path variables to the request if present …
webholik Sep 12, 2023
8a582a1
Fix failing tests as per the reverted changes
jatin3893 Sep 12, 2023
22cebb8
Merge pull request #764 from postmanlabs/revert-760-feature/add-descr…
jatin3893 Sep 12, 2023
6b93f95
Prepare release v4.17.0
web-flow Sep 12, 2023
d764b53
Merge pull request #766 from postmanlabs/release/v4.17.0
jatin3893 Sep 12, 2023
a1c7f64
Added support for multiple examples to be generated as request examples
VShingala Sep 25, 2023
567ce53
Fixed issue where correct request body was not used while example cre…
VShingala Sep 25, 2023
22340ee
Added tests for various multiple examples scenario
VShingala Sep 26, 2023
02db67f
Fixed incorrect summary or key being picked up as response name
VShingala Sep 26, 2023
bece53a
Added content-type based examplee key matching first
VShingala Sep 28, 2023
c406183
Merge pull request #768 from postmanlabs/feature/multi-example-support
VShingala Sep 28, 2023
9ade62a
Prepare release v4.18.0
web-flow Sep 28, 2023
957252d
Added changelogs
VShingala Sep 28, 2023
b7439b8
Merge pull request #770 from postmanlabs/release/v4.18.0
VShingala Sep 28, 2023
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
26 changes: 22 additions & 4 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,18 @@

## [Unreleased]

## [v4.18.0] - 2023-09-28

- [#425](https://github.com/postmanlabs/openapi-to-postman/issues/425) [8413](https://github.com/postmanlabs/postman-app-support/issues/8413) Added support for multiple request and response examples.

## [v4.17.0] - 2023-09-12

## [v4.16.0] - 2023-08-18

### Added

- Added support for remote $ref resolution in bundle() API.

## [v4.15.0] - 2023-06-27

### Added
Expand Down Expand Up @@ -41,7 +53,7 @@
- Fixed an issue where definition validation was not considering multiple white space characters.
- Fixed issue [#708](https://github.com/postmanlabs/openapi-to-postman/issues/708) where if string is defined for required field, conversion was failing.
- Fixed issue where for certain path segments, collection generation failed.
- Fixed TypeError occurring while checking typeof bodyContent in getXmlVersionContent.
- Fixed TypeError occurring while checking typeof bodyContent in getXmlVersionContent.

## [v4.12.0] - 2023-05-04

Expand Down Expand Up @@ -295,7 +307,7 @@ Newer releases follow the [Keep a Changelog](https://keepachangelog.com/en/1.0.0
- Added support for internal $ref resolution in validation flows.
- Fixed issue where parameter resolution was "schema" when "example" was specified.
- Add supported formats for schema resolution (deref).
- Fix for [#7643](https://github.com/postmanlabs/postman-app-support/issues/7643), [#7914](https://github.com/postmanlabs/postman-app-support/issues/7914), [#9004](https://github.com/postmanlabs/postman-app-support/issues/9004) - Added support for Auth params in response/example.
- Fix for [#7643](https://github.com/postmanlabs/postman-app-support/issues/7643), [#7914](https://github.com/postmanlabs/postman-app-support/issues/7914), [#9004](https://github.com/postmanlabs/postman-app-support/issues/9004) - Added support for Auth params in response/example.
- Bumped up multiple dependecies and dev-dependencies versions to keep them up-to-date.
- Updated code coverage tool from deprecated istanbul to nyc.

Expand Down Expand Up @@ -382,7 +394,7 @@ Newer releases follow the [Keep a Changelog](https://keepachangelog.com/en/1.0.0
#### v1.1.13 (April 21, 2020)

- Added support for detailed validation body mismatches with option detailedBlobValidation.
- Fix for [#8098](https://github.com/postmanlabs/postman-app-support/issues/8098) - Unable to validate schema with type array.
- Fix for [#8098](https://github.com/postmanlabs/postman-app-support/issues/8098) - Unable to validate schema with type array.
- Fixed URIError for invalid URI in transaction.
- Fix for [#152](https://github.com/postmanlabs/openapi-to-postman/issues/152) - Path references not resolved due to improver handling of special characters.
- Fix for [#160](https://github.com/postmanlabs/openapi-to-postman/issues/160) - Added handling for variables in local servers not a part of a URL segment. All path servers to be added as collection variables.
Expand Down Expand Up @@ -588,7 +600,13 @@ Newer releases follow the [Keep a Changelog](https://keepachangelog.com/en/1.0.0

- Base release

[Unreleased]: https://github.com/postmanlabs/openapi-to-postman/compare/v4.15.0...HEAD
[Unreleased]: https://github.com/postmanlabs/openapi-to-postman/compare/v4.18.0...HEAD

[v4.18.0]: https://github.com/postmanlabs/openapi-to-postman/compare/v4.17.0...v4.18.0

[v4.17.0]: https://github.com/postmanlabs/openapi-to-postman/compare/v4.16.0...v4.17.0

[v4.16.0]: https://github.com/postmanlabs/openapi-to-postman/compare/v4.15.0...v4.16.0

[v4.15.0]: https://github.com/postmanlabs/openapi-to-postman/compare/v4.14.0...v4.15.0

Expand Down
Loading
Loading