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

build(deps): bump the dev-dependencies group across 1 directory with 24 updates #4413

Closed

Conversation

dependabot[bot]
Copy link
Contributor

@dependabot dependabot bot commented on behalf of github Apr 25, 2024

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

Package From To
cloud.google.com/go/compute/metadata 0.2.3 0.3.0
github.com/F5Networks/k8s-bigip-ctlr/v2 2.16.0 2.16.1
github.com/IBM/go-sdk-core/v5 5.16.5 5.17.0
github.com/IBM/networking-go-sdk 0.45.0 0.46.1
github.com/aliyun/alibaba-cloud-sdk-go 1.62.712 1.62.723
github.com/aws/aws-sdk-go 1.51.19 1.51.28
github.com/civo/civogo 0.3.67 0.3.69
github.com/cloudflare/cloudflare-go 0.93.0 0.94.0
github.com/digitalocean/godo 1.112.0 1.113.0
github.com/linode/linodego 1.32.0 1.33.0
github.com/miekg/dns 1.1.58 1.1.59
github.com/oracle/oci-go-sdk/v65 65.63.1 65.64.0
github.com/ovh/go-ovh 1.4.3 1.5.1
github.com/scaleway/scaleway-sdk-go 1.0.0-beta.25 1.0.0-beta.26
github.com/tencentcloud/tencentcloud-sdk-go/tencentcloud/common 1.0.897 1.0.909
github.com/tencentcloud/tencentcloud-sdk-go/tencentcloud/dnspod 1.0.897 1.0.909
github.com/tencentcloud/tencentcloud-sdk-go/tencentcloud/privatedns 1.0.897 1.0.909
google.golang.org/api 0.172.0 0.176.1
gopkg.in/ns1/ns1-go.v2 2.9.1 2.10.0
istio.io/api 1.21.1 1.21.2
istio.io/client-go 1.21.1 1.21.2
k8s.io/api 0.29.3 0.30.0
k8s.io/client-go 0.29.3 0.30.0

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

Release notes

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

auth: v0.3.0

0.3.0 (2024-04-23)

Features

Bug Fixes

  • auth/credentials: Error on bad file name if explicitly set (#10018) (55beaa9), refs #9809

compute/metadata: v0.3.0

0.3.0 (2024-04-15)

Features

  • compute/metadata: Add context aware functions (#9733) (e4eb5b4)

netapp: v0.2.7

0.2.7 (2024-03-25)

Documentation

  • netapp: Rephrase comment on psa_range (1ef5b19)
Changelog

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

v0.3.0

  • storage:
    • AdminClient replaced by methods on Client. Replace

      adminClient.CreateBucket(ctx, bucketName, attrs)

      with

      client.Bucket(bucketName).Create(ctx, projectID, attrs)
    • BucketHandle.List replaced by BucketHandle.Objects. Replace

      for query != nil {
          objs, err := bucket.List(d.ctx, query)
          if err != nil { ... }
          query = objs.Next
          for _, obj := range objs.Results {
              fmt.Println(obj)
          }
      }

      with

      iter := bucket.Objects(d.ctx, query)
      for {
          obj, err := iter.Next()
          if err == iterator.Done {
              break
          }
          if err != nil { ... }
          fmt.Println(obj)
      }

      (The iterator package is at google.golang.org/api/iterator.)

      Replace Query.Cursor with ObjectIterator.PageInfo().Token.

      Replace Query.MaxResults with ObjectIterator.PageInfo().MaxSize.

    • ObjectHandle.CopyTo replaced by ObjectHandle.CopierFrom. Replace

      attrs, err := src.CopyTo(ctx, dst, nil)

      with

... (truncated)

Commits
  • 44b3a7d Add autogenerated clients: debugger, iam, and trace
  • c6705a9 bigquery: restore backwards-compatible Query.TableDefinitions.
  • b8c1696 bigquery: add RowIterator, to replace Iterator
  • 5d33b1b bigquery: Make Query more configurable and add a Run method.
  • 07f82cd bigtable/bttest: Allow more time for concurrent mod test.
  • b9d51d5 pubsub: implement on top of generated client
  • fa279f9 storage: don't fail tests loudly if cleanup fails
  • 139d2e0 examples/bigquery: update WriteDisposition field
  • 2912d48 bigquery: shorten Disposition field names
  • 2096d28 bigquery: add Table.Update
  • Additional commits viewable in compare view

Updates github.com/F5Networks/k8s-bigip-ctlr/v2 from 2.16.0 to 2.16.1

Release notes

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

Release v2.16.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.16.1
docker pull quay.io/f5networks/k8s-bigip-ctlr:2.16.1
Changelog

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

2.16.1

Added Functionality

**What's new:**
    * CRD
        * `Issue 3329 <https://github.com/F5Networks/k8s-bigip-ctlr/issues/3329>`_: Add support for static ip configuration in annotation for service type LoadBalancer.

Bug Fixes

* `Issue 3324 https://github.com/F5Networks/k8s-bigip-ctlr/issues/3324`_: Fix for Service LoadBalancer with targetPort set to name of containerPort creates emtpy BIG-IP Pool
* `Issue 3326 https://github.com/F5Networks/k8s-bigip-ctlr/issues/3326`_: Multi-cluster: Services in blue-green deployments don´t get updated
* `Issue 3340 https://github.com/F5Networks/k8s-bigip-ctlr/issues/3340`_: Fix to post latest config in retrying a failing AS3 configuration
* `Issue 3335 https://github.com/F5Networks/k8s-bigip-ctlr/issues/3335`_: Authorization errors and unexpected 503 HTTP return code inside F5 BIGIP controller version 2.16-WIP
* `Issue 3322 https://github.com/F5Networks/k8s-bigip-ctlr/issues/3322`_: Ingress using single service backend with different paths and ports not create correctly f5 ingress object

Known Issues

CVE-2024-2961

F5 IPAM Controller v0.1.10

Vulnerability Fixes

CVE-2023-38545, CVE-2023-38546, CVE-2022-48337, CVE-2022-48338, CVE-2022-48339, CVE-2023-2491, CVE-2023-24329,
CVE-2023-40217, CVE-2023-4527, CVE-2023-4806, CVE-2023-4813, CVE-2023-4911, CVE-2023-44487, CVE-2023-28617,
CVE-2022-40897

Known Issues

CVE-2024-2961
</code></pre>
</blockquote>
</details>
<details>
<summary>Commits</summary>

<ul>
<li><a href="https://github.com/F5Networks/k8s-bigip-ctlr/commit/c0934efcc07227fdc64bd9c8e17e8cc21a4bc3b2&quot;&gt;&lt;code&gt;c0934ef&lt;/code&gt;&lt;/a> Release notes 2.16.1 (<a href="https://github.com/F5Networks/k8s-bigip-ctlr/issues/3384&quot;&gt;#3384&lt;/a&gt;)&lt;/li>
<li><a href="https://github.com/F5Networks/k8s-bigip-ctlr/commit/5f5dabd10c44f7b5e6803c0d24ff9c0f3fdb2224&quot;&gt;&lt;code&gt;5f5dabd&lt;/code&gt;&lt;/a> update net package to fix http2 Vulnerability (<a href="https://github.com/F5Networks/k8s-bigip-ctlr/issues/3375&quot;&gt;#3375&lt;/a&gt;)&lt;/li>
<li><a href="https://github.com/F5Networks/k8s-bigip-ctlr/commit/dbccc155a6ca096f4d530164faf0a1ed82e492f4&quot;&gt;&lt;code&gt;dbccc15&lt;/code&gt;&lt;/a> Fix CCCL auth error (<a href="https://github.com/F5Networks/k8s-bigip-ctlr/issues/3362&quot;&gt;#3362&lt;/a&gt;)&lt;/li>
<li><a href="https://github.com/F5Networks/k8s-bigip-ctlr/commit/751720ccec303b8bcdad909e97d722c7f50925e8&quot;&gt;&lt;code&gt;751720c&lt;/code&gt;&lt;/a> <a href="https://github.com/F5Networks/k8s-bigip-ctlr/issues/3322&quot;&gt;#3322&lt;/a> multi port backend path support (<a href="https://github.com/F5Networks/k8s-bigip-ctlr/issues/3349&quot;&gt;#3349&lt;/a&gt;)&lt;/li>
<li><a href="https://github.com/F5Networks/k8s-bigip-ctlr/commit/dff1b78e395a93c4e8129ddf412e08caafe4d027&quot;&gt;&lt;code&gt;dff1b78&lt;/code&gt;&lt;/a> fix to post latest config in retry scenario (<a href="https://github.com/F5Networks/k8s-bigip-ctlr/issues/3358&quot;&gt;#3358&lt;/a&gt;)&lt;/li>
<li><a href="https://github.com/F5Networks/k8s-bigip-ctlr/commit/f82e783c6e8fb6fb781a6537a3de19f7442f8769&quot;&gt;&lt;code&gt;f82e783&lt;/code&gt;&lt;/a> Fix service pool update issue with A/B NextGenRoute (<a href="https://github.com/F5Networks/k8s-bigip-ctlr/issues/3343&quot;&gt;#3343&lt;/a&gt;)&lt;/li>
<li><a href="https://github.com/F5Networks/k8s-bigip-ctlr/commit/17ff4e2d239a559d340c9ba0f63515b12fe9cd2e&quot;&gt;&lt;code&gt;17ff4e2&lt;/code&gt;&lt;/a> static ip support with service type lb (<a href="https://github.com/F5Networks/k8s-bigip-ctlr/issues/3346&quot;&gt;#3346&lt;/a&gt;)&lt;/li>
<li><a href="https://github.com/F5Networks/k8s-bigip-ctlr/commit/1ac97cff184c38b04e5209d73f62e24b1f575d13&quot;&gt;&lt;code&gt;1ac97cf&lt;/code&gt;&lt;/a> fix svc-type-lb empty pool with named target port (<a href="https://github.com/F5Networks/k8s-bigip-ctlr/issues/3342&quot;&gt;#3342&lt;/a&gt;)&lt;/li>
<li>See full diff in <a href="https://github.com/F5Networks/k8s-bigip-ctlr/compare/v2.16.0...v2.16.1&quot;&gt;compare view</a></li>
</ul>
</details>

<br />

Updates github.com/IBM/go-sdk-core/v5 from 5.16.5 to 5.17.0

Release notes

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

v5.17.0

5.17.0 (2024-04-17)

Features

  • send user-agent header with auth token requests (#216) (90f0ba5)
Changelog

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

5.17.0 (2024-04-17)

Features

  • send user-agent header with auth token requests (#216) (90f0ba5)
Commits
  • 54ecde5 chore(release): 5.17.0 release notes [skip ci]
  • 8e0c659 Update version numbers from 5.16.5 -> 5.17.0 [skip ci]
  • 90f0ba5 feat: send user-agent header with auth token requests (#216)
  • See full diff in compare view

Updates github.com/IBM/networking-go-sdk from 0.45.0 to 0.46.1

Release notes

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

v0.46.1

0.46.1 (2024-04-24)

Bug Fixes

  • managed rulesets changes (4598d23)

v0.46.0

0.46.0 (2024-04-20)

Bug Fixes

Features

  • release managed rulesets (4f88c26)
Changelog

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

0.46.1 (2024-04-24)

Bug Fixes

  • managed rulesets changes (4598d23)

0.46.0 (2024-04-20)

Bug Fixes

Features

  • release managed rulesets (4f88c26)
Commits
  • 66f3e84 chore(release): 0.46.1 release notes [skip ci]
  • a592770 Update version 0.46.0 -> 0.46.1 [skip ci]
  • 9e87528 Merge pull request #174 from IBM/cis_managed_rulesets
  • 4598d23 fix: managed rulesets changes
  • 08e8fdc chore(release): 0.46.0 release notes [skip ci]
  • d6b5e18 Update version 0.45.0 -> 0.46.0 [skip ci]
  • df733d5 Merge pull request #173 from IBM/sdk_version_update
  • a3062d0 chore: SDK version update from v0.44.0 to v0.45.0
  • d5caf2c Merge pull request #172 from IBM/sdk_version_update
  • b403fad chore: SDK version update from v0.44.0 to v0.45.0
  • Additional commits viewable in compare view

Updates github.com/aliyun/alibaba-cloud-sdk-go from 1.62.712 to 1.62.723

Release notes

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

v1.62.723

  • Generated 2023-07-01 for EhpcInstant.
  • E-HPC Instant Computing Service Release, supporting mirroring and job management.

v1.62.722

  • Generated 2021-06-01 for ComputeNest. undefined

v1.62.721

  • Generated 2019-12-30 for facebody.
  • Update DetectFace.

v1.62.720

  • Generated 2019-05-06 for sae. undefined

v1.62.719

  • Generated 2018-11-01 for dms-enterprise.
  • Supported ApproveOrder request parameter NewApproverList.
  • Add ListSensitiveColumnInfo API.
  • Supported GetDataCorrectOrderDetail return ConfigDetail Information.

v1.62.718

  • Generated 2022-05-30 for eflo.
  • Update HDENI API.

v1.62.717

  • Generated 2018-02-08 for Domain.
  • Add SnatchNo For QueryBookingDomainInfo

v1.62.716

  • Generated 2014-08-28 for Ess.
  • ModifyScalingGroup add ScalingPolicy params.

v1.62.715

  • Generated 2018-02-08 for Domain.
  • Add SnatchNo For QueryBookingDomainInfo

v1.62.714

  • Generated 2023-07-01 for EHPC.
  • Support Container for CreateJob.

v1.62.713

  • Generated 2023-01-20 for csas.
Changelog

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

2024-04-25 Version: v1.62.723

  • Generated 2023-07-01 for EhpcInstant.
  • E-HPC Instant Computing Service Release, supporting mirroring and job management.

2024-04-23 Version: v1.62.722

  • Generated 2021-06-01 for ComputeNest. undefined

2024-04-22 Version: v1.62.721

  • Generated 2019-12-30 for facebody.
  • Update DetectFace.

2024-04-22 Version: v1.62.720

  • Generated 2019-05-06 for sae. undefined

2024-04-18 Version: v1.62.719

  • Generated 2018-11-01 for dms-enterprise.
  • Supported ApproveOrder request parameter NewApproverList.
  • Add ListSensitiveColumnInfo API.
  • Supported GetDataCorrectOrderDetail return ConfigDetail Information.

2024-04-18 Version: v1.62.718

  • Generated 2022-05-30 for eflo.
  • Update HDENI API.

2024-04-17 Version: v1.62.717

  • Generated 2018-02-08 for Domain.
  • Add SnatchNo For QueryBookingDomainInfo

2024-04-17 Version: v1.62.716

  • Generated 2014-08-28 for Ess.
  • ModifyScalingGroup add ScalingPolicy params.

2024-04-16 Version: v1.62.715

  • Generated 2018-02-08 for Domain.
  • Add SnatchNo For QueryBookingDomainInfo

2024-04-16 Version: v1.62.714

  • Generated 2023-07-01 for EHPC.
  • Support Container for CreateJob.

2024-04-15 Version: v1.62.713

  • Generated 2023-01-20 for csas.
Commits
  • 82a7d9b Generated 2023-07-01 for EhpcInstant.
  • 722bb63 Generated 2021-06-01 for ComputeNest.
  • b81986e Generated 2019-12-30 for facebody.
  • 38723c2 Generated 2019-05-06 for sae.
  • 2db981e Generated 2018-11-01 for dms-enterprise.
  • bcd3bc1 Generated 2022-05-30 for eflo.
  • 2dd98ec Generated 2018-02-08 for Domain.
  • d15dc6c Generated 2014-08-28 for Ess.
  • 10eee88 Generated 2018-02-08 for Domain.
  • febfb8e Generated 2023-07-01 for EHPC.
  • Additional commits viewable in compare view

Updates github.com/aws/aws-sdk-go from 1.51.19 to 1.51.28

Release notes

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

Release v1.51.28 (2024-04-24)

Service Client Updates

  • service/datasync: Updates service API and documentation
  • service/ec2: Updates service API and documentation
    • Launching capability for customers to enable or disable automatic assignment of public IPv4 addresses to their network interface
  • service/emr-containers: Updates service API, documentation, and paginators
  • service/entityresolution: Updates service API and documentation
  • service/gamelift: Updates service API, documentation, and paginators
    • Amazon GameLift releases container fleets support for public preview. Deploy Linux-based containerized game server software for hosting on Amazon GameLift.
  • service/ssm: Updates service API, documentation, and paginators
    • Add SSM DescribeInstanceProperties API to public AWS SDK.

Release v1.51.27 (2024-04-23)

Service Client Updates

  • service/bedrock: Updates service API, documentation, and paginators
  • service/bedrock-agent: Updates service API and documentation
  • service/bedrock-agent-runtime: Updates service API and documentation
  • service/bedrock-runtime: Updates service API and documentation
  • service/ce: Updates service API and documentation
  • service/ec2: Updates service API and documentation
    • This release introduces EC2 AMI Deregistration Protection, a new AMI property that can be enabled by customers to protect an AMI against an unintended deregistration. This release also enables the AMI owners to view the AMI 'LastLaunchedTime' in DescribeImages API.
  • service/pi: Updates service documentation
  • service/rds: Updates service API, documentation, waiters, paginators, and examples
    • Fix the example ARN for ModifyActivityStreamRequest
  • service/workspaces-web: Updates service API and documentation

Release v1.51.26 (2024-04-22)

Service Client Updates

  • service/bedrock-agent: Updates service API and documentation
  • service/bedrock-agent-runtime: Updates service API and documentation
  • service/payment-cryptography: Updates service API, documentation, and waiters
  • service/redshift-serverless: Updates service documentation
  • service/route53profiles: Adds new service
  • service/sagemaker: Updates service API and documentation
    • This release adds support for Real-Time Collaboration and Shared Space for JupyterLab App on SageMaker Studio.
  • service/servicediscovery: Updates service documentation and examples
  • service/transfer: Updates service API and documentation
    • Adding new API to support remote directory listing using SFTP connector

Release v1.51.25 (2024-04-19)

Service Client Updates

  • service/glue: Updates service API and documentation

... (truncated)

Commits

Updates github.com/civo/civogo from 0.3.67 to 0.3.69

Release notes

Sourced from github.com/civo/civogo's releases.

v0.3.69

Addition of private_ipv4 param for the instance creation request

v0.3.68

Introduction of reserved_ipv4 param to create a new instance

Commits
  • 8f4eb6f Merge pull request #194 from civo/instance-private-ip
  • 59b18db Merge pull request #193 from civo/dependabot/go_modules/golang.org/x/net-0.23.0
  • f83f76b createInstanceRequest.PrivateIPv4 param addition
  • dfa4381 Bump golang.org/x/net from 0.17.0 to 0.23.0
  • 6bfca0f Merge pull request #187 from civo/dependabot/go_modules/golang.org/x/net-0.17.0
  • 021076d Merge pull request #192 from civo/reserved_ipv4
  • a45391d addition of instance.reserved_ipv4
  • c94064b Bump golang.org/x/net from 0.8.0 to 0.17.0
  • See full diff in compare view

Updates github.com/cloudflare/cloudflare-go from 0.93.0 to 0.94.0

Release notes

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

v0.94.0

ENHANCEMENTS:

  • access_application: support options_preflight_bypass for access_application (#1790)
  • gateway: added ecs_support field to teams_location resource (#1826)
  • teams_account: adds custom certificate setting to teams account configuration (#1811)
  • workers: support deleting namespaced Workers (#1737)

DEPENDENCIES:

  • deps: bumps golang.org/x/net from 0.19.0 to 0.23.0 (#1825)
Changelog

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

0.94.0 (April 24th, 2024)

ENHANCEMENTS:

  • access_application: support options_preflight_bypass for access_application (#1790)
  • gateway: added ecs_support field to teams_location resource (#1826)
  • teams_account: adds custom certificate setting to teams account configuration (#1811)
  • workers: support deleting namespaced Workers (#1737)

DEPENDENCIES:

  • deps: bumps golang.org/x/net from 0.19.0 to 0.23.0 (#1825)
Commits
  • 4cfc90f Update CHANGELOG.md
  • e225010 update CHANGELOG
  • bdbee54 Merge pull request #1826 from alyssamw/master
  • ac539ee Merge branch 'master' into master
  • 6f6d756 GFI-151: add ecs_support to teams_location
  • 5ea2d0a Merge pull request #1825 from cloudflare/dependabot/go_modules/internal/tools...
  • 38f5378 add CHANGELOG for #1825
  • e96653c build(deps): bump golang.org/x/net in /internal/tools
  • 04b36cd Merge pull request #1790 from russellkerns/rkerns/AUTH-6000
  • 7b0666a Merge branch 'master' into rkerns/AUTH-6000
  • Additional commits viewable in compare view

Updates github.com/digitalocean/godo from 1.112.0 to 1.113.0

Release notes

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

v1.113.0

Changelog

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

[v1.113.0] - 2024-04-12

Commits

Updates github.com/linode/linodego from 1.32.0 to 1.33.0

Release notes

Sourced from github.com/linode/linodego's releases.

v1.33.0

What's Changed

⚠️ Breaking Change

🚀 New Features

📦 Dependency Updates

Full Changelog: https://github.com/linode/linodego/compare/v1.32.0...v1.33.0

Commits
  • be75a51 new: Support available for AccountAvailability (#491)
  • 4eb5658 Add a list VPC IPs function for a specific VPC (#488)
  • ea08693 build(deps): bump golang.org/x/net from 0.23.0 to 0.24.0 (#486)
  • f399472 build(deps): bump golang.org/x/oauth2 from 0.18.0 to 0.19.0 (#487)
  • e8b2c71 build(deps): bump golang.org/x/net from 0.22.0 to 0.23.0 (#485)
  • See full diff in compare view

Updates github.com/miekg/dns from 1.1.58 to 1.1.59

Commits

Updates github.com/oracle/oci-go-sdk/v65 from 65.63.1 to 65.64.0

Release notes

Sourced from github.com/oracle/oci-go-sdk/v65's releases.

65.64.0

Added

  • Support for the Cluster Placement Groups service

  • Support for new optional parameter for managing approval template in the Managed Access service

  • Support for cluster placement groups in the Compute service

  • Support for replacing boot volume for virtual machines in the Compute service

  • Support for assigning a cluster placement group to boot and block volumes in the Block Storage service

  • Support for container workload integration in the Cloud Guard service

  • Support for instances in OCI and 3rd party clouds in the OS Management service

Breaking Changes

  • The Application Migration service was decommissioned and removed

  • Support for default retries on the operations of the Managed Access service

  • The property ManagedInstances was made mandatory in the model AttachManagedInstancesToManagedInstanceGroupDetails in the OS Management service

  • The property SoftwareSources was made mandatory in the model AttachSoftwareSourcesToManagedInstanceGroupDetails in the OS Management service

  • The property SoftwareSourceAvailabilities was made mandatory in the model ChangeAvailabilityOfSoftwareSourcesDetails in the OS Management service

  • The property ModuleName was made mandatory in the models for ModuleStreamProfileOnManagedInstanceGroupDetails in the OS Management service

  • The property InstanceLocation was renamed to Location in the model GetManagedInstanceAnalyticContentRequest in the OS Management service

  • The property PackageNames was made mandatory in the model InstallPackagesOnManagedInstanceGroupDetails and RemovePackagesFromManagedInstanceGroupDetails in the OS Management service

  • The property AdvisoryType was renamed to ClassificationType in the model ListManagedInstanceErrataRequest in the OS Management service

  • The type of property Architecture was changed from string to SoftwarePackageArchitectureEnum in the OS Management service

File Checksums (SHA256)

oci-go-sdk-65.64.0.zip f08e94a8c5b8db02c9d1b33946bc9046bdddacfe65d2f217dd1980ba558009c0

65.63.2

Added

... (truncated)

Changelog

Sourced from github.com/oracle/oci-go-sdk/v65's changelog.

65.64.0 - 2024-04-23

Added

  • Support for the Cluster Placement Groups service
  • Support for new optional parameter for managing approval template in the Managed Access service
  • Support for cluster placement groups in the Compute service
  • Support for replacing boot volume for virtual machines in the Compute service
  • Support for assigning a cluster placement group to boot and block volumes in the Block Storage service
  • Support for container workload integration in the Cloud Guard service
  • Support for instances in OCI and 3rd party clouds in the OS Management service

Breaking Changes

  • The Application Migration service was decommissioned and removed
  • Support for default retries on the operations of the Managed Access service
  • The property ManagedInstances was made mandatory in the model AttachManagedInstancesToManagedInstanceGroupDetails in the OS Management service
  • The property SoftwareSources was made mandatory in the model AttachSoftwareSourcesToManagedInstanceGroupDetails in the OS Management service
  • The property SoftwareSourceAvailabilities was made mandatory in the model ChangeAvailabilityOfSoftwareSourcesDetails in the OS Management service
  • The property ModuleName was made mandatory in the models for ModuleStreamProfileOnManagedInstanceGroupDetails in the OS Management service
  • The property InstanceLocation was renamed to Location in the model GetManagedInstanceAnalyticContentRequest in the OS Management service
  • The property PackageNames was made mandatory in the model InstallPackagesOnManagedInstanceGroupDetails and RemovePackagesFromManagedInstanceGroupDetails in the OS Management service
  • The property AdvisoryType was renamed to ClassificationType in the model ListManagedInstanceErrataRequest in the OS Management service
  • The type of property Architecture was changed from string to SoftwarePackageArchitectureEnum in the OS Management service

65.63.2 - 2024-04-16

Added

  • Support for calling Oracle Cloud Infrastructure services in the me-abudhabi-3 region
  • Support for new Image resource for an Autonomous Database in the Database service
  • Support for creating Autonomous Container Database using Autonomous Database Software Image in the Database service
  • Support for new dedicated AI cluster unit shape in the Generative AI service
  • Support for Chat API for LLM models in the Generative AI service
  • Support for network security groups (NSGs) in the Redis service
  • Support for custom public egress on model deployments in the Data Science service
  • Support for a new data transfer parameter for AWS S3 bucket in the Database Migration service
  • Support for Oracle Process Automation instance start and stop operations in the Process Automation service
  • Support for healthcare Natural Language Processing (NLP) in the AI Language service
  • Support for identification and de-identification of Private Health Information (PHI) service in the AI Language service
  • Support for multilingual content for using machine learning models in the AI Language service
  • Support for usage statements in cost management in the Usage service
Commits
  • c94255a Releasing version 65.64.0
  • 9557732 Merge remote-tracking branch 'bitbucket/github' into release_2024-04-23
  • 110dfc4 Pull request #2726: Releasing Version 65.64.0
  • adf776a Releasing version 65.63.2
  • 49451b0 Merge remote-tracking branch 'bitbucket/github' into release_2024-04-16
  • bd46995 Pull request #2720: Releasing Version 65.63.2
  • See full diff in compare view

Updates github.com/ovh/go-ovh from 1.4.3 to 1.5.1

Release notes

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

v1.5.1

What's Changed

Full Changelog: https://github.com/ovh/go-ovh/compare/v1.5.0...v1.5.1

v1.5.0

What's Changed

Full Changelog: https://github.com/ovh/go-ovh/compare/v1.4.3...v1.5.0

Commits

Updates github.com/scaleway/scaleway-sdk-go from 1.0.0-beta.25 to 1.0.0-beta.26

Release notes

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

v1.0.0-beta.26

What's Changed

…24 updates

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

| Package | From | To |
| --- | --- | --- |
| [cloud.google.com/go/compute/metadata](https://github.com/googleapis/google-cloud-go) | `0.2.3` | `0.3.0` |
| [github.com/F5Networks/k8s-bigip-ctlr/v2](https://github.com/F5Networks/k8s-bigip-ctlr) | `2.16.0` | `2.16.1` |
| [github.com/IBM/go-sdk-core/v5](https://github.com/IBM/go-sdk-core) | `5.16.5` | `5.17.0` |
| [github.com/IBM/networking-go-sdk](https://github.com/IBM/networking-go-sdk) | `0.45.0` | `0.46.1` |
| [github.com/aliyun/alibaba-cloud-sdk-go](https://github.com/aliyun/alibaba-cloud-sdk-go) | `1.62.712` | `1.62.723` |
| [github.com/aws/aws-sdk-go](https://github.com/aws/aws-sdk-go) | `1.51.19` | `1.51.28` |
| [github.com/civo/civogo](https://github.com/civo/civogo) | `0.3.67` | `0.3.69` |
| [github.com/cloudflare/cloudflare-go](https://github.com/cloudflare/cloudflare-go) | `0.93.0` | `0.94.0` |
| [github.com/digitalocean/godo](https://github.com/digitalocean/godo) | `1.112.0` | `1.113.0` |
| [github.com/linode/linodego](https://github.com/linode/linodego) | `1.32.0` | `1.33.0` |
| [github.com/miekg/dns](https://github.com/miekg/dns) | `1.1.58` | `1.1.59` |
| [github.com/oracle/oci-go-sdk/v65](https://github.com/oracle/oci-go-sdk) | `65.63.1` | `65.64.0` |
| [github.com/ovh/go-ovh](https://github.com/ovh/go-ovh) | `1.4.3` | `1.5.1` |
| [github.com/scaleway/scaleway-sdk-go](https://github.com/scaleway/scaleway-sdk-go) | `1.0.0-beta.25` | `1.0.0-beta.26` |
| [github.com/tencentcloud/tencentcloud-sdk-go/tencentcloud/common](https://github.com/tencentcloud/tencentcloud-sdk-go) | `1.0.897` | `1.0.909` |
| [github.com/tencentcloud/tencentcloud-sdk-go/tencentcloud/dnspod](https://github.com/tencentcloud/tencentcloud-sdk-go) | `1.0.897` | `1.0.909` |
| [github.com/tencentcloud/tencentcloud-sdk-go/tencentcloud/privatedns](https://github.com/tencentcloud/tencentcloud-sdk-go) | `1.0.897` | `1.0.909` |
| [google.golang.org/api](https://github.com/googleapis/google-api-go-client) | `0.172.0` | `0.176.1` |
| gopkg.in/ns1/ns1-go.v2 | `2.9.1` | `2.10.0` |
| [istio.io/api](https://github.com/istio/api) | `1.21.1` | `1.21.2` |
| [istio.io/client-go](https://github.com/istio/client-go) | `1.21.1` | `1.21.2` |
| [k8s.io/api](https://github.com/kubernetes/api) | `0.29.3` | `0.30.0` |
| [k8s.io/client-go](https://github.com/kubernetes/client-go) | `0.29.3` | `0.30.0` |



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

Updates `github.com/F5Networks/k8s-bigip-ctlr/v2` from 2.16.0 to 2.16.1
- [Release notes](https://github.com/F5Networks/k8s-bigip-ctlr/releases)
- [Changelog](https://github.com/F5Networks/k8s-bigip-ctlr/blob/v2.16.1/docs/RELEASE-NOTES.rst)
- [Commits](F5Networks/k8s-bigip-ctlr@v2.16.0...v2.16.1)

Updates `github.com/IBM/go-sdk-core/v5` from 5.16.5 to 5.17.0
- [Release notes](https://github.com/IBM/go-sdk-core/releases)
- [Changelog](https://github.com/IBM/go-sdk-core/blob/main/CHANGELOG.md)
- [Commits](IBM/go-sdk-core@v5.16.5...v5.17.0)

Updates `github.com/IBM/networking-go-sdk` from 0.45.0 to 0.46.1
- [Release notes](https://github.com/IBM/networking-go-sdk/releases)
- [Changelog](https://github.com/IBM/networking-go-sdk/blob/master/CHANGELOG.md)
- [Commits](IBM/networking-go-sdk@v0.45.0...v0.46.1)

Updates `github.com/aliyun/alibaba-cloud-sdk-go` from 1.62.712 to 1.62.723
- [Release notes](https://github.com/aliyun/alibaba-cloud-sdk-go/releases)
- [Changelog](https://github.com/aliyun/alibaba-cloud-sdk-go/blob/master/ChangeLog.txt)
- [Commits](aliyun/alibaba-cloud-sdk-go@v1.62.712...v1.62.723)

Updates `github.com/aws/aws-sdk-go` from 1.51.19 to 1.51.28
- [Release notes](https://github.com/aws/aws-sdk-go/releases)
- [Commits](aws/aws-sdk-go@v1.51.19...v1.51.28)

Updates `github.com/civo/civogo` from 0.3.67 to 0.3.69
- [Release notes](https://github.com/civo/civogo/releases)
- [Changelog](https://github.com/civo/civogo/blob/master/changelog.yml)
- [Commits](civo/civogo@v0.3.67...v0.3.69)

Updates `github.com/cloudflare/cloudflare-go` from 0.93.0 to 0.94.0
- [Release notes](https://github.com/cloudflare/cloudflare-go/releases)
- [Changelog](https://github.com/cloudflare/cloudflare-go/blob/master/CHANGELOG.md)
- [Commits](cloudflare/cloudflare-go@v0.93.0...v0.94.0)

Updates `github.com/digitalocean/godo` from 1.112.0 to 1.113.0
- [Release notes](https://github.com/digitalocean/godo/releases)
- [Changelog](https://github.com/digitalocean/godo/blob/main/CHANGELOG.md)
- [Commits](digitalocean/godo@v1.112.0...v1.113.0)

Updates `github.com/linode/linodego` from 1.32.0 to 1.33.0
- [Release notes](https://github.com/linode/linodego/releases)
- [Commits](linode/linodego@v1.32.0...v1.33.0)

Updates `github.com/miekg/dns` from 1.1.58 to 1.1.59
- [Changelog](https://github.com/miekg/dns/blob/master/Makefile.release)
- [Commits](miekg/dns@v1.1.58...v1.1.59)

Updates `github.com/oracle/oci-go-sdk/v65` from 65.63.1 to 65.64.0
- [Release notes](https://github.com/oracle/oci-go-sdk/releases)
- [Changelog](https://github.com/oracle/oci-go-sdk/blob/master/CHANGELOG.md)
- [Commits](oracle/oci-go-sdk@v65.63.1...v65.64.0)

Updates `github.com/ovh/go-ovh` from 1.4.3 to 1.5.1
- [Release notes](https://github.com/ovh/go-ovh/releases)
- [Commits](ovh/go-ovh@v1.4.3...v1.5.1)

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

Updates `github.com/tencentcloud/tencentcloud-sdk-go/tencentcloud/common` from 1.0.897 to 1.0.909
- [Commits](TencentCloud/tencentcloud-sdk-go@v1.0.897...v1.0.909)

Updates `github.com/tencentcloud/tencentcloud-sdk-go/tencentcloud/dnspod` from 1.0.897 to 1.0.909
- [Commits](TencentCloud/tencentcloud-sdk-go@v1.0.897...v1.0.909)

Updates `github.com/tencentcloud/tencentcloud-sdk-go/tencentcloud/privatedns` from 1.0.897 to 1.0.909
- [Commits](TencentCloud/tencentcloud-sdk-go@v1.0.897...v1.0.909)

Updates `google.golang.org/api` from 0.172.0 to 0.176.1
- [Release notes](https://github.com/googleapis/google-api-go-client/releases)
- [Changelog](https://github.com/googleapis/google-api-go-client/blob/main/CHANGES.md)
- [Commits](googleapis/google-api-go-client@v0.172.0...v0.176.1)

Updates `gopkg.in/ns1/ns1-go.v2` from 2.9.1 to 2.10.0

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

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

Updates `k8s.io/api` from 0.29.3 to 0.30.0
- [Commits](kubernetes/api@v0.29.3...v0.30.0)

Updates `k8s.io/apimachinery` from 0.29.3 to 0.30.0
- [Commits](kubernetes/apimachinery@v0.29.3...v0.30.0)

Updates `k8s.io/client-go` from 0.29.3 to 0.30.0
- [Changelog](https://github.com/kubernetes/client-go/blob/master/CHANGELOG.md)
- [Commits](kubernetes/client-go@v0.29.3...v0.30.0)

---
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/F5Networks/k8s-bigip-ctlr/v2
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: dev-dependencies
- dependency-name: github.com/IBM/go-sdk-core/v5
  dependency-type: direct:production
  update-type: version-update:semver-minor
  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/aws/aws-sdk-go
  dependency-type: direct:production
  update-type: version-update:semver-patch
  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/linode/linodego
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: dev-dependencies
- dependency-name: github.com/miekg/dns
  dependency-type: direct:production
  update-type: version-update:semver-patch
  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/ovh/go-ovh
  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: 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-minor
  dependency-group: dev-dependencies
- dependency-name: k8s.io/apimachinery
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: dev-dependencies
- dependency-name: k8s.io/client-go
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: dev-dependencies
...

Signed-off-by: dependabot[bot] <support@github.com>
@dependabot dependabot bot added dependencies Pull requests that update a dependency file go Pull requests that update Go code labels Apr 25, 2024
@k8s-ci-robot
Copy link
Contributor

[APPROVALNOTIFIER] This PR is NOT APPROVED

This pull-request has been approved by:
Once this PR has been reviewed and has the lgtm label, please assign mloiseleur for approval. For more information see the Kubernetes Code Review Process.

The full list of commands accepted by this bot can be found 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 cncf-cla: yes Indicates the PR's author has signed the CNCF CLA. needs-ok-to-test Indicates a PR that requires an org member to verify it is safe to test. labels Apr 25, 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/test-infra repository.

@k8s-ci-robot k8s-ci-robot added the size/L Denotes a PR that changes 100-499 lines, ignoring generated files. label Apr 25, 2024
Copy link
Contributor Author

dependabot bot commented on behalf of github Apr 25, 2024

Superseded by #4416.

@dependabot dependabot bot closed this Apr 25, 2024
@dependabot dependabot bot deleted the dependabot/go_modules/dev-dependencies-a98d10686d branch April 25, 2024 09:33
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
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 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.
Projects
None yet
Development

Successfully merging this pull request may close these issues.

None yet

1 participant