Skip to content

Commit b0fe278

Browse files
Updated expected test results
Signed-off-by: Marcel Bochtler <[email protected]>
1 parent 9db72eb commit b0fe278

13 files changed

+194
-196
lines changed

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

Lines changed: 22 additions & 21 deletions
Original file line numberDiff line numberDiff line change
@@ -315,12 +315,12 @@
315315
"type": "pypi",
316316
"namespace": null,
317317
"name": "certifi",
318-
"version": "2025.10.5",
318+
"version": "2025.11.12",
319319
"qualifiers": {},
320320
"subpath": null,
321321
"primary_language": "Python",
322322
"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.",
323-
"release_date": "2025-10-05T04:12:14",
323+
"release_date": "2025-11-12T02:54:49",
324324
"parties": [
325325
{
326326
"type": "person",
@@ -347,11 +347,11 @@
347347
"Programming Language :: Python :: 3.9"
348348
],
349349
"homepage_url": "https://github.com/certifi/python-certifi",
350-
"download_url": "https://files.pythonhosted.org/packages/e4/37/af0d2ef3967ac0d6113837b44a4f0bfe1328c2b9763bd5b1744520e5cfed/certifi-2025.10.5-py3-none-any.whl",
351-
"size": 163286,
350+
"download_url": "https://files.pythonhosted.org/packages/70/7d/9bc192684cea499815ff478dfcdc13835ddf401365057044fb721ec6bddb/certifi-2025.11.12-py3-none-any.whl",
351+
"size": 159438,
352352
"sha1": null,
353-
"md5": "7b56f7121949a196441739c539fd01be",
354-
"sha256": "0f212c2744a9bb6de0c56639a6f68afe01ecd92d91f14ae897c4fe7bbeeef0de",
353+
"md5": "7cf85392819e7d6f24c8589826df5d95",
354+
"sha256": "97de8790030bbd5c2d96b7ec782fc2f7820ef8dba6db909ccf95449f2d062d4b",
355355
"sha512": null,
356356
"bug_tracking_url": null,
357357
"code_view_url": "https://github.com/certifi/python-certifi",
@@ -371,9 +371,9 @@
371371
"dependencies": [],
372372
"repository_homepage_url": null,
373373
"repository_download_url": null,
374-
"api_data_url": "https://pypi.org/pypi/certifi/2025.10.5/json",
374+
"api_data_url": "https://pypi.org/pypi/certifi/2025.11.12/json",
375375
"datasource_id": null,
376-
"purl": "pkg:pypi/certifi@2025.10.5"
376+
"purl": "pkg:pypi/certifi@2025.11.12"
377377
},
378378
{
379379
"type": "pypi",
@@ -522,12 +522,12 @@
522522
"type": "pypi",
523523
"namespace": null,
524524
"name": "click",
525-
"version": "8.3.0",
525+
"version": "8.3.1",
526526
"qualifiers": {},
527527
"subpath": null,
528528
"primary_language": "Python",
529529
"description": "Composable command line interface toolkit\n<div align=\"center\"><img src=\"https://raw.githubusercontent.com/pallets/click/refs/heads/stable/docs/_static/click-name.svg\" alt=\"\" height=\"150\"></div>\n\n# Click\n\nClick is a Python package for creating beautiful command line interfaces\nin a composable way with as little code as necessary. It's the \"Command\nLine Interface Creation Kit\". It's highly configurable but comes with\nsensible defaults out of the box.\n\nIt aims to make the process of writing command line tools quick and fun\nwhile also preventing any frustration caused by the inability to\nimplement an intended CLI API.\n\nClick in three points:\n\n- Arbitrary nesting of commands\n- Automatic help page generation\n- Supports lazy loading of subcommands at runtime\n\n\n## A Simple Example\n\n```python\nimport click\n\[email protected]()\[email protected](\"--count\", default=1, help=\"Number of greetings.\")\[email protected](\"--name\", prompt=\"Your name\", help=\"The person to greet.\")\ndef hello(count, name):\n \"\"\"Simple program that greets NAME for a total of COUNT times.\"\"\"\n for _ in range(count):\n click.echo(f\"Hello, {name}!\")\n\nif __name__ == '__main__':\n hello()\n```\n\n```\n$ python hello.py --count=3\nYour name: Click\nHello, Click!\nHello, Click!\nHello, Click!\n```\n\n\n## Donate\n\nThe Pallets organization develops and supports Click and other popular\npackages. In order to grow the community of contributors and users, and\nallow the maintainers to devote more time to the projects, [please\ndonate today][].\n\n[please donate today]: https://palletsprojects.com/donate\n\n## Contributing\n\nSee our [detailed contributing documentation][contrib] for many ways to\ncontribute, including reporting issues, requesting features, asking or answering\nquestions, and making PRs.\n\n[contrib]: https://palletsprojects.com/contributing/",
530-
"release_date": "2025-09-18T17:32:22",
530+
"release_date": "2025-11-15T20:45:41",
531531
"parties": [
532532
{
533533
"type": "person",
@@ -545,11 +545,11 @@
545545
"Typing :: Typed"
546546
],
547547
"homepage_url": null,
548-
"download_url": "https://files.pythonhosted.org/packages/db/d3/9dcc0f5797f070ec8edf30fbadfb200e71d9db6b84d211e3b2085a7589a0/click-8.3.0-py3-none-any.whl",
549-
"size": 107295,
548+
"download_url": "https://files.pythonhosted.org/packages/98/78/01c019cdb5d6498122777c1a43056ebb3ebfeef2076d9d026bfe15583b2b/click-8.3.1-py3-none-any.whl",
549+
"size": 108274,
550550
"sha1": null,
551-
"md5": "dd99757a403a5728bb37a5cab4d46c83",
552-
"sha256": "9b9f285302c6e3064f4330c05f05b81945b2a39544279343e6e7c5f27a9baddc",
551+
"md5": "f032502934a5979330da77e3f09d889c",
552+
"sha256": "981153a64e25f12d547d3426c367a4857371575ee7ad18df2a6183ab0545b2a6",
553553
"sha512": null,
554554
"bug_tracking_url": null,
555555
"code_view_url": "https://github.com/pallets/click/",
@@ -564,9 +564,9 @@
564564
"dependencies": [],
565565
"repository_homepage_url": null,
566566
"repository_download_url": null,
567-
"api_data_url": "https://pypi.org/pypi/click/8.3.0/json",
567+
"api_data_url": "https://pypi.org/pypi/click/8.3.1/json",
568568
"datasource_id": null,
569-
"purl": "pkg:pypi/[email protected].0"
569+
"purl": "pkg:pypi/[email protected].1"
570570
},
571571
{
572572
"type": "pypi",
@@ -1267,7 +1267,7 @@
12671267
]
12681268
},
12691269
{
1270-
"package": "pkg:pypi/certifi@2025.10.5",
1270+
"package": "pkg:pypi/certifi@2025.11.12",
12711271
"dependencies": []
12721272
},
12731273
{
@@ -1281,13 +1281,14 @@
12811281
"dependencies": []
12821282
},
12831283
{
1284-
"package": "pkg:pypi/[email protected].0",
1284+
"package": "pkg:pypi/[email protected].1",
12851285
"dependencies": []
12861286
},
12871287
{
12881288
"package": "pkg:pypi/[email protected]",
12891289
"dependencies": [
1290-
"pkg:pypi/[email protected]"
1290+
"pkg:pypi/[email protected]",
1291+
"pkg:pypi/[email protected]"
12911292
]
12921293
},
12931294
{
@@ -1302,7 +1303,7 @@
13021303
"package": "pkg:pypi/[email protected]",
13031304
"dependencies": [
13041305
"pkg:pypi/[email protected]",
1305-
"pkg:pypi/certifi@2025.10.5",
1306+
"pkg:pypi/certifi@2025.11.12",
13061307
"pkg:pypi/[email protected]",
13071308
"pkg:pypi/[email protected]",
13081309
"pkg:pypi/[email protected]"
@@ -1326,7 +1327,7 @@
13261327
{
13271328
"package": "pkg:pypi/[email protected]",
13281329
"dependencies": [
1329-
"pkg:pypi/certifi@2025.10.5",
1330+
"pkg:pypi/certifi@2025.11.12",
13301331
"pkg:pypi/[email protected]",
13311332
"pkg:pypi/[email protected]",
13321333
"pkg:pypi/[email protected]"

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

Lines changed: 22 additions & 21 deletions
Original file line numberDiff line numberDiff line change
@@ -315,12 +315,12 @@
315315
"type": "pypi",
316316
"namespace": null,
317317
"name": "certifi",
318-
"version": "2025.10.5",
318+
"version": "2025.11.12",
319319
"qualifiers": {},
320320
"subpath": null,
321321
"primary_language": "Python",
322322
"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.",
323-
"release_date": "2025-10-05T04:12:14",
323+
"release_date": "2025-11-12T02:54:49",
324324
"parties": [
325325
{
326326
"type": "person",
@@ -347,11 +347,11 @@
347347
"Programming Language :: Python :: 3.9"
348348
],
349349
"homepage_url": "https://github.com/certifi/python-certifi",
350-
"download_url": "https://files.pythonhosted.org/packages/e4/37/af0d2ef3967ac0d6113837b44a4f0bfe1328c2b9763bd5b1744520e5cfed/certifi-2025.10.5-py3-none-any.whl",
351-
"size": 163286,
350+
"download_url": "https://files.pythonhosted.org/packages/70/7d/9bc192684cea499815ff478dfcdc13835ddf401365057044fb721ec6bddb/certifi-2025.11.12-py3-none-any.whl",
351+
"size": 159438,
352352
"sha1": null,
353-
"md5": "7b56f7121949a196441739c539fd01be",
354-
"sha256": "0f212c2744a9bb6de0c56639a6f68afe01ecd92d91f14ae897c4fe7bbeeef0de",
353+
"md5": "7cf85392819e7d6f24c8589826df5d95",
354+
"sha256": "97de8790030bbd5c2d96b7ec782fc2f7820ef8dba6db909ccf95449f2d062d4b",
355355
"sha512": null,
356356
"bug_tracking_url": null,
357357
"code_view_url": "https://github.com/certifi/python-certifi",
@@ -371,9 +371,9 @@
371371
"dependencies": [],
372372
"repository_homepage_url": null,
373373
"repository_download_url": null,
374-
"api_data_url": "https://pypi.org/pypi/certifi/2025.10.5/json",
374+
"api_data_url": "https://pypi.org/pypi/certifi/2025.11.12/json",
375375
"datasource_id": null,
376-
"purl": "pkg:pypi/certifi@2025.10.5"
376+
"purl": "pkg:pypi/certifi@2025.11.12"
377377
},
378378
{
379379
"type": "pypi",
@@ -522,12 +522,12 @@
522522
"type": "pypi",
523523
"namespace": null,
524524
"name": "click",
525-
"version": "8.3.0",
525+
"version": "8.3.1",
526526
"qualifiers": {},
527527
"subpath": null,
528528
"primary_language": "Python",
529529
"description": "Composable command line interface toolkit\n<div align=\"center\"><img src=\"https://raw.githubusercontent.com/pallets/click/refs/heads/stable/docs/_static/click-name.svg\" alt=\"\" height=\"150\"></div>\n\n# Click\n\nClick is a Python package for creating beautiful command line interfaces\nin a composable way with as little code as necessary. It's the \"Command\nLine Interface Creation Kit\". It's highly configurable but comes with\nsensible defaults out of the box.\n\nIt aims to make the process of writing command line tools quick and fun\nwhile also preventing any frustration caused by the inability to\nimplement an intended CLI API.\n\nClick in three points:\n\n- Arbitrary nesting of commands\n- Automatic help page generation\n- Supports lazy loading of subcommands at runtime\n\n\n## A Simple Example\n\n```python\nimport click\n\[email protected]()\[email protected](\"--count\", default=1, help=\"Number of greetings.\")\[email protected](\"--name\", prompt=\"Your name\", help=\"The person to greet.\")\ndef hello(count, name):\n \"\"\"Simple program that greets NAME for a total of COUNT times.\"\"\"\n for _ in range(count):\n click.echo(f\"Hello, {name}!\")\n\nif __name__ == '__main__':\n hello()\n```\n\n```\n$ python hello.py --count=3\nYour name: Click\nHello, Click!\nHello, Click!\nHello, Click!\n```\n\n\n## Donate\n\nThe Pallets organization develops and supports Click and other popular\npackages. In order to grow the community of contributors and users, and\nallow the maintainers to devote more time to the projects, [please\ndonate today][].\n\n[please donate today]: https://palletsprojects.com/donate\n\n## Contributing\n\nSee our [detailed contributing documentation][contrib] for many ways to\ncontribute, including reporting issues, requesting features, asking or answering\nquestions, and making PRs.\n\n[contrib]: https://palletsprojects.com/contributing/",
530-
"release_date": "2025-09-18T17:32:22",
530+
"release_date": "2025-11-15T20:45:41",
531531
"parties": [
532532
{
533533
"type": "person",
@@ -545,11 +545,11 @@
545545
"Typing :: Typed"
546546
],
547547
"homepage_url": null,
548-
"download_url": "https://files.pythonhosted.org/packages/db/d3/9dcc0f5797f070ec8edf30fbadfb200e71d9db6b84d211e3b2085a7589a0/click-8.3.0-py3-none-any.whl",
549-
"size": 107295,
548+
"download_url": "https://files.pythonhosted.org/packages/98/78/01c019cdb5d6498122777c1a43056ebb3ebfeef2076d9d026bfe15583b2b/click-8.3.1-py3-none-any.whl",
549+
"size": 108274,
550550
"sha1": null,
551-
"md5": "dd99757a403a5728bb37a5cab4d46c83",
552-
"sha256": "9b9f285302c6e3064f4330c05f05b81945b2a39544279343e6e7c5f27a9baddc",
551+
"md5": "f032502934a5979330da77e3f09d889c",
552+
"sha256": "981153a64e25f12d547d3426c367a4857371575ee7ad18df2a6183ab0545b2a6",
553553
"sha512": null,
554554
"bug_tracking_url": null,
555555
"code_view_url": "https://github.com/pallets/click/",
@@ -564,9 +564,9 @@
564564
"dependencies": [],
565565
"repository_homepage_url": null,
566566
"repository_download_url": null,
567-
"api_data_url": "https://pypi.org/pypi/click/8.3.0/json",
567+
"api_data_url": "https://pypi.org/pypi/click/8.3.1/json",
568568
"datasource_id": null,
569-
"purl": "pkg:pypi/[email protected].0"
569+
"purl": "pkg:pypi/[email protected].1"
570570
},
571571
{
572572
"type": "pypi",
@@ -1267,7 +1267,7 @@
12671267
]
12681268
},
12691269
{
1270-
"package": "pkg:pypi/certifi@2025.10.5",
1270+
"package": "pkg:pypi/certifi@2025.11.12",
12711271
"dependencies": []
12721272
},
12731273
{
@@ -1281,13 +1281,14 @@
12811281
"dependencies": []
12821282
},
12831283
{
1284-
"package": "pkg:pypi/[email protected].0",
1284+
"package": "pkg:pypi/[email protected].1",
12851285
"dependencies": []
12861286
},
12871287
{
12881288
"package": "pkg:pypi/[email protected]",
12891289
"dependencies": [
1290-
"pkg:pypi/[email protected]"
1290+
"pkg:pypi/[email protected]",
1291+
"pkg:pypi/[email protected]"
12911292
]
12921293
},
12931294
{
@@ -1302,7 +1303,7 @@
13021303
"package": "pkg:pypi/[email protected]",
13031304
"dependencies": [
13041305
"pkg:pypi/[email protected]",
1305-
"pkg:pypi/certifi@2025.10.5",
1306+
"pkg:pypi/certifi@2025.11.12",
13061307
"pkg:pypi/[email protected]",
13071308
"pkg:pypi/[email protected]",
13081309
"pkg:pypi/[email protected]"
@@ -1326,7 +1327,7 @@
13261327
{
13271328
"package": "pkg:pypi/[email protected]",
13281329
"dependencies": [
1329-
"pkg:pypi/certifi@2025.10.5",
1330+
"pkg:pypi/certifi@2025.11.12",
13301331
"pkg:pypi/[email protected]",
13311332
"pkg:pypi/[email protected]",
13321333
"pkg:pypi/[email protected]"

0 commit comments

Comments
 (0)