Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

feat: oauth return location header #768

Merged
merged 51 commits into from
Feb 24, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
Show all changes
51 commits
Select commit Hold shift + click to select a range
7edf9c1
feat: oauth-return-location-header
loks0n Feb 5, 2024
673ffa1
feat: deno oauth return location header
loks0n Feb 5, 2024
91b33a3
Merge branch '1.5.x' of https://github.com/appwrite/sdk-generator int…
loks0n Feb 20, 2024
bb57b68
fix: deno & node types
loks0n Feb 21, 2024
04a785a
feat: python oauth2 redirect string
loks0n Feb 21, 2024
6d5cf80
feat: ruby redirect OAuth2
loks0n Feb 21, 2024
242073b
fix: ruby
loks0n Feb 21, 2024
af7c1b0
feat: php oauth2 redirect
loks0n Feb 21, 2024
c1cca11
fix: ruby
loks0n Feb 21, 2024
577077e
fix: queries serialisation
loks0n Feb 21, 2024
7a52518
chore: removed unused imports
loks0n Feb 21, 2024
df8bd42
feat: dart
loks0n Feb 21, 2024
8316c90
fix: dart
loks0n Feb 21, 2024
c68a78d
feat: dotnet
loks0n Feb 21, 2024
49f7ae3
chore: cleanup indentation
loks0n Feb 21, 2024
9bf5dd9
chore: remove extra space
loks0n Feb 21, 2024
63a6c6a
fix: dotnet
loks0n Feb 21, 2024
aa5f8c4
chore: missing semi
loks0n Feb 21, 2024
dddb9a7
chore(dotnet): make PrepareRequest sync
loks0n Feb 21, 2024
e058c49
fix: dotnet
loks0n Feb 21, 2024
7751574
fix: dotnet
loks0n Feb 22, 2024
565832a
feat: try swift
loks0n Feb 22, 2024
03d6c89
fix: remove swift @available notice
loks0n Feb 22, 2024
039223a
feat: swift
loks0n Feb 22, 2024
345490b
fix: swift
loks0n Feb 22, 2024
9087898
chore: dotnet remove unneccessary condition
loks0n Feb 23, 2024
a436aa6
feat: kotlin
loks0n Feb 23, 2024
d4709f3
fix: android & apple
loks0n Feb 23, 2024
aa3b45d
Remove component activity from kotlin oauth
abnegate Feb 24, 2024
e3e8d7b
Make sure headers are included for all request types
abnegate Feb 24, 2024
aa05a4b
Fix Kotlin generic sub schema model nested types
abnegate Feb 24, 2024
f693fa1
Fix swift webauth return type
abnegate Feb 24, 2024
f0fe52b
Make sure headers are included for swift
abnegate Feb 24, 2024
eabec12
Fix Apple oauth refs
abnegate Feb 24, 2024
156d0d5
Remove redundant cookie listener
abnegate Feb 24, 2024
d8dd75b
Add redirect endpoint to mock server and specs
abnegate Feb 24, 2024
2588562
Update deps
abnegate Feb 24, 2024
110d946
Remove redundant classes
abnegate Feb 24, 2024
a8d0569
Update mock server to PHP 8.3
abnegate Feb 24, 2024
7d83c0f
Add test for server side webauth redirects returning as URL
abnegate Feb 24, 2024
fcade8a
Fix dart test
abnegate Feb 24, 2024
1e0920e
Fix ruby test
abnegate Feb 24, 2024
dd0a914
Fix swift test
abnegate Feb 24, 2024
eacc78b
Fix deno
abnegate Feb 24, 2024
27b46f9
Fix dotnet
abnegate Feb 24, 2024
ad6710f
Fix PHP
abnegate Feb 24, 2024
4c7e7de
Fix swift
abnegate Feb 24, 2024
b0ba1bf
Fix params for flutter tests to pass
abnegate Feb 24, 2024
3961b28
Fix Kotlin
abnegate Feb 24, 2024
972624d
Update checkout version to fix warnings
abnegate Feb 24, 2024
0a351a4
Update lint checkout
abnegate Feb 24, 2024
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions .github/workflows/tests.yml
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@ jobs:

steps:
- name: Checkout repository
uses: actions/checkout@v3
uses: actions/checkout@v4
with:
submodules: recursive

Expand Down Expand Up @@ -55,7 +55,7 @@ jobs:

steps:
- name: Checkout code
uses: actions/checkout@v3
uses: actions/checkout@v4

- name: Setup PHP with PECL extension
uses: shivammathur/setup-php@v2
Expand Down
10 changes: 5 additions & 5 deletions composer.json
Original file line number Diff line number Diff line change
Expand Up @@ -30,13 +30,13 @@
"ext-curl": "*",
"ext-mbstring": "*",
"ext-json": "*",
"twig/twig": "^3.4.1",
"matthiasmullie/minify": "^1.3.68"
"twig/twig": "v3.8.*",
"matthiasmullie/minify": "1.3.*"
},
"require-dev": {
"phpunit/phpunit": "^9.5.21",
"brianium/paratest": "^6.4",
"squizlabs/php_codesniffer": "^3.6"
"phpunit/phpunit": "10.5.*",
"brianium/paratest": "v7.4.*",
"squizlabs/php_codesniffer": "3.9.*"
},
"platform": {
"php": "8.2"
Expand Down
Loading