Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
12 changes: 10 additions & 2 deletions sdk/monitor/monitor-opentelemetry/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,14 +1,22 @@
# Release History

## 1.0.0-beta.4 (Unreleased)
## 1.0.0 (2023-09-20)

### Features Added

### Breaking Changes
- Add support for Azure Functions programming model v4.

### Bugs Fixed
- Avoid dependency telemetry for ingestion endpoint calls.
- Add custom AI Sampler to maintain data reliability in Standard Metrics.
- Fix issues with SDK version not propagating correctly.

### Other Changes
- Update to latest OpenTelemetry dependencies.
- Rename azureMonitorExporterConfig.
- Remove singleton in handlers.
- Adding Functional Tests.


## 1.0.0-beta.3 (2023-08-30)

Expand Down
2 changes: 1 addition & 1 deletion sdk/monitor/monitor-opentelemetry/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
"name": "@azure/monitor-opentelemetry",
"author": "Microsoft Corporation",
"sdk-type": "client",
"version": "1.0.0-beta.4",
"version": "1.0.0",
"description": "Azure Monitor OpenTelemetry (Node.js)",
"main": "dist/index.js",
"module": "dist-esm/src/index.js",
Expand Down
2 changes: 1 addition & 1 deletion sdk/monitor/monitor-opentelemetry/src/types.ts
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
// Copyright (c) Microsoft Corporation.
// Licensed under the MIT license.

export const AZURE_MONITOR_OPENTELEMETRY_VERSION = "1.0.0-beta.4";
export const AZURE_MONITOR_OPENTELEMETRY_VERSION = "1.0.0";
export const AZURE_MONITOR_STATSBEAT_FEATURES = "AZURE_MONITOR_STATSBEAT_FEATURES";

export enum StatsbeatFeature {
Expand Down