Skip to content

Releases: wevm/frog

frog@1.1.0

Choose a tag to compare

@github-actions github-actions released this 04 Aug 09:04
702c4ea

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()

frog@1.0.15

Choose a tag to compare

@github-actions github-actions released this 29 Jul 22:12
a9f4314

Patch Changes

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

frog@1.0.14

Choose a tag to compare

@github-actions github-actions released this 29 Jul 21:47
0cfc79c

Patch Changes

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

frog@1.0.13

Choose a tag to compare

@github-actions github-actions released this 29 Jul 06:33
04db4c4

Patch Changes

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

frog@1.0.12

Choose a tag to compare

@github-actions github-actions released this 29 Jul 06:16
aec01e0

Patch Changes

frog@1.0.11

Choose a tag to compare

@github-actions github-actions released this 29 Jul 05:37
3b492c9

Patch Changes

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

frog@1.0.10

Choose a tag to compare

@github-actions github-actions released this 29 Jul 04:31
b01b51b

Patch Changes

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

frog@1.0.9

Choose a tag to compare

@github-actions github-actions released this 28 Jul 11:06
7092799

Patch Changes

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

frog@1.0.8

Choose a tag to compare

@github-actions github-actions released this 28 Jul 10:25
23859a1

Patch Changes

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

frog@1.0.7

Choose a tag to compare

@github-actions github-actions released this 28 Jul 05:08
4f6bff2

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.