mirror of
https://github.com/hoppscotch/hoppscotch.git
synced 2026-04-26 01:06:00 +03:00
[PR #4142] [MERGED] feat: add support for AWS Signature authorization #4679
Labels
No labels
CodeDay
a11y
browser limited
bug
bug fix
cli
core
critical
design
desktop
discussion
docker
documentation
duplicate
enterprise
feature
feature
fosshack
future
good first issue
hacktoberfest
help wanted
i18n
invalid
major
minor
need information
need testing
not applicable to hoppscotch
not reproducible
pull-request
question
refactor
resolved
sandbox
self-host
spam
stale
testmu
wip
wont fix
No milestone
No project
No assignees
1 participant
Notifications
Due date
No due date set.
Dependencies
No dependencies set.
Reference
starred/hoppscotch#4679
Loading…
Add table
Add a link
Reference in a new issue
No description provided.
Delete branch "%!s()"
Deleting a branch is permanent. Although the deleted branch may continue to exist for a short time before it actually gets removed, it CANNOT be undone in most cases. Continue?
📋 Pull Request Information
Original PR: https://github.com/hoppscotch/hoppscotch/pull/4142
Author: @anwarulislam
Created: 6/24/2024
Status: ✅ Merged
Merged: 8/30/2024
Merged by: @jamesgeorge007
Base:
next← Head:feat/new-auth📝 Commits (10+)
8b6c363feat: auth types array added7c948a8feat: hopp rest v5 schema added2204d31feat: aws-signature auth type added2cae98ffix: hoppscotch-data build errors72bd414feat: new auth components addedbd903c1feat: fields are added for auth typesbedd5cfchore: utils function created for reuse2c6cd7dfeat: aws signature generator added8749be1feat: aws signature partially working447da34feat: aws signature fixed on queryparams📊 Changes
26 files changed (+1490 additions, -657 deletions)
View changed files
📝
packages/hoppscotch-common/locales/en.json(+10 -1)📝
packages/hoppscotch-common/package.json(+1 -0)📝
packages/hoppscotch-common/src/components.d.ts(+223 -215)📝
packages/hoppscotch-common/src/components/graphql/Authorization.vue(+78 -86)📝
packages/hoppscotch-common/src/components/graphql/Headers.vue(+44 -14)📝
packages/hoppscotch-common/src/components/graphql/RequestOptions.vue(+51 -53)📝
packages/hoppscotch-common/src/components/http/Authorization.vue(+51 -75)📝
packages/hoppscotch-common/src/components/http/Headers.vue(+15 -13)➕
packages/hoppscotch-common/src/components/http/authorization/ASAP.vue(+192 -0)➕
packages/hoppscotch-common/src/components/http/authorization/AWSSign.vue(+140 -0)➕
packages/hoppscotch-common/src/components/http/authorization/AkamaiEG.vue(+96 -0)➕
packages/hoppscotch-common/src/components/http/authorization/HAWK.vue(+152 -0)➕
packages/hoppscotch-common/src/components/http/authorization/NTLM.vue(+77 -0)📝
packages/hoppscotch-common/src/components/http/authorization/OAuth2.vue(+2 -55)📝
packages/hoppscotch-common/src/helpers/RequestRunner.ts(+4 -2)➕
packages/hoppscotch-common/src/helpers/auth/index.ts(+56 -0)📝
packages/hoppscotch-common/src/helpers/graphql/connection.ts(+28 -0)📝
packages/hoppscotch-common/src/helpers/graphql/index.ts(+0 -12)📝
packages/hoppscotch-common/src/helpers/utils/EffectiveURL.ts(+106 -41)📝
packages/hoppscotch-common/src/newstore/collections.ts(+2 -2)...and 6 more files
📄 Description
Closes HFE-492
What's changed
This PR adds AWS Signature as a new request auth type.
🔄 This issue represents a GitHub Pull Request. It cannot be merged through Gitea due to API limitations.