Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Update version to prepare for GA release #24634

Merged
merged 1 commit into from
Oct 7, 2021
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
2 changes: 1 addition & 1 deletion eng/jacoco-test-coverage/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -244,7 +244,7 @@
<dependency>
<groupId>com.azure</groupId>
<artifactId>azure-monitor-query</artifactId>
<version>1.0.0-beta.5</version> <!-- {x-version-update;com.azure:azure-monitor-query;current} -->
<version>1.0.0</version> <!-- {x-version-update;com.azure:azure-monitor-query;current} -->
</dependency>
<dependency>
<groupId>com.azure</groupId>
Expand Down
2 changes: 1 addition & 1 deletion eng/versioning/version_client.txt
Original file line number Diff line number Diff line change
Expand Up @@ -103,7 +103,7 @@ com.azure:azure-messaging-webpubsub;1.0.0-beta.3;1.0.0-beta.4
com.azure:azure-mixedreality-authentication;1.1.2;1.2.0-beta.1
com.azure:azure-mixedreality-remoterendering;1.1.0;1.2.0-beta.1
com.azure:azure-monitor-opentelemetry-exporter;1.0.0-beta.4;1.0.0-beta.5
com.azure:azure-monitor-query;1.0.0-beta.4;1.0.0-beta.5
com.azure:azure-monitor-query;1.0.0-beta.4;1.0.0
srnagar marked this conversation as resolved.
Show resolved Hide resolved
com.azure:azure-monitor-query-perf;1.0.0-beta.1;1.0.0-beta.1
com.azure:azure-quantum-jobs;1.0.0-beta.1;1.0.0-beta.2
com.azure:azure-search-documents;11.4.3;11.5.0-beta.4
Expand Down
2 changes: 1 addition & 1 deletion sdk/monitor/azure-monitor-query-perf/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -27,7 +27,7 @@
<dependency>
<groupId>com.azure</groupId>
<artifactId>azure-monitor-query</artifactId>
<version>1.0.0-beta.5</version> <!-- {x-version-update;com.azure:azure-monitor-query;current} -->
<version>1.0.0</version> <!-- {x-version-update;com.azure:azure-monitor-query;current} -->
</dependency>
<dependency>
<groupId>com.azure</groupId>
Expand Down
20 changes: 15 additions & 5 deletions sdk/monitor/azure-monitor-query/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,15 +1,25 @@
# Release History

## 1.0.0-beta.5 (Unreleased)
## 1.0.0 (2021-10-07)

### Features Added
- Added `getMetricByName` API on `MetricsQueryResult` to get the metric result for a specific metric name.
- Added `LogsQueryStatus` enum to specify if the query was successful, partially successful or failed.

### Breaking Changes

### Bugs Fixed
- Changed `query` API name in `LogsQuery*Client` to `queryWorkspace`
- Changed `query` API name in `MetricsQuery*Client` to `queryResource`
- Changed `addQuery` API name in `LogsQueryBatch` to `addWorkspaceQuery`
- Removed `status` from `LogsBatchQueryResult`
- Throws exception if a logs query is partially successful with an option in `LogsQueryOptions` to disable this
behavior.

### Other Changes

#### Dependency Updates
- Upgraded `azure-core` to `1.21.0`.
- Upgraded `azure-core-http-netty` to `1.11.1`.

## 1.0.0-beta.4 (2021-09-10)

### Features Added
Expand All @@ -23,8 +33,8 @@
### Other Changes

#### Dependency Updates
- Upgraded `azure-core` from `1.18.0` to `1.19.0`.
- Upgraded `azure-core-http-netty` from `1.10.1` to `1.10.2`.
- Upgraded `azure-core` from `1.19.0` to `1.20.0`.
- Upgraded `azure-core-http-netty` from `1.10.2` to `1.11.0`.


## 1.0.0-beta.3 (2021-08-11)
Expand Down
2 changes: 1 addition & 1 deletion sdk/monitor/azure-monitor-query/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -32,7 +32,7 @@ Install the Azure Monitor Query client library for Java by adding the following
<dependency>
<groupId>com.azure</groupId>
<artifactId>azure-monitor-query</artifactId>
<version>1.0.0-beta.4</version>
<version>1.0.0</version>
</dependency>
```

Expand Down
2 changes: 1 addition & 1 deletion sdk/monitor/azure-monitor-query/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@

<groupId>com.azure</groupId>
<artifactId>azure-monitor-query</artifactId>
<version>1.0.0-beta.5</version> <!-- {x-version-update;com.azure:azure-monitor-query;current} -->
<version>1.0.0</version> <!-- {x-version-update;com.azure:azure-monitor-query;current} -->

<name>Microsoft Azure SDK for Azure Monitor Logs and Metrics Query</name>
<description>This package contains the Microsoft Azure SDK for querying Azure Monitor's Logs and Metrics data sources.</description>
Expand Down
2 changes: 1 addition & 1 deletion sdk/monitor/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,7 @@
<dependency>
<groupId>com.azure</groupId>
<artifactId>azure-monitor-query</artifactId>
<version>1.0.0-beta.5</version> <!-- {x-version-update;com.azure:azure-monitor-query;current} -->
<version>1.0.0</version> <!-- {x-version-update;com.azure:azure-monitor-query;current} -->
</dependency>
</dependencies>

Expand Down