Skip to content

Commit 75bec25

Browse files
authored
Merge pull request #477 from postmanlabs/release/3.0.0
Release/3.0.0
2 parents 37fab20 + 3bfa3f6 commit 75bec25

File tree

149 files changed

+77363
-872
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

149 files changed

+77363
-872
lines changed

.github/workflows/integration.yml

Lines changed: 27 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,27 @@
1+
name: Test
2+
3+
on:
4+
[pull_request]
5+
6+
jobs:
7+
Unit-Tests:
8+
runs-on: ubuntu-latest
9+
steps:
10+
- uses: actions/checkout@v2
11+
- uses: actions/setup-node@v1
12+
with:
13+
node-version: '14.x'
14+
- run: npm install
15+
- run: npm run test-lint
16+
- run: npm run test-unit
17+
18+
Regression:
19+
needs: Unit-Tests
20+
runs-on: ubuntu-latest
21+
steps:
22+
- uses: actions/checkout@v2
23+
- uses: actions/setup-node@v1
24+
with:
25+
node-version: '14.x'
26+
- run: npm install
27+
- run: npm run test-regression

CHANGELOG.md

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,11 @@
11
# OpenAPI-Postman Changelog
22

3+
#### v3.0.0 (Feb 11, 2022)
4+
* Add support for OpenAPI 3.1.x https://www.openapis.org/blog/2021/02/18/openapi-specification-3-1-released.
5+
* Separated schemUtils into common, 3.1, and 3.0 specific files.
6+
* Added a new internal option for supporting Webhooks: `includeWebhooks`
7+
* Added support for $schema through ajv for various JSON Schema drafts.
8+
39
#### v2.14.0 (January 31, 2022)
410
* Fixed issue where for certain collection requests validateTransactions() provided missing path varaible in request even though it was present.
511
* Fixed issue where we threw TypeError for undefined parameters.

OPTIONS.md

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -21,3 +21,4 @@ strictRequestMatching|boolean|-|false|Whether requests should be strictly matche
2121
allowUrlPathVarMatching|boolean|-|false|Whether to allow matching path variables that are available as part of URL itself in the collection request|VALIDATION
2222
disableOptionalParameters|boolean|-|false|Whether to set optional parameters as disabled|CONVERSION
2323
keepImplicitHeaders|boolean|-|false|Whether to keep implicit headers from the OpenAPI specification, which are removed by default.|CONVERSION
24+
includeWebhooks|boolean|-|false|Select whether to include Webhooks in the generated collection|CONVERSION

0 commit comments

Comments
 (0)