Skip to content

Commit 9ff717a

Browse files
authored
Update typespec, azure_core versions (Azure#2469)
1 parent 889b581 commit 9ff717a

File tree

14 files changed

+71
-21
lines changed

14 files changed

+71
-21
lines changed

Cargo.lock

Lines changed: 5 additions & 5 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

Cargo.toml

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -33,19 +33,19 @@ rust-version = "1.80"
3333
[workspace.dependencies.typespec]
3434
default-features = false
3535
path = "sdk/typespec"
36-
version = "0.3.0"
36+
version = "0.4.0"
3737

3838
[workspace.dependencies.typespec_client_core]
3939
default-features = false
4040
path = "sdk/typespec/typespec_client_core"
41-
version = "0.2.0"
41+
version = "0.3.0"
4242

4343
[workspace.dependencies.typespec_macros]
44-
version = "0.2.0"
44+
version = "0.3.0"
4545
path = "sdk/typespec/typespec_macros"
4646

4747
[workspace.dependencies.azure_core]
48-
version = "0.23.0"
48+
version = "0.24.0"
4949
path = "sdk/core/azure_core"
5050
default-features = false
5151
# Keep these in sync with azure_core. This allows
@@ -57,7 +57,7 @@ features = [
5757
]
5858

5959
[workspace.dependencies.azure_core_amqp]
60-
version = "0.2.0"
60+
version = "0.3.0"
6161
path = "sdk/core/azure_core_amqp"
6262

6363
[workspace.dependencies.azure_core_test]

sdk/core/azure_core/CHANGELOG.md

Lines changed: 10 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,15 @@
11
# Release History
22

3+
## 0.24.0 (Unreleased)
4+
5+
### Features Added
6+
7+
### Breaking Changes
8+
9+
### Bugs Fixed
10+
11+
### Other Changes
12+
313
## 0.23.0 (2025-04-08)
414

515
### Features Added

sdk/core/azure_core/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "azure_core"
3-
version = "0.23.0"
3+
version = "0.24.0"
44
description = "Rust wrappers around Microsoft Azure REST APIs - Core crate"
55
readme = "README.md"
66
authors.workspace = true

sdk/core/azure_core/README.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -89,7 +89,7 @@ This type provides access to both the deserialized result of the service call, a
8989
```rust no_run
9090
use azure_core::http::Response;
9191
use azure_identity::DefaultAzureCredential;
92-
use azure_security_keyvault_secrets::{models::SecretBundle, SecretClient};
92+
use azure_security_keyvault_secrets::{models::Secret, SecretClient};
9393

9494
#[tokio::main]
9595
async fn main() -> Result<(), Box<dyn std::error::Error>> {
@@ -109,7 +109,7 @@ async fn main() -> Result<(), Box<dyn std::error::Error>> {
109109
let secret = response.into_body().await?;
110110

111111
// get response again because it was moved in above statement
112-
let response: Response<SecretBundle> = client.get_secret("secret-name", "", None).await?;
112+
let response: Response<Secret> = client.get_secret("secret-name", "", None).await?;
113113

114114
// 2. The deconstruct() method for accessing all the details of the HTTP response
115115
let (status, headers, body) = response.deconstruct();
@@ -184,7 +184,7 @@ async fn main() -> Result<(), Box<dyn std::error::Error>> {
184184
)?;
185185

186186
// get a stream
187-
let mut pager = client.list_secrets(None)?.into_stream();
187+
let mut pager = client.list_secret_properties(None)?.into_stream();
188188

189189
// poll the pager until there are no more SecretListResults
190190
while let Some(secrets) = pager.try_next().await? {

sdk/core/azure_core_amqp/CHANGELOG.md

Lines changed: 10 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,15 @@
11
# Release History
22

3+
## 0.3.0 (Unreleased)
4+
5+
### Features Added
6+
7+
### Breaking Changes
8+
9+
### Bugs Fixed
10+
11+
### Other Changes
12+
313
## 0.2.0 (2025-04-08)
414

515
### Features Added

sdk/core/azure_core_amqp/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
# AMQP Stack for consumption by packages in the Azure SDK.
44
[package]
55
name = "azure_core_amqp"
6-
version = "0.2.0"
6+
version = "0.3.0"
77
description = "Rust client library for the AMQP protocol"
88
readme = "README.md"
99
authors.workspace = true

sdk/typespec/CHANGELOG.md

Lines changed: 10 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,15 @@
11
# Release History
22

3+
## 0.4.0 (Unreleased)
4+
5+
### Features Added
6+
7+
### Breaking Changes
8+
9+
### Bugs Fixed
10+
11+
### Other Changes
12+
313
## 0.3.0 (2025-04-08)
414

515
### Breaking Changes

sdk/typespec/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "typespec"
3-
version = "0.3.0"
3+
version = "0.4.0"
44
authors.workspace = true
55
edition.workspace = true
66
rust-version.workspace = true

sdk/typespec/typespec_client_core/CHANGELOG.md

Lines changed: 10 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,15 @@
11
# Release History
22

3+
## 0.3.0 (Unreleased)
4+
5+
### Features Added
6+
7+
### Breaking Changes
8+
9+
### Bugs Fixed
10+
11+
### Other Changes
12+
313
## 0.2.0 (2025-04-08)
414

515
### Breaking Changes

0 commit comments

Comments
 (0)