You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: CHANGELOG.md
+7
Original file line number
Diff line number
Diff line change
@@ -117,8 +117,10 @@ For semantic convention package changes, see the [semconv CHANGELOG](packages/se
117
117
* feat(core)!: drop `getEnv()`, `getEnvWithoutDefaults()`[#5481](https://github.com/open-telemetry/opentelemetry-js/pull/5481)@pichlermarc
118
118
* (user-facing): `getEnv()` has been replaced by `getStringFromEnv()`, `getNumberFromEnv()`, `getBooleanFromEnv()`, `getStringListFromEnv()`
119
119
* these new functions do not include defaults, please inline any defaults if necessary (example: `getStringFromEnv("OTEL_FOO") ?? "my-default"`)
120
+
* to find the previously used defaults, please see [here](https://github.com/open-telemetry/opentelemetry-js/blob/e9d3c71918635d490b6a9ac9f8259265b38394d0/packages/opentelemetry-core/src/utils/environment.ts#L154-L239)
120
121
* (user-facing): `getEnvWithoutDefaults()` has been replaced by `getStringFromEnv()`, `getNumberFromEnv()`, `getBooleanFromEnv()`, `getStringListFromEnv()`
121
122
* (user-facing): `DEFAULT_ENVIRONMENT` has been removed, please inline any defaults from now on
123
+
* to find the previously used defaults, please see [here](https://github.com/open-telemetry/opentelemetry-js/blob/e9d3c71918635d490b6a9ac9f8259265b38394d0/packages/opentelemetry-core/src/utils/environment.ts#L154-L239)
122
124
* (user-facing): `ENVIRONMENT` has been removed without replacement
123
125
* (user-facing): `RAW_ENVIRONMENT` has been removed without replacement
124
126
* (user-facing): `parseEnvironment` has been removed without replacement
@@ -128,6 +130,11 @@ For semantic convention package changes, see the [semconv CHANGELOG](packages/se
128
130
* to register a global context manager, please use `context.setGlobalContextManager()` from `@opentelemetry/api`
129
131
* feat!: set compilation target to ES2022 for all packages except `@opentelemetry/api`, `@opentelemetry/api-logs`, `@opentelemetry/api-events`, and `@opentelemetry/semantic-conventions`[#5456](https://github.com/open-telemetry/opentelemetry-js/pull/5456)@david-luna
130
132
* (user-facing): drops browser runtimes which do not support ES2022 features
133
+
* feat(core)! drop unused constants [#5504](https://github.com/open-telemetry/opentelemetry-js/pull/5504)@pichlermarc
134
+
* (user-facing): `DEFAULT_ATTRIBUTE_VALUE_LENTGHT_LIMIT` has been removed, please use `Infinity` instead
135
+
* (user-facing): `DEFAULT_ATTRIBUTE_VALUE_COUNT_LIMIT` has been removed, please use `128` instead
136
+
* (user-facing): `DEFAULT_SPAN_ATTRIBUTE_PER_EVENT_COUNT_LIMIT` has been removed, please use `128` instead
137
+
* (user-facing): `DEFAULT_SPAN_ATTRIBUTE_PER_LINK_COUNT_LIMIT` has been removed, please use `128` instead
0 commit comments