Tags: nicholas-fedor/shoutrrr
Tags
Minor updates and version update tweak (#129) * chore(deps): update Go dependencies Update to Go 1.24.3 Update to the following dependencies: - cloud.google.com/go/compute/metadata v0.7.0 - github.com/google/pprof v0.0.0-20250501235452-c0086092b71a - github.com/spf13/cast v1.8.0 - golang.org/x/tools v0.33.0 * fix(shoutrrr.go): reference `meta.Version` instead of `meta.GetVersion()` Attempt to resolve issue of version updates not correctly applying, including within pkg.go.dev
fix(meta): improve shoutrrr handling of dynamic metadata (#124) - Replace `meta/version.go` with `meta/meta.go`. - Add improved dynamic metadata handling, including for production builds. - Modify documentation URL generation to provide more robust version handling. - Update testing to accommodate changes. - Add additional tests to provide coverage for added functionality. - Update `build.sh` to incorporate metadata, if used. - Add corresponding variables to Goreleaser configuration.
feat(discord): add support for Discord threads (#110) * feat(discord): add support for Discord threads with thread_id - Added `ThreadID` field to `Config` in `discord_config.go` to support specifying a thread ID for Discord webhook messages. - Updated `setURL` in `discord_config.go` to parse `thread_id` from URL query and trim whitespace using `strings.TrimSpace`. - Modified `CreateAPIURLFromConfig` in `discord.go` to append `thread_id` as a query parameter in the API URL when set. - Added tests in `discord_test.go` for `thread_id` serialization, whitespace handling, and exclusion when empty. - Added test in `discord_test.go` to verify `thread_id` trimming in HTTP API URL via `CreateAPIURLFromConfig`. - Ensured all tests pass, including linting, with full coverage of thread support and whitespace handling. * docs(discord): update documentation for thread_id support - Updated `discord.md` to include `thread_id` in URL format and add thread support section. - Modified `overview.md` to reflect `thread_id` in Discord service URL format.
PreviousNext