Skip to content

Commit 8ad8c76

Browse files
chore: version packages
1 parent d3b008e commit 8ad8c76

3 files changed

Lines changed: 21 additions & 20 deletions

File tree

.changeset/calm-frogs-store.md

Lines changed: 0 additions & 19 deletions
This file was deleted.

CHANGELOG.md

Lines changed: 20 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,25 @@
11
# frog
22

3+
## 1.1.0
4+
5+
### Minor Changes
6+
7+
- 5225ab5: Added pluggable friction stores, a Postgres.js-backed `Store.postgres({ connectionString })` factory, and the `Frog.create` logging API.
8+
9+
```ts
10+
import { Frog, Store } from "frog";
11+
12+
const store = Store.postgres({ connectionString: process.env.DATABASE_URL! });
13+
const frog = Frog.create({ store });
14+
await frog.log({
15+
body: "The workaround used.",
16+
severity: "minor",
17+
title: "Tool required a workaround",
18+
});
19+
const logs = await frog.logs();
20+
await store.close();
21+
```
22+
323
## 1.0.15
424

525
### Patch Changes

package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -25,7 +25,7 @@
2525
"[!start-pkg]": "",
2626
"name": "frog",
2727
"type": "module",
28-
"version": "1.0.15",
28+
"version": "1.1.0",
2929
"license": "MIT",
3030
"description": "Automated friction logging for agents.",
3131
"repository": {

0 commit comments

Comments
 (0)