watermill
watermill copied to clipboard
Building event-driven applications the easy way in Go.
Bumps [github.com/redis/go-redis/v9](https://github.com/redis/go-redis) from 9.7.0 to 9.7.3. Release notes Sourced from github.com/redis/go-redis/v9's releases. v9.7.3 What's Changed fix: handle network error on SETINFO (#3295) (CVE-2025-29923) Full Changelog: https://github.com/redis/go-redis/compare/v9.7.1...v9.7.3 v9.7.1 Changes Recognize byte...
Bumps [golang.org/x/net](https://github.com/golang/net) from 0.28.0 to 0.36.0. Commits 85d1d54 go.mod: update golang.org/x dependencies cde1dda proxy, http/httpproxy: do not mismatch IPv6 zone ids against hosts fe7f039 publicsuffix: spruce up code gen and...
This is just simple issue I had in mind. In my usecases, every time I retry, I change the entry in my databases to indicate how many retry in there....
I'm working on a watermill integration using Postgres with the following schema: ```sql CREATE TABLE IF NOT EXISTS public.watermill_example ( "offset" bigint NOT NULL GENERATED BY DEFAULT AS IDENTITY (...
Bumps [vite](https://github.com/vitejs/vite/tree/HEAD/packages/vite) from 5.4.8 to 5.4.12. Release notes Sourced from vite's releases. v5.4.12 This version contains a breaking change due to security fixes. See https://github.com/vitejs/vite/security/advisories/GHSA-vg6x-rcgg-rjx6 for more details. Please refer...
Hi there! Two separate questions. Does the watermill-http subscriber support an http2 server? And can the chi router dependency be bumped to v5. I have been trying to use [slog-chi](https://github.com/samber/slog-chi)...
This resolves #467. It simply stores the original message context and restores it in the `defer`.
Reverse the middleware execution order. router.go:210 and router.go:197 use to append middleware instead of prepend it. Reversing the loop so it will execute the middleware that got added first.