[PR #1276] [MERGED] Upstream #3194

Closed
opened 2026-03-17 00:49:48 +03:00 by kerem · 0 comments
Owner

📋 Pull Request Information

Original PR: https://github.com/hoppscotch/hoppscotch/pull/1276
Author: @liyasthomas
Created: 10/15/2020
Status: Merged
Merged: 10/15/2020
Merged by: @liyasthomas

Base: i18nHead: master


📝 Commits (10+)

  • 123f4a3 Updated contributors and sponsors list
  • 16f02e2 Updated contributors and sponsors list
  • 30250e1 add codegen for nodejs native and instrument snapshot tests
  • fe1618d move test data to fixtures
  • bea8c89 Bump @nuxtjs/pwa from 3.1.0 to 3.1.2
  • 1639ea7 Merge pull request #1250 from hoppscotch/dependabot/npm_and_yarn/nuxtjs/pwa-3.1.2
  • 6135bc7 Merge branch 'master' into add-nodejs-native-codegen
  • 6c82680 Merge pull request #1249 from yq314/add-nodejs-native-codegen
  • a4c5817 Use function as default value for array prop
  • 92854b9 Python http client codegen (#1252)

📊 Changes

19 files changed (+1836 additions, -495 deletions)

View changed files

📝 .all-contributorsrc (+4 -95)
📝 README.md (+3 -53)
📝 components/collections/collection.vue (+5 -3)
📝 components/collections/folder.vue (+4 -3)
📝 components/collections/index.vue (+52 -1)
📝 components/graphql/type.vue (+1 -1)
📝 components/layout/contributors.vue (+0 -93)
📝 docker-compose.yml (+1 -0)
helpers/codegen/__tests__/__snapshots__/codegen.spec.js.snap (+990 -0)
helpers/codegen/__tests__/codegen.spec.js (+91 -0)
📝 helpers/codegen/codegen.js (+8 -0)
helpers/codegen/generators/cs-restsharp.js (+90 -0)
📝 helpers/codegen/generators/curl.js (+3 -2)
helpers/codegen/generators/nodejs-native.js (+78 -0)
helpers/codegen/generators/python-http-client.js (+95 -0)
helpers/codegen/generators/wget.js (+42 -0)
📝 package-lock.json (+354 -231)
📝 package.json (+11 -11)
📝 pages/graphql.vue (+4 -2)

📄 Description

No description provided


🔄 This issue represents a GitHub Pull Request. It cannot be merged through Gitea due to API limitations.

## 📋 Pull Request Information **Original PR:** https://github.com/hoppscotch/hoppscotch/pull/1276 **Author:** [@liyasthomas](https://github.com/liyasthomas) **Created:** 10/15/2020 **Status:** ✅ Merged **Merged:** 10/15/2020 **Merged by:** [@liyasthomas](https://github.com/liyasthomas) **Base:** `i18n` ← **Head:** `master` --- ### 📝 Commits (10+) - [`123f4a3`](https://github.com/hoppscotch/hoppscotch/commit/123f4a39314decfa0772a36cad13efb9464bd798) Updated contributors and sponsors list - [`16f02e2`](https://github.com/hoppscotch/hoppscotch/commit/16f02e2544d30b7c1bd6c50a625e62bbef858855) Updated contributors and sponsors list - [`30250e1`](https://github.com/hoppscotch/hoppscotch/commit/30250e1afac86a76811f28ac21c41b09cf73bc81) add codegen for nodejs native and instrument snapshot tests - [`fe1618d`](https://github.com/hoppscotch/hoppscotch/commit/fe1618d1d8822acf20ca919cf815d65eefbf30cb) move test data to __fixtures__ - [`bea8c89`](https://github.com/hoppscotch/hoppscotch/commit/bea8c89d9f284ba3f6fe937a88ffa1b803e58bc6) Bump @nuxtjs/pwa from 3.1.0 to 3.1.2 - [`1639ea7`](https://github.com/hoppscotch/hoppscotch/commit/1639ea7552ffe8318ad8efc7ac7fe2cb01f42cd7) Merge pull request #1250 from hoppscotch/dependabot/npm_and_yarn/nuxtjs/pwa-3.1.2 - [`6135bc7`](https://github.com/hoppscotch/hoppscotch/commit/6135bc716ede57f7817580cff35ba78d3b46ca19) Merge branch 'master' into add-nodejs-native-codegen - [`6c82680`](https://github.com/hoppscotch/hoppscotch/commit/6c82680066b2cd8c7a7c612c465b8ad1b24ae0ca) Merge pull request #1249 from yq314/add-nodejs-native-codegen - [`a4c5817`](https://github.com/hoppscotch/hoppscotch/commit/a4c5817b54c29a8a4644e2d76623750d2559612a) Use function as default value for array prop - [`92854b9`](https://github.com/hoppscotch/hoppscotch/commit/92854b9e84ef31d555498893f5e863a512eb369e) Python http client codegen (#1252) ### 📊 Changes **19 files changed** (+1836 additions, -495 deletions) <details> <summary>View changed files</summary> 📝 `.all-contributorsrc` (+4 -95) 📝 `README.md` (+3 -53) 📝 `components/collections/collection.vue` (+5 -3) 📝 `components/collections/folder.vue` (+4 -3) 📝 `components/collections/index.vue` (+52 -1) 📝 `components/graphql/type.vue` (+1 -1) 📝 `components/layout/contributors.vue` (+0 -93) 📝 `docker-compose.yml` (+1 -0) ➕ `helpers/codegen/__tests__/__snapshots__/codegen.spec.js.snap` (+990 -0) ➕ `helpers/codegen/__tests__/codegen.spec.js` (+91 -0) 📝 `helpers/codegen/codegen.js` (+8 -0) ➕ `helpers/codegen/generators/cs-restsharp.js` (+90 -0) 📝 `helpers/codegen/generators/curl.js` (+3 -2) ➕ `helpers/codegen/generators/nodejs-native.js` (+78 -0) ➕ `helpers/codegen/generators/python-http-client.js` (+95 -0) ➕ `helpers/codegen/generators/wget.js` (+42 -0) 📝 `package-lock.json` (+354 -231) 📝 `package.json` (+11 -11) 📝 `pages/graphql.vue` (+4 -2) </details> ### 📄 Description _No description provided_ --- <sub>🔄 This issue represents a GitHub Pull Request. It cannot be merged through Gitea due to API limitations.</sub>
kerem 2026-03-17 00:49:48 +03:00
Sign in to join this conversation.
No milestone
No project
No assignees
1 participant
Notifications
Due date
The due date is invalid or out of range. Please use the format "yyyy-mm-dd".

No due date set.

Dependencies

No dependencies set.

Reference
starred/hoppscotch#3194
No description provided.