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

⬆️(dependencies) update python dependencies #295

Merged
merged 1 commit into from
Sep 30, 2024

Conversation

renovate[bot]
Copy link
Contributor

@renovate renovate bot commented Sep 30, 2024

This PR contains the following updates:

Package Change Age Adoption Passing Confidence
boto3 ==1.35.24 -> ==1.35.29 age adoption passing confidence
psycopg (source, changelog) ==3.2.2 -> ==3.2.3 age adoption passing confidence
pylint (changelog) ==3.3.0 -> ==3.3.1 age adoption passing confidence
redis (changelog) ==5.0.8 -> ==5.1.0 age adoption passing confidence
ruff (source, changelog) ==0.6.7 -> ==0.6.8 age adoption passing confidence

Release Notes

boto/boto3 (boto3)

v1.35.29

Compare Source

=======

  • api-change:customer-profiles: [botocore] Introduces optional RoleArn parameter for PutIntegration request and includes RoleArn in the response of PutIntegration, GetIntegration and ListIntegrations
  • api-change:quicksight: [botocore] Adding personalization in QuickSight data stories. Admins can enable or disable personalization through QuickSight settings.
  • api-change:securityhub: [botocore] Documentation updates for AWS Security Hub
  • api-change:sesv2: [botocore] This release adds support for engagement tracking over Https using custom domains.

v1.35.28

Compare Source

=======

  • api-change:chatbot: [botocore] Return State and StateReason fields for Chatbot Channel Configurations.
  • api-change:lambda: [botocore] Reverting Lambda resource-based policy and block public access APIs.
  • api-change:organizations: [botocore] Add support for policy operations on the CHATBOT_POLICY policy type.
  • api-change:pcs: [botocore] AWS PCS API documentation - Edited the description of the iamInstanceProfileArn parameter of the CreateComputeNodeGroup and UpdateComputeNodeGroup actions; edited the description of the SlurmCustomSetting data type to list the supported parameters for clusters and compute node groups.
  • api-change:rds-data: [botocore] Documentation update for RDS Data API to reflect support for Aurora MySQL Serverless v2 and Provisioned DB clusters.
  • api-change:sagemaker: [botocore] Adding TagPropagation attribute to Sagemaker API

v1.35.27

Compare Source

=======

  • api-change:cloudtrail: [botocore] Doc-only update for CloudTrail network activity events release (in preview)
  • api-change:ec2: [botocore] Updates to documentation for the transit gateway security group referencing feature.
  • api-change:fsx: [botocore] Doc-only update to address Lustre S3 hard-coded names.
  • api-change:worklink: [botocore] The worklink client has been removed following the deprecation of the service.

v1.35.26

Compare Source

=======

  • api-change:bedrock: [botocore] Add support for Cross Region Inference in Bedrock Model Evaluations.
  • api-change:budgets: [botocore] Releasing minor partitional endpoint updates
  • api-change:kinesis: [botocore] This release includes support to add tags when creating a stream
  • api-change:pinpoint-sms-voice-v2: [botocore] AWS End User Messaging SMS-Voice V2 has added support for resource policies. Use the three new APIs to create, view, edit, and delete resource policies.
  • api-change:sagemaker: [botocore] Adding HiddenInstanceTypes and HiddenSageMakerImageVersionAliases attribute to SageMaker API

v1.35.25

Compare Source

=======

  • api-change:apigateway: [botocore] Documentation updates for Amazon API Gateway
  • api-change:athena: [botocore] List/Get/Update/Delete/CreateDataCatalog now integrate with AWS Glue connections. Users can create a Glue connection through Athena or use a Glue connection to define their Athena federated parameters.
  • api-change:bedrock-agent: [botocore] Amazon Bedrock Prompt Flows and Prompt Management now supports using inference profiles to increase throughput and improve resilience.
  • api-change:ec2: [botocore] Amazon EC2 G6e instances powered by NVIDIA L40S Tensor Core GPUs are the most cost-efficient GPU instances for deploying generative AI models and the highest performance GPU instances for spatial computing workloads.
  • api-change:emr-serverless: [botocore] This release adds support for job concurrency and queuing configuration at Application level.
  • api-change:glue: [botocore] Added AthenaProperties parameter to Glue Connections, allowing Athena to store service specific properties on Glue Connections.
  • api-change:rds: [botocore] Support ComputeRedundancy parameter in ModifyDBShardGroup API. Add DBShardGroupArn in DBShardGroup API response. Remove InvalidMaxAcuFault from CreateDBShardGroup and ModifyDBShardGroup API. Both API will throw InvalidParameterValueException for invalid ACU configuration.
  • api-change:resource-explorer-2: [botocore] AWS Resource Explorer released ListResources feature which allows customers to list all indexed AWS resources within a view.
psycopg/psycopg (psycopg)

v3.2.3

Compare Source

pylint-dev/pylint (pylint)

v3.3.1

Compare Source

What's new in Pylint 3.3.1?

Release date: 2024-09-24

False Positives Fixed

  • Fix regression causing some f-strings to not be inferred as strings.

    Closes #​9947

redis/redis-py (redis)

v5.1.0: 5.1.0

Compare Source

Changes

🚀 New Features

How to start with Client-side caching?
  1. Install redis-py 5.1.0
  2. Use the following code snippet:
r = Redis(protocol=3, cache_config=CacheConfig())

cache = r.get_cache()
r.set("foo", "bar")

### get key from redis and save in local cache
print(r.get("foo"))

### get key from local cache
print(cache.get(CacheKey(command="GET", redis_keys=("foo",))).cache_value)

### change key in redis (cause invalidation)
r.set("foo", "barbar")

### Retrieves a new value from server and cache it
print(r.get("foo"))

### Make sure that new value was cached
print(cache.get(CacheKey(command="GET", redis_keys=("foo",))).cache_value)

Check documentation to get more examples

🔥 Breaking Changes

  • Timeseries insertion filters for close samples (#​3228)
  • Enhanced classes string representation (#​3001)
  • Partial clean up of Python 3.7 compatibility (#​2928)

🐛 Bug Fixes

  • Handle RESP3 sets as Python lists (#​3324)
  • Prevent async ClusterPipeline instances from becoming "false-y" (#​3068)
  • Add hostname field to _parse_node_line (#​3343)
  • More docs fixes (#​3326)
  • Delete the first-defined (and thus "duplicate") Script class (#​3333)
  • Catch a known DeprecationWarning when calling .close() (#​3335)
  • Add missed redismod at test_commands.py (#​3369)

🧰 Maintenance

Contributors

We'd like to thank all the contributors who worked on this release!

@​AYMENJD, @​AniketP04, @​BackflipPenguin, @​ING-XIAOJIAN, @​MrDenkoV, @​Pedram-Parsian, @​TheBlusky, @​TomerHekmati, @​Wh1isper, @​Zaczero, @​ahmedabdou14, @​akx, @​andy-stark-redis, @​catap, @​chayim, @​d184230, @​danielzhangau, @​daveisfera, @​dependabot, @​dependabot[bot], @​dkuser, @​dmaier-redislabs, @​dmkulazhenko, @​dudizimber, @​dvora-h, @​dwdougherty, @​enjoy-binbin, @​gerzse, @​hongqn, @​jakob-keller, @​kristjanvalur, @​kurtmckee, @​matrey, @​mattwang44, @​max-muoto, @​parmenashp, @​poiuj, @​r0ro, @​sjpotter, @​tbbream, @​trkwyk, @​uglide, @​vladvildanov, @​w-miller, @​wKollendorf, @​willfrey, @​willianmrs, @​zakaf, @​zware and @​zxjlm

astral-sh/ruff (ruff)

v0.6.8

Compare Source

Preview features
  • Remove unnecessary parentheses around match case clauses (#​13510)
  • Parenthesize overlong if guards in match..case clauses (#​13513)
  • Detect basic wildcard imports in ruff analyze graph (#​13486)
  • [pylint] Implement boolean-chained-comparison (R1716) (#​13435)
Rule changes
  • [lake8-simplify] Detect SIM910 when using variadic keyword arguments, i.e., **kwargs (#​13503)
  • [pyupgrade] Avoid false negatives with non-reference shadowed bindings of loop variables (UP028) (#​13504)
Bug fixes
  • Detect tuples bound to variadic positional arguments i.e. *args (#​13512)
  • Exit gracefully on broken pipe errors (#​13485)
  • Avoid panic when analyze graph hits broken pipe (#​13484)
Performance
  • Reuse BTreeSets in module resolver (#​13440)
  • Skip traversal for non-compound statements (#​13441)

Configuration

📅 Schedule: Branch creation - "before 7am on monday" (UTC), Automerge - At any time (no schedule defined).

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

Rebasing: Whenever PR is behind base branch, or you tick the rebase/retry checkbox.

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


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

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

@renovate renovate bot added dependencies Pull requests that update a dependency file noChangeLog labels Sep 30, 2024
@renovate renovate bot force-pushed the renovate/python-dependencies branch from 4e7e22f to ef51ca2 Compare September 30, 2024 09:00
@renovate renovate bot force-pushed the renovate/python-dependencies branch from ef51ca2 to fefc446 Compare September 30, 2024 09:57
@AntoLC AntoLC self-assigned this Sep 30, 2024
@AntoLC AntoLC self-requested a review September 30, 2024 10:39
@AntoLC AntoLC merged commit 589d3ab into main Sep 30, 2024
17 checks passed
@AntoLC AntoLC deleted the renovate/python-dependencies branch September 30, 2024 10:39
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
dependencies Pull requests that update a dependency file noChangeLog
Projects
None yet
Development

Successfully merging this pull request may close these issues.

1 participant