Skip to content

Releases: saleor/apps

[email protected]

05 Mar 13:04
98cb9b5
Compare
Choose a tag to compare

Minor Changes

  • 3c4358a: Setup OTEL via instrumentation hook. After this change app will use official way of setting up OTEL. There are no visible changes to the end user.

Patch Changes

[email protected]

05 Mar 13:04
98cb9b5
Compare
Choose a tag to compare

Minor Changes

  • 3c4358a: Setup OTEL via instrumentation hook. After this change app will use official way of setting up OTEL. There are no visible changes to the end user.

Patch Changes

[email protected]

05 Mar 13:03
98cb9b5
Compare
Choose a tag to compare

Minor Changes

  • 3c4358a: Setup OTEL via instrumentation hook. After this change app will use official way of setting up OTEL. There are no visible changes to the end user.

Patch Changes

[email protected]

05 Mar 13:03
98cb9b5
Compare
Choose a tag to compare

Minor Changes

  • 3c4358a: Setup OTEL via instrumentation hook. After this change app will use official way of setting up OTEL. There are no visible changes to the end user.

Patch Changes

[email protected]

05 Mar 13:03
98cb9b5
Compare
Choose a tag to compare

Minor Changes

  • 3c4358a: Setup OTEL via instrumentation hook. After this change app will use official way of setting up OTEL. There are no visible changes to the end user.

Patch Changes

[email protected]

05 Mar 13:03
98cb9b5
Compare
Choose a tag to compare

Minor Changes

  • 3c4358a: Setup OTEL via instrumentation hook. After this change app will use official way of setting up OTEL. There are no visible changes to the end user.

Patch Changes

[email protected]

05 Mar 13:03
98cb9b5
Compare
Choose a tag to compare

Minor Changes

  • 3c4358a: Setup OTEL via instrumentation hook. After this change app will use official way of setting up OTEL. There are no visible changes to the end user.

Patch Changes

@saleor/[email protected]

05 Mar 13:04
98cb9b5
Compare
Choose a tag to compare

Patch Changes

@saleor/[email protected]

05 Mar 13:04
98cb9b5
Compare
Choose a tag to compare

Minor Changes

  • defa0b6: Add compose function that can be used to compose multiple functions into one:

    // before
    export default wrapWithLoggerContext(withSpanAttributes(handler));
    // after
    export default compose(withLoggerContext, withSpanAttributes)(handler);

@saleor/[email protected]

05 Mar 13:04
98cb9b5
Compare
Choose a tag to compare

Major Changes

  • 3c4358a: BREAKING CHANGE. Change package structure. After this change @saleor/apps-otel won't export withOtel wrapper but rather helpers or factories that should be used by apps to properly setup OTEL. See apps implementation on how to use new version.

Minor Changes

  • e3fe0f7: Update functions exported from package and deps.

Patch Changes

  • 9cfb8ac: Remove deprecated SemanticAttributes.HTTP_URL from otelUrqlExchangeFactory and use ATTR_URL_FULL instead
  • defa0b6: Rename wrapWithSpanAttributes to withSpanAttributes. No changes to the end user.