Skip to content

Commit 52f0879

Browse files
author
Ankit Saini
authored
Merge branch 'develop' into snyk-upgrade-b41209984198c140b0c577a544e21208
2 parents 29880b3 + c677bb3 commit 52f0879

File tree

5 files changed

+77
-110
lines changed

5 files changed

+77
-110
lines changed

CHANGELOG.md

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,7 @@
1-
v1.2 (April 22, 2022)
1+
v1.2.1 (April 26, 2022)
2+
* Add label for 'R' language
3+
4+
v1.2.0 (April 22, 2022)
25
* Add new codegens - php-guzzle, R-httr, R-rcurl
36
* Fix issue with pipeline failing due to updated version of RestSharp
47
* Fix for - [502](https://github.com/postmanlabs/postman-code-generators/issues/502) Allow GET method to have a body in java-okhttp if present in input request

README.md

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -35,11 +35,14 @@ List of supported code generators:
3535
| Objective-C| NSURLSession|
3636
| OCaml | Cohttp |
3737
|PHP | cURL |
38+
|PHP | Guzzle |
3839
|PHP | pecl_http |
3940
|PHP | HTTP_Request2 |
4041
| PowerShell | RestMethod |
4142
| Python | http.client |
4243
| Python | Requests |
44+
| R | httr |
45+
| R | RCurl |
4346
| Ruby | Net:HTTP |
4447
| Shell | Httpie |
4548
| Shell | wget |

lib/assets/languageLabels.json

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -18,5 +18,6 @@
1818
"nodejs": "NodeJs",
1919
"ocaml": "OCaml",
2020
"shell": "Shell",
21-
"dart": "Dart"
21+
"dart": "Dart",
22+
"r": "R"
2223
}

package-lock.json

Lines changed: 65 additions & 105 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": "postman-code-generators",
3-
"version": "1.2.0",
3+
"version": "1.2.1",
44
"description": "Generates code snippets for a postman collection",
55
"main": "index.js",
66
"directories": {
@@ -25,7 +25,7 @@
2525
"license": "Apache-2.0",
2626
"homepage": "https://github.com/postmanlabs/code-generators",
2727
"dependencies": {
28-
"async": "2.6.3",
28+
"async": "3.2.2",
2929
"path": "0.12.7",
3030
"postman-collection": "3.6.11",
3131
"shelljs": "0.8.5"
@@ -35,7 +35,7 @@
3535
"chai": "4.3.6",
3636
"chalk": "2.4.2",
3737
"eslint": "5.16.0",
38-
"dependency-check": "2.10.1",
38+
"dependency-check": "3.0.0",
3939
"editorconfig": "0.15.3",
4040
"eslint-plugin-jsdoc": "3.15.1",
4141
"eslint-plugin-lodash": "2.7.0",

0 commit comments

Comments
 (0)