[PR #528] [MERGED] even merge #2678

Closed
opened 2026-03-17 00:21:41 +03:00 by kerem · 0 comments
Owner

📋 Pull Request Information

Original PR: https://github.com/hoppscotch/hoppscotch/pull/528
Author: @liyasthomas
Created: 1/26/2020
Status: Merged
Merged: 1/27/2020
Merged by: @liyasthomas

Base: i18nHead: master


📝 Commits (10+)

  • 61d7dcf Added AxiosStrategy and ProxyStrategy Network Strategies
  • 3726f0a Added sendNetworkRequest to detect appropriate strategy and use it
  • 5ef1b5b Refactor index.vue to use Network Strategies
  • 3a8b433 Refactor graphql page to use Network Strategies
  • bd008f4 Refactor network and ProxyStrategy code
  • e7a15c9 Merge pull request #491 from liyasthomas/i18n
  • 1b783fd Merge branch 'master' into refactor/network-strategy
  • 061f86f 🐛 Fixed Nuxt loader won't finish after response
  • c8878ab Merge pull request #487 from AndrewBastin/refactor/network-strategy
  • 2faf675 🚨 Removing linter warnings

📊 Changes

33 files changed (+2532 additions, -306 deletions)

View changed files

📝 .travis.yml (+20 -18)
📝 README.md (+23 -25)
📝 assets/css/fonts.scss (+1 -0)
📝 assets/css/styles.scss (+2 -5)
📝 build.js (+1 -1)
📝 components/collections/addCollection.vue (+9 -1)
📝 components/collections/addFolder.vue (+5 -1)
📝 components/collections/editCollection.vue (+4 -0)
📝 components/collections/importExportCollections.vue (+69 -33)
📝 components/collections/index.vue (+23 -7)
📝 components/collections/request.vue (+5 -1)
components/firebase/feeds.vue (+85 -0)
components/firebase/inputform.vue (+55 -0)
components/firebase/login.vue (+115 -0)
components/graphql/queryeditor.vue (+135 -0)
📝 components/history.vue (+28 -15)
📝 firestore.rules (+8 -1)
functions/fb.js (+192 -0)
functions/network.js (+24 -0)
functions/strategies/AxiosStrategy.js (+23 -0)

...and 13 more files

📄 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/528 **Author:** [@liyasthomas](https://github.com/liyasthomas) **Created:** 1/26/2020 **Status:** ✅ Merged **Merged:** 1/27/2020 **Merged by:** [@liyasthomas](https://github.com/liyasthomas) **Base:** `i18n` ← **Head:** `master` --- ### 📝 Commits (10+) - [`61d7dcf`](https://github.com/hoppscotch/hoppscotch/commit/61d7dcf61b2f98c3c06b5485525e746aab744b6a) Added AxiosStrategy and ProxyStrategy Network Strategies - [`3726f0a`](https://github.com/hoppscotch/hoppscotch/commit/3726f0a376c121c66115a65ce46d29aef39d0e05) Added sendNetworkRequest to detect appropriate strategy and use it - [`5ef1b5b`](https://github.com/hoppscotch/hoppscotch/commit/5ef1b5b75c2f6fe76c44eada1613ce623ba8e770) Refactor index.vue to use Network Strategies - [`3a8b433`](https://github.com/hoppscotch/hoppscotch/commit/3a8b4337f0309a167601a35462d81b851b5f7bba) Refactor graphql page to use Network Strategies - [`bd008f4`](https://github.com/hoppscotch/hoppscotch/commit/bd008f42dd358e5ce41d1720fee971d093bb9202) Refactor network and ProxyStrategy code - [`e7a15c9`](https://github.com/hoppscotch/hoppscotch/commit/e7a15c924299c568ce453f7e5b865b56a3e3d59b) Merge pull request #491 from liyasthomas/i18n - [`1b783fd`](https://github.com/hoppscotch/hoppscotch/commit/1b783fdfa050963ec2931958ce5d509b3ed5e231) Merge branch 'master' into refactor/network-strategy - [`061f86f`](https://github.com/hoppscotch/hoppscotch/commit/061f86fbfa3ee8a074c4e5270be0146507e92033) :bug: Fixed Nuxt loader won't finish after response - [`c8878ab`](https://github.com/hoppscotch/hoppscotch/commit/c8878aba576a7b040b49fd99f6015b256a825f07) Merge pull request #487 from AndrewBastin/refactor/network-strategy - [`2faf675`](https://github.com/hoppscotch/hoppscotch/commit/2faf675c0a5d5cd8fa69392e0e85b5d667fb4977) :rotating_light: Removing linter warnings ### 📊 Changes **33 files changed** (+2532 additions, -306 deletions) <details> <summary>View changed files</summary> 📝 `.travis.yml` (+20 -18) 📝 `README.md` (+23 -25) 📝 `assets/css/fonts.scss` (+1 -0) 📝 `assets/css/styles.scss` (+2 -5) 📝 `build.js` (+1 -1) 📝 `components/collections/addCollection.vue` (+9 -1) 📝 `components/collections/addFolder.vue` (+5 -1) 📝 `components/collections/editCollection.vue` (+4 -0) 📝 `components/collections/importExportCollections.vue` (+69 -33) 📝 `components/collections/index.vue` (+23 -7) 📝 `components/collections/request.vue` (+5 -1) ➕ `components/firebase/feeds.vue` (+85 -0) ➕ `components/firebase/inputform.vue` (+55 -0) ➕ `components/firebase/login.vue` (+115 -0) ➕ `components/graphql/queryeditor.vue` (+135 -0) 📝 `components/history.vue` (+28 -15) 📝 `firestore.rules` (+8 -1) ➕ `functions/fb.js` (+192 -0) ➕ `functions/network.js` (+24 -0) ➕ `functions/strategies/AxiosStrategy.js` (+23 -0) _...and 13 more files_ </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:21:41 +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#2678
No description provided.