bb43d4803a
feat!(smalltrip,router): log handler type name and package on Handle and HandleFunc
2025-08-08 19:16:44 -03:00
982c2a4cb5
feat(smalltrip,problem): panic middleware
2025-07-30 19:15:18 -03:00
e158aebbd5
feat(smalltrip,problem): make WithDetail, WithDetailf and WithError append message if there is already one
2025-07-30 19:15:08 -03:00
b6a41a168b
fix(smalltrip,problem): name NewInternalServerError instead of NewInternalError
2025-07-30 19:14:59 -03:00
2acd042352
chore(smalltrip,problem): add license header to problem package files
2025-07-30 19:14:46 -03:00
93febe6efc
feat(smalltrip): remove exceptions package in favor of problem
2025-07-30 19:14:44 -03:00
770eeaa25c
feat(smalltrip,problem): use handler browser as default handler
2025-07-30 19:14:43 -03:00
5069ac6478
feat(smalltrip,problem): middleware support to set global handlers
2025-07-30 19:14:43 -03:00
47670daf55
feat(smalltrip,problem): handler browser
2025-07-30 19:14:43 -03:00
6fca911c8f
feat(smalltrip,problem): handler template
2025-07-30 19:14:42 -03:00
793b6180e7
refactor(smalltrip,problems): remove fallbacks from handlers
2025-07-30 19:14:42 -03:00
0f1d7a01d8
refactor(smalltrip,problems): rename http.go to handlers.go
2025-07-29 19:18:28 -03:00
ed8f1e9601
feat(smalltrip,problems): use Problem interface on handlers
2025-07-29 19:18:28 -03:00
22f2ea5fa8
feat(smalltrip,problems): Problem interface
2025-07-29 19:18:27 -03:00
61d9bee554
fix(smalltrip,problems): make problems be structs with Problem embedded
2025-07-29 19:15:10 -03:00
6ed38cf1cf
refactor(smalltrip,problems): define RetryAfter header parsing into separated type
2025-07-29 19:15:10 -03:00
42f2f114fa
feat(smallstrip,problems): 400s codes constructors and problems
2025-07-29 19:14:36 -03:00
e8fdd9cbf5
refactor(smallstrip,problems): make 500 error types distinct and not aliases
2025-07-29 19:14:36 -03:00
3c08d5dbec
feat(smalltrip,problems): 500s code constructors and problems
2025-07-04 19:15:27 -03:00
5fe4fae97e
feat(smalltrip,problems): http handler for problems (wip)
2025-07-04 19:15:26 -03:00
9ce32a5f6b
feat(smalltrip,problems): new problem package to handle 400 and 500 error codes
...
This is planned to replace the exceptions package, having a nicer and
more extendable API, based on the RFC 9457 (HTTP problems)
2025-07-04 19:15:24 -03:00
7ae5c14f6c
feat(smalltrip): use multiplexer interface instead of http.ServeMux
...
This will be useful for the future to provide something akin to
plugins/addons to the router.
2025-06-27 22:02:39 -03:00
3fc9631fbc
feat(smallstrip): WithMiddleware option
2025-06-27 22:01:13 -03:00
13f15a479b
chore(smalltrip): delete routes file
2025-06-27 21:59:55 -03:00
9f3fb63e3d
refactor(smalltrip): simplify router implementation
...
This removes all the parse route and route group code, since they
haven't a lot of use for it. Router is now just a small wrapper over Mux
to add middleware support.
2025-06-27 21:59:16 -03:00
ceda7536f1
fix(smalltrip,exception): make MethodNotAllowed error more clear about allowed methods
2025-03-11 19:28:25 -03:00
56e822a184
feat(smallstrip,middleware): rename Dev middleware to DisableCache
2025-03-06 18:44:33 -03:00
0ccb26ab78
refactor(smalltrip,exception): rename exceptions package to exception, singular form
2025-03-05 13:51:22 -03:00
883118156a
fix(smallstrip,exceptions): missing return causing nil de-reference
2025-03-05 12:21:50 -03:00
a2452dd239
fix(smallstrip,exceptions): superfulous call when responding exception after first Write
2025-03-05 11:51:14 -03:00
9055d4ad3a
feat(smallstrip,exceptions): improve default exception template
2025-03-05 10:41:58 -03:00
05619c382c
revert(smalltrip,middleware): remove net.ParseIP to validate ip address
2025-03-05 09:57:04 -03:00
a16254848b
fix(smalltrip): middlewares are not wrapped with previous ones
2025-03-05 09:45:56 -03:00
3851ae51f7
revert(smalltrip,middleware): remove premature optimization from logger
2025-03-05 09:45:31 -03:00
f3317501f7
fix(smalltrip,middleware): cache directives using floats instead of int
2025-03-05 09:12:13 -03:00
90a5169f1b
chore(smalltrip): format the copyright author line
2025-02-27 16:21:57 -03:00
49192ad704
chore(smalltrip): add LICENSE file and headers
2025-02-27 16:21:01 -03:00
88631bff47
fix(smalltrip,middleware): import statement still poiting to groute
2025-02-27 16:20:35 -03:00
645690b7f8
refactor(smalltrip): remove unecessary length argument in make
2025-02-26 19:30:25 -03:00
1a40569716
refactor(smalltrip): rename handleRouter to handleGroup
2025-02-26 19:30:06 -03:00
57f8113401
fix(smallstrip,middleware): rename bool variable to not conflict with built-in id
2025-02-26 18:38:49 -03:00
a6285d27a0
feat(smalltrip,middleware): check interface of directives struct
2025-02-26 18:37:34 -03:00
abf96bf3f6
refactor(smalltrip,exceptions): use std log levels as Severity Levels
2025-02-26 18:12:22 -03:00
a8439efc49
feat(smalltrip,exceptions): make panic errors be of severity FATAL
2025-02-26 17:51:21 -03:00
7bbd2836a6
feat(smalltrip,exceptions): PanicMiddleware to recover from unexcepted panics
2025-02-26 17:48:44 -03:00
b6101c7d1d
docs(smalltrip,exceptions): add MDN documentation for each status code on 500s contructors
2025-02-26 16:47:03 -03:00
ad17abe01c
feat(smalltrip,exceptions): retryAfter in 503 Service Unavailable exceptionn
2025-02-26 16:39:35 -03:00
59a5ea56eb
docs(smalltrip,exceptions): document all 500s status code constructors
2025-02-26 16:03:15 -03:00
b226d51bda
feat(smalltrip,exceptions): 500 exceptions constructors
2025-02-26 15:58:23 -03:00
5feeb15561
docs(smalltrip,exceptions): add MDN documentation for each status code on 400s contructors
2025-02-26 10:54:38 -03:00