Skip to content

Commit

Permalink
chore: version packages (#1127)
Browse files Browse the repository at this point in the history
Co-authored-by: github-actions[bot] <github-actions[bot]@users.noreply.github.com>
  • Loading branch information
github-actions[bot] and github-actions[bot] authored Oct 2, 2024
1 parent 0a3adb0 commit 5402ddc
Show file tree
Hide file tree
Showing 7 changed files with 22 additions and 16 deletions.
13 changes: 0 additions & 13 deletions .changeset/bright-bikes-enjoy.md

This file was deleted.

15 changes: 15 additions & 0 deletions packages/core/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,20 @@
# @ponder/core

## 0.6.5

### Patch Changes

- [#1126](https://github.com/ponder-sh/ponder/pull/1126) [`0a3adb000d60e091b24a6e8facce194c41712fc6`](https://github.com/ponder-sh/ponder/commit/0a3adb000d60e091b24a6e8facce194c41712fc6) Thanks [@kyscott18](https://github.com/kyscott18)! - Fixed a bug introduced in v0.6 where extra transaction may be added to the database in the "realtime" sync when using factory contracts.

Any users that were affected by this bug and want to reduce the database size can do so with the query:

```sql
DELETE FROM ponder_sync.transactions WHERE
hash NOT IN (SELECT "transactionHash" FROM ponder_sync.logs)
AND
hash NOT IN (SELECT "transactionHash" FROM ponder_sync."callTraces");
```

## 0.6.4

### Patch Changes
Expand Down
2 changes: 1 addition & 1 deletion packages/core/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@ponder/core",
"version": "0.6.4",
"version": "0.6.5",
"description": "An open-source framework for crypto application backends",
"license": "MIT",
"type": "module",
Expand Down
2 changes: 2 additions & 0 deletions packages/create-ponder/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,7 @@
# create-ponder

## 0.6.5

## 0.6.4

## 0.6.3
Expand Down
2 changes: 1 addition & 1 deletion packages/create-ponder/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "create-ponder",
"version": "0.6.4",
"version": "0.6.5",
"type": "module",
"description": "A CLI tool to create Ponder apps",
"license": "MIT",
Expand Down
2 changes: 2 additions & 0 deletions packages/eslint-config-ponder/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,7 @@
# eslint-config-ponder

## 0.6.5

## 0.6.4

## 0.6.3
Expand Down
2 changes: 1 addition & 1 deletion packages/eslint-config-ponder/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "eslint-config-ponder",
"version": "0.6.4",
"version": "0.6.5",
"description": "ESLint config for Ponder apps",
"license": "MIT",
"main": "./index.js",
Expand Down

0 comments on commit 5402ddc

Please sign in to comment.