@lvnt/release-radar 1.1.2 → 1.1.3

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/dist/updater.js +1 -1
  2. package/package.json +1 -1
package/dist/updater.js CHANGED
@@ -2,7 +2,7 @@ import { createHmac, timingSafeEqual } from 'crypto';
2
2
  import { spawn } from 'child_process';
3
3
  import { createServer } from 'http';
4
4
  export function parseReleaseEvent(payload) {
5
- // GitHub sends 'published' for new releases and 'released' for made-available releases
5
+ // GitHub sends 'published' for new releases and 'released' when made available
6
6
  const validActions = ['published', 'released'];
7
7
  if (!validActions.includes(payload.action) || !payload.release?.tag_name) {
8
8
  return null;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@lvnt/release-radar",
3
- "version": "1.1.2",
3
+ "version": "1.1.3",
4
4
  "description": "Monitor tool versions and notify via Telegram when updates are detected",
5
5
  "main": "dist/index.js",
6
6
  "bin": {