|
317 | 317 | "type": "pypi", |
318 | 318 | "namespace": null, |
319 | 319 | "name": "certifi", |
320 | | - "version": "2025.10.5", |
| 320 | + "version": "2026.1.4", |
321 | 321 | "qualifiers": {}, |
322 | 322 | "subpath": null, |
323 | 323 | "primary_language": "Python", |
324 | 324 | "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", |
326 | 326 | "parties": [ |
327 | 327 | { |
328 | 328 | "type": "person", |
|
349 | 349 | "Programming Language :: Python :: 3.9" |
350 | 350 | ], |
351 | 351 | "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, |
354 | 354 | "sha1": null, |
355 | | - "md5": "7b56f7121949a196441739c539fd01be", |
356 | | - "sha256": "0f212c2744a9bb6de0c56639a6f68afe01ecd92d91f14ae897c4fe7bbeeef0de", |
| 355 | + "md5": "1dab98768140ad2d8dbc9be8f14a2af9", |
| 356 | + "sha256": "9943707519e4add1115f44c2bc244f782c0249876bf51b6599fee1ffbedd685c", |
357 | 357 | "sha512": null, |
358 | 358 | "bug_tracking_url": null, |
359 | 359 | "code_view_url": "https://github.com/certifi/python-certifi", |
|
373 | 373 | "dependencies": [], |
374 | 374 | "repository_homepage_url": null, |
375 | 375 | "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", |
377 | 377 | "datasource_id": null, |
378 | | - "purl": "pkg:pypi/certifi@2025.10.5" |
| 378 | + "purl": "pkg:pypi/certifi@2026.1.4" |
379 | 379 | }, |
380 | 380 | { |
381 | 381 | "type": "pypi", |
|
576 | 576 | "type": "pypi", |
577 | 577 | "namespace": null, |
578 | 578 | "name": "cryptography", |
579 | | - "version": "45.0.7", |
| 579 | + "version": "46.0.0", |
580 | 580 | "qualifiers": {}, |
581 | 581 | "subpath": null, |
582 | 582 | "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", |
585 | 585 | "parties": [ |
586 | 586 | { |
587 | 587 | "type": "person", |
588 | 588 | "role": "author", |
589 | | - "name": "The cryptography developers <cryptography-dev@python.org>", |
| 589 | + "name": null, |
590 | 590 | "email": "The Python Cryptographic Authority and individual contributors <cryptography-dev@python.org>", |
591 | 591 | "url": null |
592 | 592 | } |
|
607 | 607 | "Programming Language :: Python :: 3.11", |
608 | 608 | "Programming Language :: Python :: 3.12", |
609 | 609 | "Programming Language :: Python :: 3.13", |
610 | | - "Programming Language :: Python :: 3.7", |
| 610 | + "Programming Language :: Python :: 3.14", |
611 | 611 | "Programming Language :: Python :: 3.8", |
612 | 612 | "Programming Language :: Python :: 3.9", |
| 613 | + "Programming Language :: Python :: Free Threading :: 3 - Stable", |
613 | 614 | "Programming Language :: Python :: Implementation :: CPython", |
614 | 615 | "Programming Language :: Python :: Implementation :: PyPy", |
615 | 616 | "Topic :: Security :: Cryptography" |
616 | 617 | ], |
617 | 618 | "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, |
620 | 621 | "sha1": null, |
621 | | - "md5": "d7c4a989694c8af7d27560ff4125516f", |
622 | | - "sha256": "3994c809c17fc570c2af12c9b840d7cea85a9fd3e5c0e0491f4fa3c029216d59", |
| 622 | + "md5": "4fe77bef21236be92883b98ea2b89580", |
| 623 | + "sha256": "c3cd09b1490c1509bf3892bde9cef729795fae4a2fee0621f19be3321beca7e4", |
623 | 624 | "sha512": null, |
624 | 625 | "bug_tracking_url": null, |
625 | 626 | "code_view_url": null, |
626 | 627 | "vcs_url": null, |
627 | 628 | "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": {}, |
632 | 631 | "notice_text": null, |
633 | 632 | "source_packages": [], |
634 | 633 | "file_references": [], |
635 | 634 | "extra_data": {}, |
636 | 635 | "dependencies": [], |
637 | 636 | "repository_homepage_url": null, |
638 | 637 | "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", |
640 | 639 | "datasource_id": null, |
641 | | - "purl": "pkg:pypi/cryptography@45.0.7" |
| 640 | + "purl": "pkg:pypi/cryptography@46.0.0" |
642 | 641 | }, |
643 | 642 | { |
644 | 643 | "type": "pypi", |
|
1328 | 1327 | "package": "pkg:pypi/azure-storage-blob@12.26.0", |
1329 | 1328 | "dependencies": [ |
1330 | 1329 | "pkg:pypi/azure-core@1.33.0", |
1331 | | - "pkg:pypi/cryptography@45.0.7", |
| 1330 | + "pkg:pypi/cryptography@46.0.0", |
1332 | 1331 | "pkg:pypi/isodate@0.7.2", |
1333 | 1332 | "pkg:pypi/typing-extensions@4.13.2" |
1334 | 1333 | ] |
1335 | 1334 | }, |
1336 | 1335 | { |
1337 | | - "package": "pkg:pypi/certifi@2025.10.5", |
| 1336 | + "package": "pkg:pypi/certifi@2026.1.4", |
1338 | 1337 | "dependencies": [] |
1339 | 1338 | }, |
1340 | 1339 | { |
|
1352 | 1351 | "dependencies": [] |
1353 | 1352 | }, |
1354 | 1353 | { |
1355 | | - "package": "pkg:pypi/cryptography@45.0.7", |
| 1354 | + "package": "pkg:pypi/cryptography@46.0.0", |
1356 | 1355 | "dependencies": [ |
1357 | | - "pkg:pypi/cffi@1.17.1" |
| 1356 | + "pkg:pypi/cffi@1.17.1", |
| 1357 | + "pkg:pypi/typing-extensions@4.13.2" |
1358 | 1358 | ] |
1359 | 1359 | }, |
1360 | 1360 | { |
|
1369 | 1369 | "package": "pkg:pypi/msrest@0.7.1", |
1370 | 1370 | "dependencies": [ |
1371 | 1371 | "pkg:pypi/azure-core@1.33.0", |
1372 | | - "pkg:pypi/certifi@2025.10.5", |
| 1372 | + "pkg:pypi/certifi@2026.1.4", |
1373 | 1373 | "pkg:pypi/isodate@0.7.2", |
1374 | 1374 | "pkg:pypi/requests-oauthlib@2.0.0", |
1375 | 1375 | "pkg:pypi/requests@2.32.4" |
|
1393 | 1393 | { |
1394 | 1394 | "package": "pkg:pypi/requests@2.32.4", |
1395 | 1395 | "dependencies": [ |
1396 | | - "pkg:pypi/certifi@2025.10.5", |
| 1396 | + "pkg:pypi/certifi@2026.1.4", |
1397 | 1397 | "pkg:pypi/charset-normalizer@3.4.4", |
1398 | 1398 | "pkg:pypi/idna@3.11", |
1399 | 1399 | "pkg:pypi/urllib3@2.2.3" |
|
0 commit comments