Skip to content

Commit

Permalink
Merge pull request #41 from embrace-io/make-build-check-more-restrictive
Browse files Browse the repository at this point in the history
make build check more strict
  • Loading branch information
gregorio-gerardi authored Oct 22, 2024
2 parents cc19f76 + a7470ab commit 43ab86a
Show file tree
Hide file tree
Showing 3 changed files with 5 additions and 3 deletions.
2 changes: 1 addition & 1 deletion docs/android/changelog.md
Original file line number Diff line number Diff line change
Expand Up @@ -142,7 +142,7 @@ API Desugaring is now a requirement for apps that support Android 5 and 6. This
## 6.4.0
*March 6, 2024*
- Traces improvements
- Support configuration of OpenTelemetry Exporters to export [Traces](/android/features/traces/#export-your-telemetry) data as OpenTelemetry Spans (beta).
- Support configuration of OpenTelemetry Exporters to export [Traces](/android/features/traces/#export-to-opentelemetry-collectors) data as OpenTelemetry Spans (beta).
- Change timestamps parameters of the APIs to use milliseconds to better align with Android developer expectations.
- Note: timestamps that are in nanoseconds will be detected and converted for now so existing instrumentation will still work, but this will be removed in an upcoming release.
- Increase per-session limit of spans to 500 in total.
Expand Down
2 changes: 1 addition & 1 deletion docs/ios/5x/features/configuration-file.md
Original file line number Diff line number Diff line change
Expand Up @@ -94,7 +94,7 @@ Sets a default limit for how many instances of any given domain to capture in a

##### NETWORK:DOMAINS *dictionary[string, int], optional*

This dictionary maps domains to capture limits. It should consist of string keys for domains we might capture. The value for each domain entry should be the corresponding capture limit. Any domain not in this list will use the [**DEFAULT_CAPTURE_LIMIT**](#networkdefault_capture_limit-int-optional).
This dictionary maps domains to capture limits. It should consist of string keys for domains we might capture. The value for each domain entry should be the corresponding capture limit. Any domain not in this list will use the [**DEFAULT_CAPTURE_LIMIT**](#network-int-optional).

##### NETWORK:CAPTURE_PUBLIC_KEY *string, optional*

Expand Down
4 changes: 3 additions & 1 deletion docusaurus.config.ts
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,9 @@ const config: Config = {
projectName: "embrace-docs", // Usually your repo name.

onBrokenLinks: "throw",
onBrokenMarkdownLinks: "warn",
onBrokenMarkdownLinks: "throw",
onDuplicateRoutes: "throw",
onBrokenAnchors: "throw",

i18n: {
defaultLocale: "en",
Expand Down

0 comments on commit 43ab86a

Please sign in to comment.