Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

chore(deps): bump the dev-dependencies group across 1 directory with 37 updates #4655

Merged

Conversation

dependabot[bot]
Copy link
Contributor

@dependabot dependabot bot commented on behalf of github Aug 5, 2024

Bumps the dev-dependencies group with 31 updates in the / directory:

Package From To
cloud.google.com/go/compute/metadata 0.3.0 0.5.0
github.com/Azure/azure-sdk-for-go/sdk/azcore 1.12.0 1.13.0
github.com/F5Networks/k8s-bigip-ctlr/v2 2.17.0 2.17.1
github.com/IBM-Cloud/ibm-cloud-cli-sdk 1.4.0 1.5.0
github.com/IBM/go-sdk-core/v5 5.17.3 5.17.4
github.com/IBM/networking-go-sdk 0.47.1 0.49.0
github.com/aliyun/alibaba-cloud-sdk-go 1.62.771 1.62.804
github.com/ans-group/sdk-go 1.17.0 1.19.0
github.com/aws/aws-sdk-go 1.54.4 1.55.5
github.com/civo/civogo 0.3.70 0.3.73
github.com/cloudflare/cloudflare-go 0.98.0 0.101.0
github.com/digitalocean/godo 1.118.0 1.119.0
github.com/gophercloud/gophercloud 1.12.0 1.14.0
github.com/linode/linodego 1.35.0 1.38.0
github.com/oracle/oci-go-sdk/v65 65.67.2 65.70.0
github.com/pluralsh/gqlclient 1.11.0 1.12.1
github.com/projectcontour/contour 1.29.1 1.30.0
github.com/scaleway/scaleway-sdk-go 1.0.0-beta.28 1.0.0-beta.29
github.com/tencentcloud/tencentcloud-sdk-go/tencentcloud/common 1.0.945 1.0.976
github.com/tencentcloud/tencentcloud-sdk-go/tencentcloud/dnspod 1.0.945 1.0.976
github.com/tencentcloud/tencentcloud-sdk-go/tencentcloud/privatedns 1.0.945 1.0.976
github.com/transip/gotransip/v6 6.24.0 6.25.0
go.etcd.io/etcd/api/v3 3.5.14 3.5.15
go.etcd.io/etcd/client/v3 3.5.14 3.5.15
golang.org/x/oauth2 0.21.0 0.22.0
golang.org/x/sync 0.7.0 0.8.0
golang.org/x/time 0.5.0 0.6.0
google.golang.org/api 0.185.0 0.190.0
gopkg.in/ns1/ns1-go.v2 2.11.0 2.12.0
istio.io/api 1.22.1 1.22.3
istio.io/client-go 1.22.1 1.22.3

Updates cloud.google.com/go/compute/metadata from 0.3.0 to 0.5.0

Release notes

Sourced from cloud.google.com/go/compute/metadata's releases.

parallelstore: v0.5.0

0.5.0 (2024-08-01)

Features

  • parallelstore: Add file_stripe_level and directory_stripe_level fields to Instance (#10622) (2fef238)

parallelstore: v0.4.1

0.4.1 (2024-07-24)

Bug Fixes

  • parallelstore: Update dependencies (257c40b)

grafeas: v0.3.9

0.3.9 (2024-07-24)

Bug Fixes

  • grafeas: Update dependencies (257c40b)
Changelog

Sourced from cloud.google.com/go/compute/metadata's changelog.

v0.5.0

  • bigquery:
    • The SQL types DATE, TIME and DATETIME are now supported. They correspond to the Date, Time and DateTime types in the new cloud.google.com/go/civil package.
    • Support for query parameters.
    • Support deleting a dataset.
    • Values from INTEGER columns will now be returned as int64, not int. This will avoid errors arising from large values on 32-bit systems.
  • datastore:
    • Nested Go structs encoded as Entity values, instead of a flattened list of the embedded struct's fields. This means that you may now have twice-nested slices, eg.
      type State struct {
        Cities  []struct{
          Populations []int
        }
      }
      See the announcement for more details.
    • Contexts no longer hold namespaces; instead you must set a key's namespace explicitly. Also, key functions have been changed and renamed.
    • The WithNamespace function has been removed. To specify a namespace in a Query, use the Query.Namespace method:
      q := datastore.NewQuery("Kind").Namespace("ns")
    • All the fields of Key are exported. That means you can construct any Key with a struct literal:
      k := &Key{Kind: "Kind",  ID: 37, Namespace: "ns"}
    • As a result of the above, the Key methods Kind, ID, d.Name, Parent, SetParent and Namespace have been removed.
    • NewIncompleteKey has been removed, replaced by IncompleteKey. Replace
      NewIncompleteKey(ctx, kind, parent)
      with
      IncompleteKey(kind, parent)
      and if you do use namespaces, make sure you set the namespace on the returned key.
    • NewKey has been removed, replaced by NameKey and IDKey. Replace
      NewKey(ctx, kind, name, 0, parent)
      NewKey(ctx, kind, "", id, parent)
      with
      NameKey(kind, name, parent)

... (truncated)

Commits
  • 7959a9f bigquery: support struct field parameters
  • a64eb5d bigquery: support array query parameters
  • 2861f2e bigquery: support scalar query parameters
  • a2e776e civil: civil time types
  • 918f8d5 fields: test that a tagged field takes precedence
  • e86221f bigtable/bttest: RowKeyFilter support in emulator.
  • 648bc87 bigquery: support BYTES data type
  • 7bb67ec bigtable/bttest: TimestampRangeFilter improvements
  • 8b767ae fields: simplify dominantField
  • 8ee8376 fields: add Match optimizations
  • Additional commits viewable in compare view

Updates github.com/Azure/azure-sdk-for-go/sdk/azcore from 1.12.0 to 1.13.0

Release notes

Sourced from github.com/Azure/azure-sdk-for-go/sdk/azcore's releases.

sdk/azcore/v1.13.0

1.13.0 (2024-07-16)

Features Added

  • Added runtime.NewRequestFromRequest(), allowing for a policy.Request to be created from an existing *http.Request.
Commits
  • 94c22e6 [azcore] prepping for release (#23192)
  • c5213b1 Redesign persistent token cache API (#23114)
  • 5df73f9 [azopenai]: Update custom_client.go to enable insecure credential with HTTP (...
  • b4b4721 [azcore] Adding in a function create a policy.Request using an existing *http...
  • 80dbc7d Update CODEOWNERS_baseline_errors.txt (#23191)
  • d254d11 Increment package version after release of internal (#23190)
  • 62f7a3d Test credential factory supports Pipelines federated auth (#23184)
  • 5aaedf4 [Release] sdk/resourcemanager/informaticadatamgmt/arminformaticadatamgmt/1.0....
  • ce39ed9 Sync eng/common directory with azure-sdk-tools for PR 8598 (#23175)
  • 75d30bb Enable use of pipeline credential. Fixes https:/microsoft/azure-p...
  • Additional commits viewable in compare view

Updates github.com/Azure/azure-sdk-for-go/sdk/azidentity from 1.6.0 to 1.7.0

Release notes

Sourced from github.com/Azure/azure-sdk-for-go/sdk/azidentity's releases.

sdk/internal/v1.7.0

1.7.0 (2024-05-01)

Features Added

  • Support for local repo override (via presence of eng/target_proxy_version.txt) of invoked test-proxy version.

  • RemoveRegisteredSanitizers selectively disables sanitizers the test proxy enables by default since version 1.0.0-dev.20240422.1

Breaking Changes

  • Deprecated the go-vcr based test recording API. Its methods now return errors or panic.
  • Changed value of recording.SanitizedValue from "sanitized" to "Sanitized" to match the test proxy

sdk/azidentity/v1.7.0

1.7.0 (2024-06-20)

Features Added

  • AzurePipelinesCredential authenticates an Azure Pipelines service connection with workload identity federation

Breaking Changes

These changes affect only code written against a beta version such as v1.7.0-beta.1

  • Removed the persistent token caching API. It will return in v1.8.0-beta.1

sdk/azidentity/v1.7.0-beta.1

1.7.0-beta.1 (2024-06-10)

Features Added

  • Restored AzurePipelinesCredential and persistent token caching API

Breaking Changes

These changes affect only code written against a beta version such as v1.6.0-beta.4

  • Values which NewAzurePipelinesCredential read from environment variables in prior versions are now parameters
  • Renamed AzurePipelinesServiceConnectionCredentialOptions to AzurePipelinesCredentialOptions

Bugs Fixed

  • Managed identity bug fixes
Commits

Updates github.com/F5Networks/k8s-bigip-ctlr/v2 from 2.17.0 to 2.17.1

Release notes

Sourced from github.com/F5Networks/k8s-bigip-ctlr/v2's releases.

Release v2.17.1

  • See release notes for details on what has changed in this release.
  • The container F5 Container Ingress Services for Kubernetes and OpenShift is available on DockerHub and can be downloaded using the Docker CLI:
docker pull docker.io/f5networks/k8s-bigip-ctlr:2.17.1
docker pull quay.io/f5networks/k8s-bigip-ctlr:2.17.1
Changelog

Sourced from github.com/F5Networks/k8s-bigip-ctlr/v2's changelog.

2.17.1

Added Functionality

**What's new:**
    * CRD
        * `Issue 3378 <https:/F5Networks/k8s-bigip-ctlr/issues/3378>`_: Support to control ciphers groups and ssl options in TLSProfile CRD, See `Example <https:/F5Networks/k8s-bigip-ctlr/blob/2.x-master/docs/config_examples/customResource/VirtualServerWithTLSProfile/tls-with-tlsCipher/>`_
    * Improved performance for Hub Mode using the isTenantNameServiceNamespace label in the AS3 configmap, See `Example <https:/F5Networks/k8s-bigip-ctlr/blob/2.x-master/docs/config_examples/configmap/user-defined-configmap/hubmode-configmap/hubmode-cmap.yaml>`_
    * Pod Graceful Shutdown support for AS3 ConfigMap using CIS deployment parameter *pod-graceful-shutdown*

Bug Fixes

* `Issue 3395 &lt;https:/F5Networks/k8s-bigip-ctlr/issues/3395&gt;`_: BIG-IP controller 2.16.0 removes F5 configuration when removing Kubernetes resources in namespace.
* `Issue 3424 &lt;https:/F5Networks/k8s-bigip-ctlr/issues/3424&gt;`_: Static routes are not added if a label is not added to a namespace when using `--namespace-label` flag.
* `Issue 3443 &lt;https:/F5Networks/k8s-bigip-ctlr/issues/3443&gt;`_: Addressed the problem with IPAM IP allocation on resource recreation.
* `Issue 3406 &lt;https:/F5Networks/k8s-bigip-ctlr/issues/3406&gt;`_: Upon deletion of all CRD resources, the default route domain of the CIS-managed Partition resets to 0.
* `Issue 3405 &lt;https:/F5Networks/k8s-bigip-ctlr/issues/3405&gt;`_: Resolved the issue where Helm Chart does not enable ingressClass after creating it.
*  Resolved the issue where LB Services remain stuck in a Pending state when using IPAM.

Upgrade notes

Starting with CIS version 2.17.1:

  • Re-sync period for the service in hub mode is the same as the periodic sync interval configured in the CIS deployment parameter periodic-sync-interval, for which the default value is 30 seconds.

  • If the --ipam-cluster-label is already enabled in previous versions, it's recommended to remove the ipam CR created by the previous version of CIS and recreate it. For example, you can use the command:

    kubectl -n kube-system delete ipam &lt;CIS_deployment_name&gt;.&lt;CIS_managed_bigip_partition&gt;.ipam

    • If you wish to enable --ipam-cluster-label in CIS or modify the --ipam-cluster-label configuration, it is still recommended to remove the ipam CR created by the previous version of CIS.
Commits

Updates github.com/IBM-Cloud/ibm-cloud-cli-sdk from 1.4.0 to 1.5.0

Release notes

Sourced from github.com/IBM-Cloud/ibm-cloud-cli-sdk's releases.

v1.5.0

Change Logs

Core config changes

  • Added entries for the fallback tokens (to be inserted into the default token / refresh token values upon leave-ing of an assumed TP) & the ID of any currently-assumed TP

Other changes

  • Small code change with the stringification of the model for a CRN, to prevent the return of a misleading non-empty string when a CRN is fully empty
  • Added fake stubs for PluginConfig
Commits
  • f6bda08 Merge pull request #410 from IBM-Cloud/dev
  • 9a70219 Merge branch 'master' into dev
  • 7f32cde Merge pull request #409 from IBM-Cloud/chore-create-version-1dot5dot0
  • 71e0e89 change the minor version number
  • 9b519ef Merge pull request #408 from IBM-Cloud/fix/readd-plugin-fakes
  • f7abdc9 Merge pull request #407 from IBM-Cloud/fix-add-bogus-crn-prevention
  • 5c7cdfa chore: readded plugin fakes
  • b07ac18 comments
  • fc7d6d4 Merge remote-tracking branch 'origin/add-assumed-tp-to-config' into fix-add-b...
  • 3824294 add protection for faulty empty CRN return
  • Additional commits viewable in compare view

Updates github.com/IBM/go-sdk-core/v5 from 5.17.3 to 5.17.4

Release notes

Sourced from github.com/IBM/go-sdk-core/v5's releases.

v5.17.4

5.17.4 (2024-06-25)

Bug Fixes

This also includes the change to bump go-retryablehttp from v0.7.5 to v0.7.7 to avoid a vulnerability.

Changelog

Sourced from github.com/IBM/go-sdk-core/v5's changelog.

5.17.4 (2024-06-25)

Bug Fixes

  • tidy Go modules (#221) (5da6409)
  • This also includes the change to bump go-retryablehttp from v0.7.5 to v0.7.7 to avoid a vulnerability.
Commits
  • 7c8519e chore(release): 5.17.4 release notes [skip ci]
  • 6425333 Update version numbers from 5.17.3 -> 5.17.4 [skip ci]
  • 5da6409 fix: tidy Go modules (#221)
  • f209755 chore(deps): bump go-retryablehttp v0.7.5 => v0.7.7 (#220)
  • See full diff in compare view

Updates github.com/IBM/networking-go-sdk from 0.47.1 to 0.49.0

Release notes

Sourced from github.com/IBM/networking-go-sdk's releases.

v0.49.0

0.49.0 (2024-07-12)

Features

  • CIS: origin post quantum encryption and max HTTP version (#201) (10dc3c5)

v0.48.0

0.48.0 (2024-07-02)

Features

  • CIS: add order advanced certificate and origin certificate (#187) (321347b)

v0.47.2

0.47.2 (2024-07-02)

Bug Fixes

  • fix: Reverting Previous Dependency Updates (9d6745e)
  • fixing deployement issues (#194) (0a1223a)
  • fixing deployment issue (#186) (851a472)
  • fixing deployment issue (#199) (6ade25d)
  • fixing the deployment issue (#185) (39c812a)
  • fixng Uncontrolled resource consumption in braces (#184) (27ce9ab)
  • reverting previous dependency update chnages (#192) (6f63583)
  • reverting previous dependency update chnages (#193) (fd7031e)
  • reverting previous dependency update chnages (#197) (f94dddd)
  • reverting previous dependency update chnages (#198) (fe11a39)
  • Reverting Previous Dependency Updates (#189) (21e156b)
Changelog

Sourced from github.com/IBM/networking-go-sdk's changelog.

0.49.0 (2024-07-12)

Features

  • CIS: origin post quantum encryption and max HTTP version (#201) (10dc3c5)

0.48.0 (2024-07-02)

Features

  • CIS: add order advanced certificate and origin certificate (#187) (321347b)

0.47.2 (2024-07-02)

Bug Fixes

  • fix: Reverting Previous Dependency Updates (9d6745e)
  • fixing deployement issues (#194) (0a1223a)
  • fixing deployment issue (#186) (851a472)
  • fixing deployment issue (#199) (6ade25d)
  • fixing the deployment issue (#185) (39c812a)
  • fixng Uncontrolled resource consumption in braces (#184) (27ce9ab)
  • reverting previous dependency update chnages (#192) (6f63583)
  • reverting previous dependency update chnages (#193) (fd7031e)
  • reverting previous dependency update chnages (#197) (f94dddd)
  • reverting previous dependency update chnages (#198) (fe11a39)
  • Reverting Previous Dependency Updates (#189) (21e156b)
Commits
  • 074bbda chore(release): 0.49.0 [skip ci]
  • b9501e9 Update version 0.48.0 -> 0.49.0 [skip ci]
  • 10dc3c5 feat(CIS): origin post quantum encryption and max HTTP version (#201)
  • e0a1585 chore(release): 0.48.0 [skip ci]
  • 66de9c2 Update version 0.47.2 -> 0.48.0 [skip ci]
  • 321347b feat(CIS): add order advanced certificate and origin certificate (#187)
  • f15724b chore(release): 0.47.2 [skip ci]
  • bff06c1 Update version 0.47.1 -> 0.47.2 [skip ci]
  • 6ade25d fix: fixing deployment issue (#199)
  • fe11a39 fix: reverting previous dependency update chnages (#198)
  • Additional commits viewable in compare view

Updates github.com/aliyun/alibaba-cloud-sdk-go from 1.62.771 to 1.62.804

Release notes

Sourced from github.com/aliyun/alibaba-cloud-sdk-go's releases.

v1.62.804

  • Generated 2018-11-01 for dms-enterprise.
  • Support switch login user

v1.62.803

  • Generated 20240611 for AiContent.
  • add openapi for Personalized Text to Image ablity init version.

v1.62.802

  • Generated 2015-12-01 for Dds. undefined

v1.62.801

  • Generated 2016-11-01 for live.
  • Update to support new apis.

v1.62.800

  • Generated 2014-08-28 for Ess.
  • Ess support instance refresh.

v1.62.799

  • Generated 2015-11-01 for Market.
  • Update DescribeApiMetering API.

v1.62.798

  • Generated 2017-05-25 for Dybaseapi.
  • Supported C#.

v1.62.797

  • Generated 2019-09-01 for OceanBasePro. undefined

v1.62.796

  • Generated 2014-08-15 for Rds. undefined

v1.62.795

  • Generated 2014-06-18 for Mts.
  • Update water-mark params

v1.62.794

  • Generated 2017-06-13 for elasticsearch.
  • Support kibana Pvl private link operation.

v1.62.793

  • Generated 2015-01-01 for R-kvstore.
  • Account management add SourceBiz parameters.

v1.62.792

  • Generated 2019-12-30 for imageseg.

... (truncated)

Changelog

Sourced from github.com/aliyun/alibaba-cloud-sdk-go's changelog.

2024-08-02 Version: v1.62.804

  • Generated 2018-11-01 for dms-enterprise.
  • Support switch login user

2024-08-01 Version: v1.62.803

  • Generated 20240611 for AiContent.
  • add openapi for Personalized Text to Image ablity init version.

2024-08-01 Version: v1.62.802

  • Generated 2015-12-01 for Dds. undefined

2024-08-01 Version: v1.62.801

  • Generated 2016-11-01 for live.
  • Update to support new apis.

2024-07-29 Version: v1.62.800

  • Generated 2014-08-28 for Ess.
  • Ess support instance refresh.

2024-07-29 Version: v1.62.799

  • Generated 2015-11-01 for Market.
  • Update DescribeApiMetering API.

2024-07-26 Version: v1.62.798

  • Generated 2017-05-25 for Dybaseapi.
  • Supported C#.

2024-07-24 Version: v1.62.797

  • Generated 2019-09-01 for OceanBasePro. undefined

2024-07-23 Version: v1.62.796

  • Generated 2014-08-15 for Rds. undefined

2024-07-23 Version: v1.62.795

  • Generated 2014-06-18 for Mts.
  • Update water-mark params

2024-07-22 Version: v1.62.794

  • Generated 2017-06-13 for elasticsearch.
  • Support kibana Pvl private link operation.

2024-07-19 Version: v1.62.793

  • Generated 2015-01-01 for R-kvstore.
  • Account management add SourceBiz parameters.

2024-07-19 Version: v1.62.792

  • Generated 2019-12-30 for imageseg.

... (truncated)

Commits

Updates github.com/ans-group/sdk-go from 1.17.0 to 1.19.0

Release notes

Sourced from github.com/ans-group/sdk-go's releases.

v1.19.0

Added user script execution functionality

v1.18.1

No release notes provided.

v1.18.0

This release adds PSS v2 support

Breaking changes

  • Enum type has been refactored to use generics. Migration to new methods required
- ddosx.ParseACLGeoIPRulesMode(mode)
+ ddosx.ACLGeoIPRulesModeEnum.Parse(mode)

v1.17.1

No release notes provided.

Commits

Updates github.com/aws/aws-sdk-go from 1.54.4 to 1.55.5

Release notes

Sourced from github.com/aws/aws-sdk-go's releases.

Release v1.55.5 (2024-07-30)

Service Client Updates

  • service/appstream: Updates service API and documentation
    • Added support for Red Hat Enterprise Linux 8 on Amazon AppStream 2.0
  • service/autoscaling: Updates service API and documentation
    • Increase the length limit for VPCZoneIdentifier from 2047 to 5000
  • service/codepipeline: Updates service API, documentation, and paginators
    • AWS CodePipeline V2 type pipelines now support stage level conditions to enable development teams to safely release changes that meet quality and compliance requirements.
  • service/elasticache: Updates service documentation
    • Doc only update for changes to deletion API.
  • service/elasticloadbalancing: Updates service API
  • service/eventbridge: Updates service API
  • service/logs: Updates service API
    • Add v2 smoke tests and smithy smokeTests trait for SDK testing.
  • service/models.lex.v2: Updates service API and documentation
  • service/rolesanywhere: Updates service API and documentation
  • service/tnb: Updates service API and documentation
  • service/workspaces: Updates service documentation
    • Removing multi-session as it isn't supported for pools

Release v1.55.4 (2024-07-29)

Service Client Updates

  • service/elasticache: Updates service documentation
    • Renaming full service name as it appears in developer documentation.
  • service/memorydb: Updates service API and documentation

Release v1.55.3 (2024-07-25)

Service Client Updates

  • service/application-autoscaling: Updates service API
  • service/application-signals: Updates service API and documentation
  • service/bedrock-runtime: Updates service API and documentation
  • service/codecommit: Updates service API and documentation
    • CreateRepository API now throws OperationNotAllowedException when the account has been restricted from creating a repository.
  • service/datazone: Updates service API and documentation
  • service/ec2: Updates service API and documentation
    • EC2 Fleet now supports using custom identifiers to reference Amazon Machine Images (AMI) in launch requests that are configured to choose from a diversified list of instance types.
  • service/ecr: Updates service API, documentation, paginators, and examples
    • API and documentation updates for Amazon ECR, adding support for creating, updating, describing and deleting ECR Repository Creation Template.
  • service/eks: Updates service API and documentation
  • service/elasticloadbalancingv2: Updates service API, documentation, and examples
  • service/network-firewall: Updates service API and documentation
  • service/outposts: Updates service API and documentation
  • service/states: Updates service API and documentation
    • This release adds support to customer managed KMS key encryption in AWS Step Functions.

... (truncated)

Commits

Updates github.com/civo/civogo from 0.3.70 to 0.3.73

Commits

Updates github.com/cloudflare/cloudflare-go from 0.98.0 to 0.101.0

Release notes

Sourced from github.com/cloudflare/cloudflare-go's releases.

v0.101.0

ENHANCEMENTS:

  • access_application: add skip_app_launcher_login_page flag to skip the App Launcher landing page (#2793)
  • device_posture_rule: support extended_key_usage, check_private_key, and locations for client_certificate_v2 posture rule (#1685)
  • devices_policy: Add new tunnel_protocol field to policy (#2778)
  • risk_score_integration: Add support for Risk Score Integrations (#2786)

DEPENDENCIES:

  • deps: bumps github.com/urfave/cli/v2 from 2.27.2 to 2.27.3 (#2787)

v0.100.0

BREAKING CHANGES:

  • teams_accounts: rename TeamsCertificate in TeamsAccountConfiguration to TeamsCertificateSetting (#2754)

ENHANCEMENTS:

  • Add CloudConnectorAPI Client (#2698)
  • gateway_categories: add ListGatewayCategories which returns all gateway categories. (#2722)
  • teams_certificates: add TeamsCertificate resource to manage gateway certificates (#2754)

DEPENDENCIES:

  • deps: bumps dependabot/fetch-metadata from 2.1.0 to 2.2.0 (#2727)
  • deps: bumps golang.org/x/net from 0.26.0 to 0.27.0 (#2726)

v0.99.0

ENHANCEMENTS:

  • teams: added per account certificate setting to teams gateway configuration (#2713)
  • teams_list: Added description to ZT list item (#2621)
  • teams_rules: Added ZT rule settings ignore_cname_category_matches (#2621)

DEPENDENCIES:

  • deps: bumps github.com/hashicorp/go-retryablehttp from 0.7.1 to 0.7.7 (#2699)
Changelog

Sourced from github.com/cloudflare/cloudflare-go's changelog.

0.101.0 (July 31st, 2024)

ENHANCEMENTS:

  • access_application: add skip_app_launcher_login_page flag to skip the App Launcher landing page (#2793)
  • device_posture_rule: support extended_key_usage, check_private_key, and locations for client_certificate_v2 posture rule (#1685)
  • devices_policy: Add new tunnel_protocol field to policy (#2778)
  • risk_score_integration: Add support for Risk Score Integrations (#2786)

DEPENDENCIES:

  • deps: bumps github.com/urfave/cli/v2 from 2.27.2 to 2.27.3 (#2787)

0.100.0 (July 18th, 2024)

BREAKING CHANGES:

  • teams_accounts: rename TeamsCertificate in TeamsAccountConfiguration to TeamsCertificateSetting (#2754)

ENHANCEMENTS:

  • Add CloudConnectorAPI Client (#2698)
  • gateway_categories: add ListGatewayCategories which returns all gateway categories. (#2722)
  • teams_certificates: add TeamsCertificate resource to manage gateway certificates (#2754)

DEPENDENCIES:

  • deps: bumps dependabot/fetch-metadata from 2.1.0 to 2.2.0 (#2727)
  • deps: bumps golang.org/x/net from 0.26.0 to 0.27.0 (#2726)

0.99.0 (July 3rd, 2024)

ENHANCEMENTS:

  • teams: added per account certificate setting to teams gateway configuration (#2713)
  • teams_list: Added description to ZT list item (#2621)
  • teams_rules: Added ZT rule settings ignore_cname_category_matches (#2621)

DEPENDENCIES:

  • deps: bumps github.com/hashicorp/go-retryablehttp from 0.7.1 to 0.7.7 (#2699)
Commits
  • 217ab49 Update CHANGELOG.md
  • 64c5444 generate changelog
  • ccae552 Merge pull request #2793 from sha-e-256/add-flag-to-skip-app-launcher-landing-pg
  • 369a946 Update .changelog/2793.txt
  • ec51561 feat: add flag to skip the app launcher landing pg
  • d257a3f Merge pull request #2786 from MattDavis00/mattdavis/DLP-1890
  • 4cbefd2 fix lint
  • f45f2a3 Merge pull request #2787 from cloudflare/dependabot/go_modules/github.com/urf...
  • 3febe85 add CHANGELOG for #2787
  • 4bcd55a Bump github.com/urfave/cli/v2 from 2.27.2 to 2.27.3
  • Additional commits viewable in compare view

Updates github.com/digitalocean/godo from 1.118.0 to 1.119.0

Release notes

Sourced from github.com/digitalocean/godo's releases.

v1.119.0

  • #704 - @​ElanHasson - APPS-9133 - Add support for OPENSEARCH as a database engine option
  • #703 - @​dependabot[bot] - Bump github.com/hashicorp/go-retryablehttp from 0.7.4 to 0.7.7
  • #699 - @​ElanHasson - APPS-8790 Add support to App Platform Log Forwarding for an OpenSearch DBaaS cluster destination.
Changelog

Sourced from github.com/digitalocean/godo's changelog.

[v1.119.0] - 2024-07-24

  • #704 - @​ElanHasson - APPS-9133 - Add support for OPENSEARCH as a database engine option
  • #703 - @​dependabot[bot] - Bump github.com/hashicorp/go-retryablehttp from 0.7.4 to 0.7.7
  • #699 - @​ElanHasson - APPS-8790 Add support to App Platform Log Forwarding for an OpenSearch DBaaS cluster destination.
Commits
  • 675abbf Prep v1.119.0 release (#705)
  • c0ad296 APPS-9133 Add support for OPENSEARCH as a database engine option (#704)
  • 3cc538b Bump github.com/hashicorp/go-retr...

    Description has been truncated

…37 updates

Bumps the dev-dependencies group with 31 updates in the / directory:

| Package | From | To |
| --- | --- | --- |
| [cloud.google.com/go/compute/metadata](https:/googleapis/google-cloud-go) | `0.3.0` | `0.5.0` |
| [github.com/Azure/azure-sdk-for-go/sdk/azcore](https:/Azure/azure-sdk-for-go) | `1.12.0` | `1.13.0` |
| [github.com/F5Networks/k8s-bigip-ctlr/v2](https:/F5Networks/k8s-bigip-ctlr) | `2.17.0` | `2.17.1` |
| [github.com/IBM-Cloud/ibm-cloud-cli-sdk](https:/IBM-Cloud/ibm-cloud-cli-sdk) | `1.4.0` | `1.5.0` |
| [github.com/IBM/go-sdk-core/v5](https:/IBM/go-sdk-core) | `5.17.3` | `5.17.4` |
| [github.com/IBM/networking-go-sdk](https:/IBM/networking-go-sdk) | `0.47.1` | `0.49.0` |
| [github.com/aliyun/alibaba-cloud-sdk-go](https:/aliyun/alibaba-cloud-sdk-go) | `1.62.771` | `1.62.804` |
| [github.com/ans-group/sdk-go](https:/ans-group/sdk-go) | `1.17.0` | `1.19.0` |
| [github.com/aws/aws-sdk-go](https:/aws/aws-sdk-go) | `1.54.4` | `1.55.5` |
| [github.com/civo/civogo](https:/civo/civogo) | `0.3.70` | `0.3.73` |
| [github.com/cloudflare/cloudflare-go](https:/cloudflare/cloudflare-go) | `0.98.0` | `0.101.0` |
| [github.com/digitalocean/godo](https:/digitalocean/godo) | `1.118.0` | `1.119.0` |
| [github.com/gophercloud/gophercloud](https:/gophercloud/gophercloud) | `1.12.0` | `1.14.0` |
| [github.com/linode/linodego](https:/linode/linodego) | `1.35.0` | `1.38.0` |
| [github.com/oracle/oci-go-sdk/v65](https:/oracle/oci-go-sdk) | `65.67.2` | `65.70.0` |
| [github.com/pluralsh/gqlclient](https:/pluralsh/gqlclient) | `1.11.0` | `1.12.1` |
| [github.com/projectcontour/contour](https:/projectcontour/contour) | `1.29.1` | `1.30.0` |
| [github.com/scaleway/scaleway-sdk-go](https:/scaleway/scaleway-sdk-go) | `1.0.0-beta.28` | `1.0.0-beta.29` |
| [github.com/tencentcloud/tencentcloud-sdk-go/tencentcloud/common](https:/tencentcloud/tencentcloud-sdk-go) | `1.0.945` | `1.0.976` |
| [github.com/tencentcloud/tencentcloud-sdk-go/tencentcloud/dnspod](https:/tencentcloud/tencentcloud-sdk-go) | `1.0.945` | `1.0.976` |
| [github.com/tencentcloud/tencentcloud-sdk-go/tencentcloud/privatedns](https:/tencentcloud/tencentcloud-sdk-go) | `1.0.945` | `1.0.976` |
| [github.com/transip/gotransip/v6](https:/transip/gotransip) | `6.24.0` | `6.25.0` |
| [go.etcd.io/etcd/api/v3](https:/etcd-io/etcd) | `3.5.14` | `3.5.15` |
| [go.etcd.io/etcd/client/v3](https:/etcd-io/etcd) | `3.5.14` | `3.5.15` |
| [golang.org/x/oauth2](https:/golang/oauth2) | `0.21.0` | `0.22.0` |
| [golang.org/x/sync](https:/golang/sync) | `0.7.0` | `0.8.0` |
| [golang.org/x/time](https:/golang/time) | `0.5.0` | `0.6.0` |
| [google.golang.org/api](https:/googleapis/google-api-go-client) | `0.185.0` | `0.190.0` |
| gopkg.in/ns1/ns1-go.v2 | `2.11.0` | `2.12.0` |
| [istio.io/api](https:/istio/api) | `1.22.1` | `1.22.3` |
| [istio.io/client-go](https:/istio/client-go) | `1.22.1` | `1.22.3` |



Updates `cloud.google.com/go/compute/metadata` from 0.3.0 to 0.5.0
- [Release notes](https:/googleapis/google-cloud-go/releases)
- [Changelog](https:/googleapis/google-cloud-go/blob/main/CHANGES.md)
- [Commits](googleapis/google-cloud-go@v0.3.0...v0.5.0)

Updates `github.com/Azure/azure-sdk-for-go/sdk/azcore` from 1.12.0 to 1.13.0
- [Release notes](https:/Azure/azure-sdk-for-go/releases)
- [Changelog](https:/Azure/azure-sdk-for-go/blob/main/documentation/release.md)
- [Commits](Azure/azure-sdk-for-go@sdk/azcore/v1.12.0...sdk/azcore/v1.13.0)

Updates `github.com/Azure/azure-sdk-for-go/sdk/azidentity` from 1.6.0 to 1.7.0
- [Release notes](https:/Azure/azure-sdk-for-go/releases)
- [Changelog](https:/Azure/azure-sdk-for-go/blob/main/documentation/release.md)
- [Commits](Azure/azure-sdk-for-go@sdk/azcore/v1.6.0...sdk/azcore/v1.7.0)

Updates `github.com/F5Networks/k8s-bigip-ctlr/v2` from 2.17.0 to 2.17.1
- [Release notes](https:/F5Networks/k8s-bigip-ctlr/releases)
- [Changelog](https:/F5Networks/k8s-bigip-ctlr/blob/v2.17.1/docs/RELEASE-NOTES.rst)
- [Commits](F5Networks/k8s-bigip-ctlr@v2.17.0...v2.17.1)

Updates `github.com/IBM-Cloud/ibm-cloud-cli-sdk` from 1.4.0 to 1.5.0
- [Release notes](https:/IBM-Cloud/ibm-cloud-cli-sdk/releases)
- [Commits](IBM-Cloud/ibm-cloud-cli-sdk@v1.4.0...v1.5.0)

Updates `github.com/IBM/go-sdk-core/v5` from 5.17.3 to 5.17.4
- [Release notes](https:/IBM/go-sdk-core/releases)
- [Changelog](https:/IBM/go-sdk-core/blob/main/CHANGELOG.md)
- [Commits](IBM/go-sdk-core@v5.17.3...v5.17.4)

Updates `github.com/IBM/networking-go-sdk` from 0.47.1 to 0.49.0
- [Release notes](https:/IBM/networking-go-sdk/releases)
- [Changelog](https:/IBM/networking-go-sdk/blob/master/CHANGELOG.md)
- [Commits](IBM/networking-go-sdk@v0.47.1...v0.49.0)

Updates `github.com/aliyun/alibaba-cloud-sdk-go` from 1.62.771 to 1.62.804
- [Release notes](https:/aliyun/alibaba-cloud-sdk-go/releases)
- [Changelog](https:/aliyun/alibaba-cloud-sdk-go/blob/master/ChangeLog.txt)
- [Commits](aliyun/alibaba-cloud-sdk-go@v1.62.771...v1.62.804)

Updates `github.com/ans-group/sdk-go` from 1.17.0 to 1.19.0
- [Release notes](https:/ans-group/sdk-go/releases)
- [Commits](ans-group/sdk-go@v1.17.0...v1.19.0)

Updates `github.com/aws/aws-sdk-go` from 1.54.4 to 1.55.5
- [Release notes](https:/aws/aws-sdk-go/releases)
- [Commits](aws/aws-sdk-go@v1.54.4...v1.55.5)

Updates `github.com/civo/civogo` from 0.3.70 to 0.3.73
- [Release notes](https:/civo/civogo/releases)
- [Changelog](https:/civo/civogo/blob/master/changelog.yml)
- [Commits](civo/civogo@v0.3.70...v0.3.73)

Updates `github.com/cloudflare/cloudflare-go` from 0.98.0 to 0.101.0
- [Release notes](https:/cloudflare/cloudflare-go/releases)
- [Changelog](https:/cloudflare/cloudflare-go/blob/master/CHANGELOG.md)
- [Commits](cloudflare/cloudflare-go@v0.98.0...v0.101.0)

Updates `github.com/digitalocean/godo` from 1.118.0 to 1.119.0
- [Release notes](https:/digitalocean/godo/releases)
- [Changelog](https:/digitalocean/godo/blob/main/CHANGELOG.md)
- [Commits](digitalocean/godo@v1.118.0...v1.119.0)

Updates `github.com/gophercloud/gophercloud` from 1.12.0 to 1.14.0
- [Release notes](https:/gophercloud/gophercloud/releases)
- [Changelog](https:/gophercloud/gophercloud/blob/v1.14.0/CHANGELOG.md)
- [Commits](gophercloud/gophercloud@v1.12.0...v1.14.0)

Updates `github.com/linode/linodego` from 1.35.0 to 1.38.0
- [Release notes](https:/linode/linodego/releases)
- [Commits](linode/linodego@v1.35.0...v1.38.0)

Updates `github.com/oracle/oci-go-sdk/v65` from 65.67.2 to 65.70.0
- [Release notes](https:/oracle/oci-go-sdk/releases)
- [Changelog](https:/oracle/oci-go-sdk/blob/master/CHANGELOG.md)
- [Commits](oracle/oci-go-sdk@v65.67.2...v65.70.0)

Updates `github.com/pluralsh/gqlclient` from 1.11.0 to 1.12.1
- [Release notes](https:/pluralsh/gqlclient/releases)
- [Changelog](https:/pluralsh/gqlclient/blob/main/.releaserc)
- [Commits](pluralsh/gqlclient@v1.11.0...v1.12.1)

Updates `github.com/projectcontour/contour` from 1.29.1 to 1.30.0
- [Release notes](https:/projectcontour/contour/releases)
- [Changelog](https:/projectcontour/contour/blob/main/RELEASES.md)
- [Commits](projectcontour/contour@v1.29.1...v1.30.0)

Updates `github.com/scaleway/scaleway-sdk-go` from 1.0.0-beta.28 to 1.0.0-beta.29
- [Release notes](https:/scaleway/scaleway-sdk-go/releases)
- [Changelog](https:/scaleway/scaleway-sdk-go/blob/master/CHANGELOG.md)
- [Commits](scaleway/scaleway-sdk-go@v1.0.0-beta.28...v1.0.0-beta.29)

Updates `github.com/tencentcloud/tencentcloud-sdk-go/tencentcloud/common` from 1.0.945 to 1.0.976
- [Commits](TencentCloud/tencentcloud-sdk-go@v1.0.945...v1.0.976)

Updates `github.com/tencentcloud/tencentcloud-sdk-go/tencentcloud/dnspod` from 1.0.945 to 1.0.976
- [Commits](TencentCloud/tencentcloud-sdk-go@v1.0.945...v1.0.976)

Updates `github.com/tencentcloud/tencentcloud-sdk-go/tencentcloud/privatedns` from 1.0.945 to 1.0.976
- [Commits](TencentCloud/tencentcloud-sdk-go@v1.0.945...v1.0.976)

Updates `github.com/transip/gotransip/v6` from 6.24.0 to 6.25.0
- [Release notes](https:/transip/gotransip/releases)
- [Commits](transip/gotransip@v6.24.0...v6.25.0)

Updates `go.etcd.io/etcd/api/v3` from 3.5.14 to 3.5.15
- [Release notes](https:/etcd-io/etcd/releases)
- [Commits](etcd-io/etcd@v3.5.14...v3.5.15)

Updates `go.etcd.io/etcd/client/v3` from 3.5.14 to 3.5.15
- [Release notes](https:/etcd-io/etcd/releases)
- [Commits](etcd-io/etcd@v3.5.14...v3.5.15)

Updates `golang.org/x/net` from 0.26.0 to 0.27.0
- [Commits](golang/net@v0.26.0...v0.27.0)

Updates `golang.org/x/oauth2` from 0.21.0 to 0.22.0
- [Commits](golang/oauth2@v0.21.0...v0.22.0)

Updates `golang.org/x/sync` from 0.7.0 to 0.8.0
- [Commits](golang/sync@v0.7.0...v0.8.0)

Updates `golang.org/x/time` from 0.5.0 to 0.6.0
- [Commits](golang/time@v0.5.0...v0.6.0)

Updates `google.golang.org/api` from 0.185.0 to 0.190.0
- [Release notes](https:/googleapis/google-api-go-client/releases)
- [Changelog](https:/googleapis/google-api-go-client/blob/main/CHANGES.md)
- [Commits](googleapis/google-api-go-client@v0.185.0...v0.190.0)

Updates `gopkg.in/ns1/ns1-go.v2` from 2.11.0 to 2.12.0

Updates `istio.io/api` from 1.22.1 to 1.22.3
- [Commits](istio/api@1.22.1...1.22.3)

Updates `istio.io/client-go` from 1.22.1 to 1.22.3
- [Commits](istio/client-go@1.22.1...1.22.3)

Updates `k8s.io/api` from 0.30.2 to 0.30.3
- [Commits](kubernetes/api@v0.30.2...v0.30.3)

Updates `k8s.io/apimachinery` from 0.30.2 to 0.30.3
- [Commits](kubernetes/apimachinery@v0.30.2...v0.30.3)

Updates `k8s.io/client-go` from 0.30.2 to 0.30.3
- [Changelog](https:/kubernetes/client-go/blob/master/CHANGELOG.md)
- [Commits](kubernetes/client-go@v0.30.2...v0.30.3)

Updates `k8s.io/klog/v2` from 2.130.0 to 2.130.1
- [Release notes](https:/kubernetes/klog/releases)
- [Changelog](https:/kubernetes/klog/blob/main/RELEASE.md)
- [Commits](kubernetes/klog@v2.130.0...v2.130.1)

---
updated-dependencies:
- dependency-name: cloud.google.com/go/compute/metadata
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: dev-dependencies
- dependency-name: github.com/Azure/azure-sdk-for-go/sdk/azcore
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: dev-dependencies
- dependency-name: github.com/Azure/azure-sdk-for-go/sdk/azidentity
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: dev-dependencies
- dependency-name: github.com/F5Networks/k8s-bigip-ctlr/v2
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: dev-dependencies
- dependency-name: github.com/IBM-Cloud/ibm-cloud-cli-sdk
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: dev-dependencies
- dependency-name: github.com/IBM/go-sdk-core/v5
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: dev-dependencies
- dependency-name: github.com/IBM/networking-go-sdk
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: dev-dependencies
- dependency-name: github.com/aliyun/alibaba-cloud-sdk-go
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: dev-dependencies
- dependency-name: github.com/ans-group/sdk-go
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: dev-dependencies
- dependency-name: github.com/aws/aws-sdk-go
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: dev-dependencies
- dependency-name: github.com/civo/civogo
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: dev-dependencies
- dependency-name: github.com/cloudflare/cloudflare-go
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: dev-dependencies
- dependency-name: github.com/digitalocean/godo
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: dev-dependencies
- dependency-name: github.com/gophercloud/gophercloud
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: dev-dependencies
- dependency-name: github.com/linode/linodego
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: dev-dependencies
- dependency-name: github.com/oracle/oci-go-sdk/v65
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: dev-dependencies
- dependency-name: github.com/pluralsh/gqlclient
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: dev-dependencies
- dependency-name: github.com/projectcontour/contour
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: dev-dependencies
- dependency-name: github.com/scaleway/scaleway-sdk-go
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: dev-dependencies
- dependency-name: github.com/tencentcloud/tencentcloud-sdk-go/tencentcloud/common
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: dev-dependencies
- dependency-name: github.com/tencentcloud/tencentcloud-sdk-go/tencentcloud/dnspod
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: dev-dependencies
- dependency-name: github.com/tencentcloud/tencentcloud-sdk-go/tencentcloud/privatedns
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: dev-dependencies
- dependency-name: github.com/transip/gotransip/v6
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: dev-dependencies
- dependency-name: go.etcd.io/etcd/api/v3
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: dev-dependencies
- dependency-name: go.etcd.io/etcd/client/v3
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: dev-dependencies
- dependency-name: golang.org/x/net
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: dev-dependencies
- dependency-name: golang.org/x/oauth2
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: dev-dependencies
- dependency-name: golang.org/x/sync
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: dev-dependencies
- dependency-name: golang.org/x/time
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: dev-dependencies
- dependency-name: google.golang.org/api
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: dev-dependencies
- dependency-name: gopkg.in/ns1/ns1-go.v2
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: dev-dependencies
- dependency-name: istio.io/api
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: dev-dependencies
- dependency-name: istio.io/client-go
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: dev-dependencies
- dependency-name: k8s.io/api
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: dev-dependencies
- dependency-name: k8s.io/apimachinery
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: dev-dependencies
- dependency-name: k8s.io/client-go
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: dev-dependencies
- dependency-name: k8s.io/klog/v2
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: dev-dependencies
...

Signed-off-by: dependabot[bot] <[email protected]>
@dependabot dependabot bot added dependencies Pull requests that update a dependency file go Pull requests that update Go code labels Aug 5, 2024
@k8s-ci-robot k8s-ci-robot added the cncf-cla: yes Indicates the PR's author has signed the CNCF CLA. label Aug 5, 2024
@k8s-ci-robot
Copy link
Contributor

Hi @dependabot[bot]. Thanks for your PR.

I'm waiting for a kubernetes-sigs member to verify that this patch is reasonable to test. If it is, they should reply with /ok-to-test on its own line. Until that is done, I will not automatically test new commits in this PR, but the usual testing commands by org members will still work. Regular contributors should join the org to skip this step.

Once the patch is verified, the new status will be reflected by the ok-to-test label.

I understand the commands that are listed here.

Instructions for interacting with me using PR comments are available here. If you have questions or suggestions related to my behavior, please file an issue against the kubernetes-sigs/prow repository.

@k8s-ci-robot k8s-ci-robot added needs-ok-to-test Indicates a PR that requires an org member to verify it is safe to test. size/L Denotes a PR that changes 100-499 lines, ignoring generated files. labels Aug 5, 2024
@Raffo
Copy link
Contributor

Raffo commented Aug 5, 2024

/ok-to-test

@k8s-ci-robot k8s-ci-robot added ok-to-test Indicates a non-member PR verified by an org member that is safe to test. and removed needs-ok-to-test Indicates a PR that requires an org member to verify it is safe to test. labels Aug 5, 2024
@Raffo
Copy link
Contributor

Raffo commented Aug 5, 2024

/retest

@Raffo
Copy link
Contributor

Raffo commented Aug 5, 2024

Code needs to be fixed for this to pass.

Signed-off-by: Raffaele Di Fazio <[email protected]>
Signed-off-by: Raffaele Di Fazio <[email protected]>
@Raffo
Copy link
Contributor

Raffo commented Aug 5, 2024

/lgtm
/approve

@k8s-ci-robot k8s-ci-robot added the lgtm "Looks good to me", indicates that a PR is ready to be merged. label Aug 5, 2024
@k8s-ci-robot
Copy link
Contributor

[APPROVALNOTIFIER] This PR is APPROVED

This pull-request has been approved by: Raffo

The full list of commands accepted by this bot can be found here.

The pull request process is described here

Needs approval from an approver in each of these files:

Approvers can indicate their approval by writing /approve in a comment
Approvers can cancel approval by writing /approve cancel in a comment

@k8s-ci-robot k8s-ci-robot added the approved Indicates a PR has been approved by an approver from all required OWNERS files. label Aug 5, 2024
@k8s-ci-robot k8s-ci-robot merged commit 3b35ea6 into master Aug 5, 2024
13 checks passed
@dependabot dependabot bot deleted the dependabot/go_modules/dev-dependencies-977ad3b6ce branch August 5, 2024 20:16
truecharts-admin referenced this pull request in truecharts/public Sep 5, 2024
…rnal-dns to v0.15.0@338dd8c by renovate (#25969)

This PR contains the following updates:

| Package | Update | Change |
|---|---|---|
|
[registry.k8s.io/external-dns/external-dns](https://redirect.github.com/kubernetes-sigs/external-dns)
| minor | `v0.14.2` -> `v0.15.0` |

---

> [!WARNING]
> Some dependencies could not be looked up. Check the Dependency
Dashboard for more information.

---

### Release Notes

<details>
<summary>kubernetes-sigs/external-dns
(registry.k8s.io/external-dns/external-dns)</summary>

###
[`v0.15.0`](https://redirect.github.com/kubernetes-sigs/external-dns/releases/tag/v0.15.0)

[Compare
Source](https://redirect.github.com/kubernetes-sigs/external-dns/compare/v0.14.2...v0.15.0)

#### Important notes

This release drops a few unmaintained providers. See
[https:/kubernetes-sigs/external-dns/pull/4719](https://redirect.github.com/kubernetes-sigs/external-dns/pull/4719)
as mentioned in
[https:/kubernetes-sigs/external-dns/issues/4347](https://redirect.github.com/kubernetes-sigs/external-dns/issues/4347).
If you need to use any of the previous providers, please use a previous
release of external DNS or follow the instructions to implement a
webhook provider that supports those providers.

#### What's Changed

- build(deps): bump actions/checkout from 4.1.5 to 4.1.6 in the
dev-dependencies group by
[@&#8203;dependabot](https://redirect.github.com/dependabot) in
[https:/kubernetes-sigs/external-dns/pull/4477](https://redirect.github.com/kubernetes-sigs/external-dns/pull/4477)
- Update kustomize version for v0.14.2 by
[@&#8203;Raffo](https://redirect.github.com/Raffo) in
[https:/kubernetes-sigs/external-dns/pull/4480](https://redirect.github.com/kubernetes-sigs/external-dns/pull/4480)
- build(deps): bump the dev-dependencies group with 8 updates by
[@&#8203;dependabot](https://redirect.github.com/dependabot) in
[https:/kubernetes-sigs/external-dns/pull/4478](https://redirect.github.com/kubernetes-sigs/external-dns/pull/4478)
- update docs to v0.14.2 by
[@&#8203;Raffo](https://redirect.github.com/Raffo) in
[https:/kubernetes-sigs/external-dns/pull/4481](https://redirect.github.com/kubernetes-sigs/external-dns/pull/4481)
- build(deps): bump GrantBirki/json-yaml-validate from 2.7.1 to 3.0.0 in
the dev-dependencies group by
[@&#8203;dependabot](https://redirect.github.com/dependabot) in
[https:/kubernetes-sigs/external-dns/pull/4489](https://redirect.github.com/kubernetes-sigs/external-dns/pull/4489)
- fix: re-add api-approved.kubernetes.io annotation by
[@&#8203;morremeyer](https://redirect.github.com/morremeyer) in
[https:/kubernetes-sigs/external-dns/pull/4488](https://redirect.github.com/kubernetes-sigs/external-dns/pull/4488)
- feat(webhooks): pass webhook-\* annotations to webhook providers by
[@&#8203;Raffo](https://redirect.github.com/Raffo) in
[https:/kubernetes-sigs/external-dns/pull/4458](https://redirect.github.com/kubernetes-sigs/external-dns/pull/4458)
- fix(traefik): Nil pointer exception if legacy traefik is disabled by
[@&#8203;kbudde](https://redirect.github.com/kbudde) in
[https:/kubernetes-sigs/external-dns/pull/4502](https://redirect.github.com/kubernetes-sigs/external-dns/pull/4502)
- add unifi webhook to readme by
[@&#8203;onedr0p](https://redirect.github.com/onedr0p) in
[https:/kubernetes-sigs/external-dns/pull/4504](https://redirect.github.com/kubernetes-sigs/external-dns/pull/4504)
- Drop experimental notice in webhook flags by
[@&#8203;Raffo](https://redirect.github.com/Raffo) in
[https:/kubernetes-sigs/external-dns/pull/4507](https://redirect.github.com/kubernetes-sigs/external-dns/pull/4507)
- feat(coredns): etcd authentication by
[@&#8203;matthieugouel](https://redirect.github.com/matthieugouel) in
[https:/kubernetes-sigs/external-dns/pull/4503](https://redirect.github.com/kubernetes-sigs/external-dns/pull/4503)
- Bump the dev-dependencies group across 1 directory with 13 updates by
[@&#8203;dependabot](https://redirect.github.com/dependabot) in
[https:/kubernetes-sigs/external-dns/pull/4514](https://redirect.github.com/kubernetes-sigs/external-dns/pull/4514)
- Add Infoblox webhook provider by
[@&#8203;k0da](https://redirect.github.com/k0da) in
[https:/kubernetes-sigs/external-dns/pull/4513](https://redirect.github.com/kubernetes-sigs/external-dns/pull/4513)
- 🌱 docs(footer): Add trademark disclaimer by
[@&#8203;mariasalcedo](https://redirect.github.com/mariasalcedo) in
[https:/kubernetes-sigs/external-dns/pull/4529](https://redirect.github.com/kubernetes-sigs/external-dns/pull/4529)
- chore!: Remove infoblox in-tree provider by
[@&#8203;mloiseleur](https://redirect.github.com/mloiseleur) in
[https:/kubernetes-sigs/external-dns/pull/4516](https://redirect.github.com/kubernetes-sigs/external-dns/pull/4516)
- Update to Go 1.22.4 by
[@&#8203;Raffo](https://redirect.github.com/Raffo) in
[https:/kubernetes-sigs/external-dns/pull/4534](https://redirect.github.com/kubernetes-sigs/external-dns/pull/4534)
- Bump the dev-dependencies group across 1 directory with 19 updates by
[@&#8203;dependabot](https://redirect.github.com/dependabot) in
[https:/kubernetes-sigs/external-dns/pull/4536](https://redirect.github.com/kubernetes-sigs/external-dns/pull/4536)
- Add documentation about etcd HTTPS for CoreDNS provider by
[@&#8203;AlessandroZanatta](https://redirect.github.com/AlessandroZanatta)
in
[https:/kubernetes-sigs/external-dns/pull/4538](https://redirect.github.com/kubernetes-sigs/external-dns/pull/4538)
- chore(chart): Released chart for v0.14.2 by
[@&#8203;stevehipwell](https://redirect.github.com/stevehipwell) in
[https:/kubernetes-sigs/external-dns/pull/4541](https://redirect.github.com/kubernetes-sigs/external-dns/pull/4541)
- Bump the dev-dependencies group with 4 updates by
[@&#8203;dependabot](https://redirect.github.com/dependabot) in
[https:/kubernetes-sigs/external-dns/pull/4540](https://redirect.github.com/kubernetes-sigs/external-dns/pull/4540)
- feat(aws): use AWS profiles using .credentials file by
[@&#8203;roehrijn](https://redirect.github.com/roehrijn) in
[https:/kubernetes-sigs/external-dns/pull/3973](https://redirect.github.com/kubernetes-sigs/external-dns/pull/3973)
- fix(cloudflare): trimSpace on token read from file by
[@&#8203;simonostendorf](https://redirect.github.com/simonostendorf) in
[https:/kubernetes-sigs/external-dns/pull/4515](https://redirect.github.com/kubernetes-sigs/external-dns/pull/4515)
- docs: upgrade mkdocs and fix broken links by
[@&#8203;mloiseleur](https://redirect.github.com/mloiseleur) in
[https:/kubernetes-sigs/external-dns/pull/4378](https://redirect.github.com/kubernetes-sigs/external-dns/pull/4378)
- chore(deps): bump github.com/vektah/gqlparser/v2 from 2.5.1 to 2.5.14
by [@&#8203;dependabot](https://redirect.github.com/dependabot) in
[https:/kubernetes-sigs/external-dns/pull/4546](https://redirect.github.com/kubernetes-sigs/external-dns/pull/4546)
- chore(deps): bump github.com/Azure/azure-sdk-for-go/sdk/azidentity
from 1.5.2 to 1.6.0 by
[@&#8203;dependabot](https://redirect.github.com/dependabot) in
[https:/kubernetes-sigs/external-dns/pull/4544](https://redirect.github.com/kubernetes-sigs/external-dns/pull/4544)
- chore(deps): bump the dev-dependencies group across 1 directory with
19 updates by
[@&#8203;dependabot](https://redirect.github.com/dependabot) in
[https:/kubernetes-sigs/external-dns/pull/4562](https://redirect.github.com/kubernetes-sigs/external-dns/pull/4562)
- chore(deps): bump actions/checkout from 4.1.6 to 4.1.7 in the
dev-dependencies group by
[@&#8203;dependabot](https://redirect.github.com/dependabot) in
[https:/kubernetes-sigs/external-dns/pull/4547](https://redirect.github.com/kubernetes-sigs/external-dns/pull/4547)
- feat(rfc2136): add PTR optional support by
[@&#8203;angeloxx](https://redirect.github.com/angeloxx) in
[https:/kubernetes-sigs/external-dns/pull/4283](https://redirect.github.com/kubernetes-sigs/external-dns/pull/4283)
- Update cloudflare.md by
[@&#8203;tobiabocchi](https://redirect.github.com/tobiabocchi) in
[https:/kubernetes-sigs/external-dns/pull/4583](https://redirect.github.com/kubernetes-sigs/external-dns/pull/4583)
- feat!: update GRPCRoute client from v1alpha2 to stable v1 by
[@&#8203;thameezb](https://redirect.github.com/thameezb) in
[https:/kubernetes-sigs/external-dns/pull/4567](https://redirect.github.com/kubernetes-sigs/external-dns/pull/4567)
- docs(annotations): note how to set multiple hostnames by
[@&#8203;hopkinsth](https://redirect.github.com/hopkinsth) in
[https:/kubernetes-sigs/external-dns/pull/4602](https://redirect.github.com/kubernetes-sigs/external-dns/pull/4602)
- chore(deps): bump the dev-dependencies group across 1 directory with 2
updates by [@&#8203;dependabot](https://redirect.github.com/dependabot)
in
[https:/kubernetes-sigs/external-dns/pull/4604](https://redirect.github.com/kubernetes-sigs/external-dns/pull/4604)
- Gateway API: Revert Gateway and HTTPRoute objects from v1 to v1beta1
by [@&#8203;abursavich](https://redirect.github.com/abursavich) in
[https:/kubernetes-sigs/external-dns/pull/4610](https://redirect.github.com/kubernetes-sigs/external-dns/pull/4610)
- chore(deps): bump google.golang.org/grpc from 1.64.0 to 1.64.1 by
[@&#8203;dependabot](https://redirect.github.com/dependabot) in
[https:/kubernetes-sigs/external-dns/pull/4600](https://redirect.github.com/kubernetes-sigs/external-dns/pull/4600)
- chore(deps): bump the dev-dependencies group across 1 directory with
37 updates by
[@&#8203;dependabot](https://redirect.github.com/dependabot) in
[https:/kubernetes-sigs/external-dns/pull/4655](https://redirect.github.com/kubernetes-sigs/external-dns/pull/4655)
- docs: fix broken link by
[@&#8203;ilmax](https://redirect.github.com/ilmax) in
[https:/kubernetes-sigs/external-dns/pull/4662](https://redirect.github.com/kubernetes-sigs/external-dns/pull/4662)
- azure-private-dns: Fix LoadBalancer example by
[@&#8203;orgads](https://redirect.github.com/orgads) in
[https:/kubernetes-sigs/external-dns/pull/4663](https://redirect.github.com/kubernetes-sigs/external-dns/pull/4663)
- AWS: Change documentation to use Helm values by
[@&#8203;pier-oliviert](https://redirect.github.com/pier-oliviert) in
[https:/kubernetes-sigs/external-dns/pull/4577](https://redirect.github.com/kubernetes-sigs/external-dns/pull/4577)
- chore(deps): bump the dev-dependencies group across 1 directory with
10 updates by
[@&#8203;dependabot](https://redirect.github.com/dependabot) in
[https:/kubernetes-sigs/external-dns/pull/4668](https://redirect.github.com/kubernetes-sigs/external-dns/pull/4668)
- Improve MinEventInterval compliance with docs by
[@&#8203;tjamet](https://redirect.github.com/tjamet) in
[https:/kubernetes-sigs/external-dns/pull/3400](https://redirect.github.com/kubernetes-sigs/external-dns/pull/3400)
- Add provider cache by
[@&#8203;tjamet](https://redirect.github.com/tjamet) in
[https:/kubernetes-sigs/external-dns/pull/4597](https://redirect.github.com/kubernetes-sigs/external-dns/pull/4597)
- chore: update maintainers by
[@&#8203;mloiseleur](https://redirect.github.com/mloiseleur) in
[https:/kubernetes-sigs/external-dns/pull/4679](https://redirect.github.com/kubernetes-sigs/external-dns/pull/4679)
- fix(helm): make use of resource values for webhook by
[@&#8203;crutonjohn](https://redirect.github.com/crutonjohn) in
[https:/kubernetes-sigs/external-dns/pull/4560](https://redirect.github.com/kubernetes-sigs/external-dns/pull/4560)
- Fix AWS Cloud Map docs: annotation key/value pairs must be strings by
[@&#8203;mjlshen](https://redirect.github.com/mjlshen) in
[https:/kubernetes-sigs/external-dns/pull/4683](https://redirect.github.com/kubernetes-sigs/external-dns/pull/4683)
- Webhook provider helm chart fixes by
[@&#8203;kimsondrup](https://redirect.github.com/kimsondrup) in
[https:/kubernetes-sigs/external-dns/pull/4643](https://redirect.github.com/kubernetes-sigs/external-dns/pull/4643)
- chore(deps): bump the dev-dependencies group across 1 directory with
16 updates by
[@&#8203;dependabot](https://redirect.github.com/dependabot) in
[https:/kubernetes-sigs/external-dns/pull/4684](https://redirect.github.com/kubernetes-sigs/external-dns/pull/4684)
- chore(deps): bump GrantBirki/json-yaml-validate from 3.0.0 to 3.1.0 in
the dev-dependencies group by
[@&#8203;dependabot](https://redirect.github.com/dependabot) in
[https:/kubernetes-sigs/external-dns/pull/4685](https://redirect.github.com/kubernetes-sigs/external-dns/pull/4685)
- Add tutorial to DynamoDB registry docs by
[@&#8203;mjlshen](https://redirect.github.com/mjlshen) in
[https:/kubernetes-sigs/external-dns/pull/4686](https://redirect.github.com/kubernetes-sigs/external-dns/pull/4686)
- chore(deps): bump GrantBirki/json-yaml-validate from 3.1.0 to 3.2.0 in
the dev-dependencies group by
[@&#8203;dependabot](https://redirect.github.com/dependabot) in
[https:/kubernetes-sigs/external-dns/pull/4700](https://redirect.github.com/kubernetes-sigs/external-dns/pull/4700)
- chore(deps): bump GrantBirki/json-yaml-validate from 3.2.0 to 3.2.1 in
the dev-dependencies group by
[@&#8203;dependabot](https://redirect.github.com/dependabot) in
[https:/kubernetes-sigs/external-dns/pull/4702](https://redirect.github.com/kubernetes-sigs/external-dns/pull/4702)
- chore: upgrade ExternalDNS to go 1.23 by
[@&#8203;mloiseleur](https://redirect.github.com/mloiseleur) in
[https:/kubernetes-sigs/external-dns/pull/4698](https://redirect.github.com/kubernetes-sigs/external-dns/pull/4698)
- feat: add annotation and label filters to Ambassador Host Source by
[@&#8203;KyleMartin901](https://redirect.github.com/KyleMartin901) in
[https:/kubernetes-sigs/external-dns/pull/2633](https://redirect.github.com/kubernetes-sigs/external-dns/pull/2633)
- Add RouterOS provider to README.md by
[@&#8203;benfiola](https://redirect.github.com/benfiola) in
[https:/kubernetes-sigs/external-dns/pull/4714](https://redirect.github.com/kubernetes-sigs/external-dns/pull/4714)
- feat: support dual stack for gateway api by
[@&#8203;thameezb](https://redirect.github.com/thameezb) in
[https:/kubernetes-sigs/external-dns/pull/4469](https://redirect.github.com/kubernetes-sigs/external-dns/pull/4469)
- chore(deps): bump actions/setup-python from 5.1.1 to 5.2.0 in the
dev-dependencies group by
[@&#8203;dependabot](https://redirect.github.com/dependabot) in
[https:/kubernetes-sigs/external-dns/pull/4712](https://redirect.github.com/kubernetes-sigs/external-dns/pull/4712)
- chore: remove unmaintained providers by
[@&#8203;mloiseleur](https://redirect.github.com/mloiseleur) in
[https:/kubernetes-sigs/external-dns/pull/4719](https://redirect.github.com/kubernetes-sigs/external-dns/pull/4719)

#### Images

    docker pull registry.k8s.io/external-dns/external-dns:v0.15.0

#### New Contributors

- [@&#8203;kbudde](https://redirect.github.com/kbudde) made their first
contribution in
[https:/kubernetes-sigs/external-dns/pull/4502](https://redirect.github.com/kubernetes-sigs/external-dns/pull/4502)
- [@&#8203;matthieugouel](https://redirect.github.com/matthieugouel)
made their first contribution in
[https:/kubernetes-sigs/external-dns/pull/4503](https://redirect.github.com/kubernetes-sigs/external-dns/pull/4503)
- [@&#8203;mariasalcedo](https://redirect.github.com/mariasalcedo) made
their first contribution in
[https:/kubernetes-sigs/external-dns/pull/4529](https://redirect.github.com/kubernetes-sigs/external-dns/pull/4529)
-
[@&#8203;AlessandroZanatta](https://redirect.github.com/AlessandroZanatta)
made their first contribution in
[https:/kubernetes-sigs/external-dns/pull/4538](https://redirect.github.com/kubernetes-sigs/external-dns/pull/4538)
- [@&#8203;roehrijn](https://redirect.github.com/roehrijn) made their
first contribution in
[https:/kubernetes-sigs/external-dns/pull/3973](https://redirect.github.com/kubernetes-sigs/external-dns/pull/3973)
- [@&#8203;simonostendorf](https://redirect.github.com/simonostendorf)
made their first contribution in
[https:/kubernetes-sigs/external-dns/pull/4515](https://redirect.github.com/kubernetes-sigs/external-dns/pull/4515)
- [@&#8203;angeloxx](https://redirect.github.com/angeloxx) made their
first contribution in
[https:/kubernetes-sigs/external-dns/pull/4283](https://redirect.github.com/kubernetes-sigs/external-dns/pull/4283)
- [@&#8203;tobiabocchi](https://redirect.github.com/tobiabocchi) made
their first contribution in
[https:/kubernetes-sigs/external-dns/pull/4583](https://redirect.github.com/kubernetes-sigs/external-dns/pull/4583)
- [@&#8203;thameezb](https://redirect.github.com/thameezb) made their
first contribution in
[https:/kubernetes-sigs/external-dns/pull/4567](https://redirect.github.com/kubernetes-sigs/external-dns/pull/4567)
- [@&#8203;hopkinsth](https://redirect.github.com/hopkinsth) made their
first contribution in
[https:/kubernetes-sigs/external-dns/pull/4602](https://redirect.github.com/kubernetes-sigs/external-dns/pull/4602)
- [@&#8203;ilmax](https://redirect.github.com/ilmax) made their first
contribution in
[https:/kubernetes-sigs/external-dns/pull/4662](https://redirect.github.com/kubernetes-sigs/external-dns/pull/4662)
- [@&#8203;orgads](https://redirect.github.com/orgads) made their first
contribution in
[https:/kubernetes-sigs/external-dns/pull/4663](https://redirect.github.com/kubernetes-sigs/external-dns/pull/4663)
- [@&#8203;pier-oliviert](https://redirect.github.com/pier-oliviert)
made their first contribution in
[https:/kubernetes-sigs/external-dns/pull/4577](https://redirect.github.com/kubernetes-sigs/external-dns/pull/4577)
- [@&#8203;crutonjohn](https://redirect.github.com/crutonjohn) made
their first contribution in
[https:/kubernetes-sigs/external-dns/pull/4560](https://redirect.github.com/kubernetes-sigs/external-dns/pull/4560)
- [@&#8203;mjlshen](https://redirect.github.com/mjlshen) made their
first contribution in
[https:/kubernetes-sigs/external-dns/pull/4683](https://redirect.github.com/kubernetes-sigs/external-dns/pull/4683)
- [@&#8203;kimsondrup](https://redirect.github.com/kimsondrup) made
their first contribution in
[https:/kubernetes-sigs/external-dns/pull/4643](https://redirect.github.com/kubernetes-sigs/external-dns/pull/4643)
- [@&#8203;KyleMartin901](https://redirect.github.com/KyleMartin901)
made their first contribution in
[https:/kubernetes-sigs/external-dns/pull/2633](https://redirect.github.com/kubernetes-sigs/external-dns/pull/2633)
- [@&#8203;benfiola](https://redirect.github.com/benfiola) made their
first contribution in
[https:/kubernetes-sigs/external-dns/pull/4714](https://redirect.github.com/kubernetes-sigs/external-dns/pull/4714)

**Full Changelog**:
kubernetes-sigs/external-dns@v0.14.2...v0.15.0

</details>

---

### Configuration

📅 **Schedule**: Branch creation - At any time (no schedule defined),
Automerge - At any time (no schedule defined).

🚦 **Automerge**: Enabled.

♻ **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.

---

- [ ] <!-- rebase-check -->If you want to rebase/retry this PR, check
this box

---

This PR has been generated by [Renovate
Bot](https://redirect.github.com/renovatebot/renovate).

<!--renovate-debug:eyJjcmVhdGVkSW5WZXIiOiIzOC42Ny41IiwidXBkYXRlZEluVmVyIjoiMzguNjcuNSIsInRhcmdldEJyYW5jaCI6Im1hc3RlciIsImxhYmVscyI6WyJhdXRvbWVyZ2UiLCJ1cGRhdGUvZG9ja2VyL2dlbmVyYWwvbm9uLW1ham9yIl19-->
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
approved Indicates a PR has been approved by an approver from all required OWNERS files. cncf-cla: yes Indicates the PR's author has signed the CNCF CLA. dependencies Pull requests that update a dependency file go Pull requests that update Go code lgtm "Looks good to me", indicates that a PR is ready to be merged. ok-to-test Indicates a non-member PR verified by an org member that is safe to test. size/L Denotes a PR that changes 100-499 lines, ignoring generated files.
Projects
None yet
Development

Successfully merging this pull request may close these issues.

2 participants