chore(fixtures): refresh meta.api_version to 2026-04-16#42
Merged
Conversation
The Python SDK targets API version 2026-04-16 (declared in client.py), but 28 test fixtures still carried meta.api_version from earlier recorded responses (2021-04-19, 2021-12-15, 2022-05-09, 2022-05-10). Bulk-replace via sed across tests/fixtures/. The SDK code never reads meta.api_version from responses (only sends X-DIDWW-API-Version on the request), so this is purely cosmetic — keeps fixture metadata consistent with the SDK's declared target version.
Pretty-printed bodies forced PyYAML into folded double-quoted scalars, making cassettes unreadable and diffs noisy. Compact JSON round-trip yields plain single-quoted one-line scalars. Placeholder hosts kept consistent with example.com.
…ssed
encrypted_files/list, address_verifications/create, areas/show,
voice_out_trunks/list, identities/{create,update}, addresses/{create,update}
still carried 2021-04-19 / 2021-12-15 in meta.api_version. Now 2026-04-16,
consistent with every other fixture.
|
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.



28 test fixtures still carried meta.api_version from earlier recorded responses (2021-04-19, 2021-12-15, 2022-05-09, 2022-05-10). The SDK targets 2026-04-16 (declared in client.py). Bulk-replaced across tests/fixtures/. The SDK never reads meta.api_version from responses, so this is cosmetic — just keeps fixture metadata consistent with the declared target version. No production code touched.