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

infra: bump the dev-dependencies group across 4 directories with 21 updates #284

Closed
wants to merge 1 commit into from

Conversation

dependabot[bot]
Copy link
Contributor

@dependabot dependabot bot commented on behalf of github Jul 23, 2024

Updates the requirements on boto3, pytest, requests, amazon-braket-sdk, pennylane, amazon-braket-default-simulator, amazon-braket-pennylane-plugin, awscli, botocore, dask, matplotlib, numpy, pennylane-lightning, qiskit-braket-provider, scikit-learn, scipy, ipykernel, keras, pennylane-lightning[gpu], pydantic and typing-extensions to permit the latest version.
Updates boto3 from 1.34.96 to 1.34.146

Commits
  • 0f01265 Merge branch 'release-1.34.146'
  • e710b4e Bumping version to 1.34.146
  • ee3b7c8 Add changelog entries from botocore
  • 734b18b Merge pull request #4214 from boto/dependabot/github_actions/aws-actions/clos...
  • 3cce496 Bump aws-actions/closed-issue-message
  • d118f86 pin setuptools in ci for python >= 3.12 (#4208)
  • f6203ba Merge branch 'release-1.34.145'
  • 0221eea Merge branch 'release-1.34.145' into develop
  • de349b5 Bumping version to 1.34.145
  • 9668efe Add changelog entries from botocore
  • Additional commits viewable in compare view

Updates pytest from 8.2.0 to 8.3.1

Release notes

Sourced from pytest's releases.

8.3.1

pytest 8.3.1 (2024-07-20)

The 8.3.0 release failed to include the change notes and docs for the release. This patch release remedies this. There are no other changes.

8.3.0

pytest 8.3.0 (2024-07-20)

New features

  • #12231: Added [--xfail-tb]{.title-ref} flag, which turns on traceback output for XFAIL results.

    • If the [--xfail-tb]{.title-ref} flag is not given, tracebacks for XFAIL results are NOT shown.
    • The style of traceback for XFAIL is set with [--tb]{.title-ref}, and can be [auto|long|short|line|native|no]{.title-ref}.
    • Note: Even if you have [--xfail-tb]{.title-ref} set, you won't see them if [--tb=no]{.title-ref}.

    Some history:

    With pytest 8.0, [-rx]{.title-ref} or [-ra]{.title-ref} would not only turn on summary reports for xfail, but also report the tracebacks for xfail results. This caused issues with some projects that utilize xfail, but don't want to see all of the xfail tracebacks.

    This change detaches xfail tracebacks from [-rx]{.title-ref}, and now we turn on xfail tracebacks with [--xfail-tb]{.title-ref}. With this, the default [-rx]{.title-ref}/ [-ra]{.title-ref} behavior is identical to pre-8.0 with respect to xfail tracebacks. While this is a behavior change, it brings default behavior back to pre-8.0.0 behavior, which ultimately was considered the better course of action.

  • #12281: Added support for keyword matching in marker expressions.

    Now tests can be selected by marker keyword arguments. Supported values are int{.interpreted-text role="class"}, (unescaped) str{.interpreted-text role="class"}, bool{.interpreted-text role="class"} & None{.interpreted-text role="data"}.

    See marker examples <marker_keyword_expression_example>{.interpreted-text role="ref"} for more information.

    -- by lovetheguitar{.interpreted-text role="user"}

  • #12567: Added --no-fold-skipped command line option.

    If this option is set, then skipped tests in short summary are no longer grouped by reason but all tests are printed individually with their nodeid in the same way as other statuses.

    -- by pbrezina{.interpreted-text role="user"}

Improvements in existing functionality

  • #12469: The console output now uses the "third-party plugins" terminology, replacing the previously established but confusing and outdated reference to setuptools <setuptools:index>{.interpreted-text role="std:doc"} -- by webknjaz{.interpreted-text role="user"}.

  • #12544, #12545: Python virtual environment detection was improved by checking for a pyvenv.cfg{.interpreted-text role="file"} file, ensuring reliable detection on various platforms -- by zachsnickers{.interpreted-text role="user"}.

... (truncated)

Commits
  • de98446 Prepare release version 8.3.1
  • bd0a042 Merge pull request #12636 from pytest-dev/update-release-notes
  • 664325b doc/changelog: update 8.3.0 notes
  • 19d225d Merge pull request #12635 from pytest-dev/release-8.3.0
  • bc33028 Prepare release version 8.3.0
  • a7d5a8e Merge pull request #12557 from x612skm/maintainence/11771-pypy-3.9-bump
  • ced7072 Add a change note for PR #11771
  • d42b76d Adjust test_errors_in_xfail_skip_expressions for PyPy
  • 9eee45a Bump PyPy runtime to v3.9 @ GHA
  • d489247 Fix caching of parameterized fixtures (#12600)
  • Additional commits viewable in compare view

Updates requests to 2.32.3

Release notes

Sourced from requests's releases.

v2.32.3

2.32.3 (2024-05-29)

Bugfixes

  • Fixed bug breaking the ability to specify custom SSLContexts in sub-classes of HTTPAdapter. (#6716)
  • Fixed issue where Requests started failing to run on Python versions compiled without the ssl module. (#6724)
Changelog

Sourced from requests's changelog.

2.32.3 (2024-05-29)

Bugfixes

  • Fixed bug breaking the ability to specify custom SSLContexts in sub-classes of HTTPAdapter. (#6716)
  • Fixed issue where Requests started failing to run on Python versions compiled without the ssl module. (#6724)

2.32.2 (2024-05-21)

Deprecations

  • To provide a more stable migration for custom HTTPAdapters impacted by the CVE changes in 2.32.0, we've renamed _get_connection to a new public API, get_connection_with_tls_context. Existing custom HTTPAdapters will need to migrate their code to use this new API. get_connection is considered deprecated in all versions of Requests>=2.32.0.

    A minimal (2-line) example has been provided in the linked PR to ease migration, but we strongly urge users to evaluate if their custom adapter is subject to the same issue described in CVE-2024-35195. (#6710)

2.32.1 (2024-05-20)

Bugfixes

  • Add missing test certs to the sdist distributed on PyPI.

2.32.0 (2024-05-20)

Security

  • Fixed an issue where setting verify=False on the first request from a Session will cause subsequent requests to the same origin to also ignore cert verification, regardless of the value of verify. (GHSA-9wx4-h78v-vm56)

Improvements

  • verify=True now reuses a global SSLContext which should improve request time variance between first and subsequent requests. It should also minimize certificate load time on Windows systems when using a Python version built with OpenSSL 3.x. (#6667)
  • Requests now supports optional use of character detection (chardet or charset_normalizer) when repackaged or vendored. This enables pip and other projects to minimize their vendoring surface area. The Response.text() and apparent_encoding APIs will default to utf-8 if neither library is present. (#6702)

... (truncated)

Commits
  • 0e322af v2.32.3
  • e188799 Don't create default SSLContext if ssl module isn't present (#6724)
  • 145b539 Merge pull request #6716 from sigmavirus24/bug/6715
  • b1d73dd Don't use default SSLContext with custom poolmanager kwargs
  • 6badbac Update HISTORY.md
  • a62a2d3 Allow for overriding of specific pool key params
  • 88dce9d v2.32.2
  • c98e4d1 Merge pull request #6710 from nateprewitt/api_rename
  • 92075b3 Add deprecation warning
  • aa1461b Move _get_connection to get_connection_with_tls_context
  • Additional commits viewable in compare view

Updates amazon-braket-sdk from 1.80.0 to 1.83.0

Release notes

Sourced from amazon-braket-sdk's releases.

v1.83.0

Deprecations and Removals

  • Remove OQC

Features

  • Use run_multiple for local batches

Documentation Changes

  • update PR title instructions

v1.82.0

Features

  • Track classical target indices for measurements

Bug Fixes and Other Changes

  • Add test to check classical indices used in measurement are preserved between Circuit and OpenQASM Translations.

v1.81.1

Bug Fixes and Other Changes

  • Error when FreeParameters are named QASM types

v1.81.0

Features

  • Add IQM to get compiled program convenience method

v1.80.1

Bug Fixes and Other Changes

  • docs: add stack exchange badge to the readme
  • Implement braket.ahs.AnalogHamiltonianSimulation.from_ir()
Changelog

Sourced from amazon-braket-sdk's changelog.

v1.83.0 (2024-06-28)

Deprecations and Removals

  • Remove OQC

Features

  • Use run_multiple for local batches

Documentation Changes

  • update PR title instructions

v1.82.0 (2024-06-27)

Features

  • Track classical target indices for measurements

Bug Fixes and Other Changes

  • Add test to check classical indices used in measurement are preserved between Circuit and OpenQASM Translations.

v1.81.1 (2024-06-17)

Bug Fixes and Other Changes

  • Error when FreeParameters are named QASM types

v1.81.0 (2024-06-13)

Features

  • Add IQM to get compiled program convenience method

v1.80.1 (2024-06-10)

Bug Fixes and Other Changes

  • docs: add stack exchange badge to the readme
  • Implement braket.ahs.AnalogHamiltonianSimulation.from_ir()
Commits
  • 1e4a76f prepare release v1.83.0
  • 686aaf8 deprecation: Remove OQC (#1014)
  • dabcb5e feat: Use run_multiple for local batches (#1005)
  • 9f6adcf doc: update PR title instructions (#994)
  • fb307e3 infra: bump thehanimo/pr-title-checker from 1.4.1 to 1.4.2 (#1010)
  • 96b4200 infra: bump pypa/gh-action-pypi-publish from 1.8.14 to 1.9.0 (#1012)
  • 24d4d5f infra: bump actions/checkout from 4.1.1 to 4.1.5 (#967)
  • 12d0d67 infra: bump actions/setup-python from 5.0.0 to 5.1.0 (#931)
  • 239fc81 update development version to v1.82.1.dev0
  • 6cd842e prepare release v1.82.0
  • Additional commits viewable in compare view

Updates boto3 from 1.34.96 to 1.34.146

Commits
  • 0f01265 Merge branch 'release-1.34.146'
  • e710b4e Bumping version to 1.34.146
  • ee3b7c8 Add changelog entries from botocore
  • 734b18b Merge pull request #4214 from boto/dependabot/github_actions/aws-actions/clos...
  • 3cce496 Bump aws-actions/closed-issue-message
  • d118f86 pin setuptools in ci for python >= 3.12 (#4208)
  • f6203ba Merge branch 'release-1.34.145'
  • 0221eea Merge branch 'release-1.34.145' into develop
  • de349b5 Bumping version to 1.34.145
  • 9668efe Add changelog entries from botocore
  • Additional commits viewable in compare view

Updates pennylane from 0.35.1 to 0.37.0

Release notes

Sourced from pennylane's releases.

Release 0.37.0

  • A new default.tensor device is now available for performing tensor network and matrix product state simulations of quantum circuits using the quimb backend. [(#5699)](PennyLaneAI/pennylane#5699) [(#5744)](PennyLaneAI/pennylane#5744) [(#5786)](PennyLaneAI/pennylane#5786) [(#5795)](PennyLaneAI/pennylane#5795)

    Either method can be selected when instantiating the default.tensor device by setting the method keyword argument to "tn" (tensor network) or "mps" (matrix product state).

    There are several templates in PennyLane that are tensor-network focused, which are excellent candidates for the "tn" method for default.tensor. The following example shows how a circuit comprising gates in a tree tensor network architecture can be efficiently simulated using method="tn".

    import pennylane as qml
    n_wires = 16
    dev = qml.device("default.tensor", method="tn")
    def block(weights, wires):
    qml.CNOT(wires=[wires[0], wires[1]])
    qml.RY(weights[0], wires=wires[0])
    qml.RY(weights[1], wires=wires[1])
    n_block_wires = 2
    n_params_block = 2
    n_blocks = qml.TTN.get_n_blocks(range(n_wires), n_block_wires)
    template_weights = [[0.1, -0.3]] * n_blocks
    @​qml.qnode(dev)
    def circuit(template_weights):
    for i in range(n_wires):
    qml.Hadamard(i)
    qml.TTN(range(n_wires), n_block_wires, block, n_params_block, template_weights)
    return qml.expval(qml.Z(n_wires - 1))

    >>> circuit(template_weights)
    0.3839174759751649

    For matrix product state simulations (method="mps"), we can make the execution be approximate by setting max_bond_dim (see the device's documentation for more details). The maximum bond dimension has implications for the speed of the simulation and lets us control the degree of the approximation, as shown in the following example. First, set up the circuit:

    import numpy as np
    n_layers = 10
    n_wires = 10
    initial_shape, weights_shape = qml.SimplifiedTwoDesign.shape(n_layers, n_wires)
    np.random.seed(1967)

... (truncated)

Commits

Updates requests from 2.31.0 to 2.32.3

Release notes

Sourced from requests's releases.

v2.32.3

2.32.3 (2024-05-29)

Bugfixes

  • Fixed bug breaking the ability to specify custom SSLContexts in sub-classes of HTTPAdapter. (#6716)
  • Fixed issue where Requests started failing to run on Python versions compiled without the ssl module. (#6724)
Changelog

Sourced from requests's changelog.

2.32.3 (2024-05-29)

Bugfixes

  • Fixed bug breaking the ability to specify custom SSLContexts in sub-classes of HTTPAdapter. (#6716)
  • Fixed issue where Requests started failing to run on Python versions compiled without the ssl module. (#6724)

2.32.2 (2024-05-21)

Deprecations

  • To provide a more stable migration for custom HTTPAdapters impacted by the CVE changes in 2.32.0, we've renamed _get_connection to a new public API, get_connection_with_tls_context. Existing custom HTTPAdapters will need to migrate their code to use this new API. get_connection is considered deprecated in all versions of Requests>=2.32.0.

    A minimal (2-line) example has been provided in the linked PR to ease migration, but we strongly urge users to evaluate if their custom adapter is subject to the same issue described in CVE-2024-35195. (#6710)

2.32.1 (2024-05-20)

Bugfixes

  • Add missing test certs to the sdist distributed on PyPI.

2.32.0 (2024-05-20)

Security

  • Fixed an issue where setting verify=False on the first request from a Session will cause subsequent requests to the same origin to also ignore cert verification, regardless of the value of verify. (GHSA-9wx4-h78v-vm56)

Improvements

  • verify=True now reuses a global SSLContext which should improve request time variance between first and subsequent requests. It should also minimize certificate load time on Windows systems when using a Python version built with OpenSSL 3.x. (#6667)
  • Requests now supports optional use of character detection (chardet or charset_normalizer) when repackaged or vendored. This enables pip and other projects to minimize their vendoring surface area. The Response.text() and apparent_encoding APIs will default to utf-8 if neither library is present. (#6702)

... (truncated)

Commits
  • 0e322af v2.32.3
  • e188799 Don't create default SSLContext if ssl module isn't present (#6724)
  • 145b539 Merge pull request #6716 from sigmavirus24/bug/6715
  • b1d73dd Don't use default SSLContext with custom poolmanager kwargs
  • 6badbac Update HISTORY.md
  • a62a2d3 Allow for overriding of specific pool key params
  • 88dce9d v2.32.2
  • c98e4d1 Merge pull request #6710 from nateprewitt/api_rename
  • 92075b3 Add deprecation warning
  • aa1461b Move _get_connection to get_connection_with_tls_context
  • Additional commits viewable in compare view

Updates amazon-braket-default-simulator from 1.23.1 to 1.26.0

Release notes

Sourced from amazon-braket-default-simulator's releases.

v1.26.0

Features

  • Introduce run_multiple method

Bug Fixes and Other Changes

  • Ignore qubit_count parameter for JAQCD

v1.25.0

Features

  • Track classical register indices for measurements

Bug Fixes and Other Changes

  • Include measured in noncontiguous qubit map

v1.24.1

Bug Fixes and Other Changes

  • Use csr_matrix.getH() instead of H

v1.24.0

Features

  • support non-contiguous qubit indices local simulator

v1.23.4

Bug Fixes and Other Changes

  • use numpy for float comparison

v1.23.3

Bug Fixes and Other Changes

  • fix signed integer casting

v1.23.2

Bug Fixes and Other Changes

  • Integer division for IntegerLiterals
Changelog

Sourced from amazon-braket-default-simulator's changelog.

v1.26.0 (2024-06-27)

Features

  • Introduce run_multiple method

Bug Fixes and Other Changes

  • Ignore qubit_count parameter for JAQCD

v1.25.0 (2024-06-26)

Features

  • Track classical register indices for measurements

Bug Fixes and Other Changes

  • Include measured in noncontiguous qubit map

v1.24.1 (2024-06-26)

Bug Fixes and Other Changes

  • Use csr_matrix.getH() instead of H

v1.24.0 (2024-06-24)

Features

  • support non-contiguous qubit indices local simulator

v1.23.4 (2024-06-20)

Bug Fixes and Other Changes

  • use numpy for float comparison

v1.23.3 (2024-06-19)

Bug Fixes and Other Changes

  • fix signed integer casting

v1.23.2 (2024-05-02)

Bug Fixes and Other Changes

  • Integer division for IntegerLiterals
Commits
  • 7b52b78 prepare release v1.26.0
  • e93e551 feat: Introduce run_multiple method (#264)
  • dc68323 change: Ignore qubit_count parameter for JAQCD (#269)
  • 3378eaa update development version to v1.25.1.dev0
  • bc5df7b prepare release v1.25.0
  • d663479 fix: Include measured in noncontiguous qubit map (#267)
  • c9730d2 feat: Track classical register indices for measurements (#266)
  • 7e717a2 update development version to v1.24.2.dev0
  • 3f17237 prepare release v1.24.1
  • 1454fb9 fix: Use csr_matrix.getH() instead of H (#268)
  • Additional commits viewable in compare view

Updates amazon-braket-pennylane-plugin from 1.26.0 to 1.28.0

Release notes

Sourced from amazon-braket-pennylane-plugin's releases.

v1.28.0

Features

  • Support batch_execute for BraketLocalQubitDevice

v1.27.6

Bug Fixes and Other Changes

  • Support qml.counts for circuits

v1.27.5

Bug Fixes and Other Changes

  • Replace FreeParameter("b") with FreeParameter("d") in unittests

v1.27.4

Bug Fixes and Other Changes

  • Update autoray to >= 0.6.11

v1.27.3

Bug Fixes and Other Changes

  • pin autoray < 0.6.10

v1.27.2

Bug Fixes and Other Changes

  • Translate Sum for adjoint gradient

v1.27.1

Bug Fixes and Other Changes

  • Correct comment

v1.27.0

Features

  • support LinearCombination as observable
Changelog

Sourced from amazon-braket-pennylane-plugin's changelog.

v1.28.0 (2024-07-01)

Features

  • Support batch_execute for BraketLocalQubitDevice

v1.27.6 (2024-06-18)

Bug Fixes and Other Changes

  • Support qml.counts for circuits

v1.27.5 (2024-06-13)

Bug Fixes and Other Changes

  • Replace FreeParameter("b") with FreeParameter("d") in unittests

v1.27.4 (2024-06-03)

Bug Fixes and Other Changes

  • Update autoray to >= 0.6.11

v1.27.3 (2024-05-14)

Bug Fixes and Other Changes

  • pin autoray < 0.6.10

v1.27.2 (2024-05-08)

Bug Fixes and Other Changes

  • Translate Sum for adjoint gradient

v1.27.1 (2024-05-06)

Bug Fixes and Other Changes

  • Correct comment

v1.27.0 (2024-05-06)

Features

  • support LinearCombination as observable
Commits
  • 9c9e27e prepare release v1.28.0
  • 388dd74 test: Delete OQC integ test (#272)
  • 1377abd feat: Support batch_execute for BraketLocalQubitDevice (#269)
  • dfff7a6 update development version to v1.27.7.dev0
  • eabf16d prepare release v1.27.6
  • 0d5c883 infra: add pr_title_check workflow (#265)
  • d7c232f Support qml.counts for circuits (#267)
  • 7b9f700 update development version to v1.27.6.dev0
  • 2e8e130 prepare release v1.27.5
  • ad9237c change: Replace FreeParameter("b") with FreeParameter("d") in unittests (...
  • Additional commits viewable in compare view

Updates awscli from 1.32.96 to 1.33.28

Commits
  • 10da176 Merge branch 'release-1.33.28'
  • 1ae2f1a Bumping version to 1.33.28
  • 3d30085 Update changelog based on model updates
  • fb789db Remove AWS Mobile Hub customization (#8809)
  • f977384 Merge pull request #8777 from elysahall/awsdocs-07-01-24
  • 6c162b4 Merge pull request #8684 from elysahall/awsdocs-05-20-24
  • e83744d Merge pull request #8776 from elysahall/awsdocs-05-20-24-v2
  • 40b5e38 Merge branch 'release-1.33.27'
  • b5d19ad Merge branch 'release-1.33.27' into develop
  • 86bb5b6 Bumping version to 1.33.27
  • Additional commits viewable in compare view

Updates botocore from 1.34.96 to 1.34.146

Changelog

Sourced from botocore's changelog.

1.34.146

  • api-change:datazone: This release adds 1/ support of register S3 locations of assets in AWS Lake Formation hybrid access mode for DefaultDataLake blueprint. 2/ support of CRUD operations for Asset Filters.
  • api-change:ivs: Documentation update for IVS Low Latency API Reference.
  • api-change:mobile: The mobile client has been removed following the deprecation of the service.
  • api-change:neptune-graph: Amazon Neptune Analytics provides new options for customers to start with smaller graphs at a lower cost. CreateGraph, CreaateGraphImportTask, UpdateGraph and StartImportTask APIs will now allow 32 and 64 for provisioned-memory
  • api-change:redshift-serverless: Adds dualstack support for Redshift Serverless workgroup.

1.34.145

  • api-change:acm-pca: Fix broken waiters for the acm-pca client. Waiters broke in version 1.13.144 of the Boto3 SDK.
  • api-change:connect: Amazon Connect expands search API coverage for additional resources. Search for hierarchy groups by name, ID, tag, or other criteria (new endpoint). Search for agent statuses by name, ID, tag, or other criteria (new endpoint). Search for users by their assigned proficiencies (enhanced endpoint)
  • api-change:ec2: Amazon VPC IP Address Manager (IPAM) now supports Bring-Your-Own-IP (BYOIP) for IP addresses registered with any Internet Registry. This feature uses DNS TXT records to validate ownership of a public IP address range.
  • api-change:firehose: This release 1) Add configurable buffering hints for Snowflake as destination. 2) Add ReadFromTimestamp for MSK As Source. Firehose will start reading data from MSK Cluster using offset associated with this timestamp. 3) Gated public beta release to add Apache Iceberg tables as destination.
  • api-change:ivschat: Documentation update for IVS Chat API Reference.
  • api-change:medialive: AWS Elemental MediaLive now supports the SRT protocol via the new SRT Caller input type.
  • api-change:rds: Updates Amazon RDS documentation to specify an eventual consistency model for DescribePendingMaintenanceActions.
  • api-change:sagemaker: SageMaker Training supports R5, T3 and R5D instances family. And SageMaker Processing supports G5 and R5D instances family.
  • api-change:secretsmanager: Doc only update for Secrets Manager
  • api-change:taxsettings: Set default endpoint for aws partition. Requests from all regions in aws partition will be forward to us-east-1 endpoint.
  • api-change:timestream-query: Doc-only update for TimestreamQuery. Added guidance about the accepted valid value for the QueryPricingModel parameter.
  • api-change:workspaces-thin-client: Documentation update for WorkSpaces Thin Client.
  • bugfix:Waiter: Update waiters to handle expected boolean values when matching errors (boto/botocore#3220 <https://github.com/boto/botocore/issues/3220>__)

1.34.144

  • api-change:acm-pca: Minor refactoring of C2J model for AWS Private CA
  • api-change:arc-zonal-shift: Adds the option to subscribe to get notifications when a zonal autoshift occurs in a region.
  • api-change:globalaccelerator: This feature adds exceptions to the Customer API to avoid throwing Internal Service errors
  • api-change:pinpoint: Add v2 smoke tests and smithy smokeTests trait for SDK testing.
  • api-change:quicksight: Vega ally control options and Support for Reviewed Answers in Topics

1.34.143

  • api-change:batch: This feature allows AWS Batch Jobs with EKS container orchestration type to be run as Multi-Node Parallel Jobs.
  • api-change:bedrock: Add support for contextual grounding check for Guardrails for Amazon Bedrock.
  • api-change:bedrock-agent: Introduces new data sources and chunking strategies for Knowledge bases, advanced parsing logic using FMs, session summary generation, and code interpretation (preview) for Claude V3 Sonnet and Haiku models. Also introduces Prompt Flows (preview) to link prompts, foundational models, and resources.
  • api-change:bedrock-agent-runtime: Introduces query decomposition, enhanced Agents integration with Knowledge bases, session summary generation, and code interpretation (preview) for Claude V3 Sonnet and Haiku models. Also introduces Prompt Flows (preview) to link prompts, foundational models, and resources for end-to-end solutions.
  • api-change:bedrock-runtime: Add support for contextual grounding check and ApplyGuardrail API for Guardrails for Amazon Bedrock.
  • api-change:ec2: Add parameters to enable provisioning IPAM BYOIPv4 space at a Local Zone Network Border Group level
  • api-change:glue: Add recipe step support for recipe node
  • api-change:groundstation: Documentation update specifying OEM ephemeris units of measurement
  • api-change:license-manager-linux-subscriptions: Add support for third party subscription providers, starting with RHEL subscriptions through Red Hat Subscription Manager (RHSM). Additionally, add support for tagging subscription provider resources, and detect when an instance has more than one Linux subscription and notify the customer.

... (truncated)

Commits
  • 336da4e Merge branch 'release-1.34.146'
  • 1f4e799 Bumping version to 1.34.146
  • 6a9031a Update endpoints model
  • fc220db Update to latest models
  • eb21a36 Merge pull request #3226 from nateprewitt/mobilehub_deprecation
  • cc46371 Merge pull request #3225 from boto/dependabot/github_actions/aws-actions/clos...
  • c68aa1a Add changelog
  • 420d816 Remove deprecated AWS Mobile Hub service
  • 0aba3e6 Bump aws-actions/closed-issue-message
  • 79681b9 pin setuptools in ci for python >= 3.12 (#3223)
  • Additional commits viewable in compare view

Updates dask from 2024.4.2 to 2024.7.1

Release notes

Sourced from dask's releases.

2024.7.1

Changes

See the Changelog for more information.

2024.7.0

Changes

See the Changelog for more information.

2024.6.2

Changes

See the Changelog for more information.

2024.6.1

Changes

See the Changelog for more information.

2024.6.0

Changes

... (truncated)

Commits
  • 0a40ba2 bump version to 2024.7.1
  • c9f3e39 Remove and warn of persist usage (#11237)
  • 27ce2f8 Preserve timestamp unit during meta creation (#11233)
  • ca262bc Ensure that dask expr DataFrames are optimized when put into delayed (#11231)
  • 6a04b4e Fixes for d freq deprecation in pandas=3 (#11228)
  • 894a723 bump approx threshold for test_quantile (#10720)
  • b4b33ca Bump xarray-contrib/issue-from-pytest-log from 1.2.8 to 1.3.0 (#11221)
  • 90c176d Bump JamesIves/github-pages-deploy-action from 4.6.1 to 4.6.3 (#11222)
  • 1969a38 bump version to 2024.7.0
  • 8a39abe Only count data that is in memory for xarray sizeof (#11206)
  • Additional commits viewable in compare view

Updates matplotlib from 3.8.4 to 3.9.1

Release notes

Sourced from matplotlib's releases.

REL: 3.9.1

This is the first bugfix release of the 3.9.x series.

This release contains several bug-fixes and adjustments:

  • Add GitHub artifact attestations for sdist and wheels
  • Re-add matplotlib.cm.get_cmap; note this function will still be removed at a later date
  • Allow duplicate backend entry points
  • Fix Axes autoscaling of thin bars at large locations
  • Fix Axes autoscaling with axhspan / axvspan
  • Fix Axes3D autoscaling of Line3DCollection / Poly3DCollection
  • Fix Axes3D mouse interactivity with non-default roll angle
  • Fix box aspect ratios in Axes3D with alternate vertical axis
  • Fix case handling of backends specified as module://...
  • Fix crash with TkAgg on Windows with tk.window_focus: True
  • Fix interactive update of SubFigures
  • Fix interactivity when using the IPython console
  • Fix pickling of AxesWidgets and SubFigures
  • Fix scaling on GTK3Cairo / GTK4Cairo backends
  • Fix text wrapping within SubFigures
  • Promote mpltype Sphinx role to a public extension; note this is only intended for development reasons

REL: 3.9.0

Highlights of this release include:

  • Plotting and Annotation improvements
    • Axes.inset_axes is no longer experimental
    • Legend support for Boxplot
    • Percent sign in pie labels auto-escaped with usetex=True
    • hatch parameter for stackplot
    • Add option to plot only one half of violin plot
    • axhline and axhspan on polar axes
    • Subplot titles can now be automatically aligned
    • axisartist can now be used together with standard Formatters
    • Toggle minorticks on Axis
    • StrMethodFormatter now respects axes.unicode_minus
  • Figure, Axes, and Legend Layout
    • Subfigures now have controllable zorders
    • Getters for xmargin, ymargin and zmargin<...

      Description has been truncated

…pdates

Updates the requirements on [boto3](https://github.com/boto/boto3), [pytest](https://github.com/pytest-dev/pytest), [requests](https://github.com/psf/requests), [amazon-braket-sdk](https://github.com/amazon-braket/amazon-braket-sdk-python), [pennylane](https://github.com/PennyLaneAI/pennylane), [amazon-braket-default-simulator](https://github.com/amazon-braket/amazon-braket-default-simulator-python), [amazon-braket-pennylane-plugin](https://github.com/amazon-braket/amazon-braket-pennylane-plugin-python), [awscli](https://github.com/aws/aws-cli), [botocore](https://github.com/boto/botocore), [dask](https://github.com/dask/dask), [matplotlib](https://github.com/matplotlib/matplotlib), [numpy](https://github.com/numpy/numpy), [pennylane-lightning](https://github.com/PennyLaneAI/pennylane-lightning), [qiskit-braket-provider](https://github.com/qiskit-community/qiskit-braket-provider), [scikit-learn](https://github.com/scikit-learn/scikit-learn), [scipy](https://github.com/scipy/scipy), [ipykernel](https://github.com/ipython/ipykernel), [keras](https://github.com/keras-team/keras), [pennylane-lightning[gpu]](https://github.com/PennyLaneAI/pennylane-lightning), [pydantic](https://github.com/pydantic/pydantic) and [typing-extensions](https://github.com/python/typing_extensions) to permit the latest version.

Updates `boto3` from 1.34.96 to 1.34.146
- [Release notes](https://github.com/boto/boto3/releases)
- [Commits](boto/boto3@1.34.96...1.34.146)

Updates `pytest` from 8.2.0 to 8.3.1
- [Release notes](https://github.com/pytest-dev/pytest/releases)
- [Changelog](https://github.com/pytest-dev/pytest/blob/main/CHANGELOG.rst)
- [Commits](pytest-dev/pytest@8.2.0...8.3.1)

Updates `requests` to 2.32.3
- [Release notes](https://github.com/psf/requests/releases)
- [Changelog](https://github.com/psf/requests/blob/main/HISTORY.md)
- [Commits](psf/requests@v0.2.0...v2.32.3)

Updates `amazon-braket-sdk` from 1.80.0 to 1.83.0
- [Release notes](https://github.com/amazon-braket/amazon-braket-sdk-python/releases)
- [Changelog](https://github.com/amazon-braket/amazon-braket-sdk-python/blob/main/CHANGELOG.md)
- [Commits](amazon-braket/amazon-braket-sdk-python@v1.80.0...v1.83.0)

Updates `boto3` from 1.34.96 to 1.34.146
- [Release notes](https://github.com/boto/boto3/releases)
- [Commits](boto/boto3@1.34.96...1.34.146)

Updates `pennylane` from 0.35.1 to 0.37.0
- [Release notes](https://github.com/PennyLaneAI/pennylane/releases)
- [Commits](PennyLaneAI/pennylane@v0.35.1...v0.37.0)

Updates `requests` from 2.31.0 to 2.32.3
- [Release notes](https://github.com/psf/requests/releases)
- [Changelog](https://github.com/psf/requests/blob/main/HISTORY.md)
- [Commits](psf/requests@v0.2.0...v2.32.3)

Updates `amazon-braket-default-simulator` from 1.23.1 to 1.26.0
- [Release notes](https://github.com/amazon-braket/amazon-braket-default-simulator-python/releases)
- [Changelog](https://github.com/amazon-braket/amazon-braket-default-simulator-python/blob/main/CHANGELOG.md)
- [Commits](amazon-braket/amazon-braket-default-simulator-python@v1.23.1...v1.26.0)

Updates `amazon-braket-pennylane-plugin` from 1.26.0 to 1.28.0
- [Release notes](https://github.com/amazon-braket/amazon-braket-pennylane-plugin-python/releases)
- [Changelog](https://github.com/amazon-braket/amazon-braket-pennylane-plugin-python/blob/main/CHANGELOG.md)
- [Commits](amazon-braket/amazon-braket-pennylane-plugin-python@v1.26.0...v1.28.0)

Updates `awscli` from 1.32.96 to 1.33.28
- [Release notes](https://github.com/aws/aws-cli/releases)
- [Commits](aws/aws-cli@1.32.96...1.33.28)

Updates `botocore` from 1.34.96 to 1.34.146
- [Changelog](https://github.com/boto/botocore/blob/develop/CHANGELOG.rst)
- [Commits](boto/botocore@1.34.96...1.34.146)

Updates `dask` from 2024.4.2 to 2024.7.1
- [Release notes](https://github.com/dask/dask/releases)
- [Changelog](https://github.com/dask/dask/blob/main/docs/release-procedure.md)
- [Commits](dask/dask@2024.4.2...2024.7.1)

Updates `matplotlib` from 3.8.4 to 3.9.1
- [Release notes](https://github.com/matplotlib/matplotlib/releases)
- [Commits](matplotlib/matplotlib@v3.8.4...v3.9.1)

Updates `numpy` from 1.26.4 to 2.0.1
- [Release notes](https://github.com/numpy/numpy/releases)
- [Changelog](https://github.com/numpy/numpy/blob/main/doc/RELEASE_WALKTHROUGH.rst)
- [Commits](numpy/numpy@v1.26.4...v2.0.1)

Updates `pennylane-lightning` from 0.35.1 to 0.37.0
- [Release notes](https://github.com/PennyLaneAI/pennylane-lightning/releases)
- [Commits](PennyLaneAI/pennylane-lightning@v0.35.1...v0.37.0)

Updates `qiskit-braket-provider` from 0.2.0 to 0.4.0
- [Release notes](https://github.com/qiskit-community/qiskit-braket-provider/releases)
- [Commits](qiskit-community/qiskit-braket-provider@v0.2.0...v0.4.0)

Updates `scikit-learn` from 1.4.2 to 1.5.1
- [Release notes](https://github.com/scikit-learn/scikit-learn/releases)
- [Commits](scikit-learn/scikit-learn@1.4.2...1.5.1)

Updates `scipy` from 1.13.0 to 1.14.0
- [Release notes](https://github.com/scipy/scipy/releases)
- [Commits](scipy/scipy@v1.13.0...v1.14.0)

Updates `amazon-braket-sdk` from 1.80.0 to 1.83.0
- [Release notes](https://github.com/amazon-braket/amazon-braket-sdk-python/releases)
- [Changelog](https://github.com/amazon-braket/amazon-braket-sdk-python/blob/main/CHANGELOG.md)
- [Commits](amazon-braket/amazon-braket-sdk-python@v1.80.0...v1.83.0)

Updates `boto3` from 1.34.96 to 1.34.146
- [Release notes](https://github.com/boto/boto3/releases)
- [Commits](boto/boto3@1.34.96...1.34.146)

Updates `pennylane` from 0.35.1 to 0.37.0
- [Release notes](https://github.com/PennyLaneAI/pennylane/releases)
- [Commits](PennyLaneAI/pennylane@v0.35.1...v0.37.0)

Updates `requests` from 2.31.0 to 2.32.3
- [Release notes](https://github.com/psf/requests/releases)
- [Changelog](https://github.com/psf/requests/blob/main/HISTORY.md)
- [Commits](psf/requests@v0.2.0...v2.32.3)

Updates `amazon-braket-default-simulator` from 1.23.1 to 1.26.0
- [Release notes](https://github.com/amazon-braket/amazon-braket-default-simulator-python/releases)
- [Changelog](https://github.com/amazon-braket/amazon-braket-default-simulator-python/blob/main/CHANGELOG.md)
- [Commits](amazon-braket/amazon-braket-default-simulator-python@v1.23.1...v1.26.0)

Updates `amazon-braket-pennylane-plugin` from 1.26.0 to 1.28.0
- [Release notes](https://github.com/amazon-braket/amazon-braket-pennylane-plugin-python/releases)
- [Changelog](https://github.com/amazon-braket/amazon-braket-pennylane-plugin-python/blob/main/CHANGELOG.md)
- [Commits](amazon-braket/amazon-braket-pennylane-plugin-python@v1.26.0...v1.28.0)

Updates `awscli` from 1.32.96 to 1.33.28
- [Release notes](https://github.com/aws/aws-cli/releases)
- [Commits](aws/aws-cli@1.32.96...1.33.28)

Updates `botocore` from 1.34.96 to 1.34.146
- [Changelog](https://github.com/boto/botocore/blob/develop/CHANGELOG.rst)
- [Commits](boto/botocore@1.34.96...1.34.146)

Updates `dask` from 2024.4.2 to 2024.7.1
- [Release notes](https://github.com/dask/dask/releases)
- [Changelog](https://github.com/dask/dask/blob/main/docs/release-procedure.md)
- [Commits](dask/dask@2024.4.2...2024.7.1)

Updates `matplotlib` from 3.8.4 to 3.9.1
- [Release notes](https://github.com/matplotlib/matplotlib/releases)
- [Commits](matplotlib/matplotlib@v3.8.4...v3.9.1)

Updates `numpy` from 1.26.4 to 2.0.1
- [Release notes](https://github.com/numpy/numpy/releases)
- [Changelog](https://github.com/numpy/numpy/blob/main/doc/RELEASE_WALKTHROUGH.rst)
- [Commits](numpy/numpy@v1.26.4...v2.0.1)

Updates `scikit-learn` from 1.4.2 to 1.5.1
- [Release notes](https://github.com/scikit-learn/scikit-learn/releases)
- [Commits](scikit-learn/scikit-learn@1.4.2...1.5.1)

Updates `scipy` from 1.13.0 to 1.14.0
- [Release notes](https://github.com/scipy/scipy/releases)
- [Commits](scipy/scipy@v1.13.0...v1.14.0)

Updates `ipykernel` from 6.29.4 to 6.29.5
- [Release notes](https://github.com/ipython/ipykernel/releases)
- [Changelog](https://github.com/ipython/ipykernel/blob/v6.29.5/CHANGELOG.md)
- [Commits](ipython/ipykernel@v6.29.4...v6.29.5)

Updates `keras` from 3.3.3 to 3.4.1
- [Release notes](https://github.com/keras-team/keras/releases)
- [Commits](keras-team/keras@v3.3.3...v3.4.1)

Updates `pennylane-lightning[gpu]` from 0.35.1 to 0.37.0
- [Release notes](https://github.com/PennyLaneAI/pennylane-lightning/releases)
- [Commits](PennyLaneAI/pennylane-lightning@v0.35.1...v0.37.0)

Updates `pydantic` from 2.7.1 to 2.8.2
- [Release notes](https://github.com/pydantic/pydantic/releases)
- [Changelog](https://github.com/pydantic/pydantic/blob/main/HISTORY.md)
- [Commits](pydantic/pydantic@v2.7.1...v2.8.2)

Updates `typing-extensions` from 4.11.0 to 4.12.2
- [Release notes](https://github.com/python/typing_extensions/releases)
- [Changelog](https://github.com/python/typing_extensions/blob/main/CHANGELOG.md)
- [Commits](python/typing_extensions@4.11.0...4.12.2)

Updates `amazon-braket-sdk` from 1.80.0 to 1.83.0
- [Release notes](https://github.com/amazon-braket/amazon-braket-sdk-python/releases)
- [Changelog](https://github.com/amazon-braket/amazon-braket-sdk-python/blob/main/CHANGELOG.md)
- [Commits](amazon-braket/amazon-braket-sdk-python@v1.80.0...v1.83.0)

Updates `boto3` from 1.34.96 to 1.34.146
- [Release notes](https://github.com/boto/boto3/releases)
- [Commits](boto/boto3@1.34.96...1.34.146)

Updates `pennylane` from 0.35.1 to 0.37.0
- [Release notes](https://github.com/PennyLaneAI/pennylane/releases)
- [Commits](PennyLaneAI/pennylane@v0.35.1...v0.37.0)

Updates `requests` from 2.31.0 to 2.32.3
- [Release notes](https://github.com/psf/requests/releases)
- [Changelog](https://github.com/psf/requests/blob/main/HISTORY.md)
- [Commits](psf/requests@v0.2.0...v2.32.3)

Updates `amazon-braket-default-simulator` from 1.23.1 to 1.26.0
- [Release notes](https://github.com/amazon-braket/amazon-braket-default-simulator-python/releases)
- [Changelog](https://github.com/amazon-braket/amazon-braket-default-simulator-python/blob/main/CHANGELOG.md)
- [Commits](amazon-braket/amazon-braket-default-simulator-python@v1.23.1...v1.26.0)

Updates `amazon-braket-pennylane-plugin` from 1.26.0 to 1.28.0
- [Release notes](https://github.com/amazon-braket/amazon-braket-pennylane-plugin-python/releases)
- [Changelog](https://github.com/amazon-braket/amazon-braket-pennylane-plugin-python/blob/main/CHANGELOG.md)
- [Commits](amazon-braket/amazon-braket-pennylane-plugin-python@v1.26.0...v1.28.0)

Updates `awscli` from 1.32.96 to 1.33.28
- [Release notes](https://github.com/aws/aws-cli/releases)
- [Commits](aws/aws-cli@1.32.96...1.33.28)

Updates `botocore` from 1.34.96 to 1.34.146
- [Changelog](https://github.com/boto/botocore/blob/develop/CHANGELOG.rst)
- [Commits](boto/botocore@1.34.96...1.34.146)

Updates `dask` from 2024.4.2 to 2024.7.1
- [Release notes](https://github.com/dask/dask/releases)
- [Changelog](https://github.com/dask/dask/blob/main/docs/release-procedure.md)
- [Commits](dask/dask@2024.4.2...2024.7.1)

Updates `matplotlib` from 3.8.4 to 3.9.1
- [Release notes](https://github.com/matplotlib/matplotlib/releases)
- [Commits](matplotlib/matplotlib@v3.8.4...v3.9.1)

Updates `numpy` from 1.26.4 to 2.0.1
- [Release notes](https://github.com/numpy/numpy/releases)
- [Changelog](https://github.com/numpy/numpy/blob/main/doc/RELEASE_WALKTHROUGH.rst)
- [Commits](numpy/numpy@v1.26.4...v2.0.1)

Updates `pennylane-lightning` from 0.35.1 to 0.37.0
- [Release notes](https://github.com/PennyLaneAI/pennylane-lightning/releases)
- [Commits](PennyLaneAI/pennylane-lightning@v0.35.1...v0.37.0)

Updates `scikit-learn` from 1.4.2 to 1.5.1
- [Release notes](https://github.com/scikit-learn/scikit-learn/releases)
- [Commits](scikit-learn/scikit-learn@1.4.2...1.5.1)

Updates `scipy` from 1.13.0 to 1.14.0
- [Release notes](https://github.com/scipy/scipy/releases)
- [Commits](scipy/scipy@v1.13.0...v1.14.0)

Updates `ipykernel` from 6.29.4 to 6.29.5
- [Release notes](https://github.com/ipython/ipykernel/releases)
- [Changelog](https://github.com/ipython/ipykernel/blob/v6.29.5/CHANGELOG.md)
- [Commits](ipython/ipykernel@v6.29.4...v6.29.5)

Updates `keras` from 2.15.0 to 3.4.1
- [Release notes](https://github.com/keras-team/keras/releases)
- [Commits](keras-team/keras@v3.3.3...v3.4.1)

Updates `pydantic` from 2.7.1 to 2.8.2
- [Release notes](https://github.com/pydantic/pydantic/releases)
- [Changelog](https://github.com/pydantic/pydantic/blob/main/HISTORY.md)
- [Commits](pydantic/pydantic@v2.7.1...v2.8.2)

Updates `typing-extensions` from 4.11.0 to 4.12.2
- [Release notes](https://github.com/python/typing_extensions/releases)
- [Changelog](https://github.com/python/typing_extensions/blob/main/CHANGELOG.md)
- [Commits](python/typing_extensions@4.11.0...4.12.2)

---
updated-dependencies:
- dependency-name: boto3
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: dev-dependencies
- dependency-name: pytest
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: dev-dependencies
- dependency-name: requests
  dependency-type: direct:production
  dependency-group: dev-dependencies
- dependency-name: amazon-braket-sdk
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: dev-dependencies
- dependency-name: boto3
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: dev-dependencies
- dependency-name: pennylane
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: dev-dependencies
- dependency-name: requests
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: dev-dependencies
- dependency-name: amazon-braket-default-simulator
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: dev-dependencies
- dependency-name: amazon-braket-pennylane-plugin
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: dev-dependencies
- dependency-name: awscli
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: dev-dependencies
- dependency-name: botocore
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: dev-dependencies
- dependency-name: dask
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: dev-dependencies
- dependency-name: matplotlib
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: dev-dependencies
- dependency-name: numpy
  dependency-type: direct:production
  update-type: version-update:semver-major
  dependency-group: dev-dependencies
- dependency-name: pennylane-lightning
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: dev-dependencies
- dependency-name: qiskit-braket-provider
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: dev-dependencies
- dependency-name: scikit-learn
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: dev-dependencies
- dependency-name: scipy
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: dev-dependencies
- dependency-name: amazon-braket-sdk
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: dev-dependencies
- dependency-name: boto3
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: dev-dependencies
- dependency-name: pennylane
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: dev-dependencies
- dependency-name: requests
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: dev-dependencies
- dependency-name: amazon-braket-default-simulator
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: dev-dependencies
- dependency-name: amazon-braket-pennylane-plugin
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: dev-dependencies
- dependency-name: awscli
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: dev-dependencies
- dependency-name: botocore
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: dev-dependencies
- dependency-name: dask
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: dev-dependencies
- dependency-name: matplotlib
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: dev-dependencies
- dependency-name: numpy
  dependency-type: direct:production
  update-type: version-update:semver-major
  dependency-group: dev-dependencies
- dependency-name: scikit-learn
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: dev-dependencies
- dependency-name: scipy
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: dev-dependencies
- dependency-name: ipykernel
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: dev-dependencies
- dependency-name: keras
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: dev-dependencies
- dependency-name: pennylane-lightning[gpu]
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: dev-dependencies
- dependency-name: pydantic
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: dev-dependencies
- dependency-name: typing-extensions
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: dev-dependencies
- dependency-name: amazon-braket-sdk
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: dev-dependencies
- dependency-name: boto3
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: dev-dependencies
- dependency-name: pennylane
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: dev-dependencies
- dependency-name: requests
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: dev-dependencies
- dependency-name: amazon-braket-default-simulator
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: dev-dependencies
- dependency-name: amazon-braket-pennylane-plugin
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: dev-dependencies
- dependency-name: awscli
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: dev-dependencies
- dependency-name: botocore
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: dev-dependencies
- dependency-name: dask
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: dev-dependencies
- dependency-name: matplotlib
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: dev-dependencies
- dependency-name: numpy
  dependency-type: direct:production
  update-type: version-update:semver-major
  dependency-group: dev-dependencies
- dependency-name: pennylane-lightning
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: dev-dependencies
- dependency-name: scikit-learn
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: dev-dependencies
- dependency-name: scipy
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: dev-dependencies
- dependency-name: ipykernel
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: dev-dependencies
- dependency-name: keras
  dependency-type: direct:production
  update-type: version-update:semver-major
  dependency-group: dev-dependencies
- dependency-name: pydantic
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: dev-dependencies
- dependency-name: typing-extensions
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: dev-dependencies
...

Signed-off-by: dependabot[bot] <[email protected]>
Copy link
Contributor Author

dependabot bot commented on behalf of github Jul 29, 2024

Superseded by #285.

@dependabot dependabot bot closed this Jul 29, 2024
@dependabot dependabot bot deleted the dependabot/pip/dev-dependencies-6b39d225b9 branch July 29, 2024 23:58
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 python Pull requests that update Python code
Projects
None yet
Development

Successfully merging this pull request may close these issues.

0 participants