Skip to content

Commit

Permalink
Create 2024-10 changelog
Browse files Browse the repository at this point in the history
  • Loading branch information
exAspArk committed Oct 1, 2024
1 parent 78272fc commit 8da374d
Show file tree
Hide file tree
Showing 3 changed files with 12 additions and 3 deletions.
7 changes: 7 additions & 0 deletions docs/docs/changelog.md
Original file line number Diff line number Diff line change
Expand Up @@ -9,6 +9,13 @@ keywords: ['Bemi Changelog', 'Bemi New Features', 'Postgres Audit Trails', 'Chan

# Changelog

## 2024-10

* Dashboard
* Allow setting and customizing [Ignore Column Rules](https://docs.bemi.io/postgresql/source-database#ignoring-by-columns)
* Platform
* Create PG publications limited to specific tables with selective tracking

## 2024-09

* Platform
Expand Down
8 changes: 5 additions & 3 deletions docs/docs/postgresql/source-database.md
Original file line number Diff line number Diff line change
Expand Up @@ -66,10 +66,12 @@ Bemi automatically tracks changes in the default `public` schema. If you would l

### Ignoring by Columns

Bemi allows to configure ignore-change columns, such as `myTable.updatedAt`, to ignore meaningless data changes.
This prevents the creation of a new audit trail entry (called "change") for a record in `myTable` if `updatedAt` was the only column value that was updated.
Bemi allows to configure ignore-change columns, such as `public.tableName.updatedAt`, to ignore meaningless data changes.
This prevents the creation of a new audit trail entry (called "change") for a record in `tableName` if `updatedAt` was the only column value that was updated.

In other words, `myTable.updatedAt` is used to determine whether an audit trail entry should be recorded or not.
![](/img/ignored-columns.png)

In other words, `public.tableName.updatedAt` is used to determine whether an audit trail entry should be recorded or not.
Note that this column will always be recorded if there were updated values in other columns.

## SSH Tunnel
Expand Down
Binary file added docs/static/img/ignored-columns.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.

0 comments on commit 8da374d

Please sign in to comment.