UNCLASSIFIED - NO CUI

Skip to content

Update all dependencies

renovate requested to merge renovate/all into development

This MR contains the following updates:

Package Type Update Change
boto3 patch ==1.28.62 -> ==1.28.65
psutil patch ==5.9.5 -> ==5.9.6
public.ecr.aws/rapidfort/vulns-db ironbank-docker patch 1.1.40-rfhardened -> 1.1.690-rfhardened
public.ecr.aws/rapidfort/vulns-db patch 1.1.40-rfhardened -> 1.1.690-rfhardened
public.ecr.aws/rapidfort/vulns-db stage patch 1.1.40-rfhardened -> 1.1.690-rfhardened

Dependency Lookup Warnings

Warnings were logged while processing this repo. Please check the logs for more information.


Release Notes

boto/boto3

v1.28.65

Compare Source

=======

  • api-change:codepipeline: [botocore] Add retryMode ALL_ACTIONS to RetryStageExecution API that retries a failed stage starting from first action in the stage
  • api-change:discovery: [botocore] This release introduces three new APIs: StartBatchDeleteConfigurationTask, DescribeBatchDeleteConfigurationTask, and BatchDeleteAgents.
  • api-change:ecs: [botocore] Documentation only updates to address Amazon ECS tickets.
  • api-change:globalaccelerator: [botocore] Fixed error where ListCustomRoutingEndpointGroups did not have a paginator
  • api-change:guardduty: [botocore] Add domainWithSuffix finding field to dnsRequestAction
  • api-change:kafka: [botocore] AWS Managed Streaming for Kafka is launching MSK Replicator, a new feature that enables customers to reliably replicate data across Amazon MSK clusters in same or different AWS regions. You can now use SDK to create, list, describe, delete, update, and manage tags of MSK Replicators.
  • api-change:route53-recovery-cluster: [botocore] Adds Owner field to ListRoutingControls API.
  • api-change:route53-recovery-control-config: [botocore] Adds permissions for GetResourcePolicy to support returning details about AWS Resource Access Manager resource policies for shared resources.

v1.28.64

Compare Source

=======

  • api-change:cloudformation: [botocore] SDK and documentation updates for UpdateReplacePolicy
  • api-change:drs: [botocore] Updated exsiting API to allow AWS Elastic Disaster Recovery support of launching recovery into existing EC2 instances.
  • api-change:entityresolution: [botocore] This launch expands our matching techniques to include provider-based matching to help customer match, link, and enhance records with minimal data movement. With data service providers, we have removed the need for customers to build bespoke integrations,.
  • api-change:managedblockchain-query: [botocore] This release introduces two new APIs: GetAssetContract and ListAssetContracts. This release also adds support for Bitcoin Testnet.
  • api-change:mediapackagev2: [botocore] This release allows customers to manage MediaPackage v2 resource using CloudFormation.
  • api-change:opensearch: [botocore] This release allows customers to list and associate optional plugin packages with compatible Amazon OpenSearch Service clusters for enhanced functionality.
  • api-change:redshift-serverless: [botocore] Added support for managing credentials of serverless namespace admin using AWS Secrets Manager.
  • api-change:redshift: [botocore] Added support for managing credentials of provisioned cluster admin using AWS Secrets Manager.
  • api-change:sesv2: [botocore] This release provides enhanced visibility into your SES identity verification status. This will offer you more actionable insights, enabling you to promptly address any verification-related issues.
  • api-change:transfer: [botocore] Documentation updates for AWS Transfer Family
  • api-change:xray: [botocore] This releases enhances GetTraceSummaries API to support new TimeRangeType Service to query trace summaries by segment end time.

v1.28.63

Compare Source

=======

  • api-change:auditmanager: [botocore] This release introduces a new limit to the awsAccounts parameter. When you create or update an assessment, there is now a limit of 200 AWS accounts that can be specified in the assessment scope.
  • api-change:autoscaling: [botocore] Update the NotificationMetadata field to only allow visible ascii characters. Add paginators to DescribeInstanceRefreshes, DescribeLoadBalancers, and DescribeLoadBalancerTargetGroups
  • api-change:config: [botocore] Add enums for resource types supported by Config
  • api-change:controltower: [botocore] Added new EnabledControl resource details to ListEnabledControls API and added new GetEnabledControl API.
  • api-change:customer-profiles: [botocore] Adds sensitive trait to various shapes in Customer Profiles Calculated Attribute API model.
  • api-change:ec2: [botocore] This release adds Ubuntu Pro as a supported platform for On-Demand Capacity Reservations and adds support for setting an Amazon Machine Image (AMI) to disabled state. Disabling the AMI makes it private if it was previously shared, and prevents new EC2 instance launches from it.
  • api-change:elbv2: [botocore] Update elbv2 client to latest version
  • api-change:glue: [botocore] Extending version control support to GitLab and Bitbucket from AWSGlue
  • api-change:inspector2: [botocore] Add MacOs ec2 platform support
  • api-change:ivs-realtime: [botocore] Update GetParticipant to return additional metadata.
  • api-change:lambda: [botocore] Adds support for Lambda functions to access Dual-Stack subnets over IPv6, via an opt-in flag in CreateFunction and UpdateFunctionConfiguration APIs
  • api-change:location: [botocore] This release adds endpoint updates for all AWS Location resource operations.
  • api-change:machinelearning: [botocore] This release marks Password field as sensitive
  • api-change:pricing: [botocore] Documentation updates for Price List
  • api-change:rds: [botocore] This release adds support for adding a dedicated log volume to open-source RDS instances.
  • api-change:rekognition: [botocore] Amazon Rekognition introduces support for Custom Moderation. This allows the enhancement of accuracy for detect moderation labels operations by creating custom adapters tuned on customer data.
  • api-change:sagemaker: [botocore] Amazon SageMaker Canvas adds KendraSettings and DirectDeploySettings support for CanvasAppSettings
  • api-change:textract: [botocore] This release adds 9 new APIs for adapter and adapter version management, 3 new APIs for tagging, and updates AnalyzeDocument and StartDocumentAnalysis API parameters for using adapters.
  • api-change:transcribe: [botocore] This release is to enable m4a format to customers
  • api-change:workspaces: [botocore] Updated the CreateWorkspaces action documentation to clarify that the PCoIP protocol is only available for Windows bundles.
giampaolo/psutil

v5.9.6

Compare Source

=====

2023-10-15

Enhancements

  • 1703_: cpu_percent()_ and cpu_times_percent()_ are now thread safe, meaning they can be called from different threads and still return meaningful and independent results. Before, if (say) 10 threads called cpu_percent(interval=None) at the same time, only 1 thread out of 10 would get the right result.
  • 2266_: if Process_ class is passed a very high PID, raise NoSuchProcess_ instead of OverflowError. (patch by Xuehai Pan)
  • 2246_: drop python 3.4 & 3.5 support. (patch by Matthieu Darbois)
  • 2290_: PID reuse is now pre-emptively checked for Process.ppid()_ and Process.parents()_.
  • 2312_: use ruff Python linter instead of flake8 + isort. It's an order of magnitude faster + it adds a ton of new code quality checks.

Bug fixes

  • 2195_, [Linux]: no longer print exception at import time in case /proc/stat can't be read due to permission error. Redirect it to PSUTIL_DEBUG instead.
  • 2241_, [NetBSD]: can't compile On NetBSD 10.99.3/amd64. (patch by Thomas Klausner)
  • 2245_, [Windows]: fix var unbound error on possibly in swap_memory()_ (patch by student_2333)
  • 2268_: bytes2human() utility function was unable to properly represent negative values.
  • 2252_, [Windows]: disk_usage()_ fails on Python 3.12+. (patch by Matthieu Darbois)
  • 2284_, [Linux]: Process.memory_full_info()_ may incorrectly raise ZombieProcess_ if it's determined via /proc/pid/smaps_rollup. Instead we now fallback on reading /proc/pid/smaps.
  • 2287_, [OpenBSD], [NetBSD]: Process.is_running()_ erroneously return False for zombie processes, because creation time cannot be determined.
  • 2288_, [Linux]: correctly raise ZombieProcess_ on Process.exe()*, Process.cmdline()* and Process.memory_maps()_ instead of returning a "null" value.
  • 2290_: differently from what stated in the doc, PID reuse is not pre-emptively checked for Process.nice()_ (set), Process.ionice()*, (set), Process.cpu_affinity()* (set), Process.rlimit()_ (set), Process.parent()_.
  • 2308_, [OpenBSD]: Process.threads()_ always fail with AccessDenied (also as root).

Configuration

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

🚦 Automerge: Enabled.

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

👻 Immortal: This MR will be recreated if closed unmerged. Get config help if that's undesired.


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

This MR has been generated by Renovate Bot.

Edited by renovate

Merge request reports