Releases: filipsnastins/tomodachi-testcontainers
Releases · filipsnastins/tomodachi-testcontainers
1.2.4
Maintenance
- Updates testcontainers to
4.9.1
. - Removes custom implementation of
DockerContainer.get_container_host_ip
in favour of fixed implementation intestcontainers.core.container.DockerContainer
base class. - Dependency updates.
Full Changelog: 1.2.3...1.2.4
1.2.3
Maintenance
- Updates pytest-asyncio to 0.24.0. Using
'loop_scope="session"
. - Dependency updates.
1.2.2
Maintenance
- Development scripts moved from the Poetry scripts to Makefile.
Unnecessary development scripts are no longer packaged as part of the library. - Dependency updates.
- Extended
pylint
config and addedpydocstringformatter
linter.
1.2.1
Maintenance
- (#306) Bump
testcontainers-python
to4.4.1
.
1.2.0
New features
- (#305) Adds
<CONTAINER-NAME>_TESTCONTAINER_DISABLE_LOGGING
environment variable to selectively disable logging capture and forwarding for specific containers. The use case is that some containers, like Moto, output logs that are not immediately useful for debugging. Example usage:MOTO_TESTCONTAINER_DISABLE_LOGGING=1
.
1.1.3
1.1.2
Maintenance
- (#242) Drop Python 3.8 support.
- (#242) Update testcontainers-python to
4.0.0
.
1.1.1
1.1.0
New features
- (#180)
clients.SNSSQSTestClient
:SNSSQSTestClient.receive
now returns message attributes.
The returned message is now wrapped in aSQSMessage
dataclass, containing thepayload
andmessage_attributes
fields.
It's a small breaking change for clients that use thereceive
method, because the message's payload is now wrapped in thepayload
attribute.