v1.3.2
What's Changed
- chore: fix deprecated comment on WithLogger by @shota3506 in #22
⚠️ Deprecation notice (since v1.3.0)
slogGorm.WithLogger(...)
is deprecated, useslogGorm.WithHandler(...)
instead:
gormLogger := slogGorm.New(
// slogGorm.WithLogger(logger), // Deprecated since v1.3.0, use `slogGorm.WithHandler(...)` instead.
slogGorm.WithHandler(logger.Handler()), // since v1.3.0
)
New Contributors
- @shota3506 made their first contribution in #22
Full Changelog: v1.3.1...v1.3.2