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
202 changes: 94 additions & 108 deletions eng/emitter-package-lock.json

Large diffs are not rendered by default.

4 changes: 2 additions & 2 deletions eng/emitter-package.json
Original file line number Diff line number Diff line change
@@ -1,12 +1,12 @@
{
"main": "dist/src/index.js",
"dependencies": {
"@azure-tools/typespec-rust": "0.22.0"
"@azure-tools/typespec-rust": "0.23.0"
},
"devDependencies": {
"@azure-tools/typespec-azure-core": "0.60.0",
"@azure-tools/typespec-azure-rulesets": "0.60.0",
"@azure-tools/typespec-client-generator-core": "0.60.0",
"@azure-tools/typespec-client-generator-core": "0.60.1",
"@typespec/compiler": "1.4",
"@typespec/http": "1.4",
"@typespec/openapi": "1.4",
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -6,6 +6,9 @@

### Breaking Changes

- Renamed `KeyType::EC` to `KeyType::Ec` to align with guidelines.
- Renamed `KeyType::RSA` to `KeyType::Rsa` to align with guidelines.

### Bugs Fixed

### Other Changes
Expand Down
4 changes: 2 additions & 2 deletions sdk/keyvault/azure_security_keyvault_certificates/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -369,7 +369,7 @@ async fn main() -> Result<(), Box<dyn std::error::Error>> {
..Default::default()
}),
key_properties: Some(KeyProperties {
key_type: Some(KeyType::EC),
key_type: Some(KeyType::Ec),
curve: Some(CurveName::P256),
..Default::default()
}),
Expand Down Expand Up @@ -398,7 +398,7 @@ async fn main() -> Result<(), Box<dyn std::error::Error>> {
None,
)?;
let body = SignParameters {
algorithm: Some(SignatureAlgorithm::ES256),
algorithm: Some(SignatureAlgorithm::Es256),
value: Some(digest),
};

Expand Down
Loading