@owloops/browserbird 1.4.19 → 1.4.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/dist/index.mjs +3 -3
  2. package/package.json +1 -1
package/dist/index.mjs CHANGED
@@ -122,8 +122,8 @@ function unknownSubcommand(subcommand, command, validCommands) {
122
122
  /** @fileoverview ASCII banner displayed on daemon startup and in help text. */
123
123
  const pkg = createRequire(import.meta.url)("../package.json");
124
124
  const buildInfo = [];
125
- buildInfo.push(`commit: ${"3dcbb65854e8d5af24c15430628785bd9ef40efb".substring(0, 7)}`);
126
- buildInfo.push(`built: 2026-03-15T23:37:46+04:00`);
125
+ buildInfo.push(`commit: ${"e1ba35fad0d7d361985d65e8ebbbb8401a37d866".substring(0, 7)}`);
126
+ buildInfo.push(`built: 2026-03-16T19:06:04+04:00`);
127
127
  const buildString = buildInfo.length > 0 ? ` (${buildInfo.join(", ")})` : "";
128
128
  const VERSION = `browserbird ${pkg.version}${buildString}`;
129
129
  const BIRD = [
@@ -2011,7 +2011,7 @@ async function processJob(job) {
2011
2011
  if (isCronRun && job.cron_job_uid != null) {
2012
2012
  const cronJob = getCronJob(job.cron_job_uid);
2013
2013
  if (cronJob != null) {
2014
- const newFailureCount = finalStatus === "failed" ? cronJob.failure_count + 1 : cronJob.failure_count;
2014
+ const newFailureCount = finalStatus === "failed" ? cronJob.failure_count + 1 : 0;
2015
2015
  updateCronJobStatus(job.cron_job_uid, finalStatus, newFailureCount);
2016
2016
  }
2017
2017
  }
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@owloops/browserbird",
3
- "version": "1.4.19",
3
+ "version": "1.4.21",
4
4
  "description": "AI agent orchestrator with a real browser, a cron scheduler, and a web dashboard",
5
5
  "type": "module",
6
6
  "bin": {