wachi 0.3.18 → 0.3.21

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (2) hide show
  1. package/README.md +13 -0
  2. package/package.json +6 -6
package/README.md CHANGED
@@ -168,8 +168,21 @@ All fields are optional with sensible defaults. An empty config file is valid.
168
168
 
169
169
  | Variable | Purpose |
170
170
  |----------|---------|
171
+ | `WACHI_APPRISE_URL` | Override notification destination for ALL channels |
172
+ | `WACHI_ARCHIVE_ACCESS_KEY` | Optional Internet Archive access key for authenticated Wayback submissions |
173
+ | `WACHI_ARCHIVE_SECRET_KEY` | Optional Internet Archive secret key for authenticated Wayback submissions |
174
+ | `WACHI_CONFIG_PATH` | Custom config file path |
175
+ | `WACHI_DB_PATH` | Custom database path |
176
+ | `WACHI_NO_ARCHIVE` | Set to `1` to disable auto-archiving of notified URLs |
171
177
  | `WACHI_NO_AUTO_UPDATE` | Set to `1` to disable auto-update |
172
178
 
179
+ Notified item URLs are archived to the Wayback Machine by default. If archive keys are unset,
180
+ `wachi` falls back to the anonymous save endpoint. Set both archive keys for authenticated POST
181
+ submissions and higher Wayback limits.
182
+
183
+ For `x.com` / `twitter.com` items, `wachi` archives the transformed notification URL (for example
184
+ `fixupx.com`) because Wayback currently blocks direct archiving of the original X URL.
185
+
173
186
  ## Design
174
187
 
175
188
  - **Stateless checks** -- `wachi check` is a one-shot command. Bring your own scheduler (cron, crnd, systemd, launchd)
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "wachi",
3
- "version": "0.3.18",
3
+ "version": "0.3.21",
4
4
  "description": "Subscribe any link and get notified on change",
5
5
  "license": "MIT",
6
6
  "type": "module",
@@ -47,10 +47,10 @@
47
47
  "zod-validation-error": "5.0.0"
48
48
  },
49
49
  "optionalDependencies": {
50
- "@wachi-cli/darwin-arm64": "0.3.18",
51
- "@wachi-cli/darwin-x64": "0.3.18",
52
- "@wachi-cli/linux-arm64": "0.3.18",
53
- "@wachi-cli/linux-x64": "0.3.18",
54
- "@wachi-cli/win32-x64": "0.3.18"
50
+ "@wachi-cli/darwin-arm64": "0.3.21",
51
+ "@wachi-cli/darwin-x64": "0.3.21",
52
+ "@wachi-cli/linux-arm64": "0.3.21",
53
+ "@wachi-cli/linux-x64": "0.3.21",
54
+ "@wachi-cli/win32-x64": "0.3.21"
55
55
  }
56
56
  }