Commit Graph

16 Commits

Author SHA1 Message Date
dcf00d8460
rework context
All checks were successful
AWS-Zig Build / build-zig-0.11.0-amd64-host (push) Successful in 1m50s
This commit is a significant refactor that fixes a number of things.

1. Replaces the optional helpers import (which was always weird) with a
   mandatory interface import on behalf of the application. This is
   actually a good thing as it enables all things below.
2. Removes the severely awkward union that was the lambda context. Now,
   no matter how your handler runs, a single object with everything you
   need is fully populated and (nearly always) works as you would
   expect. There is a slight exception to this with AWS Lambda that is
   related to the service itself. It is also possible that not
   everything is passed in correctly for Cloudflare, which, if true,
   will be addressed later.
3. Allows writes to the context object. These will be added to the
   output, but is implementation dependent, and I'm not 100% sure I've
   got it right yet, but the infrastructure is there.
4. Allows proper tests throughout this project.
5. Allows proper tests in the application too.
6. Removes the need for the handler to be public under flexlib. Flexilib
   handler registration now works just like everything else. Note,
   however, that flexilib is unique in that your handler registration
   function will return before the program ends. If this is important
   for resource cleanup, @import("build_options").build_type is your
   friend.
7. Request method can now be passed into console applications using -m
   or --method
2023-10-24 23:45:12 -07:00
05dd8b7e06
support -u/--url command line args to determine target
All checks were successful
AWS-Zig Build / build-zig-0.11.0-amd64-host (push) Successful in 2m0s
2023-10-23 13:45:17 -07:00
47e4b0d54c
allow handler more control in status reporting
All checks were successful
AWS-Zig Build / build-zig-0.11.0-amd64-host (push) Successful in 1m46s
2023-10-23 12:49:18 -07:00
e7a6aa5f04
allow cloudflare to be used for zig build
All checks were successful
AWS-Zig Build / build-zig-0.11.0-amd64-host (push) Successful in 1m50s
2023-10-20 22:44:30 -07:00
0c6a9366f5
cloudflare fixes
All checks were successful
AWS-Zig Build / build-zig-0.11.0-amd64-host (push) Successful in 1m32s
2023-10-20 22:28:38 -07:00
88eb415a1e
cloudflare deploy not designed for wasi
All checks were successful
AWS-Zig Build / build-zig-0.11.0-amd64-host (push) Successful in 1m30s
2023-10-20 22:04:41 -07:00
cbe8b6dd1f
initial commit: cloudflare
Some checks failed
AWS-Zig Build / build-zig-0.11.0-amd64-host (push) Failing after 1m39s
2023-10-20 21:58:34 -07:00
5405b9eeff
skip lambda test decls under wasi
All checks were successful
AWS-Zig Build / build-zig-0.11.0-amd64-host (push) Successful in 1m27s
2023-10-06 12:09:49 -07:00
668debd29d
initial WASI support
Some checks failed
AWS-Zig Build / build-zig-0.11.0-amd64-host (push) Failing after 1m36s
2023-10-06 11:48:19 -07:00
30d27e3002
use flexilib interface module directly
All checks were successful
AWS-Zig Build / build-zig-0.11.0-amd64-host (push) Successful in 1m23s
2023-10-04 06:55:25 -07:00
542cf44bf4
should be ZigRequest/ZigResponse
All checks were successful
AWS-Zig Build / build-zig-0.11.0-amd64-host (push) Successful in 1m32s
2023-10-03 15:18:31 -07:00
54740a7022
add context for current providers
All checks were successful
AWS-Zig Build / build-zig-0.11.0-amd64-host (push) Successful in 1m29s
2023-10-03 13:52:47 -07:00
31321a4871
enable tests on lambda.zig 2023-09-20 14:20:39 -07:00
e4195103a2
aws lambda support 2023-09-18 08:27:45 -07:00
b313be2476
add standalone web server support 2023-09-16 10:33:29 -07:00
5bb9f3de07
it is alive 2023-09-16 08:14:11 -07:00