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: improved edge function compatibility #702

Merged
merged 30 commits into from
Oct 10, 2023
Merged
Changes from 1 commit
Commits
Show all changes
30 commits
Select commit Hold shift + click to select a range
48767ad
feat: use built-in fetch when available
porcellus Sep 22, 2023
b65d084
Merge remote-tracking branch 'origin/16.0' into feat/edge_function_co…
porcellus Sep 25, 2023
ed34bf4
chore: bump version
porcellus Sep 25, 2023
5aad4fe
feat: make it possible to use our middleware in some unsupported fram…
porcellus Sep 28, 2023
16d73e1
Merge branch '16.2' into feat/edge_function_compatibility
porcellus Sep 29, 2023
64111cc
feat: add edge function testing (#704)
porcellus Sep 29, 2023
c4ef7c0
Merge remote-tracking branch 'origin/16.2' into feat/edge_function_co…
porcellus Oct 6, 2023
974d7b5
test: add shebang to utils script
porcellus Oct 6, 2023
ce49df7
test: save the output of the deployment in case of a failure
porcellus Oct 6, 2023
0ee9742
test: save the output of the deployment in case of a failure
porcellus Oct 6, 2023
27d2bd3
test: use netlify_site_id secret
porcellus Oct 6, 2023
2ea171b
test: build before deploying to netlify
porcellus Oct 6, 2023
0098a3a
test: add TEST_DEPLOYED_VERSION flag to the edge function test gh action
porcellus Oct 6, 2023
0cb09e0
test: check if prod deploy in netlify works
porcellus Oct 6, 2023
ea467ad
ci: debug netlify deployment
porcellus Oct 6, 2023
05f5986
ci: fixing netlify test deployment
porcellus Oct 6, 2023
771f6cf
ci: fixing netlify test deployment
porcellus Oct 6, 2023
f4aeedd
ci: remove earlier fix to check if test fails in CI
porcellus Oct 6, 2023
7455e40
Revert "ci: remove earlier fix to check if test fails in CI"
porcellus Oct 6, 2023
fbcf434
feat: move handleCall from nextjs appdir example
porcellus Oct 6, 2023
c8d3d03
fix: getAppDirRequestHandler export
porcellus Oct 6, 2023
89865b0
feat: PartialNextRequest should accept string as method
porcellus Oct 6, 2023
e78c25b
build: ignore new util script when publishing
porcellus Oct 9, 2023
c9448ee
feat: add verifySession for custom frameworks with a new callback to …
porcellus Oct 9, 2023
2370acd
feat: add export for custom framework verifySession
porcellus Oct 10, 2023
ffd51ff
test: add type checking test for getAppDirRequestHandler and custom f…
porcellus Oct 10, 2023
8cf2886
feat: add custom as an option to the framework config
porcellus Oct 10, 2023
efea64d
Merge remote-tracking branch 'origin/16.3' into feat/edge_function_co…
porcellus Oct 10, 2023
5874da6
test: add tests for custom framework
porcellus Oct 10, 2023
f9f4fa8
Merge branch '16.3' into feat/edge_function_compatibility
rishabhpoddar Oct 10, 2023
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
Prev Previous commit
Next Next commit
feat: add export for custom framework verifySession
porcellus committed Oct 10, 2023
commit 2370acd016539c8b50a14045e79e333c1177ef5b
3 changes: 3 additions & 0 deletions recipe/session/framework/custom/index.d.ts
Original file line number Diff line number Diff line change
@@ -0,0 +1,3 @@
export * from "../../../../lib/build/recipe/session/framework/custom";
import * as _default from "../../../../lib/build/recipe/session/framework/custom";
export default _default;
6 changes: 6 additions & 0 deletions recipe/session/framework/custom/index.js
Original file line number Diff line number Diff line change
@@ -0,0 +1,6 @@
"use strict";
function __export(m) {
for (var p in m) if (!exports.hasOwnProperty(p)) exports[p] = m[p];
}
exports.__esModule = true;
__export(require("../../../../lib/build/recipe/session/framework/custom"));