Skip to content

v4.2.2

Compare
Choose a tag to compare
@seek-oss-ci seek-oss-ci released this 27 May 02:08
· 574 commits to main since this release
fdfd677

Patch Changes

  • template/lambda-sqs-worker: Avoid mutation of logger context (#879)

    We now perform a shallow copy when retrieving the logger context from AsyncLocalStorage.

    - mixin: () => loggerContext.getStore() ?? {},
    + mixin: () => ({ ...loggerContext.getStore() }),