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
14 changes: 7 additions & 7 deletions Cargo.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

12 changes: 6 additions & 6 deletions Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -37,28 +37,28 @@ rust-version = "1.85"
[workspace.dependencies.typespec]
default-features = false
path = "sdk/typespec"
version = "0.8.0"
version = "0.9.0"

[workspace.dependencies.typespec_client_core]
default-features = false
path = "sdk/typespec/typespec_client_core"
version = "0.7.0"
version = "0.8.0"

[workspace.dependencies.typespec_macros]
version = "0.7.0"
version = "0.8.0"
path = "sdk/typespec/typespec_macros"

[workspace.dependencies.azure_core]
default-features = false
version = "0.28.0"
version = "0.29.0"
path = "sdk/core/azure_core"

[workspace.dependencies.azure_core_macros]
version = "0.2.0"
version = "0.3.0"
path = "sdk/core/azure_core_macros"

[workspace.dependencies.azure_core_amqp]
version = "0.7.0"
version = "0.8.0"
path = "sdk/core/azure_core_amqp"

[workspace.dependencies.azure_messaging_eventhubs]
Expand Down
10 changes: 10 additions & 0 deletions sdk/core/azure_core/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,15 @@
# Release History

## 0.29.0 (Unreleased)

### Features Added

### Breaking Changes

### Bugs Fixed

### Other Changes

## 0.28.0 (2025-09-11)

### Features Added
Expand Down
2 changes: 1 addition & 1 deletion sdk/core/azure_core/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "azure_core"
version = "0.28.0"
version = "0.29.0"
description = "Rust wrappers around Microsoft Azure REST APIs - Core crate"
readme = "README.md"
authors.workspace = true
Expand Down
10 changes: 10 additions & 0 deletions sdk/core/azure_core_amqp/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,15 @@
# Release History

## 0.8.0 (Unreleased)

### Features Added

### Breaking Changes

### Bugs Fixed

### Other Changes

## 0.7.0 (2025-09-11)

### Breaking Changes
Expand Down
4 changes: 2 additions & 2 deletions sdk/core/azure_core_amqp/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
# AMQP Stack for consumption by packages in the Azure SDK.
[package]
name = "azure_core_amqp"
version = "0.7.0"
version = "0.8.0"
description = "Rust client library for the AMQP protocol"
readme = "README.md"
authors.workspace = true
Expand All @@ -19,7 +19,7 @@ edition.workspace = true

[dependencies]
async-trait.workspace = true
azure_core = { path = "../azure_core", version = "0.28.0", default-features = false }
azure_core = { path = "../azure_core", version = "0.29.0", default-features = false }
fe2o3-amqp = { workspace = true, optional = true }
fe2o3-amqp-cbs = { workspace = true, optional = true }
fe2o3-amqp-ext = { workspace = true, optional = true }
Expand Down
10 changes: 10 additions & 0 deletions sdk/core/azure_core_macros/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,15 @@
# Release History

## 0.3.0 (Unreleased)

### Features Added

### Breaking Changes

### Bugs Fixed

### Other Changes

## 0.2.0 (2025-09-11)

### Other Changes
Expand Down
2 changes: 1 addition & 1 deletion sdk/core/azure_core_macros/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "azure_core_macros"
version = "0.2.0"
version = "0.3.0"
description = "Procedural macros for client libraries built on azure_core."
readme = "README.md"
authors.workspace = true
Expand Down
10 changes: 10 additions & 0 deletions sdk/core/azure_core_opentelemetry/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,15 @@
# Release History

## 0.3.0 (Unreleased)

### Features Added

### Breaking Changes

### Bugs Fixed

### Other Changes

## 0.2.0 (2025-09-11)

### Other Changes
Expand Down
2 changes: 1 addition & 1 deletion sdk/core/azure_core_opentelemetry/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "azure_core_opentelemetry"
version = "0.2.0"
version = "0.3.0"
description = "OpenTelemetry integration for the Azure SDK for Rust"
readme = "README.md"
authors.workspace = true
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -175,6 +175,8 @@ impl TestServiceClientWithMacros {

#[cfg(test)]
mod tests {
use std::env;

use super::*;
use ::tracing::{info, trace};
use azure_core::{
Expand Down Expand Up @@ -680,7 +682,8 @@ mod tests {
async fn test_http_tracing_tests(ctx: TestContext) -> Result<()> {
let recording = ctx.recording();
let package_name = recording.var("CARGO_PKG_NAME", None);
let package_version = recording.var("CARGO_PKG_VERSION", None);
// Compare current version since recorded version may be older.
let package_version = env!("CARGO_PKG_VERSION").to_string();
azure_core_test::tracing::assert_instrumentation_information(
|tracer_provider| Ok(create_service_client(&ctx, tracer_provider)),
|client| {
Expand All @@ -706,7 +709,8 @@ mod tests {
async fn test_function_tracing_tests(ctx: TestContext) -> Result<()> {
let recording = ctx.recording();
let package_name = recording.var("CARGO_PKG_NAME", None);
let package_version = recording.var("CARGO_PKG_VERSION", None);
// Compare current version since recorded version may be older.
let package_version = env!("CARGO_PKG_VERSION").to_string();
azure_core_test::tracing::assert_instrumentation_information(
|tracer_provider| Ok(create_service_client(&ctx, tracer_provider)),
|client| {
Expand Down Expand Up @@ -736,7 +740,8 @@ mod tests {
async fn test_function_tracing_tests_error(ctx: TestContext) -> Result<()> {
let recording = ctx.recording();
let package_name = recording.var("CARGO_PKG_NAME", None);
let package_version = recording.var("CARGO_PKG_VERSION", None);
// Compare current version since recorded version may be older.
let package_version = env!("CARGO_PKG_VERSION").to_string();
azure_core_test::tracing::assert_instrumentation_information(
|tracer_provider| Ok(create_service_client(&ctx, tracer_provider)),
|client| {
Expand Down
2 changes: 1 addition & 1 deletion sdk/eventhubs/azure_messaging_eventhubs/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@ edition.workspace = true
async-lock.workspace = true
async-stream.workspace = true
async-trait.workspace = true
azure_core = { path = "../../core/azure_core", version = "0.28.0", default-features = false }
azure_core = { path = "../../core/azure_core", version = "0.29.0", default-features = false }
azure_core_amqp.workspace = true
futures.workspace = true
rand.workspace = true
Expand Down
2 changes: 1 addition & 1 deletion sdk/servicebus/azure_messaging_servicebus/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@ publish = false
async-lock.workspace = true
async-stream.workspace = true
async-trait.workspace = true
azure_core = { path = "../../core/azure_core", version = "0.28.0", default-features = false }
azure_core = { path = "../../core/azure_core", version = "0.29.0", default-features = false }
azure_core_amqp.workspace = true
futures.workspace = true
rand.workspace = true
Expand Down
10 changes: 10 additions & 0 deletions sdk/typespec/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,15 @@
# Release History

## 0.9.0 (Unreleased)

### Features Added

### Breaking Changes

### Bugs Fixed

### Other Changes

## 0.8.0 (2025-09-11)

### Features Added
Expand Down
2 changes: 1 addition & 1 deletion sdk/typespec/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "typespec"
version = "0.8.0"
version = "0.9.0"
authors.workspace = true
edition.workspace = true
rust-version.workspace = true
Expand Down
10 changes: 10 additions & 0 deletions sdk/typespec/typespec_client_core/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,15 @@
# Release History

## 0.8.0 (Unreleased)

### Features Added

### Breaking Changes

### Bugs Fixed

### Other Changes

## 0.7.0 (2025-09-11)

### Features Added
Expand Down
2 changes: 1 addition & 1 deletion sdk/typespec/typespec_client_core/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "typespec_client_core"
version = "0.7.0"
version = "0.8.0"
authors.workspace = true
edition.workspace = true
description = "Client runtime for TypeSpec-generated libraries."
Expand Down
10 changes: 10 additions & 0 deletions sdk/typespec/typespec_macros/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,15 @@
# Release History

## 0.8.0 (Unreleased)

### Features Added

### Breaking Changes

### Bugs Fixed

### Other Changes

## 0.7.0 (2025-09-11)

### Other Changes
Expand Down
2 changes: 1 addition & 1 deletion sdk/typespec/typespec_macros/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "typespec_macros"
version = "0.7.0"
version = "0.8.0"
authors.workspace = true
edition.workspace = true
description = "Procedural macros for client libraries built on typespec."
Expand Down