-
-
Notifications
You must be signed in to change notification settings - Fork 858
Comparing changes
Open a pull request
base repository: adnanh/webhook
base: 2.8.2
head repository: adnanh/webhook
compare: master
- 8 commits
- 6 files changed
- 7 contributors
Commits on Oct 27, 2024
-
fix: use CGO_ENABLED=0 for release builds (#705)
Ensure that release builds are built with cgo disabled. This is usually the case for cross-compiled builds anyway, but adding this flag makes builds consistent regardless of what platform they are being built on. In particular, without CGO_ENABLED=0, if you make the release builds on a linux/amd64 system then the linux/amd64 binary is dynamically linked against the system libc, meaning a binary built on a glibc-based system like Ubuntu will not work on a musl libc system like Alpine. This is what appears to have happened for release 2.8.1. But the same source code built on a different system (e.g. darwin/arm64) would cross-compile the linux/amd64 binary with cgo disabled, making a static binary that works on both glibc and musl systems. This is what appears to have happened for release 2.8.2. Setting CGO_ENABLED=0 in the Makefile will make the behaviour consistent for future releases, producing static binaries for the linux builds in all cases, whatever the build platform.
Configuration menu - View commit details
-
Copy full SHA for f89b09b - Browse repository at this point
Copy the full SHA f89b09bView commit details
Commits on Nov 13, 2024
-
Configuration menu - View commit details
-
Copy full SHA for ce08a68 - Browse repository at this point
Copy the full SHA ce08a68View commit details
Commits on Nov 30, 2024
-
Configuration menu - View commit details
-
Copy full SHA for 7bb6808 - Browse repository at this point
Copy the full SHA 7bb6808View commit details
Commits on Jan 11, 2025
-
feat: Add two template functions (#712)
* chore: replace ioutil.ReadFile by os.ReadFile * feat: Add two template functions - cat: Allows reading a value from a file - credential: Allows reading a credential passed by systemd
Configuration menu - View commit details
-
Copy full SHA for eb7e8f5 - Browse repository at this point
Copy the full SHA eb7e8f5View commit details
Commits on Jan 12, 2025
-
fix: Trim the cat output (#720)
`os.ReadFile` includes a trailing EOL, so we have to remove it to get the correct value
Configuration menu - View commit details
-
Copy full SHA for 1b13355 - Browse repository at this point
Copy the full SHA 1b13355View commit details
Commits on Aug 11, 2025
-
Configuration menu - View commit details
-
Copy full SHA for 5981da2 - Browse repository at this point
Copy the full SHA 5981da2View commit details -
docs: add ACR webhook to Hook-Examples.md (#731)
* add ACR webhook to Hook-Examples.md Incoming Azure Container Registry (ACR) webhook syntax and format with link to a working docker container used to handle webhook and feed a local registry cache * Update Hook-Examples.md changed text according to suggestions of https://github.com/moorereason (see PR)
Configuration menu - View commit details
-
Copy full SHA for 2da9957 - Browse repository at this point
Copy the full SHA 2da9957View commit details
Commits on Aug 28, 2025
-
Fix Gitea incoming webhook example and add a YAML version (#737)
* Fix Gitea incoming webhook example and add a YAML version * Fix payload-hmac-sha256 secret attribute name
Configuration menu - View commit details
-
Copy full SHA for 7ea2a53 - Browse repository at this point
Copy the full SHA 7ea2a53View commit details
This comparison is taking too long to generate.
Unfortunately it looks like we can’t render this comparison for you right now. It might be too big, or there might be something weird with your repository.
You can try running this command locally to see the comparison on your machine:
git diff 2.8.2...master