ci(e2e): bump TARGET_PROVIDER_VERSION to 5.22.0 - #318
Merged
Conversation
v5.22.0 (released 2026-07-10) includes the two upstream fixes that v5.21.1 was missing: - load_balancer_pool: remove phantom flatten_cname from v4 source model (baa1b92) — fixes 'Value Conversion Error' during v5 plan - ruleset: add asset_name to v4 source schema so v4->v5 state upgrader parses correctly (baa1b92) — fixes 'unsupported attribute asset_name' These were the remaining E2E failures after the webhook URL and audit_logs field fixes in #316.
rotem-cloud
approved these changes
Jul 14, 2026
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.
Summary
Bump the pinned provider version from 5.21.1 to 5.22.0 in both E2E workflow files.
Problem
The E2E CI run on main (#29279540132) is failing because v5.21.1 is missing two upstream state upgrader fixes:
cloudflare_load_balancer_pool:flatten_cnameValue Conversion Error during v5 plancloudflare_ruleset:unsupported attribute asset_name— the v4.52.8 release addedasset_nameto rulesets, but v5.21.1's state upgrader doesn't know about itBoth were fixed in v5.22.0 (released 2026-07-10):
load_balancer_pool: remove phantomflatten_cnamefrom v4 source model (baa1b92)ruleset: addasset_nameto v4 source schema (baa1b92)Changes
.github/workflows/e2e-tests.yml:TARGET_PROVIDER_VERSION5.21.1 → 5.22.0.github/workflows/e2e-tests-next.yml: defaulttarget_provider_version5.21.1 → 5.22.0