Skip to content

Commit

Permalink
changelog
Browse files Browse the repository at this point in the history
  • Loading branch information
codecapitano committed Feb 3, 2025
1 parent 2f2684b commit a24189d
Showing 1 changed file with 27 additions and 1 deletion.
28 changes: 27 additions & 1 deletion CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -7,11 +7,37 @@
- Feature (`@grafana/faro-web-sdk`): Introduced `setPage(meta)` API to overwrite page metadata and
added an option to inject a custom `pageId` parser for generating custom `pageId`s continuously
(#923)

- Feature (`@grafana/faro-web-sdk`) Adds the option to provide an serializer to serialize console error properties (#901)

- Improvement (`@grafana/faro-web-sdk`): Send an event for `service.name` overrides (#903)
- Improvement (`@grafana/faro-*`) Add required Node engines to package.json ()
- Feature (`@grafana/faro-web-sdk`) Adds the option to provide an serializer to serialize console error properties (#901)

- Fix (`faro demo`): Add missing json files to Docker image (#925).

### Breaking

- Improvement (`@grafana/faro-web-tracing`): Removed `@opentelemetry/context-zone` as it is not
required for the default instrumentations.
Customers who need `ZoneContextManager` for additional OTEL instrumentations can inject it via the
web-tracing configuration.

```ts
initializeFaro({
// ...
instrumentations: [
// ...
new TracingInstrumentation({
contextManager: new ZoneContextManager(),
instrumentations: [
/* ... */
],
}),
],
// ...
});
```

## 1.12.3

- Feat (`@grafana/faro-web-tracing`): add duration to events from traces (#861)
Expand Down

0 comments on commit a24189d

Please sign in to comment.