Skip to content

Commit 1d6ac1f

Browse files
committed
chore: Bump version to 0.5.0
1 parent 836cb41 commit 1d6ac1f

File tree

3 files changed

+17
-2
lines changed

3 files changed

+17
-2
lines changed

CHANGELOG.md

Lines changed: 15 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -5,6 +5,21 @@ All notable changes to this project will be documented in this file.
55
The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/),
66
and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html).
77

8+
## 0.5.0 - 2026-01-19
9+
10+
### Added
11+
12+
- `ReindexCheck` - Detects `REINDEX` operations that acquire ACCESS EXCLUSIVE locks
13+
- `GeneratedColumnCheck` - Detects `GENERATED ALWAYS AS ... STORED` columns that trigger table rewrites
14+
- `TimestampTypeCheck` - Detects `TIMESTAMP` without time zone (recommends `TIMESTAMPTZ`)
15+
- `CharTypeCheck` - Detects `CHAR`/`CHARACTER` column types (recommends `TEXT` or `VARCHAR`)
16+
- `DropDatabaseCheck` - Detects `DROP DATABASE` operations
17+
- `DropTableCheck` - Detects `DROP TABLE` operations
18+
19+
### Changed
20+
21+
- Dependency updates (colored, clap, serde_json, tempfile, thiserror)
22+
823
## 0.4.0 - 2025-12-28
924

1025
### Added

Cargo.lock

Lines changed: 1 addition & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "diesel-guard"
3-
version = "0.4.0"
3+
version = "0.5.0"
44
edition = "2021"
55
authors = ["Alex Yarotsky <https://github.com/ayarotsky>"]
66
description = "Catch unsafe PostgreSQL migrations in Diesel and SQLx before they take down production"

0 commit comments

Comments
 (0)