Skip to content

Update module github.com/cloudflare/cloudflare-go/v7 to v7.7.0#280

Open
renovate[bot] wants to merge 1 commit into
mainfrom
renovate/github.com-cloudflare-cloudflare-go-v7-7.x
Open

Update module github.com/cloudflare/cloudflare-go/v7 to v7.7.0#280
renovate[bot] wants to merge 1 commit into
mainfrom
renovate/github.com-cloudflare-cloudflare-go-v7-7.x

Conversation

@renovate

@renovate renovate Bot commented Jun 21, 2026

Copy link
Copy Markdown
Contributor

This PR contains the following updates:

Package Change Age Confidence
github.com/cloudflare/cloudflare-go/v7 v7.5.0v7.7.0 age confidence

Warning

Some dependencies could not be looked up. Check the Dependency Dashboard for more information.


Release Notes

cloudflare/cloudflare-go (github.com/cloudflare/cloudflare-go/v7)

v7.7.0

Compare Source

7.7.0 (2026-07-08)

Full Changelog: v7.6.0...v7.7.0

Breaking Changes

See the v7.7.0 Migration Guide for before/after code examples and actions needed for each change.

  • ssl: Recommendations.Get method and RecommendationGetResponse / RecommendationGetParams types removed.

  • ai_gateway, workflows, zero_trust/dlpemailaccountmapping: merged-union parent fields with same-name-different-type collisions changed from a variant-struct type to interface{}. Affected fields:

    • ai_gateway.AIGateway{New,Update,List,Delete,Get}ResponseSpendLimitsRulesMetadata.Mode (5 structs)
    • workflows.VersionGraphResponseGraphWorkflowPayload.Type
    • zero_trust.DLPEmailAccountMapping{New,Get}ResponseAuthRequirements.Type (2 structs)

    These fields were unreadable in the previous type (marshaling panicked with reflect: call of reflect.Value.SetString on struct Value). The new interface{} type matches the codegen pattern used by sibling merged fields on the same structs (e.g. Values, Fields, AllowedMicrosoftOrganizations); callers should switch on the parent union via AsUnion() for a strongly-typed variant.

  • zero_trust: Devices.DEXTests.{New,Update,List,Get} response type renamed from DeviceDEXTest{New,Update,List,Get}Response to the shared SchemaHTTP; field structure unchanged. Nested types renamed accordingly (e.g. DeviceDEXTestNewResponseDataSchemaData, DeviceDEXTestNewResponseTargetPolicySchemaHTTPTargetPolicy). Callers using := inference and field access continue to compile; callers referencing the removed type names must update to SchemaHTTP.

  • zero_trust: Devices.IPProfiles.List pagination changed from pagination.SinglePage[IPProfile] to pagination.V4PagePaginationArray[IPProfile]. .Result field access and ListAutoPaging() iteration continue to work; callers referencing the pagination type by name must update.

Features
  • NEW SERVICE: email_auth — DMARC reports edit/get and SPF inspect
    • client.EmailAuth.DMARCReports.Edit
    • client.EmailAuth.DMARCReports.Get
    • client.EmailAuth.SPF.Inspect.Get
  • NEW SERVICE: moq — Media over QUIC relay management
    • client.MoQ.Relays.{New,Update,List,Delete,Get}
    • client.MoQ.Relays.Tokens.Rotate
  • zero_trust: publish CASB APIs (client.ZeroTrust.Casb.*)
    • Applications.{List,Get} + Applications.SetupFlows.List
    • Integrations.{New,Update,List,Delete,Get,Pause,Resume}
  • logs: add LogExplorer sub-resource
    • LogExplorer.Query.Sql
    • LogExplorer.Datasets.{New,Update,List,Get}
    • LogExplorer.Datasets.Available.List
  • browser_rendering: add AccessibilityTree.New method
  • email_routing: add EmailRouting.Unlock and EmailRouting.Addresses.Edit methods
  • email_routing: add AccountRules.List method (GET /accounts/{account_id}/email/routing/rules) returning AccountRule with new Zone field; Rules.List gains optional AccountID param (mutually exclusive with ZoneID) so callers can list rules by account or zone
  • email_security: add bulk investigation APIs
    • Investigate.Bulk.{New,List,Delete,Get}
    • Investigate.Bulk.Cancel.New
    • Investigate.Bulk.Messages.List
  • accounts: add Logs.Audit.History and Logs.Audit.ProductCategories methods
  • organizations: add Logs.Audit.History method
Bug Fixes
  • ai_gateway, workflows, zero_trust/dlpemailaccountmapping: fix panics on union-merged parent field decoding by switching same-name-different-type merged fields from a variant-struct type to interface{} (3de4191)
  • browser_rendering: AccessibilityTreeNewParamsBodyObject now uses URL (matching the generated test fixture) instead of HTML (0f44441)
  • dns: restore Shadow* query params on RecordListParams and IncludeShadowMetadata on Record{New,Update,List,Batch,Edit,Get}Params after a codegen regression dropped them (f9b3f27)
Chores
  • api: update composite API spec (20+ codegen sync commits)
  • ci: bump CI job timeouts to 30 minutes (6cad6cb)
  • ci: unblock test job by installing nodejs/npm for prism mock server (3de4191)
  • apply accumulated custom code (CI jobs, GitLab config) (eb2bf2b)

v7.6.0

Compare Source

7.6.0 (2026-06-16)

Full Changelog: v7.5.0...v7.6.0

This release includes breaking changes in Realtime Kit and Email Security alongside a large number of new services and features. Please ensure you read through the list of changes below before upgrading.

See the v7.6.0 Migration Guide for before/after code examples and actions needed for each breaking change.


Breaking Changes

Realtime Kit - GenerateSummaryOfTranscripts Return Type Changed

SessionService.GenerateSummaryOfTranscripts() previously returned only error. It now returns (*SessionGenerateSummaryOfTranscriptsResponse, error). Code that discards the first return value will no longer compile.

Realtime Kit - StartTrackRecording Return Type Changed

RecordingService.StartTrackRecording() previously returned only error. It now returns (*RecordingStartTrackRecordingResponse, error). Code that discards the first return value will no longer compile.

Realtime Kit - Session Participant Response Types Restructured

SessionGetParticipantDataFromPeerIDResponseData gained a new .Participant nested struct. Sub-types were renamed from ...DataPeerReport to ...DataParticipantPeerReport (and similar). Code referencing the old type names will no longer compile.

Email Security - ActionLog Parameter Removed

The ActionLog field has been removed from InvestigateListParams. The upstream API no longer accepts this query parameter. Remove the field from your list calls.


Features

Tenants (client.Tenants)
  • NEW SERVICE: Multi-tenant account management
    • client.Tenants.New() - Create a tenant
    • client.Tenants.Update() - Update a tenant
    • client.Tenants.List() - List tenants
    • client.Tenants.Delete() - Delete a tenant
    • client.Tenants.Get() - Get a tenant
    • client.Tenants.Accounts.New() - Create a tenant account
    • client.Tenants.Accounts.List() - List tenant accounts
    • client.Tenants.Accounts.Delete() - Delete a tenant account
    • client.Tenants.Accounts.Get() - Get a tenant account
    • client.Tenants.AccountTypes.List() - List tenant account types
    • client.Tenants.Entitlements.List() - List tenant entitlements
    • client.Tenants.Memberships.New() - Create a tenant membership
    • client.Tenants.Memberships.List() - List tenant memberships
    • client.Tenants.Memberships.Delete() - Delete a tenant membership
    • client.Tenants.Memberships.Get() - Get a tenant membership
Flagship (client.Flagship)
  • NEW SERVICE: Feature flag management
    • client.Flagship.Apps.New() - Create a Flagship app
    • client.Flagship.Apps.Update() - Update a Flagship app
    • client.Flagship.Apps.List() - List Flagship apps
    • client.Flagship.Apps.Delete() - Delete a Flagship app
    • client.Flagship.Apps.Get() - Get a Flagship app
    • client.Flagship.Apps.Flags.New() - Create a feature flag
    • client.Flagship.Apps.Flags.Update() - Update a feature flag
    • client.Flagship.Apps.Flags.List() - List feature flags
    • client.Flagship.Apps.Flags.Delete() - Delete a feature flag
    • client.Flagship.Apps.Flags.Get() - Get a feature flag
    • client.Flagship.Apps.Flags.Changelog.List() - List flag changelog
    • client.Flagship.Apps.Evaluate.Get() - Evaluate flags for an app
OriginTLSComplianceModes (client.OriginTLSComplianceModes)
  • NEW SERVICE: Origin TLS compliance mode settings
    • client.OriginTLSComplianceModes.Edit() - Edit compliance mode
    • client.OriginTLSComplianceModes.Get() - Get compliance mode
CsamScanner (client.CsamScanner)
  • NEW SERVICE: CSAM scanner third-party settings
    • client.CsamScanner.Edit() - Edit CSAM scanner settings
    • client.CsamScanner.Get() - Get CSAM scanner settings
TenantCustomNameservers (client.TenantCustomNameservers)
  • NEW SERVICE: Tenant-scoped custom nameservers
    • client.TenantCustomNameservers.New() - Create a tenant custom nameserver
    • client.TenantCustomNameservers.Delete() - Delete a tenant custom nameserver
    • client.TenantCustomNameservers.Get() - Get tenant custom nameservers
AI Gateway (client.AIGateway)
  • client.AIGateway.CustomProviders.New() - Create a custom AI provider
  • client.AIGateway.CustomProviders.List() - List custom AI providers
  • client.AIGateway.CustomProviders.Delete() - Delete a custom AI provider
  • client.AIGateway.CustomProviders.Get() - Get a custom AI provider
IAM (client.IAM)
  • client.IAM.OAuthClients.New() - Create an OAuth client
  • client.IAM.OAuthClients.Update() - Update an OAuth client
  • client.IAM.OAuthClients.List() - List OAuth clients
  • client.IAM.OAuthClients.Delete() - Delete an OAuth client
  • client.IAM.OAuthClients.DeleteRotatedSecret() - Delete a rotated client secret
  • client.IAM.OAuthClients.Get() - Get an OAuth client
  • client.IAM.OAuthClients.RotateSecret() - Rotate an OAuth client secret
  • client.IAM.OAuthScopes.List() - List available OAuth scopes
Magic Transit (client.MagicTransit)
  • client.MagicTransit.IPSECTunnels.PSKSet() - Set a pre-shared key for IPSEC tunnels
  • client.MagicTransit.Cf1Sites.New() - Create a CF1 site
  • client.MagicTransit.Cf1Sites.Update() - Update a CF1 site
  • client.MagicTransit.Cf1Sites.List() - List CF1 sites
  • client.MagicTransit.Cf1Sites.Delete() - Delete a CF1 site
  • client.MagicTransit.Cf1Sites.Get() - Get a CF1 site
  • client.MagicTransit.Cf1Sites.Ramps.New() - Create a CF1 site ramp
  • client.MagicTransit.Cf1Sites.Ramps.Update() - Update a CF1 site ramp
  • client.MagicTransit.Cf1Sites.Ramps.List() - List CF1 site ramps
  • client.MagicTransit.Cf1Sites.Ramps.Delete() - Delete a CF1 site ramp
  • client.MagicTransit.Cf1Sites.Ramps.Get() - Get a CF1 site ramp
SSL (client.SSL)
  • client.SSL.AutoOriginTLSKex.Edit() - Edit auto origin TLS key exchange settings
  • client.SSL.AutoOriginTLSKex.Get() - Get auto origin TLS key exchange settings
DNS (client.DNS)
  • client.DNS.Usage.Zone.Get() - Get zone-level DNS usage
  • client.DNS.Usage.Account.Get() - Get account-level DNS usage
Zero Trust (client.ZeroTrust)
  • client.ZeroTrust.Access.IdentityProviders.FederationGrants.New() - Create an IDP federation grant
  • client.ZeroTrust.Access.IdentityProviders.FederationGrants.Update() - Update an IDP federation grant
  • client.ZeroTrust.Access.IdentityProviders.FederationGrants.List() - List IDP federation grants
  • client.ZeroTrust.Access.IdentityProviders.FederationGrants.Delete() - Delete an IDP federation grant
  • client.ZeroTrust.Access.IdentityProviders.FederationGrants.Get() - Get an IDP federation grant
  • client.ZeroTrust.Access.AIControl.McpServers.New() - Create an MCP server
  • client.ZeroTrust.Access.AIControl.McpServers.Update() - Update an MCP server
  • client.ZeroTrust.Access.AIControl.McpServers.List() - List MCP servers
  • client.ZeroTrust.Access.AIControl.McpServers.Delete() - Delete an MCP server
  • client.ZeroTrust.Access.AIControl.McpServers.Get() - Get an MCP server
  • client.ZeroTrust.Access.AIControl.McpServers.Sync() - Sync MCP servers
  • client.ZeroTrust.Access.AIControl.McpPortals.New() - Create an MCP portal
  • client.ZeroTrust.Access.AIControl.McpPortals.Update() - Update an MCP portal
  • client.ZeroTrust.Access.AIControl.McpPortals.List() - List MCP portals
  • client.ZeroTrust.Access.AIControl.McpPortals.Delete() - Delete an MCP portal
  • client.ZeroTrust.Access.AIControl.McpPortals.Get() - Get an MCP portal
  • client.ZeroTrust.DEX.Devices.ISPs.List() - List device ISPs
  • client.ZeroTrust.DEX.FleetStatus.Devices.List() - List fleet status devices
  • client.ZeroTrust.DEX.Rules.New() - Create a DEX rule
  • client.ZeroTrust.DEX.Rules.Update() - Update a DEX rule
  • client.ZeroTrust.DEX.Rules.List() - List DEX rules
  • client.ZeroTrust.DEX.Rules.Delete() - Delete a DEX rule
  • client.ZeroTrust.DEX.Rules.Get() - Get a DEX rule
  • client.ZeroTrust.DEX.Commands.New() - Create a DEX command
  • client.ZeroTrust.DEX.Commands.List() - List DEX commands
  • client.ZeroTrust.DEX.Commands.Devices.List() - List DEX command devices
  • client.ZeroTrust.DEX.Commands.Downloads.Get() - Download DEX command results
  • client.ZeroTrust.DEX.Commands.Quota.Get() - Get DEX command quota
  • client.ZeroTrust.DEX.WARPChangeEvents.List() - List WARP change events
  • client.ZeroTrust.DLP.CustomPromptTopics.New() - Create a DLP custom prompt topic
  • client.ZeroTrust.DLP.CustomPromptTopics.Update() - Update a DLP custom prompt topic
  • client.ZeroTrust.DLP.CustomPromptTopics.List() - List DLP custom prompt topics
  • client.ZeroTrust.DLP.CustomPromptTopics.Delete() - Delete a DLP custom prompt topic
  • client.ZeroTrust.DLP.CustomPromptTopics.Get() - Get a DLP custom prompt topic
  • client.ZeroTrust.DLP.SensitivityGroups.New() - Create a DLP sensitivity group
  • client.ZeroTrust.DLP.SensitivityGroups.Update() - Update a DLP sensitivity group
  • client.ZeroTrust.DLP.SensitivityGroups.List() - List DLP sensitivity groups
  • client.ZeroTrust.DLP.SensitivityGroups.Delete() - Delete a DLP sensitivity group
  • client.ZeroTrust.DLP.SensitivityGroups.Get() - Get a DLP sensitivity group
  • client.ZeroTrust.DLP.SensitivityGroups.Levels.New() - Create a sensitivity level
  • client.ZeroTrust.DLP.SensitivityGroups.Levels.Update() - Update a sensitivity level
  • client.ZeroTrust.DLP.SensitivityGroups.Levels.List() - List sensitivity levels
  • client.ZeroTrust.DLP.SensitivityGroups.Levels.Delete() - Delete a sensitivity level
  • client.ZeroTrust.DLP.SensitivityGroups.Levels.Get() - Get a sensitivity level
  • client.ZeroTrust.DLP.SensitivityGroups.Levels.Order.Update() - Update sensitivity level order
  • client.ZeroTrust.DLP.SensitivityGroups.Levels.Order.Get() - Get sensitivity level order
  • client.ZeroTrust.DLP.DataTagCategories.New() - Create a DLP data tag category
  • client.ZeroTrust.DLP.DataTagCategories.Update() - Update a DLP data tag category
  • client.ZeroTrust.DLP.DataTagCategories.List() - List DLP data tag categories
  • client.ZeroTrust.DLP.DataTagCategories.Delete() - Delete a DLP data tag category
  • client.ZeroTrust.DLP.DataTagCategories.Get() - Get a DLP data tag category
  • client.ZeroTrust.DLP.DataTagCategories.DataTags.New() - Create a data tag
  • client.ZeroTrust.DLP.DataTagCategories.DataTags.Update() - Update a data tag
  • client.ZeroTrust.DLP.DataTagCategories.DataTags.List() - List data tags
  • client.ZeroTrust.DLP.DataTagCategories.DataTags.Delete() - Delete a data tag
  • client.ZeroTrust.DLP.DataTagCategories.DataTags.Get() - Get a data tag
  • client.ZeroTrust.DLP.DataClasses.New() - Create a DLP data class
  • client.ZeroTrust.DLP.DataClasses.Update() - Update a DLP data class
  • client.ZeroTrust.DLP.DataClasses.List() - List DLP data classes
  • client.ZeroTrust.DLP.DataClasses.Delete() - Delete a DLP data class
  • client.ZeroTrust.DLP.DataClasses.Get() - Get a DLP data class
  • client.ZeroTrust.Tunnels.WARPConnector.Configurations.Update() - Update WARP connector configuration
  • client.ZeroTrust.Tunnels.WARPConnector.Configurations.Get() - Get WARP connector configuration
Resource Sharing (client.ResourceSharing)
  • client.ResourceSharing.Resources.Update() - Update a shared resource
  • client.ResourceSharing.Resources.Delete() - Delete a shared resource
  • client.ResourceSharing.Resources.Get() - Get a shared resource
Zones (client.Zones)
  • client.Zones.CT.Alerting.Edit() - Edit CT alerting subscription
  • client.Zones.CT.Alerting.Get() - Get CT alerting subscription
Organizations (client.Organizations)
  • client.Organizations.Accounts.New() - Create an organization account
  • client.Organizations.Accounts.List() - List organization accounts
User (client.User)
  • client.User.Tenants.List() - List user tenants
Workflows (client.Workflows)
  • client.Workflows.Versions.Graph() - Get workflow version graph
  • New rollback enum value on InstanceGetResponseStepsObjectType

Chores

  • ai_gateway: update generated types and methods
  • csam_scanner: update generated types and methods
  • d1: update generated types and methods
  • dns: update generated types and methods
  • email_sending: update generated types and methods
  • flagship: update generated types and methods
  • iam: update generated types and methods
  • magic_transit: update generated types and methods
  • organizations: update generated types and methods
  • origin_tls_compliance_modes: update generated types and methods
  • radar: update generated types and methods
  • realtime_kit: update generated types and methods
  • resource_sharing: update generated types and methods
  • ssl: update generated types and methods
  • tenant_custom_nameservers: update generated types and methods
  • tenants: update generated types and methods
  • user: update generated types and methods
  • workflows: update generated types and methods
  • zero_trust: update generated types and methods
  • zones: update generated types and methods

Deprecations

None.

Bug Fixes

None.


Configuration

📅 Schedule: (UTC)

  • Branch creation
    • At any time (no schedule defined)
  • Automerge
    • At any time (no schedule defined)

🚦 Automerge: Disabled by config. Please merge this manually once you are satisfied.

Rebasing: Whenever PR becomes conflicted, or you tick the rebase/retry checkbox.

🔕 Ignore: Close this PR and you won't be reminded about this update again.


  • If you want to rebase/retry this PR, check this box

This PR was generated by Mend Renovate. View the repository job log.

@renovate renovate Bot added the dependencies update of dependent libraries label Jun 21, 2026
@renovate
renovate Bot requested a review from a team as a code owner June 21, 2026 12:31
@renovate

renovate Bot commented Jun 21, 2026

Copy link
Copy Markdown
Contributor Author

⚠️ Artifact update problem

Renovate failed to update an artifact related to this branch. You probably do not want to merge this PR as-is.

♻ Renovate will retry this branch, including artifacts, only when one of the following happens:

  • any of the package files in this branch needs updating, or
  • the branch becomes conflicted, or
  • you click the rebase/retry checkbox if found above, or
  • you rename this PR's title to start with "rebase!" to trigger it manually

The artifact failure details are included below:

File name: go.sum
Command failed: go get -t ./...
go: github.com/theopenlane/corejobs@v0.2.1: reading github.com/theopenlane/corejobs/go.mod at revision v0.2.1: git ls-remote -q --end-of-options origin in /runner/cache/others/go/pkg/mod/cache/vcs/ed2767f946cf841b50add56f5bdc1452ef390ab528c50f4c92a70b5fa309cc26: exit status 128:
	remote: Repository not found.
	fatal: repository 'https://github.com/theopenlane/corejobs/' not found

@renovate renovate Bot added the dependencies update of dependent libraries label Jun 21, 2026
@github-actions github-actions Bot removed the dependencies update of dependent libraries label Jun 21, 2026
@renovate
renovate Bot force-pushed the renovate/github.com-cloudflare-cloudflare-go-v7-7.x branch from 507200a to 2c3a884 Compare July 9, 2026 19:33
@renovate renovate Bot changed the title Update module github.com/cloudflare/cloudflare-go/v7 to v7.6.0 Update module github.com/cloudflare/cloudflare-go/v7 to v7.7.0 Jul 9, 2026
@renovate
renovate Bot force-pushed the renovate/github.com-cloudflare-cloudflare-go-v7-7.x branch from 2c3a884 to afccb90 Compare July 17, 2026 22:53
@sonarqubecloud

Copy link
Copy Markdown

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment

Labels

None yet

Projects

None yet

Development

Successfully merging this pull request may close these issues.

0 participants