Gregory Schier
0e14625e62
Hand the body back from send instead of holding it for a lookup
...
Holding an unsaved body against its response id let a plugin stash the id
and read it in a later call, which would throw only sometimes and only
for ad-hoc sends. Documenting that was never going to be enough.
send now returns the response and its body together, so there is nothing
to stash: an unsaved body is a value you were handed. ctx.httpResponse
.body() goes back to meaning one thing, a saved response read by id, and
refuses ids it has no row for. Reading is identical either way, so no
caller has to know which kind of send it made.
2026-08-16 10:07:44 -07:00
Michaël Arnauts and Gregory Schier
be004425fa
fix: Add username to the tokenStoreKey so the saved token is invalidated when the user changes in the environment ( #426 )
...
Co-authored-by: Gregory Schier <gschier1990@gmail.com >
2026-08-14 13:50:48 -07:00
Gregory Schier
42b22d4c07
Fall back to JWT exp claim when OAuth token response has no expires_in ( #506 )
2026-07-14 08:24:07 -07:00
Gregory Schier and Claude Opus 4.6
b4a1c418bb
Run oxfmt across repo, add format script and docs
...
Add .oxfmtignore to skip generated bindings and wasm-pack output.
Add npm format script, update DEVELOPMENT.md for Vite+ toolchain,
and format all non-generated files with oxfmt.
Co-Authored-By: Claude Opus 4.6 <noreply@anthropic.com >
2026-03-13 10:15:49 -07:00
Gregory Schier
45262edfbd
Migrate to Vite+ unified toolchain ( #428 )
2026-03-13 09:27:56 -07:00
Gregory Schier
88f5f0e045
Add redirect drop metadata and warning UI ( #418 )
2026-03-05 06:14:11 -08:00
Gregory Schier
0c7051d59c
Better external OAuth callback format
2026-03-04 09:10:49 -08:00
Gregory Schier
5a184c1b83
Fix OAuth token fetch failures from ad-hoc response persistence ( #399 )
2026-02-19 14:04:34 -08:00
f5d11cb6d3
Add support for client assertions in the OAuth 2 plugin ( #395 )
...
Co-authored-by: Davide Becker <github@reg.davide.me >
Co-authored-by: Gregory Schier <gschier1990@gmail.com >
2026-02-14 07:38:54 -08:00
Gregory Schier
b41a8e04cb
Graceful oauth server shutdown
2026-02-02 07:31:55 -08:00
Gregory Schier and Claude Opus 4.5
c2f068970b
Add external browser support for OAuth2 authorization ( #375 )
...
Co-authored-by: Claude Opus 4.5 <noreply@anthropic.com >
2026-01-30 10:29:49 -08:00
Gregory Schier
fc1e8baa23
Catch any 4XX error on refresh token failure
...
https://feedback.yaak.app/p/folders-oauth2-refresh-token-issue
2025-12-09 14:08:31 -08:00
Gregory Schier
79dd50474d
Conditionally disable auth
2025-11-26 10:30:16 -08:00
Gregory Schier
ec3e2e16a9
Switch to BiomeJS ( #306 )
2025-11-23 08:38:13 -08:00
Gregor Majcen and Gregory Schier
593a7ab7e5
Add an option to allow jsonpath/xpath to return as array ( #297 )
...
Co-authored-by: Gregory Schier <gschier1990@gmail.com >
2025-11-13 05:57:11 -08:00
Étienne Lévesque and Gregory Schier
8300187566
[Plugins] [Auth] [oauth2] Support identity platforms with underlying IDPs ( #261 )
...
Co-authored-by: Gregory Schier <gschier1990@gmail.com >
2025-10-17 16:07:25 -07:00
Gregory Schier
485a9ea47c
Show toast on plugin event handling errors instead of crashing
...
Also set folder context on template render and fix timestamp function
2025-10-06 06:53:45 -07:00
Gregory Schier
20bb89de33
Try fix oauth window creation
2025-10-02 07:45:50 -07:00
Gregory Schier
523e7dcf16
Add bootstrap to release script (to fix lint)
2025-09-22 08:57:05 -07:00
Gregory Schier
fa98351e30
Fix lint
2025-09-21 08:04:47 -07:00
Gregory Schier
eb3d1c409b
Merge pull request #256
...
* Update environment model to get ready for request/folder environments
* Folder environments in UI
* Folder environments working
* Tweaks and fixes
* Tweak environment encryption UX
* Tweak environment encryption UX
* Address comments
* Update fn name
* Add tsc back to lint rules
* Update src-web/components/EnvironmentEditor.tsx
* Merge remote-tracking branch 'origin/folder-environments' into folder…
2025-09-21 07:54:26 -07:00
Gregory Schier
20681e5be3
Scoped OAuth 2 tokens
2025-07-23 22:03:03 -07:00
Gregory Schier
861b41b5ae
JSONPath plugin README
2025-07-20 06:42:33 -07:00
Gregory Schier
7f4ccbe014
OAuth 2 plugin README
2025-07-19 21:47:19 -07:00
Gregory Schier
b67ea29aff
Better error
2025-07-18 14:49:13 -07:00
Gregory Schier
a657c32445
Better authorization URL handling
2025-07-18 14:48:45 -07:00
Gregory Schier
0c60d190af
Fix lint errors and show docs explorer on Cmd click
2025-07-14 14:52:16 -07:00
Gregory Schier
6f1fd7a254
Fix lint errors after upgrades and narrow tsc
2025-07-14 10:09:08 -07:00
Gregory Schier
6c0f9377cd
Fix plugin builds
2025-07-07 14:17:47 -07:00
Gregory Schier
47722643ee
Add descriptions to plugins
2025-07-06 12:47:13 -07:00
Gregory Schier
19ffcd18a6
gRPC request actions and "copy as gRPCurl" ( #232 )
2025-07-05 15:40:41 -07:00
Gregory Schier
19c6ad9d97
Theme plugins ( #231 )
2025-07-03 13:06:30 -07:00
Gregory Schier
8817be679b
Fix PKCE flow and clean up other flows
2025-06-25 07:10:11 -07:00
Gregory Schier
9f6a3da8d3
Disable auth for OAuth token http requests
2025-06-03 12:42:31 -07:00
Gregory Schier
c1b18105b5
Fix log toast
2025-06-03 09:33:03 -07:00
James Cleverley-Prance
eb5ef7d7d5
fix: send id_token in OAuth2 requests ( #223 )
2025-06-03 09:28:56 -07:00
Gregory Schier
6eb16afd96
Add debug logs for oauth plugin
2025-06-03 09:27:54 -07:00
Gregory Schier
b52570bf58
Support id_token for OAuth 2.0
...
https://feedback.yaak.app/p/unable-to-use-idtoken-for-auth-in-authorization-code-oauth2
2025-05-30 08:02:29 -07:00
Gregory Schier
101efdd512
Merge plugins repo into mono
2025-05-29 08:02:24 -07:00
Gregory Schier
723e8d2874
Move everything into subdir for repo merge
2025-05-29 07:16:39 -07:00
James Cleverley-Prance
79362c81e5
fix: oauth2 audience not sent ( #10 )
2025-05-29 07:06:24 -07:00
Gregory Schier
6d6012fe67
More template functions
2025-05-25 20:27:04 -07:00
Étienne Lévesque
4ae7f99264
fix: Fixes the implicit OAuth flow not waiting for user to authenticate ( #8 )
2025-05-17 13:47:24 -07:00
Gregory Schier
c73f0b02bd
print body in OAuth 2 http errors
2025-05-16 08:16:18 -07:00
Gregory Schier
9615d3e29b
Add audience parameter to OAuth 2
...
Closes https://feedback.yaak.app/p/how-do-i-send-an-audience-using-oauth2
2025-05-16 07:17:22 -07:00
Gregory Schier
493e844c01
Fix access token refreshing
2025-03-06 07:00:11 -08:00
Gregory Schier
c0dbe46318
Better data key for window
2025-02-24 22:34:10 -08:00
Gregory Schier
52937c3097
Soft required field
2025-02-21 13:43:19 -08:00
Gregory Schier
597b5bb783
Make all OAuth 2.0 fields optional
...
Closes mountain-loop/yaak#165
2025-02-21 13:40:05 -08:00
Gregory Schier
1ae6837842
Remove log
2025-01-27 08:37:54 -08:00