diff --git a/VERSION b/VERSION index bcf44c6..0800b06 100644 --- a/VERSION +++ b/VERSION @@ -1 +1 @@ -0.122.17 +0.122.18 diff --git a/core/pkg/environments/production/installers/ntfy.go b/core/pkg/environments/production/installers/ntfy.go index f0cc72d..18372c0 100644 --- a/core/pkg/environments/production/installers/ntfy.go +++ b/core/pkg/environments/production/installers/ntfy.go @@ -213,9 +213,14 @@ func (ni *NtfyInstaller) downloadBinary() error { tarballURL := fmt.Sprintf( "https://github.com/binwiederhier/ntfy/releases/download/v%s/%s", ntfyVersion, tarballName) + // Upstream ntfy publishes the checksum file as plain "checksums.txt" + // at the release root — NOT "ntfy__checksums.txt". Verified + // against the v2.11.0 release assets list. If a future ntfy version + // changes the naming convention, this URL will 404 loud at install + // time and the bump-ntfy-version PR should update it here. checksumsURL := fmt.Sprintf( - "https://github.com/binwiederhier/ntfy/releases/download/v%s/ntfy_%s_checksums.txt", - ntfyVersion, ntfyVersion) + "https://github.com/binwiederhier/ntfy/releases/download/v%s/checksums.txt", + ntfyVersion) fmt.Fprintf(ni.logWriter, " Downloading %s...\n", tarballURL) client := &http.Client{Timeout: 5 * time.Minute} diff --git a/sdk/package.json b/sdk/package.json index c4312e8..eb07f12 100644 --- a/sdk/package.json +++ b/sdk/package.json @@ -1,6 +1,6 @@ { "name": "@debros/orama", - "version": "0.122.17", + "version": "0.122.18", "description": "TypeScript SDK for Orama Network - Database, PubSub, Cache, Storage, Vault, and more", "type": "module", "main": "./dist/index.js",