Skip to content

Commit 55f2b00

Browse files
authored
Merge pull request #845 from postmanlabs/release/v5.0.0
Release version v5.0.0
2 parents 8beb95c + 4f52cbf commit 55f2b00

File tree

5 files changed

+64
-85
lines changed

5 files changed

+64
-85
lines changed

.github/workflows/integration.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@ jobs:
1010
runs-on: ubuntu-latest
1111
strategy:
1212
matrix:
13-
node-version: [14.x, 16.x, 18.x]
13+
node-version: [18.x, 20.x, 22.x]
1414
steps:
1515
- uses: actions/checkout@v3
1616
- name: Use Node.js ${{ matrix.node-version }}
@@ -27,7 +27,7 @@ jobs:
2727
runs-on: ubuntu-latest
2828
strategy:
2929
matrix:
30-
node-version: [14.x, 16.x, 18.x]
30+
node-version: [18.x, 20.x, 22.x]
3131
steps:
3232
- uses: actions/checkout@v3
3333
- name: Use Node.js ${{ matrix.node-version }}

CHANGELOG.md

Lines changed: 9 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,12 @@
22

33
## [Unreleased]
44

5+
## [v5.0.0] - 2025-03-07
6+
7+
### Breaking Changes
8+
9+
- Drop support for node < v18.
10+
511
## [v4.25.0] - 2025-01-15
612

713
## [v4.24.0] - 2024-08-13
@@ -649,7 +655,9 @@ Newer releases follow the [Keep a Changelog](https://keepachangelog.com/en/1.0.0
649655

650656
- Base release
651657

652-
[Unreleased]: https://github.com/postmanlabs/openapi-to-postman/compare/v4.25.0...HEAD
658+
[Unreleased]: https://github.com/postmanlabs/openapi-to-postman/compare/v5.0.0...HEAD
659+
660+
[v5.0.0]: https://github.com/postmanlabs/openapi-to-postman/compare/v4.25.0...v5.0.0
653661

654662
[v4.25.0]: https://github.com/postmanlabs/openapi-to-postman/compare/v4.24.0...v4.25.0
655663

package-lock.json

Lines changed: 49 additions & 78 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

package.json

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "openapi-to-postmanv2",
3-
"version": "4.25.0",
3+
"version": "5.0.0",
44
"description": "Convert a given OpenAPI specification to Postman Collection v2.0",
55
"homepage": "https://github.com/postmanlabs/openapi-to-postman",
66
"bugs": "https://github.com/postmanlabs/openapi-to-postman/issues",
@@ -109,7 +109,7 @@
109109
}
110110
},
111111
"engines": {
112-
"node": ">=8"
112+
"node": ">=18"
113113
},
114114
"main": "index.js",
115115
"bin": {
@@ -130,7 +130,7 @@
130130
"oas-resolver-browser": "2.5.6",
131131
"object-hash": "3.0.0",
132132
"path-browserify": "1.0.1",
133-
"postman-collection": "^4.4.0",
133+
"postman-collection": "^5.0.0",
134134
"swagger2openapi": "7.0.8",
135135
"yaml": "1.10.2"
136136
},

test/system/repository.test.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -49,7 +49,7 @@ describe('project repository', function () {
4949
expect(json.keywords).to.eql(['openapi', 'postman', 'api', 'schema', 'swagger', 'oas']);
5050

5151
expect(json).to.have.property('engines');
52-
expect(json.engines).to.eql({ node: '>=8' });
52+
expect(json.engines).to.eql({ node: '>=18' });
5353
});
5454

5555
it('must have a valid version string in form of <major>.<minor>.<revision>', function () {

0 commit comments

Comments
 (0)