Skip to content

Latest commit

 

History

History
120 lines (67 loc) · 2.81 KB

File metadata and controls

120 lines (67 loc) · 2.81 KB

frog

1.1.0

Minor Changes

  • 5225ab5: Added pluggable friction stores, a Postgres.js-backed Store.postgres({ connectionString }) factory, and the Frog.create logging API.

    import { Frog, Store } from 'frog'
    
    const store = Store.postgres({ connectionString: process.env.DATABASE_URL! })
    const frog = Frog.create({ store })
    await frog.log({
      body: 'The workaround used.',
      severity: 'minor',
      title: 'Tool required a workaround',
    })
    const logs = await frog.logs()
    await store.close()

1.0.15

Patch Changes

  • 7036898: Updated existing reports in place and reserved recurrence comments for new friction entries.

1.0.14

Patch Changes

  • eaa1fdf: Validated supplied bodies against local issue forms before writing friction entries.

1.0.13

Patch Changes

  • aa43e31: Fixed standalone binary releases for package-scoped tags.

1.0.12

Patch Changes

  • d10576b: Updated package.

1.0.11

Patch Changes

  • ecd5969: Updated setup documentation and generated agent guidance to prefer standalone installation while retaining project package-manager commands.

1.0.10

Patch Changes

  • cbe013a: Added standalone executables with verified installers, short install URLs, and in-place updates.

1.0.9

Patch Changes

  • 5f8dc73: Used the project package manager for generated Frog commands when declared.

1.0.8

Patch Changes

  • 1aa72b2: Removed the bundled skill and used package-manager runners in installation and generated repository guidance.

1.0.7

Patch Changes

  • 78b0c57: Enabled inbound logs by default in frog init, replacing --library with --no-inbound for opting out.
  • 4571e72: Fixed App reconciliation and pull-request comments, and moved major Action tags with compatible releases.

1.0.6

Patch Changes

  • 3bb2b8b: Added least-privilege GitHub App reconciliation, enabled receiver-gated outbound reporting by default, and hardened issue matching, branch validation, and artifact deletion.
  • ae294c1: Removed automation setup guidance from generated friction log READMEs.

1.0.5

Patch Changes

  • 425454f: Added a default friction issue form to every frog init scaffold.

1.0.4

Patch Changes

  • 74df03e: Added action-only automation and setup guidance, idempotent occurrence tracking, git identity preflights, coded deferrals, resilient reconciliation, and richer CLI outputs for same-repository friction.
  • 2cb0be3: Directed agents to install the GitHub App and update AGENTS.md after init.

1.0.3

Patch Changes

  • f674db4: Updated incur to 0.4.20.

1.0.2

Patch Changes

  • 13dfe8f: Pointed init at the GitHub App installation, in its call to action and in the friction log it scaffolds.

1.0.1

Patch Changes

  • a782daf: Updated config.

1.0.0

Major Changes

  • 1dee793: Initial release