Skip to content

v0.1.0

Compare
Choose a tag to compare
@multani multani released this 13 May 17:59
· 49 commits to main since this release
e5206d6

To migrate from v0.0.3 to v0.1.0, replace:

import structlog
import structlog_gcp
 
gcp_logs = structlog_gcp.StructlogGCP()
structlog.configure(processors=gcp_logs.build_processors())

by:

import structlog
import structlog_gcp
 
processors = structlog_gcp.build_processors()
structlog.configure(processors=processors)

What's Changed

Full Changelog: v0.0.3...v1.0.0