Skip to content

Commit 18cc9f2

Browse files
Update expected test results
Signed-off-by: Marcel Bochtler <marcel.bochtler@bosch.com>
1 parent 9db72eb commit 18cc9f2

19 files changed

+431
-619
lines changed

tests/data/azure-devops.req-310-expected.json

Lines changed: 58 additions & 53 deletions
Large diffs are not rendered by default.

tests/data/azure-devops.req-312-expected.json

Lines changed: 58 additions & 53 deletions
Large diffs are not rendered by default.

tests/data/azure-devops.req-313-expected.json

Lines changed: 58 additions & 53 deletions
Large diffs are not rendered by default.

tests/data/azure-devops.req-314-expected.json

Lines changed: 58 additions & 53 deletions
Large diffs are not rendered by default.

tests/data/azure-devops.req-38-expected.json

Lines changed: 29 additions & 29 deletions
Original file line numberDiff line numberDiff line change
@@ -317,12 +317,12 @@
317317
"type": "pypi",
318318
"namespace": null,
319319
"name": "certifi",
320-
"version": "2025.10.5",
320+
"version": "2026.1.4",
321321
"qualifiers": {},
322322
"subpath": null,
323323
"primary_language": "Python",
324324
"description": "Python package for providing Mozilla's CA Bundle.\nCertifi: Python SSL Certificates\n================================\n\nCertifi provides Mozilla's carefully curated collection of Root Certificates for\nvalidating the trustworthiness of SSL certificates while verifying the identity\nof TLS hosts. It has been extracted from the `Requests`_ project.\n\nInstallation\n------------\n\n``certifi`` is available on PyPI. Simply install it with ``pip``::\n\n $ pip install certifi\n\nUsage\n-----\n\nTo reference the installed certificate authority (CA) bundle, you can use the\nbuilt-in function::\n\n >>> import certifi\n\n >>> certifi.where()\n '/usr/local/lib/python3.7/site-packages/certifi/cacert.pem'\n\nOr from the command line::\n\n $ python -m certifi\n /usr/local/lib/python3.7/site-packages/certifi/cacert.pem\n\nEnjoy!\n\n.. _`Requests`: https://requests.readthedocs.io/en/master/\n\nAddition/Removal of Certificates\n--------------------------------\n\nCertifi does not support any addition/removal or other modification of the\nCA trust store content. This project is intended to provide a reliable and\nhighly portable root of trust to python deployments. Look to upstream projects\nfor methods to use alternate trust.",
325-
"release_date": "2025-10-05T04:12:14",
325+
"release_date": "2026-01-04T02:42:40",
326326
"parties": [
327327
{
328328
"type": "person",
@@ -349,11 +349,11 @@
349349
"Programming Language :: Python :: 3.9"
350350
],
351351
"homepage_url": "https://github.com/certifi/python-certifi",
352-
"download_url": "https://files.pythonhosted.org/packages/e4/37/af0d2ef3967ac0d6113837b44a4f0bfe1328c2b9763bd5b1744520e5cfed/certifi-2025.10.5-py3-none-any.whl",
353-
"size": 163286,
352+
"download_url": "https://files.pythonhosted.org/packages/e6/ad/3cc14f097111b4de0040c83a525973216457bbeeb63739ef1ed275c1c021/certifi-2026.1.4-py3-none-any.whl",
353+
"size": 152900,
354354
"sha1": null,
355-
"md5": "7b56f7121949a196441739c539fd01be",
356-
"sha256": "0f212c2744a9bb6de0c56639a6f68afe01ecd92d91f14ae897c4fe7bbeeef0de",
355+
"md5": "1dab98768140ad2d8dbc9be8f14a2af9",
356+
"sha256": "9943707519e4add1115f44c2bc244f782c0249876bf51b6599fee1ffbedd685c",
357357
"sha512": null,
358358
"bug_tracking_url": null,
359359
"code_view_url": "https://github.com/certifi/python-certifi",
@@ -373,9 +373,9 @@
373373
"dependencies": [],
374374
"repository_homepage_url": null,
375375
"repository_download_url": null,
376-
"api_data_url": "https://pypi.org/pypi/certifi/2025.10.5/json",
376+
"api_data_url": "https://pypi.org/pypi/certifi/2026.1.4/json",
377377
"datasource_id": null,
378-
"purl": "pkg:pypi/certifi@2025.10.5"
378+
"purl": "pkg:pypi/certifi@2026.1.4"
379379
},
380380
{
381381
"type": "pypi",
@@ -576,17 +576,17 @@
576576
"type": "pypi",
577577
"namespace": null,
578578
"name": "cryptography",
579-
"version": "45.0.7",
579+
"version": "46.0.0",
580580
"qualifiers": {},
581581
"subpath": null,
582582
"primary_language": "Python",
583-
"description": "cryptography is a package which provides cryptographic recipes and primitives to Python developers.\npyca/cryptography\n=================\n\n.. image:: https://img.shields.io/pypi/v/cryptography.svg\n :target: https://pypi.org/project/cryptography/\n :alt: Latest Version\n\n.. image:: https://readthedocs.org/projects/cryptography/badge/?version=latest\n :target: https://cryptography.io\n :alt: Latest Docs\n\n.. image:: https://github.com/pyca/cryptography/workflows/CI/badge.svg?branch=main\n :target: https://github.com/pyca/cryptography/actions?query=workflow%3ACI+branch%3Amain\n\n\n``cryptography`` is a package which provides cryptographic recipes and\nprimitives to Python developers. Our goal is for it to be your \"cryptographic\nstandard library\". It supports Python 3.7+ and PyPy3 7.3.11+.\n\n``cryptography`` includes both high level recipes and low level interfaces to\ncommon cryptographic algorithms such as symmetric ciphers, message digests, and\nkey derivation functions. For example, to encrypt something with\n``cryptography``'s high level symmetric encryption recipe:\n\n.. code-block:: pycon\n\n >>> from cryptography.fernet import Fernet\n >>> # Put this somewhere safe!\n >>> key = Fernet.generate_key()\n >>> f = Fernet(key)\n >>> token = f.encrypt(b\"A really secret message. Not for prying eyes.\")\n >>> token\n b'...'\n >>> f.decrypt(token)\n b'A really secret message. Not for prying eyes.'\n\nYou can find more information in the `documentation`_.\n\nYou can install ``cryptography`` with:\n\n.. code-block:: console\n\n $ pip install cryptography\n\nFor full details see `the installation documentation`_.\n\nDiscussion\n~~~~~~~~~~\n\nIf you run into bugs, you can file them in our `issue tracker`_.\n\nWe maintain a `cryptography-dev`_ mailing list for development discussion.\n\nYou can also join ``#pyca`` on ``irc.libera.chat`` to ask questions or get\ninvolved.\n\nSecurity\n~~~~~~~~\n\nNeed to report a security issue? Please consult our `security reporting`_\ndocumentation.\n\n\n.. _`documentation`: https://cryptography.io/\n.. _`the installation documentation`: https://cryptography.io/en/latest/installation/\n.. _`issue tracker`: https://github.com/pyca/cryptography/issues\n.. _`cryptography-dev`: https://mail.python.org/mailman/listinfo/cryptography-dev\n.. _`security reporting`: https://cryptography.io/en/latest/security/",
584-
"release_date": "2025-09-01T11:14:24",
583+
"description": "cryptography is a package which provides cryptographic recipes and primitives to Python developers.\npyca/cryptography\n=================\n\n.. image:: https://img.shields.io/pypi/v/cryptography.svg\n :target: https://pypi.org/project/cryptography/\n :alt: Latest Version\n\n.. image:: https://readthedocs.org/projects/cryptography/badge/?version=latest\n :target: https://cryptography.io\n :alt: Latest Docs\n\n.. image:: https://github.com/pyca/cryptography/actions/workflows/ci.yml/badge.svg\n :target: https://github.com/pyca/cryptography/actions/workflows/ci.yml?query=branch%3Amain\n\n``cryptography`` is a package which provides cryptographic recipes and\nprimitives to Python developers. Our goal is for it to be your \"cryptographic\nstandard library\". It supports Python 3.8+ and PyPy3 7.3.11+.\n\n``cryptography`` includes both high level recipes and low level interfaces to\ncommon cryptographic algorithms such as symmetric ciphers, message digests, and\nkey derivation functions. For example, to encrypt something with\n``cryptography``'s high level symmetric encryption recipe:\n\n.. code-block:: pycon\n\n >>> from cryptography.fernet import Fernet\n >>> # Put this somewhere safe!\n >>> key = Fernet.generate_key()\n >>> f = Fernet(key)\n >>> token = f.encrypt(b\"A really secret message. Not for prying eyes.\")\n >>> token\n b'...'\n >>> f.decrypt(token)\n b'A really secret message. Not for prying eyes.'\n\nYou can find more information in the `documentation`_.\n\nYou can install ``cryptography`` with:\n\n.. code-block:: console\n\n $ pip install cryptography\n\nFor full details see `the installation documentation`_.\n\nDiscussion\n~~~~~~~~~~\n\nIf you run into bugs, you can file them in our `issue tracker`_.\n\nWe maintain a `cryptography-dev`_ mailing list for development discussion.\n\nYou can also join ``#pyca`` on ``irc.libera.chat`` to ask questions or get\ninvolved.\n\nSecurity\n~~~~~~~~\n\nNeed to report a security issue? Please consult our `security reporting`_\ndocumentation.\n\n\n.. _`documentation`: https://cryptography.io/\n.. _`the installation documentation`: https://cryptography.io/en/latest/installation/\n.. _`issue tracker`: https://github.com/pyca/cryptography/issues\n.. _`cryptography-dev`: https://mail.python.org/mailman/listinfo/cryptography-dev\n.. _`security reporting`: https://cryptography.io/en/latest/security/",
584+
"release_date": "2025-09-16T21:07:03",
585585
"parties": [
586586
{
587587
"type": "person",
588588
"role": "author",
589-
"name": "The cryptography developers <cryptography-dev@python.org>",
589+
"name": null,
590590
"email": "The Python Cryptographic Authority and individual contributors <cryptography-dev@python.org>",
591591
"url": null
592592
}
@@ -607,38 +607,37 @@
607607
"Programming Language :: Python :: 3.11",
608608
"Programming Language :: Python :: 3.12",
609609
"Programming Language :: Python :: 3.13",
610-
"Programming Language :: Python :: 3.7",
610+
"Programming Language :: Python :: 3.14",
611611
"Programming Language :: Python :: 3.8",
612612
"Programming Language :: Python :: 3.9",
613+
"Programming Language :: Python :: Free Threading :: 3 - Stable",
613614
"Programming Language :: Python :: Implementation :: CPython",
614615
"Programming Language :: Python :: Implementation :: PyPy",
615616
"Topic :: Security :: Cryptography"
616617
],
617618
"homepage_url": null,
618-
"download_url": "https://files.pythonhosted.org/packages/eb/ac/59b7790b4ccaed739fc44775ce4645c9b8ce54cbec53edf16c74fd80cb2b/cryptography-45.0.7-cp37-abi3-manylinux2014_x86_64.manylinux_2_17_x86_64.whl",
619-
"size": 4423075,
619+
"download_url": "https://files.pythonhosted.org/packages/da/94/f1c1f30110c05fa5247bf460b17acfd52fa3f5c77e94ba19cff8957dc5e6/cryptography-46.0.0-cp38-abi3-manylinux2014_x86_64.manylinux_2_17_x86_64.whl",
620+
"size": 4562561,
620621
"sha1": null,
621-
"md5": "d7c4a989694c8af7d27560ff4125516f",
622-
"sha256": "3994c809c17fc570c2af12c9b840d7cea85a9fd3e5c0e0491f4fa3c029216d59",
622+
"md5": "4fe77bef21236be92883b98ea2b89580",
623+
"sha256": "c3cd09b1490c1509bf3892bde9cef729795fae4a2fee0621f19be3321beca7e4",
623624
"sha512": null,
624625
"bug_tracking_url": null,
625626
"code_view_url": null,
626627
"vcs_url": null,
627628
"copyright": null,
628-
"license_expression": null,
629-
"declared_license": {
630-
"license": "Apache-2.0 OR BSD-3-Clause"
631-
},
629+
"license_expression": "Apache-2.0 OR BSD-3-Clause",
630+
"declared_license": {},
632631
"notice_text": null,
633632
"source_packages": [],
634633
"file_references": [],
635634
"extra_data": {},
636635
"dependencies": [],
637636
"repository_homepage_url": null,
638637
"repository_download_url": null,
639-
"api_data_url": "https://pypi.org/pypi/cryptography/45.0.7/json",
638+
"api_data_url": "https://pypi.org/pypi/cryptography/46.0.0/json",
640639
"datasource_id": null,
641-
"purl": "pkg:pypi/cryptography@45.0.7"
640+
"purl": "pkg:pypi/cryptography@46.0.0"
642641
},
643642
{
644643
"type": "pypi",
@@ -1328,13 +1327,13 @@
13281327
"package": "pkg:pypi/azure-storage-blob@12.26.0",
13291328
"dependencies": [
13301329
"pkg:pypi/azure-core@1.33.0",
1331-
"pkg:pypi/cryptography@45.0.7",
1330+
"pkg:pypi/cryptography@46.0.0",
13321331
"pkg:pypi/isodate@0.7.2",
13331332
"pkg:pypi/typing-extensions@4.13.2"
13341333
]
13351334
},
13361335
{
1337-
"package": "pkg:pypi/certifi@2025.10.5",
1336+
"package": "pkg:pypi/certifi@2026.1.4",
13381337
"dependencies": []
13391338
},
13401339
{
@@ -1352,9 +1351,10 @@
13521351
"dependencies": []
13531352
},
13541353
{
1355-
"package": "pkg:pypi/cryptography@45.0.7",
1354+
"package": "pkg:pypi/cryptography@46.0.0",
13561355
"dependencies": [
1357-
"pkg:pypi/cffi@1.17.1"
1356+
"pkg:pypi/cffi@1.17.1",
1357+
"pkg:pypi/typing-extensions@4.13.2"
13581358
]
13591359
},
13601360
{
@@ -1369,7 +1369,7 @@
13691369
"package": "pkg:pypi/msrest@0.7.1",
13701370
"dependencies": [
13711371
"pkg:pypi/azure-core@1.33.0",
1372-
"pkg:pypi/certifi@2025.10.5",
1372+
"pkg:pypi/certifi@2026.1.4",
13731373
"pkg:pypi/isodate@0.7.2",
13741374
"pkg:pypi/requests-oauthlib@2.0.0",
13751375
"pkg:pypi/requests@2.32.4"
@@ -1393,7 +1393,7 @@
13931393
{
13941394
"package": "pkg:pypi/requests@2.32.4",
13951395
"dependencies": [
1396-
"pkg:pypi/certifi@2025.10.5",
1396+
"pkg:pypi/certifi@2026.1.4",
13971397
"pkg:pypi/charset-normalizer@3.4.4",
13981398
"pkg:pypi/idna@3.11",
13991399
"pkg:pypi/urllib3@2.2.3"

0 commit comments

Comments
 (0)