From 494b5e8cb56a030b2a485f4b97b9286d4ee4fa24 Mon Sep 17 00:00:00 2001 From: Russ Allbery Date: Mon, 10 Jun 2024 14:05:46 -0700 Subject: [PATCH] Remove outdated reference in 6.0.0 change log Remove the note that SecretStr could be passed to create_sync_session in the 6.0.0 change log entry, since create_sync_session was dropped in that release. --- CHANGELOG.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index c6953a72..7682e43b 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -19,7 +19,7 @@ Changes for the upcoming release can be found in [changelog.d](https://github.co ### New features -- Allow the database password to be passed to `create_database_engine`, `create_sync_session`, and `DatabaseSessionDependency.initialize` as a Pydantic `SecretStr`. +- Allow the database password to be passed to `create_database_engine` and `DatabaseSessionDependency.initialize` as a Pydantic `SecretStr`. - Add new function `safir.datetime.parse_timedelta`, which parses a human-friendly syntax for specifying time durations into a Python `datetime.timedelta`. - Add support for `gs` URLs to `safir.gcs.SignedURLService`. - Support pickling of `SlackException` so that subclasses of it can be thrown by arq workers and unpickled correctly when retrieving results.