Skip to content

Commit 54753ea

Browse files
authored
Merge pull request #786 from postmanlabs/release/v1.14.2
Release version v1.14.2
2 parents 07e64b7 + 5114d49 commit 54753ea

File tree

4 files changed

+12
-4
lines changed

4 files changed

+12
-4
lines changed

Diff for: CHANGELOG.md

+9-1
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,12 @@
22

33
## [Unreleased]
44

5+
## [v1.14.2] - 2025-02-21
6+
7+
### Fixed
8+
9+
- Fix for - [#772](https://github.com/postmanlabs/postman-code-generators/issues/772) Ignore workspace dependencies while deepinstall for pnpm.
10+
511
## [v1.14.1] - 2024-12-18
612

713
### Fixed
@@ -190,7 +196,9 @@ v1.0.0 (May 29, 2020)
190196
- Add ES6 syntax support for NodeJS Request, NodeJS Native and NodeJS Unirest
191197
- Fix snippet generation for powershell and jquery, where form data params had no type field
192198

193-
[Unreleased]: https://github.com/postmanlabs/postman-code-generators/compare/v1.14.1...HEAD
199+
[Unreleased]: https://github.com/postmanlabs/postman-code-generators/compare/v1.14.2...HEAD
200+
201+
[v1.14.2]: https://github.com/postmanlabs/postman-code-generators/compare/v1.14.1...v1.14.2
194202

195203
[v1.14.1]: https://github.com/postmanlabs/postman-code-generators/compare/v1.14.0...v1.14.1
196204

Diff for: npm/deepinstall.js

+1-1
Original file line numberDiff line numberDiff line change
@@ -48,7 +48,7 @@ async.series([
4848
}
4949
break;
5050
case 'pnpm':
51-
command = 'pnpm install --prod';
51+
command = 'pnpm install --ignore-workspace --prod';
5252
break;
5353
default:
5454
command = pm + ' install --no-audit --production';

Diff for: package-lock.json

+1-1
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

Diff for: package.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "postman-code-generators",
3-
"version": "1.14.1",
3+
"version": "1.14.2",
44
"description": "Generates code snippets for a postman collection",
55
"main": "index.js",
66
"directories": {

0 commit comments

Comments
 (0)