diff --git a/CHANGELOG.md b/CHANGELOG.md index f3dfd98ff..9d211cdd1 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -2,6 +2,12 @@ ## [Unreleased] +## [v1.14.1] - 2024-12-18 + +### Fixed + +- Fix for - [#780](https://github.com/postmanlabs/postman-code-generators/issues/780) Made the codegens package manager agnostic by removing lock files. + ## [v1.14.0] - 2024-10-10 ### Fixed @@ -184,7 +190,9 @@ v1.0.0 (May 29, 2020) - Add ES6 syntax support for NodeJS Request, NodeJS Native and NodeJS Unirest - Fix snippet generation for powershell and jquery, where form data params had no type field -[Unreleased]: https://github.com/postmanlabs/postman-code-generators/compare/v1.14.0...HEAD +[Unreleased]: https://github.com/postmanlabs/postman-code-generators/compare/v1.14.1...HEAD + +[v1.14.1]: https://github.com/postmanlabs/postman-code-generators/compare/v1.14.0...v1.14.1 [v1.14.0]: https://github.com/postmanlabs/postman-code-generators/compare/v1.13.0...v1.14.0 diff --git a/codegens/csharp-httpclient/.gitignore b/codegens/csharp-httpclient/.gitignore index 90bbb109a..8f6896c8e 100644 --- a/codegens/csharp-httpclient/.gitignore +++ b/codegens/csharp-httpclient/.gitignore @@ -6,6 +6,12 @@ npm-debug.log* yarn-debug.log* yarn-error.log* +# Package manager lock files +yarn.lock +package-lock.json +pnpm-lock.yaml +bun.lockb + # Coverage directory used by tools like istanbul .coverage diff --git a/codegens/csharp-restsharp/.gitignore b/codegens/csharp-restsharp/.gitignore index 9d9b068fb..061d1c7b2 100644 --- a/codegens/csharp-restsharp/.gitignore +++ b/codegens/csharp-restsharp/.gitignore @@ -8,6 +8,12 @@ npm-debug.log* yarn-debug.log* yarn-error.log* +# Package manager lock files +yarn.lock +package-lock.json +pnpm-lock.yaml +bun.lockb + # Runtime data pids *.pid diff --git a/codegens/curl/.gitignore b/codegens/curl/.gitignore index 0b735f7ab..bfb38cf93 100644 --- a/codegens/curl/.gitignore +++ b/codegens/curl/.gitignore @@ -6,6 +6,12 @@ npm-debug.log* yarn-debug.log* yarn-error.log* +# Package manager lock files +yarn.lock +package-lock.json +pnpm-lock.yaml +bun.lockb + # Runtime data pids *.pid diff --git a/codegens/dart-dio/.gitignore b/codegens/dart-dio/.gitignore index 34f4d897c..ca2205e31 100644 --- a/codegens/dart-dio/.gitignore +++ b/codegens/dart-dio/.gitignore @@ -9,6 +9,12 @@ npm-debug.log* yarn-debug.log* yarn-error.log* +# Package manager lock files +yarn.lock +package-lock.json +pnpm-lock.yaml +bun.lockb + # Coverage directory used by tools like istanbul .coverage diff --git a/codegens/dart-dio/package-lock.json b/codegens/dart-dio/package-lock.json deleted file mode 100644 index c1166ce89..000000000 --- a/codegens/dart-dio/package-lock.json +++ /dev/null @@ -1,13 +0,0 @@ -{ - "name": "@postman/codegen-dart-dio", - "version": "0.0.1", - "lockfileVersion": 1, - "requires": true, - "dependencies": { - "lodash": { - "version": "4.17.21", - "resolved": "https://registry.npmjs.org/lodash/-/lodash-4.17.21.tgz", - "integrity": "sha512-v2kDEe57lecTulaDIuNTPy3Ry4gLGJ6Z1O3vE1krgXZNrsQ+LFTGHVxVjcXPs17LhbZVGedAJv8XZ1tvj5FvSg==" - } - } -} diff --git a/codegens/dart-http/.gitignore b/codegens/dart-http/.gitignore index 34f4d897c..ca2205e31 100644 --- a/codegens/dart-http/.gitignore +++ b/codegens/dart-http/.gitignore @@ -9,6 +9,12 @@ npm-debug.log* yarn-debug.log* yarn-error.log* +# Package manager lock files +yarn.lock +package-lock.json +pnpm-lock.yaml +bun.lockb + # Coverage directory used by tools like istanbul .coverage diff --git a/codegens/golang/.gitignore b/codegens/golang/.gitignore index c4d4ee535..23523185d 100644 --- a/codegens/golang/.gitignore +++ b/codegens/golang/.gitignore @@ -12,6 +12,12 @@ pids *.seed *.pid.lock +# Package manager lock files +yarn.lock +package-lock.json +pnpm-lock.yaml +bun.lockb + # Prevent IDE stuff .idea .vscode diff --git a/codegens/http/.gitignore b/codegens/http/.gitignore index f92058a8b..85e29b198 100644 --- a/codegens/http/.gitignore +++ b/codegens/http/.gitignore @@ -12,6 +12,12 @@ pids *.seed *.pid.lock +# Package manager lock files +yarn.lock +package-lock.json +pnpm-lock.yaml +bun.lockb + # Prevent IDE stuff .idea .vscode diff --git a/codegens/java-okhttp/.gitignore b/codegens/java-okhttp/.gitignore index 7bfcb1aa5..1d4c13274 100644 --- a/codegens/java-okhttp/.gitignore +++ b/codegens/java-okhttp/.gitignore @@ -10,6 +10,12 @@ npm-debug.log* yarn-debug.log* yarn-error.log* +# Package manager lock files +yarn.lock +package-lock.json +pnpm-lock.yaml +bun.lockb + # Runtime data pids *.pid diff --git a/codegens/java-unirest/.gitignore b/codegens/java-unirest/.gitignore index bbdb09d31..106dca989 100644 --- a/codegens/java-unirest/.gitignore +++ b/codegens/java-unirest/.gitignore @@ -13,6 +13,12 @@ npm-debug.log* yarn-debug.log* yarn-error.log* +# Package manager lock files +yarn.lock +package-lock.json +pnpm-lock.yaml +bun.lockb + # Runtime data pids *.pid diff --git a/codegens/js-fetch/.gitignore b/codegens/js-fetch/.gitignore index cbf9ecbc5..ff20256ea 100644 --- a/codegens/js-fetch/.gitignore +++ b/codegens/js-fetch/.gitignore @@ -11,6 +11,12 @@ pids *.seed *.pid.lock +# Package manager lock files +yarn.lock +package-lock.json +pnpm-lock.yaml +bun.lockb + # Prevent IDE stuff .idea .vscode diff --git a/codegens/js-jquery/.gitignore b/codegens/js-jquery/.gitignore index 36948272a..ee4bf0664 100644 --- a/codegens/js-jquery/.gitignore +++ b/codegens/js-jquery/.gitignore @@ -6,6 +6,12 @@ npm-debug.log* yarn-debug.log* yarn-error.log* +# Package manager lock files +yarn.lock +package-lock.json +pnpm-lock.yaml +bun.lockb + # Runtime data pids *.pid diff --git a/codegens/js-xhr/.gitignore b/codegens/js-xhr/.gitignore index 0c6c137f2..10cfd51a9 100644 --- a/codegens/js-xhr/.gitignore +++ b/codegens/js-xhr/.gitignore @@ -12,6 +12,12 @@ pids *.seed *.pid.lock +# Package manager lock files +yarn.lock +package-lock.json +pnpm-lock.yaml +bun.lockb + # Prevent IDE stuff .idea .vscode diff --git a/codegens/kotlin-okhttp/.gitignore b/codegens/kotlin-okhttp/.gitignore index 7bfcb1aa5..9517952b4 100644 --- a/codegens/kotlin-okhttp/.gitignore +++ b/codegens/kotlin-okhttp/.gitignore @@ -16,6 +16,12 @@ pids *.seed *.pid.lock +# Package manager lock files +yarn.lock +package-lock.json +pnpm-lock.yaml +bun.lockb + # Prevent IDE stuff .idea .vscode diff --git a/codegens/libcurl/.gitignore b/codegens/libcurl/.gitignore index 610b2e18b..5dd537950 100644 --- a/codegens/libcurl/.gitignore +++ b/codegens/libcurl/.gitignore @@ -14,6 +14,12 @@ pids *.seed *.pid.lock +# Package manager lock files +yarn.lock +package-lock.json +pnpm-lock.yaml +bun.lockb + # Prevent IDE stuff .idea .vscode diff --git a/codegens/libcurl/package-lock.json b/codegens/libcurl/package-lock.json deleted file mode 100644 index b650d640f..000000000 --- a/codegens/libcurl/package-lock.json +++ /dev/null @@ -1,5 +0,0 @@ -{ - "name": "@postman/codegen-libcurl", - "version": "0.1.0", - "lockfileVersion": 1 -} diff --git a/codegens/nodejs-axios/.gitignore b/codegens/nodejs-axios/.gitignore index dd41cd99b..f57ef32e8 100644 --- a/codegens/nodejs-axios/.gitignore +++ b/codegens/nodejs-axios/.gitignore @@ -12,6 +12,12 @@ pids *.seed *.pid.lock +# Package manager lock files +yarn.lock +package-lock.json +pnpm-lock.yaml +bun.lockb + # temporarily generated file run.js diff --git a/codegens/nodejs-axios/package-lock.json b/codegens/nodejs-axios/package-lock.json deleted file mode 100644 index 521c75440..000000000 --- a/codegens/nodejs-axios/package-lock.json +++ /dev/null @@ -1,102 +0,0 @@ -{ - "name": "@postman/codegen-nodejs-axios", - "version": "0.0.1", - "lockfileVersion": 1, - "requires": true, - "dependencies": { - "asynckit": { - "version": "0.4.0", - "resolved": "https://registry.npmjs.org/asynckit/-/asynckit-0.4.0.tgz", - "integrity": "sha1-x57Zf380y48robyXkLzDZkdLS3k=", - "dev": true - }, - "axios": { - "version": "1.3.4", - "resolved": "https://registry.npmjs.org/axios/-/axios-1.3.4.tgz", - "integrity": "sha512-toYm+Bsyl6VC5wSkfkbbNB6ROv7KY93PEBBL6xyDczaIHasAiv4wPqQ/c4RjoQzipxRD2W5g21cOqQulZ7rHwQ==", - "dev": true, - "requires": { - "follow-redirects": "^1.15.0", - "form-data": "^4.0.0", - "proxy-from-env": "^1.1.0" - }, - "dependencies": { - "form-data": { - "version": "4.0.0", - "resolved": "https://registry.npmjs.org/form-data/-/form-data-4.0.0.tgz", - "integrity": "sha512-ETEklSGi5t0QMZuiXoA/Q6vcnxcLQP5vdugSpuAyi6SVGi2clPPp+xgEhuMaHC+zGgn31Kd235W35f7Hykkaww==", - "dev": true, - "requires": { - "asynckit": "^0.4.0", - "combined-stream": "^1.0.8", - "mime-types": "^2.1.12" - } - } - } - }, - "combined-stream": { - "version": "1.0.8", - "resolved": "https://registry.npmjs.org/combined-stream/-/combined-stream-1.0.8.tgz", - "integrity": "sha512-FQN4MRfuJeHf7cBbBMJFXhKSDq+2kAArBlmRBvcvFE5BB1HZKXtSFASDhdlz9zOYwxh8lDdnvmMOe/+5cdoEdg==", - "dev": true, - "requires": { - "delayed-stream": "~1.0.0" - } - }, - "delayed-stream": { - "version": "1.0.0", - "resolved": "https://registry.npmjs.org/delayed-stream/-/delayed-stream-1.0.0.tgz", - "integrity": "sha1-3zrhmayt+31ECqrgsp4icrJOxhk=", - "dev": true - }, - "follow-redirects": { - "version": "1.15.2", - "resolved": "https://registry.npmjs.org/follow-redirects/-/follow-redirects-1.15.2.tgz", - "integrity": "sha512-VQLG33o04KaQ8uYi2tVNbdrWp1QWxNNea+nmIB4EVM28v0hmP17z7aG1+wAkNzVq4KeXTq3221ye5qTJP91JwA==", - "dev": true - }, - "form-data": { - "version": "3.0.0", - "resolved": "https://registry.npmjs.org/form-data/-/form-data-3.0.0.tgz", - "integrity": "sha512-CKMFDglpbMi6PyN+brwB9Q/GOw0eAnsrEZDgcsH5Krhz5Od/haKHAX0NmQfha2zPPz0JpWzA7GJHGSnvCRLWsg==", - "dev": true, - "requires": { - "asynckit": "^0.4.0", - "combined-stream": "^1.0.8", - "mime-types": "^2.1.12" - } - }, - "lodash": { - "version": "4.17.21", - "resolved": "https://registry.npmjs.org/lodash/-/lodash-4.17.21.tgz", - "integrity": "sha512-v2kDEe57lecTulaDIuNTPy3Ry4gLGJ6Z1O3vE1krgXZNrsQ+LFTGHVxVjcXPs17LhbZVGedAJv8XZ1tvj5FvSg==" - }, - "mime-db": { - "version": "1.43.0", - "resolved": "https://registry.npmjs.org/mime-db/-/mime-db-1.43.0.tgz", - "integrity": "sha512-+5dsGEEovYbT8UY9yD7eE4XTc4UwJ1jBYlgaQQF38ENsKR3wj/8q8RFZrF9WIZpB2V1ArTVFUva8sAul1NzRzQ==", - "dev": true - }, - "mime-types": { - "version": "2.1.26", - "resolved": "https://registry.npmjs.org/mime-types/-/mime-types-2.1.26.tgz", - "integrity": "sha512-01paPWYgLrkqAyrlDorC1uDwl2p3qZT7yl806vW7DvDoxwXi46jsjFbg+WdwotBIk6/MbEhO/dh5aZ5sNj/dWQ==", - "dev": true, - "requires": { - "mime-db": "1.43.0" - } - }, - "proxy-from-env": { - "version": "1.1.0", - "resolved": "https://registry.npmjs.org/proxy-from-env/-/proxy-from-env-1.1.0.tgz", - "integrity": "sha512-D+zkORCbA9f1tdWRK0RaCR3GPv50cMxcrz4X8k5LTSUD1Dkw47mKJEZQNunItRTkWwgtaUSo1RVFRIG9ZXiFYg==", - "dev": true - }, - "qs": { - "version": "6.9.2", - "resolved": "https://registry.npmjs.org/qs/-/qs-6.9.2.tgz", - "integrity": "sha512-2eQ6zajpK7HwqrY1rRtGw5IZvjgtELXzJECaEDuzDFo2jjnIXpJSimzd4qflWZq6bLLi+Zgfj5eDrAzl/lptyg==", - "dev": true - } - } -} diff --git a/codegens/nodejs-native/.gitignore b/codegens/nodejs-native/.gitignore index 6f6e4e36b..541393f6e 100644 --- a/codegens/nodejs-native/.gitignore +++ b/codegens/nodejs-native/.gitignore @@ -20,6 +20,12 @@ pids .vscode *.sublime-* +# Package manager lock files +yarn.lock +package-lock.json +pnpm-lock.yaml +bun.lockb + # Directory for instrumented libs generated by jscoverage/JSCover lib-cov diff --git a/codegens/nodejs-request/.gitignore b/codegens/nodejs-request/.gitignore index dd41cd99b..f57ef32e8 100644 --- a/codegens/nodejs-request/.gitignore +++ b/codegens/nodejs-request/.gitignore @@ -12,6 +12,12 @@ pids *.seed *.pid.lock +# Package manager lock files +yarn.lock +package-lock.json +pnpm-lock.yaml +bun.lockb + # temporarily generated file run.js diff --git a/codegens/nodejs-unirest/.gitignore b/codegens/nodejs-unirest/.gitignore index 3fa4c1b7b..28b01017f 100644 --- a/codegens/nodejs-unirest/.gitignore +++ b/codegens/nodejs-unirest/.gitignore @@ -12,6 +12,12 @@ pids *.seed *.pid.lock +# Package manager lock files +yarn.lock +package-lock.json +pnpm-lock.yaml +bun.lockb + # Prevent IDE stuff .idea .vscode diff --git a/codegens/objective-c/.gitignore b/codegens/objective-c/.gitignore index 909b2b654..2bc96af71 100644 --- a/codegens/objective-c/.gitignore +++ b/codegens/objective-c/.gitignore @@ -12,6 +12,12 @@ yarn-error.log* # Coverage directory used by tools like istanbul .coverage +# Package manager lock files +yarn.lock +package-lock.json +pnpm-lock.yaml +bun.lockb + # node-waf configuration .lock-wscript diff --git a/codegens/ocaml-cohttp/.gitignore b/codegens/ocaml-cohttp/.gitignore index 0b735f7ab..e23b590e7 100644 --- a/codegens/ocaml-cohttp/.gitignore +++ b/codegens/ocaml-cohttp/.gitignore @@ -12,6 +12,12 @@ pids *.seed *.pid.lock +# Package manager lock files +yarn.lock +package-lock.json +pnpm-lock.yaml +bun.lockb + # Prevent IDE stuff .idea .vscode diff --git a/codegens/php-curl/.gitignore b/codegens/php-curl/.gitignore index 62b6a2801..f9c9f5cf9 100644 --- a/codegens/php-curl/.gitignore +++ b/codegens/php-curl/.gitignore @@ -12,6 +12,12 @@ pids *.seed *.pid.lock +# Package manager lock files +yarn.lock +package-lock.json +pnpm-lock.yaml +bun.lockb + # Prevent IDE stuff .idea .vscode diff --git a/codegens/php-guzzle/.gitignore b/codegens/php-guzzle/.gitignore index e4daa554f..66ebd66ed 100644 --- a/codegens/php-guzzle/.gitignore +++ b/codegens/php-guzzle/.gitignore @@ -6,6 +6,12 @@ npm-debug.log* yarn-debug.log* yarn-error.log* +# Package manager lock files +yarn.lock +package-lock.json +pnpm-lock.yaml +bun.lockb + # Coverage directory used by tools like istanbul .coverage diff --git a/codegens/php-httprequest2/.gitignore b/codegens/php-httprequest2/.gitignore index ed6277832..10114bffe 100644 --- a/codegens/php-httprequest2/.gitignore +++ b/codegens/php-httprequest2/.gitignore @@ -6,6 +6,12 @@ npm-debug.log* yarn-debug.log* yarn-error.log* +# Package manager lock files +yarn.lock +package-lock.json +pnpm-lock.yaml +bun.lockb + # Coverage directory used by tools like istanbul .coverage diff --git a/codegens/php-pecl-http/.gitignore b/codegens/php-pecl-http/.gitignore index 0b735f7ab..bfb38cf93 100644 --- a/codegens/php-pecl-http/.gitignore +++ b/codegens/php-pecl-http/.gitignore @@ -6,6 +6,12 @@ npm-debug.log* yarn-debug.log* yarn-error.log* +# Package manager lock files +yarn.lock +package-lock.json +pnpm-lock.yaml +bun.lockb + # Runtime data pids *.pid diff --git a/codegens/php-pecl-http/package-lock.json b/codegens/php-pecl-http/package-lock.json deleted file mode 100644 index 31156769c..000000000 --- a/codegens/php-pecl-http/package-lock.json +++ /dev/null @@ -1,5 +0,0 @@ -{ - "name": "@postman/codegen-php-pecl-http", - "version": "0.1.1", - "lockfileVersion": 1 -} diff --git a/codegens/powershell-restmethod/.gitignore b/codegens/powershell-restmethod/.gitignore index cbf9ecbc5..ff20256ea 100644 --- a/codegens/powershell-restmethod/.gitignore +++ b/codegens/powershell-restmethod/.gitignore @@ -11,6 +11,12 @@ pids *.seed *.pid.lock +# Package manager lock files +yarn.lock +package-lock.json +pnpm-lock.yaml +bun.lockb + # Prevent IDE stuff .idea .vscode diff --git a/codegens/python-http.client/.gitignore b/codegens/python-http.client/.gitignore index ae3c28f23..bd2ffa72b 100644 --- a/codegens/python-http.client/.gitignore +++ b/codegens/python-http.client/.gitignore @@ -6,6 +6,12 @@ npm-debug.log* yarn-debug.log* yarn-error.log* +# Package manager lock files +yarn.lock +package-lock.json +pnpm-lock.yaml +bun.lockb + # Runtime data pids *.pid diff --git a/codegens/python-http.client/package-lock.json b/codegens/python-http.client/package-lock.json deleted file mode 100644 index 2a2a58d50..000000000 --- a/codegens/python-http.client/package-lock.json +++ /dev/null @@ -1,129 +0,0 @@ -{ - "name": "@postman/codegen-python-http.client", - "version": "0.1.1", - "lockfileVersion": 1, - "requires": true, - "dependencies": { - "@faker-js/faker": { - "version": "5.5.3", - "resolved": "https://registry.npmjs.org/@faker-js/faker/-/faker-5.5.3.tgz", - "integrity": "sha512-R11tGE6yIFwqpaIqcfkcg7AICXzFg14+5h5v0TfF/9+RMDL6jhzCy/pxHVOfbALGdtVYdt6JdR21tuxEgl34dw==" - }, - "charset": { - "version": "1.0.1", - "resolved": "https://registry.npmjs.org/charset/-/charset-1.0.1.tgz", - "integrity": "sha512-6dVyOOYjpfFcL1Y4qChrAoQLRHvj2ziyhcm0QJlhOcAhykL/k1kTUPbeo+87MNRTRdk2OIIsIXbuF3x2wi5EXg==" - }, - "file-type": { - "version": "3.9.0", - "resolved": "https://registry.npmjs.org/file-type/-/file-type-3.9.0.tgz", - "integrity": "sha512-RLoqTXE8/vPmMuTI88DAzhMYC99I8BWv7zYP4A1puo5HIjEJ5EX48ighy4ZyKMG9EDXxBgW6e++cn7d1xuFghA==" - }, - "http-reasons": { - "version": "0.1.0", - "resolved": "https://registry.npmjs.org/http-reasons/-/http-reasons-0.1.0.tgz", - "integrity": "sha512-P6kYh0lKZ+y29T2Gqz+RlC9WBLhKe8kDmcJ+A+611jFfxdPsbMRQ5aNmFRM3lENqFkK+HTTL+tlQviAiv0AbLQ==" - }, - "iconv-lite": { - "version": "0.6.3", - "resolved": "https://registry.npmjs.org/iconv-lite/-/iconv-lite-0.6.3.tgz", - "integrity": "sha512-4fCk79wshMdzMp2rH06qWrJE4iolqLhCUH+OiuIgU++RB0+94NlDL81atO7GX55uUKueo0txHNtvEyI6D7WdMw==", - "requires": { - "safer-buffer": ">= 2.1.2 < 3.0.0" - } - }, - "liquid-json": { - "version": "0.3.1", - "resolved": "https://registry.npmjs.org/liquid-json/-/liquid-json-0.3.1.tgz", - "integrity": "sha512-wUayTU8MS827Dam6MxgD72Ui+KOSF+u/eIqpatOtjnvgJ0+mnDq33uC2M7J0tPK+upe/DpUAuK4JUU89iBoNKQ==" - }, - "lodash": { - "version": "4.17.21", - "resolved": "https://registry.npmjs.org/lodash/-/lodash-4.17.21.tgz", - "integrity": "sha512-v2kDEe57lecTulaDIuNTPy3Ry4gLGJ6Z1O3vE1krgXZNrsQ+LFTGHVxVjcXPs17LhbZVGedAJv8XZ1tvj5FvSg==" - }, - "lru-cache": { - "version": "6.0.0", - "resolved": "https://registry.npmjs.org/lru-cache/-/lru-cache-6.0.0.tgz", - "integrity": "sha512-Jo6dJ04CmSjuznwJSS3pUeWmd/H0ffTlkXXgwZi+eq1UCmqQwCh+eLsYOYCwY991i2Fah4h1BEMCx4qThGbsiA==", - "requires": { - "yallist": "^4.0.0" - } - }, - "mime-db": { - "version": "1.52.0", - "resolved": "https://registry.npmjs.org/mime-db/-/mime-db-1.52.0.tgz", - "integrity": "sha512-sPU4uV7dYlvtWJxwwxHD0PuihVNiE7TyAbQ5SWxDCB9mUYvOgroQOwYQQOKPJ8CIbE+1ETVlOoK1UC2nU3gYvg==" - }, - "mime-format": { - "version": "2.0.1", - "resolved": "https://registry.npmjs.org/mime-format/-/mime-format-2.0.1.tgz", - "integrity": "sha512-XxU3ngPbEnrYnNbIX+lYSaYg0M01v6p2ntd2YaFksTu0vayaw5OJvbdRyWs07EYRlLED5qadUZ+xo+XhOvFhwg==", - "requires": { - "charset": "^1.0.0" - } - }, - "mime-types": { - "version": "2.1.35", - "resolved": "https://registry.npmjs.org/mime-types/-/mime-types-2.1.35.tgz", - "integrity": "sha512-ZDY+bPm5zTTF+YpCrAU9nK0UgICYPT0QtT1NZWFv4s++TNkcgVaT0g6+4R2uI4MjQjzysHB1zxuWL50hzaeXiw==", - "requires": { - "mime-db": "1.52.0" - } - }, - "postman-collection": { - "version": "4.4.0", - "resolved": "https://registry.npmjs.org/postman-collection/-/postman-collection-4.4.0.tgz", - "integrity": "sha512-2BGDFcUwlK08CqZFUlIC8kwRJueVzPjZnnokWPtJCd9f2J06HBQpGL7t2P1Ud1NEsK9NHq9wdipUhWLOPj5s/Q==", - "requires": { - "@faker-js/faker": "5.5.3", - "file-type": "3.9.0", - "http-reasons": "0.1.0", - "iconv-lite": "0.6.3", - "liquid-json": "0.3.1", - "lodash": "4.17.21", - "mime-format": "2.0.1", - "mime-types": "2.1.35", - "postman-url-encoder": "3.0.5", - "semver": "7.5.4", - "uuid": "8.3.2" - } - }, - "postman-url-encoder": { - "version": "3.0.5", - "resolved": "https://registry.npmjs.org/postman-url-encoder/-/postman-url-encoder-3.0.5.tgz", - "integrity": "sha512-jOrdVvzUXBC7C+9gkIkpDJ3HIxOHTIqjpQ4C1EMt1ZGeMvSEpbFCKq23DEfgsj46vMnDgyQf+1ZLp2Wm+bKSsA==", - "requires": { - "punycode": "^2.1.1" - } - }, - "punycode": { - "version": "2.3.1", - "resolved": "https://registry.npmjs.org/punycode/-/punycode-2.3.1.tgz", - "integrity": "sha512-vYt7UD1U9Wg6138shLtLOvdAu+8DsC/ilFtEVHcH+wydcSpNE20AfSOduf6MkRFahL5FY7X1oU7nKVZFtfq8Fg==" - }, - "safer-buffer": { - "version": "2.1.2", - "resolved": "https://registry.npmjs.org/safer-buffer/-/safer-buffer-2.1.2.tgz", - "integrity": "sha512-YZo3K82SD7Riyi0E1EQPojLz7kpepnSQI9IyPbHHg1XXXevb5dJI7tpyN2ADxGcQbHG7vcyRHk0cbwqcQriUtg==" - }, - "semver": { - "version": "7.5.4", - "resolved": "https://registry.npmjs.org/semver/-/semver-7.5.4.tgz", - "integrity": "sha512-1bCSESV6Pv+i21Hvpxp3Dx+pSD8lIPt8uVjRrxAUt/nbswYc+tK6Y2btiULjd4+fnq15PX+nqQDC7Oft7WkwcA==", - "requires": { - "lru-cache": "^6.0.0" - } - }, - "uuid": { - "version": "8.3.2", - "resolved": "https://registry.npmjs.org/uuid/-/uuid-8.3.2.tgz", - "integrity": "sha512-+NYs2QeMWy+GWFOEm9xnn6HCDp0l7QBD7ml8zLUmJ+93Q5NF0NocErnwkTkXVFNiX3/fpC6afS8Dhb/gz7R7eg==" - }, - "yallist": { - "version": "4.0.0", - "resolved": "https://registry.npmjs.org/yallist/-/yallist-4.0.0.tgz", - "integrity": "sha512-3wdGidZyq5PB084XLES5TpOSRA3wjXAlIWMhum2kRcv/41Sn2emQ0dycQW4uZXLejwKvg6EsvbdlVL+FYEct7A==" - } - } -} diff --git a/codegens/python-requests/.gitignore b/codegens/python-requests/.gitignore index 9fcc07d50..4def0bfe8 100644 --- a/codegens/python-requests/.gitignore +++ b/codegens/python-requests/.gitignore @@ -6,6 +6,12 @@ npm-debug.log* yarn-debug.log* yarn-error.log* +# Package manager lock files +yarn.lock +package-lock.json +pnpm-lock.yaml +bun.lockb + # Runtime data pids *.pid diff --git a/codegens/r-httr/.gitignore b/codegens/r-httr/.gitignore index 2c7c686e6..3040212d5 100644 --- a/codegens/r-httr/.gitignore +++ b/codegens/r-httr/.gitignore @@ -6,6 +6,12 @@ npm-debug.log* yarn-debug.log* yarn-error.log* +# Package manager lock files +yarn.lock +package-lock.json +pnpm-lock.yaml +bun.lockb + # Coverage directory used by tools like istanbul .coverage diff --git a/codegens/r-rcurl/.gitignore b/codegens/r-rcurl/.gitignore index 2456e5cd3..ae0667e09 100644 --- a/codegens/r-rcurl/.gitignore +++ b/codegens/r-rcurl/.gitignore @@ -6,6 +6,12 @@ npm-debug.log* yarn-debug.log* yarn-error.log* +# Package manager lock files +yarn.lock +package-lock.json +pnpm-lock.yaml +bun.lockb + # Coverage directory used by tools like istanbul .coverage diff --git a/codegens/ruby/.gitignore b/codegens/ruby/.gitignore index 85f712d79..ff2ebb52b 100644 --- a/codegens/ruby/.gitignore +++ b/codegens/ruby/.gitignore @@ -6,6 +6,12 @@ npm-debug.log* yarn-debug.log* yarn-error.log* +# Package manager lock files +yarn.lock +package-lock.json +pnpm-lock.yaml +bun.lockb + # Runtime data pids *.pid diff --git a/codegens/rust-reqwest/.gitignore b/codegens/rust-reqwest/.gitignore index b14183ed0..b2797fd43 100644 --- a/codegens/rust-reqwest/.gitignore +++ b/codegens/rust-reqwest/.gitignore @@ -6,6 +6,12 @@ npm-debug.log* yarn-debug.log* yarn-error.log* +# Package manager lock files +yarn.lock +package-lock.json +pnpm-lock.yaml +bun.lockb + # Runtime data pids *.pid diff --git a/codegens/rust-reqwest/package-lock.json b/codegens/rust-reqwest/package-lock.json deleted file mode 100644 index 145b40683..000000000 --- a/codegens/rust-reqwest/package-lock.json +++ /dev/null @@ -1,13 +0,0 @@ -{ - "name": "@postman/codegen-rust-reqwest", - "version": "0.0.1", - "lockfileVersion": 1, - "requires": true, - "dependencies": { - "lodash": { - "version": "4.17.21", - "resolved": "https://registry.npmjs.org/lodash/-/lodash-4.17.21.tgz", - "integrity": "sha512-v2kDEe57lecTulaDIuNTPy3Ry4gLGJ6Z1O3vE1krgXZNrsQ+LFTGHVxVjcXPs17LhbZVGedAJv8XZ1tvj5FvSg==" - } - } -} diff --git a/codegens/shell-httpie/.gitignore b/codegens/shell-httpie/.gitignore index f860b0ae0..08b0dc346 100644 --- a/codegens/shell-httpie/.gitignore +++ b/codegens/shell-httpie/.gitignore @@ -6,6 +6,12 @@ npm-debug.log* yarn-debug.log* yarn-error.log* +# Package manager lock files +yarn.lock +package-lock.json +pnpm-lock.yaml +bun.lockb + # Runtime data pids *.pid diff --git a/codegens/shell-httpie/package-lock.json b/codegens/shell-httpie/package-lock.json deleted file mode 100644 index ae748f3e9..000000000 --- a/codegens/shell-httpie/package-lock.json +++ /dev/null @@ -1,5 +0,0 @@ -{ - "name": "@postman/codegen-shell-httpie", - "version": "0.1.0", - "lockfileVersion": 1 -} diff --git a/codegens/shell-wget/.gitignore b/codegens/shell-wget/.gitignore index 2e17627c5..20ec5c9a3 100644 --- a/codegens/shell-wget/.gitignore +++ b/codegens/shell-wget/.gitignore @@ -6,6 +6,12 @@ npm-debug.log* yarn-debug.log* yarn-error.log* +# Package manager lock files +yarn.lock +package-lock.json +pnpm-lock.yaml +bun.lockb + # Runtime data pids *.pid diff --git a/codegens/swift/.gitignore b/codegens/swift/.gitignore index 94234d840..b6c6170b1 100644 --- a/codegens/swift/.gitignore +++ b/codegens/swift/.gitignore @@ -6,6 +6,12 @@ npm-debug.log* yarn-debug.log* yarn-error.log* +# Package manager lock files +yarn.lock +package-lock.json +pnpm-lock.yaml +bun.lockb + # Runtime data pids *.pid diff --git a/npm/boilerplate/.gitignore b/npm/boilerplate/.gitignore index 2c7c686e6..3040212d5 100644 --- a/npm/boilerplate/.gitignore +++ b/npm/boilerplate/.gitignore @@ -6,6 +6,12 @@ npm-debug.log* yarn-debug.log* yarn-error.log* +# Package manager lock files +yarn.lock +package-lock.json +pnpm-lock.yaml +bun.lockb + # Coverage directory used by tools like istanbul .coverage diff --git a/package-lock.json b/package-lock.json index d3540ab45..f148af8f3 100644 --- a/package-lock.json +++ b/package-lock.json @@ -1,6 +1,6 @@ { "name": "postman-code-generators", - "version": "1.14.0", + "version": "1.14.1", "lockfileVersion": 1, "requires": true, "dependencies": { diff --git a/package.json b/package.json index 1bf813ba1..8bd1437d4 100644 --- a/package.json +++ b/package.json @@ -1,6 +1,6 @@ { "name": "postman-code-generators", - "version": "1.14.0", + "version": "1.14.1", "description": "Generates code snippets for a postman collection", "main": "index.js", "directories": {