-
Notifications
You must be signed in to change notification settings - Fork 61
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge branch 'main' of github.com:containrrr/shoutrrr into latest
- Loading branch information
Showing
85 changed files
with
2,158 additions
and
423 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,14 @@ | ||
version: 2 | ||
updates: | ||
- package-ecosystem: github-actions | ||
directory: "/" | ||
schedule: | ||
interval: monthly | ||
- package-ecosystem: gomod | ||
directory: "/" | ||
schedule: | ||
interval: monthly | ||
- package-ecosystem: docker | ||
directory: "/" | ||
schedule: | ||
interval: monthly |
This file was deleted.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -7,6 +7,7 @@ | |
*.so | ||
*.dylib | ||
/shoutrrr/shoutrrr | ||
*.snap | ||
|
||
# Test binary, build with `go test -c` | ||
# --- | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,14 @@ | ||
# Security Policy | ||
|
||
## Supported Versions | ||
|
||
Shoutrrr v0.x strives to be fully backwards-compatible, and hence only the latest minor will get security updates unless explicitly requested. | ||
|
||
| Version | Supported | | ||
| ------- | ------------------ | | ||
| 0.6.x | :white_check_mark: | | ||
| < 0.6 | :x: | | ||
|
||
## Reporting a Vulnerability | ||
|
||
Vulnerabilities can be disclosed via email to security@containrrr.dev |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,7 @@ | ||
# Ntfy | ||
|
||
Upstream docs: https://docs.ntfy.sh/publish/ | ||
|
||
## URL Format | ||
|
||
--8<-- "docs/services/ntfy/config.md" |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,26 +1,18 @@ | ||
module github.com/containrrr/shoutrrr | ||
|
||
go 1.12 | ||
go 1.16 | ||
|
||
require ( | ||
github.com/fatih/color v1.10.0 | ||
github.com/jarcoal/httpmock v1.0.4 | ||
github.com/mattn/go-colorable v0.1.8 | ||
github.com/mattn/go-isatty v0.0.12 | ||
github.com/mitchellh/mapstructure v1.2.2 // indirect | ||
github.com/nxadm/tail v1.4.6 // indirect | ||
github.com/onsi/ginkgo v1.14.2 | ||
github.com/onsi/gomega v1.10.1 | ||
github.com/pelletier/go-toml v1.7.0 // indirect | ||
github.com/spf13/afero v1.2.2 // indirect | ||
github.com/spf13/cast v1.3.1 // indirect | ||
github.com/spf13/cobra v1.4.0 | ||
github.com/spf13/jwalterweatherman v1.1.0 // indirect | ||
github.com/spf13/viper v1.6.3 | ||
github.com/stretchr/testify v1.4.0 // indirect | ||
golang.org/x/net v0.0.0-20200520004742-59133d7f0dd7 | ||
golang.org/x/oauth2 v0.0.0-20200107190931-bf48bf16ab8d | ||
golang.org/x/sys v0.0.0-20210113181707-4bcb84eeeb78 // indirect | ||
golang.org/x/xerrors v0.0.0-20200804184101-5ec99f83aff1 // indirect | ||
gopkg.in/ini.v1 v1.55.0 // indirect | ||
github.com/fatih/color v1.13.0 | ||
github.com/jarcoal/httpmock v1.2.0 | ||
github.com/mattn/go-colorable v0.1.13 | ||
github.com/mattn/go-isatty v0.0.16 | ||
github.com/onsi/ginkgo/v2 v2.4.0 | ||
github.com/onsi/gomega v1.22.1 | ||
github.com/spf13/cobra v1.6.1 | ||
github.com/spf13/viper v1.14.0 | ||
golang.org/x/net v0.1.0 | ||
golang.org/x/oauth2 v0.0.0-20221014153046-6fdb5e3db783 | ||
) | ||
|
||
exclude golang.org/x/sys v0.1.0 |
Oops, something went wrong.