Update all dependencies
This MR contains the following updates:
Package | Type | Update | Change |
---|---|---|---|
boto3 | patch |
==1.28.62 -> ==1.28.63
|
|
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.63
=======
- 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
=====
2023-10-15
Enhancements
- 1703_:
cpu_percent()
_ andcpu_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 calledcpu_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, raiseNoSuchProcess
_ 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()
_ andProcess.parents()
_. - 2312_: use
ruff
Python linter instead offlake8 + 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 raiseZombieProcess
_ 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 returnFalse
for zombie processes, because creation time cannot be determined. - 2288_, [Linux]: correctly raise
ZombieProcess
_ onProcess.exe()
*,Process.cmdline()
* andProcess.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
-
If you want to rebase/retry this MR, check this box
This MR has been generated by Renovate Bot.