Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 6 additions & 0 deletions CHANGELOG
Original file line number Diff line number Diff line change
Expand Up @@ -5,6 +5,12 @@ and this project adheres to [Semantic Versioning](http://semver.org/).

## [Unreleased]

## [1.1.1] - 2026-05-20

### Fixed

* Stop logging secrets

## [1.1.0] 2026-04-23

### Changed
Expand Down
4 changes: 2 additions & 2 deletions src/npgmlwarehouse/db/utils.py
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@
import os
import re
from contextlib import contextmanager
from dataclasses import dataclass
from dataclasses import dataclass, field
from importlib import import_module
from pathlib import Path
from typing import Any, Generator
Expand All @@ -35,7 +35,7 @@ class MlwarehouseConfig:
dbport: str
dbuser: str
dbname: str
dbpass: str
dbpass: str = field(repr=False)

@property
def url(self):
Expand Down