Skip to content

Commit

Permalink
CHANGELOG.md, internal/version.go: Bump to v1.1.2
Browse files Browse the repository at this point in the history
  • Loading branch information
oxzi committed Apr 9, 2024
1 parent 3b61e06 commit b37f18a
Show file tree
Hide file tree
Showing 2 changed files with 25 additions and 1 deletion.
24 changes: 24 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,29 @@
# Icinga DB Changelog

## 1.1.2 (2024-04-11)

This release addresses multiple issues related to fault recoveries,
with a particular focus on retryable database errors that may occur when using Icinga DB with database clusters.

* Retry broken pipe errors (`EPIPE`). #693
* Retry every database error. #698
* MySQL/MariaDB: Use strict SQL mode. #699
* Try setting `wsrep_sync_wait` for MySQL/MariaDB connections. #711
* history.Sync: Don't operate on closed channel. #725
* Flatten(): render even large numbers as-is, not using scientific notation. #657
* Enhance HA "Taking over", "Handing over" logging. #692
* Update dependencies. #649 #650 #658 #661 #662 #663 #664 #670 #673 #675 #678 #680 #682 #687 #696 #701 #702 #703 #704 #705 #706 #712 #715 #720 #721 #727 #728 #733

### Schema

In addition to mandatory schema upgrades, this release includes an optional upgrade that can be applied subsequently.
Details are available in `doc/04-Upgrading.md` and #656.

* Unify check attempt data type to `uint32` already used somewhere. #656
* Add a correct composite `INDEX` for the history table. #686
* MySQL/MariaDB: Fix `icingadb_schema.timestamp` not being Unix time. #700
* PostgreSQL: `get_sla_ok_percent` to return decimal. #710

## 1.1.1 (2023-08-09)

This release fixes a few crashes in the Icinga DB daemon, addresses some shortcomings in the database schema,
Expand Down
2 changes: 1 addition & 1 deletion internal/version.go
Original file line number Diff line number Diff line change
Expand Up @@ -7,4 +7,4 @@ import (
// Version contains version and Git commit information.
//
// The placeholders are replaced on `git archive` using the `export-subst` attribute.
var Version = version.Version("1.1.1", "$Format:%(describe)$", "$Format:%H$")
var Version = version.Version("1.1.2", "$Format:%(describe)$", "$Format:%H$")

0 comments on commit b37f18a

Please sign in to comment.