Skip to content

Commit

Permalink
Release v1.0.0
Browse files Browse the repository at this point in the history
  • Loading branch information
sorentwo committed Jan 16, 2025
1 parent 8cf42e5 commit 9fc5316
Show file tree
Hide file tree
Showing 3 changed files with 29 additions and 4 deletions.
29 changes: 27 additions & 2 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,6 +1,31 @@
# Changelog for Oban Met v0.1.0
# Changelog for Oban Met v1.0

Initial release!
## v1.0.0 — 2025-01-16

This is the official v1.0 release _and_ the package is now open source!

### Enhancements

- [Reporter] Count queries work with all official Oban engines and databases (Postgres, SQLite,
and MySQL).

- [Migration] Add ability to explicitly create estimate function through a dedicated migration.

For databases that don't allow the application connect to create new functions, this adds an
`Oban.Met.Migration` module and an option to disable auto-migrating in the reporter.

### Bug Fixes

- [Reporter] Skip queries with empty states or queues to prevent query errors.

Querying with an empty list may cause the following error:

```
(Postgrex.Error) ERROR 42809 (wrong_object_type) op ANY/ALL (array)
```

This fixes the error by skipping queries for empty lists. This could happen if all of the states
were above the estimate threshold, or no active queues were found.

## v0.1.11 — 2024-10-16

Expand Down
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@
<!-- MDOC -->

Met is a distributed, compacting, multidimensional, telemetry-powered time series datastore for
Oban that requires no configurion. It gathers data for queues, job counts, execution metrics,
Oban that requires no configuration. It gathers data for queues, job counts, execution metrics,
active crontabs, historic metrics, and more.

Met powers the charts and runtime details shown in the [Oban Web][web] dashboard.
Expand Down
2 changes: 1 addition & 1 deletion mix.exs
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@ defmodule Oban.Met.MixProject do
use Mix.Project

@source_url "https://github.com/oban-bg/oban_met"
@version "1.0.0-dev"
@version "1.0.0"

def project do
[
Expand Down

0 comments on commit 9fc5316

Please sign in to comment.