Update CHANGELOG for version 1.34.0b1#47681
Open
lavakumarrepala wants to merge 1 commit into
Open
Conversation
Added unreleased changes for version 1.34.0b1, including a fix for BatchEndpoint defaults serialization regression.
Contributor
There was a problem hiding this comment.
Pull request overview
This PR updates the azure-ai-ml CHANGELOG. It relocates the BatchEndpoint defaults serialization regression fix out of the already-released 1.34.0 (2026-06-11) section and into a newly created 1.34.0b1 (unreleased) section. The intent (capturing the fix in an unreleased section) is reasonable, but the chosen target version is inconsistent with the package's actual versioning state.
Changes:
- Adds a new
## 1.34.0b1 (unreleased)section containing theBatchEndpointdefaults bug-fix note. - Removes that same bug-fix note from the released
## 1.34.0 (2026-06-11)section.
Concerns:
_version.pydeclaresVERSION = "1.35.0"and a## 1.35.0 (unreleased)section already exists at the top of the file, so the next release is1.35.0, not1.34.0b1.1.34.0is already released and1.34.0b1 < 1.34.0(PEP 440), so the new section is both out of descending order and unreleasable; the bug-fix note would be stranded and omitted from the1.35.0release notes.
Comment on lines
+11
to
+14
| ## 1.34.0b1 (unreleased) | ||
|
|
||
| ### Bugs Fixed | ||
| - Fixed `BatchEndpoint` defaults serialization regression where `deployment_name` was sent to the service as snake_case instead of camelCase (`deploymentName`), causing `begin_create_or_update` to fail with "Could not find member 'deployment_name' on object of type 'BatchEndpointDefaults'". `BatchEndpoint.defaults` is now consistently exposed as a snake_case dict to users and converted to the correct wire format on serialization. |
Comment on lines
21
to
+22
|
|
||
| - Fixed `BatchEndpoint` defaults serialization regression where `deployment_name` was sent to the service as snake_case instead of camelCase (`deploymentName`), causing `begin_create_or_update` to fail with "Could not find member 'deployment_name' on object of type 'BatchEndpointDefaults'". `BatchEndpoint.defaults` is now consistently exposed as a snake_case dict to users and converted to the correct wire format on serialization. | ||
|
|
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
Added unreleased changes for version 1.34.0b1, including a fix for BatchEndpoint defaults serialization regression.
Description
Please add an informative description that covers that changes made by the pull request and link all relevant issues.
If an SDK is being regenerated based on a new API spec, a link to the pull request containing these API spec changes should be included above.
All SDK Contribution checklist:
General Guidelines and Best Practices
Testing Guidelines