From 1b317aaf04f71de2a8c7828ee3ef4c5778a3b8b9 Mon Sep 17 00:00:00 2001 From: Semyon Andreev Date: Thu, 3 Sep 2026 09:23:07 +0300 Subject: [PATCH 1/2] feat: populate component.authors from pyproject.toml, Poetry manifests and packaging metadata Fixes #648. Adds the structured, repeatable `components[].authors` (CycloneDX 1.6+) and derives the legacy singular `components[].author` string for the single-author case, from three independent sources: - PEP 621 `project.authors` (pep621.py) -- tables of name/email, with lenient handling of the non-compliant-but-real-world "Name " string form some pyproject.toml files use here instead. - Poetry's `tool.poetry.authors` (utils/poetry.py) -- "Name " strings. - Packaging core-metadata's `Author`/`Author-email` (utils/packaging.py, wired into the environment scan) -- the two are independent free-text fields with no guaranteed correlation when either holds more than one person; see the docstring of `metadata2authors()` for the rules used to combine or keep them separate. New shared helper module `utils/contact.py`: - `person_string2contact()` parses the "Name " convention used by both Poetry and packaging metadata. - `contacts2author()` derives the legacy `author` string only when there is exactly one author -- CycloneDX has no agreed-upon way to fold multiple authors into one string (see CycloneDX/specification#335), so this deliberately does not guess a join convention. Found and worked around a real footgun in `email.utils.getaddresses()`: fed a bare name with no `@`, it silently mis-splits on whitespace and keeps only the last word (`getaddresses(['Jane Doe']) == [('', 'Jane')]`). `metadata2authors()` filters out any parsed address that doesn't actually contain `@` before trusting it. Tests: 56 new cases across a new `test_utils_contact.py`, new `test_utils_poetry.py`, new `test_utils_packaging.py`, and an extended `test_utils_pep621.py` -- covering both happy paths and the edge cases above. Full existing suite passes unchanged aside from the expected snapshot updates (root components in fixtures that declare authors now show them). Co-Authored-By: Claude Sonnet 5 Claude-Session: https://claude.ai/code/session_015xJ8pA9rPpAjVATkZCzCS2 Signed-off-by: Semyon Andreev --- cyclonedx_py/_internal/environment.py | 7 +- cyclonedx_py/_internal/utils/contact.py | 77 +++++++++++ cyclonedx_py/_internal/utils/packaging.py | 41 ++++++ cyclonedx_py/_internal/utils/pep621.py | 23 ++++ cyclonedx_py/_internal/utils/poetry.py | 13 ++ .../plain_editable-self_1.2.json.bin | 1 + .../plain_editable-self_1.2.xml.bin | 1 + .../plain_editable-self_1.3.json.bin | 1 + .../plain_editable-self_1.3.xml.bin | 1 + .../plain_editable-self_1.4.json.bin | 1 + .../plain_editable-self_1.4.xml.bin | 1 + .../plain_editable-self_1.5.json.bin | 1 + .../plain_editable-self_1.5.xml.bin | 1 + .../plain_editable-self_1.6.json.bin | 7 + .../plain_editable-self_1.6.xml.bin | 7 + .../plain_editable-self_1.7.json.bin | 7 + .../plain_editable-self_1.7.xml.bin | 7 + .../environment/plain_no-deps_1.6.json.bin | 9 ++ .../environment/plain_no-deps_1.6.xml.bin | 9 ++ .../environment/plain_no-deps_1.7.json.bin | 9 ++ .../environment/plain_no-deps_1.7.xml.bin | 9 ++ .../plain_normalize-packagename_1.2.json.bin | 2 + .../plain_normalize-packagename_1.2.xml.bin | 2 + .../plain_normalize-packagename_1.3.json.bin | 2 + .../plain_normalize-packagename_1.3.xml.bin | 2 + .../plain_normalize-packagename_1.4.json.bin | 2 + .../plain_normalize-packagename_1.4.xml.bin | 2 + .../plain_normalize-packagename_1.5.json.bin | 2 + .../plain_normalize-packagename_1.5.xml.bin | 2 + .../plain_normalize-packagename_1.6.json.bin | 14 ++ .../plain_normalize-packagename_1.6.xml.bin | 14 ++ .../plain_normalize-packagename_1.7.json.bin | 14 ++ .../plain_normalize-packagename_1.7.xml.bin | 14 ++ .../plain_private-packages_1.0.xml.bin | 7 - .../plain_private-packages_1.1.xml.bin | 17 --- .../plain_private-packages_1.2.json.bin | 26 +--- .../plain_private-packages_1.2.xml.bin | 19 +-- .../plain_private-packages_1.3.json.bin | 26 +--- .../plain_private-packages_1.3.xml.bin | 19 +-- .../plain_private-packages_1.4.json.bin | 26 +--- .../plain_private-packages_1.4.xml.bin | 19 +-- .../plain_private-packages_1.5.json.bin | 26 +--- .../plain_private-packages_1.5.xml.bin | 19 +-- .../plain_private-packages_1.6.json.bin | 33 +---- .../plain_private-packages_1.6.xml.bin | 25 +--- .../plain_private-packages_1.7.json.bin | 33 +---- .../plain_private-packages_1.7.xml.bin | 25 +--- .../pipenv/plain_no-deps_1.6.json.bin | 9 ++ .../pipenv/plain_no-deps_1.6.xml.bin | 9 ++ .../pipenv/plain_no-deps_1.7.json.bin | 9 ++ .../pipenv/plain_no-deps_1.7.xml.bin | 9 ++ ...all-extras_with-extras_lock10_1.2.json.bin | 1 + .../all-extras_with-extras_lock10_1.2.xml.bin | 1 + ...all-extras_with-extras_lock10_1.3.json.bin | 1 + .../all-extras_with-extras_lock10_1.3.xml.bin | 1 + ...all-extras_with-extras_lock10_1.4.json.bin | 1 + .../all-extras_with-extras_lock10_1.4.xml.bin | 1 + ...all-extras_with-extras_lock10_1.5.json.bin | 1 + .../all-extras_with-extras_lock10_1.5.xml.bin | 1 + ...all-extras_with-extras_lock10_1.6.json.bin | 7 + .../all-extras_with-extras_lock10_1.6.xml.bin | 7 + ...all-extras_with-extras_lock10_1.7.json.bin | 7 + .../all-extras_with-extras_lock10_1.7.xml.bin | 7 + ...all-extras_with-extras_lock11_1.2.json.bin | 1 + .../all-extras_with-extras_lock11_1.2.xml.bin | 1 + ...all-extras_with-extras_lock11_1.3.json.bin | 1 + .../all-extras_with-extras_lock11_1.3.xml.bin | 1 + ...all-extras_with-extras_lock11_1.4.json.bin | 1 + .../all-extras_with-extras_lock11_1.4.xml.bin | 1 + ...all-extras_with-extras_lock11_1.5.json.bin | 1 + .../all-extras_with-extras_lock11_1.5.xml.bin | 1 + ...all-extras_with-extras_lock11_1.6.json.bin | 7 + .../all-extras_with-extras_lock11_1.6.xml.bin | 7 + ...all-extras_with-extras_lock11_1.7.json.bin | 7 + .../all-extras_with-extras_lock11_1.7.xml.bin | 7 + ...all-extras_with-extras_lock20_1.2.json.bin | 1 + .../all-extras_with-extras_lock20_1.2.xml.bin | 1 + ...all-extras_with-extras_lock20_1.3.json.bin | 1 + .../all-extras_with-extras_lock20_1.3.xml.bin | 1 + ...all-extras_with-extras_lock20_1.4.json.bin | 1 + .../all-extras_with-extras_lock20_1.4.xml.bin | 1 + ...all-extras_with-extras_lock20_1.5.json.bin | 1 + .../all-extras_with-extras_lock20_1.5.xml.bin | 1 + ...all-extras_with-extras_lock20_1.6.json.bin | 7 + .../all-extras_with-extras_lock20_1.6.xml.bin | 7 + ...all-extras_with-extras_lock20_1.7.json.bin | 7 + .../all-extras_with-extras_lock20_1.7.xml.bin | 7 + ...all-extras_with-extras_lock21_1.2.json.bin | 1 + .../all-extras_with-extras_lock21_1.2.xml.bin | 1 + ...all-extras_with-extras_lock21_1.3.json.bin | 1 + .../all-extras_with-extras_lock21_1.3.xml.bin | 1 + ...all-extras_with-extras_lock21_1.4.json.bin | 1 + .../all-extras_with-extras_lock21_1.4.xml.bin | 1 + ...all-extras_with-extras_lock21_1.5.json.bin | 1 + .../all-extras_with-extras_lock21_1.5.xml.bin | 1 + ...all-extras_with-extras_lock21_1.6.json.bin | 7 + .../all-extras_with-extras_lock21_1.6.xml.bin | 7 + ...all-extras_with-extras_lock21_1.7.json.bin | 7 + .../all-extras_with-extras_lock21_1.7.xml.bin | 7 + .../no-dev_group-deps_lock11_1.2.json.bin | 1 + .../no-dev_group-deps_lock11_1.2.xml.bin | 1 + .../no-dev_group-deps_lock11_1.3.json.bin | 1 + .../no-dev_group-deps_lock11_1.3.xml.bin | 1 + .../no-dev_group-deps_lock11_1.4.json.bin | 1 + .../no-dev_group-deps_lock11_1.4.xml.bin | 1 + .../no-dev_group-deps_lock11_1.5.json.bin | 1 + .../no-dev_group-deps_lock11_1.5.xml.bin | 1 + .../no-dev_group-deps_lock11_1.6.json.bin | 7 + .../no-dev_group-deps_lock11_1.6.xml.bin | 7 + .../no-dev_group-deps_lock11_1.7.json.bin | 7 + .../no-dev_group-deps_lock11_1.7.xml.bin | 7 + .../no-dev_group-deps_lock20_1.2.json.bin | 1 + .../no-dev_group-deps_lock20_1.2.xml.bin | 1 + .../no-dev_group-deps_lock20_1.3.json.bin | 1 + .../no-dev_group-deps_lock20_1.3.xml.bin | 1 + .../no-dev_group-deps_lock20_1.4.json.bin | 1 + .../no-dev_group-deps_lock20_1.4.xml.bin | 1 + .../no-dev_group-deps_lock20_1.5.json.bin | 1 + .../no-dev_group-deps_lock20_1.5.xml.bin | 1 + .../no-dev_group-deps_lock20_1.6.json.bin | 7 + .../no-dev_group-deps_lock20_1.6.xml.bin | 7 + .../no-dev_group-deps_lock20_1.7.json.bin | 7 + .../no-dev_group-deps_lock20_1.7.xml.bin | 7 + .../no-dev_group-deps_lock21_1.2.json.bin | 1 + .../no-dev_group-deps_lock21_1.2.xml.bin | 1 + .../no-dev_group-deps_lock21_1.3.json.bin | 1 + .../no-dev_group-deps_lock21_1.3.xml.bin | 1 + .../no-dev_group-deps_lock21_1.4.json.bin | 1 + .../no-dev_group-deps_lock21_1.4.xml.bin | 1 + .../no-dev_group-deps_lock21_1.5.json.bin | 1 + .../no-dev_group-deps_lock21_1.5.xml.bin | 1 + .../no-dev_group-deps_lock21_1.6.json.bin | 7 + .../no-dev_group-deps_lock21_1.6.xml.bin | 7 + .../no-dev_group-deps_lock21_1.7.json.bin | 7 + .../no-dev_group-deps_lock21_1.7.xml.bin | 7 + .../no-dev_main-and-dev_lock10_1.2.json.bin | 1 + .../no-dev_main-and-dev_lock10_1.2.xml.bin | 1 + .../no-dev_main-and-dev_lock10_1.3.json.bin | 1 + .../no-dev_main-and-dev_lock10_1.3.xml.bin | 1 + .../no-dev_main-and-dev_lock10_1.4.json.bin | 1 + .../no-dev_main-and-dev_lock10_1.4.xml.bin | 1 + .../no-dev_main-and-dev_lock10_1.5.json.bin | 1 + .../no-dev_main-and-dev_lock10_1.5.xml.bin | 1 + .../no-dev_main-and-dev_lock10_1.6.json.bin | 7 + .../no-dev_main-and-dev_lock10_1.6.xml.bin | 7 + .../no-dev_main-and-dev_lock10_1.7.json.bin | 7 + .../no-dev_main-and-dev_lock10_1.7.xml.bin | 7 + .../no-dev_main-and-dev_lock11_1.2.json.bin | 1 + .../no-dev_main-and-dev_lock11_1.2.xml.bin | 1 + .../no-dev_main-and-dev_lock11_1.3.json.bin | 1 + .../no-dev_main-and-dev_lock11_1.3.xml.bin | 1 + .../no-dev_main-and-dev_lock11_1.4.json.bin | 1 + .../no-dev_main-and-dev_lock11_1.4.xml.bin | 1 + .../no-dev_main-and-dev_lock11_1.5.json.bin | 1 + .../no-dev_main-and-dev_lock11_1.5.xml.bin | 1 + .../no-dev_main-and-dev_lock11_1.6.json.bin | 7 + .../no-dev_main-and-dev_lock11_1.6.xml.bin | 7 + .../no-dev_main-and-dev_lock11_1.7.json.bin | 7 + .../no-dev_main-and-dev_lock11_1.7.xml.bin | 7 + .../no-dev_main-and-dev_lock20_1.2.json.bin | 1 + .../no-dev_main-and-dev_lock20_1.2.xml.bin | 1 + .../no-dev_main-and-dev_lock20_1.3.json.bin | 1 + .../no-dev_main-and-dev_lock20_1.3.xml.bin | 1 + .../no-dev_main-and-dev_lock20_1.4.json.bin | 1 + .../no-dev_main-and-dev_lock20_1.4.xml.bin | 1 + .../no-dev_main-and-dev_lock20_1.5.json.bin | 1 + .../no-dev_main-and-dev_lock20_1.5.xml.bin | 1 + .../no-dev_main-and-dev_lock20_1.6.json.bin | 7 + .../no-dev_main-and-dev_lock20_1.6.xml.bin | 7 + .../no-dev_main-and-dev_lock20_1.7.json.bin | 7 + .../no-dev_main-and-dev_lock20_1.7.xml.bin | 7 + .../no-dev_main-and-dev_lock21_1.2.json.bin | 1 + .../no-dev_main-and-dev_lock21_1.2.xml.bin | 1 + .../no-dev_main-and-dev_lock21_1.3.json.bin | 1 + .../no-dev_main-and-dev_lock21_1.3.xml.bin | 1 + .../no-dev_main-and-dev_lock21_1.4.json.bin | 1 + .../no-dev_main-and-dev_lock21_1.4.xml.bin | 1 + .../no-dev_main-and-dev_lock21_1.5.json.bin | 1 + .../no-dev_main-and-dev_lock21_1.5.xml.bin | 1 + .../no-dev_main-and-dev_lock21_1.6.json.bin | 7 + .../no-dev_main-and-dev_lock21_1.6.xml.bin | 7 + .../no-dev_main-and-dev_lock21_1.7.json.bin | 7 + .../no-dev_main-and-dev_lock21_1.7.xml.bin | 7 + ...only-groups_group-deps_lock11_1.2.json.bin | 1 + .../only-groups_group-deps_lock11_1.2.xml.bin | 1 + ...only-groups_group-deps_lock11_1.3.json.bin | 1 + .../only-groups_group-deps_lock11_1.3.xml.bin | 1 + ...only-groups_group-deps_lock11_1.4.json.bin | 1 + .../only-groups_group-deps_lock11_1.4.xml.bin | 1 + ...only-groups_group-deps_lock11_1.5.json.bin | 1 + .../only-groups_group-deps_lock11_1.5.xml.bin | 1 + ...only-groups_group-deps_lock11_1.6.json.bin | 7 + .../only-groups_group-deps_lock11_1.6.xml.bin | 7 + ...only-groups_group-deps_lock11_1.7.json.bin | 7 + .../only-groups_group-deps_lock11_1.7.xml.bin | 7 + ...only-groups_group-deps_lock20_1.2.json.bin | 1 + .../only-groups_group-deps_lock20_1.2.xml.bin | 1 + ...only-groups_group-deps_lock20_1.3.json.bin | 1 + .../only-groups_group-deps_lock20_1.3.xml.bin | 1 + ...only-groups_group-deps_lock20_1.4.json.bin | 1 + .../only-groups_group-deps_lock20_1.4.xml.bin | 1 + ...only-groups_group-deps_lock20_1.5.json.bin | 1 + .../only-groups_group-deps_lock20_1.5.xml.bin | 1 + ...only-groups_group-deps_lock20_1.6.json.bin | 7 + .../only-groups_group-deps_lock20_1.6.xml.bin | 7 + ...only-groups_group-deps_lock20_1.7.json.bin | 7 + .../only-groups_group-deps_lock20_1.7.xml.bin | 7 + ...only-groups_group-deps_lock21_1.2.json.bin | 1 + .../only-groups_group-deps_lock21_1.2.xml.bin | 1 + ...only-groups_group-deps_lock21_1.3.json.bin | 1 + .../only-groups_group-deps_lock21_1.3.xml.bin | 1 + ...only-groups_group-deps_lock21_1.4.json.bin | 1 + .../only-groups_group-deps_lock21_1.4.xml.bin | 1 + ...only-groups_group-deps_lock21_1.5.json.bin | 1 + .../only-groups_group-deps_lock21_1.5.xml.bin | 1 + ...only-groups_group-deps_lock21_1.6.json.bin | 7 + .../only-groups_group-deps_lock21_1.6.xml.bin | 7 + ...only-groups_group-deps_lock21_1.7.json.bin | 7 + .../only-groups_group-deps_lock21_1.7.xml.bin | 7 + .../plain_group-deps_lock11_1.2.json.bin | 1 + .../plain_group-deps_lock11_1.2.xml.bin | 1 + .../plain_group-deps_lock11_1.3.json.bin | 1 + .../plain_group-deps_lock11_1.3.xml.bin | 1 + .../plain_group-deps_lock11_1.4.json.bin | 1 + .../plain_group-deps_lock11_1.4.xml.bin | 1 + .../plain_group-deps_lock11_1.5.json.bin | 1 + .../plain_group-deps_lock11_1.5.xml.bin | 1 + .../plain_group-deps_lock11_1.6.json.bin | 7 + .../plain_group-deps_lock11_1.6.xml.bin | 7 + .../plain_group-deps_lock11_1.7.json.bin | 7 + .../plain_group-deps_lock11_1.7.xml.bin | 7 + .../plain_group-deps_lock20_1.2.json.bin | 1 + .../plain_group-deps_lock20_1.2.xml.bin | 1 + .../plain_group-deps_lock20_1.3.json.bin | 1 + .../plain_group-deps_lock20_1.3.xml.bin | 1 + .../plain_group-deps_lock20_1.4.json.bin | 1 + .../plain_group-deps_lock20_1.4.xml.bin | 1 + .../plain_group-deps_lock20_1.5.json.bin | 1 + .../plain_group-deps_lock20_1.5.xml.bin | 1 + .../plain_group-deps_lock20_1.6.json.bin | 7 + .../plain_group-deps_lock20_1.6.xml.bin | 7 + .../plain_group-deps_lock20_1.7.json.bin | 7 + .../plain_group-deps_lock20_1.7.xml.bin | 7 + .../plain_group-deps_lock21_1.2.json.bin | 1 + .../plain_group-deps_lock21_1.2.xml.bin | 1 + .../plain_group-deps_lock21_1.3.json.bin | 1 + .../plain_group-deps_lock21_1.3.xml.bin | 1 + .../plain_group-deps_lock21_1.4.json.bin | 1 + .../plain_group-deps_lock21_1.4.xml.bin | 1 + .../plain_group-deps_lock21_1.5.json.bin | 1 + .../plain_group-deps_lock21_1.5.xml.bin | 1 + .../plain_group-deps_lock21_1.6.json.bin | 7 + .../plain_group-deps_lock21_1.6.xml.bin | 7 + .../plain_group-deps_lock21_1.7.json.bin | 7 + .../plain_group-deps_lock21_1.7.xml.bin | 7 + .../poetry/plain_local_lock10_1.2.json.bin | 1 + .../poetry/plain_local_lock10_1.2.xml.bin | 1 + .../poetry/plain_local_lock10_1.3.json.bin | 1 + .../poetry/plain_local_lock10_1.3.xml.bin | 1 + .../poetry/plain_local_lock10_1.4.json.bin | 1 + .../poetry/plain_local_lock10_1.4.xml.bin | 1 + .../poetry/plain_local_lock10_1.5.json.bin | 1 + .../poetry/plain_local_lock10_1.5.xml.bin | 1 + .../poetry/plain_local_lock10_1.6.json.bin | 7 + .../poetry/plain_local_lock10_1.6.xml.bin | 7 + .../poetry/plain_local_lock10_1.7.json.bin | 7 + .../poetry/plain_local_lock10_1.7.xml.bin | 7 + .../poetry/plain_local_lock11_1.2.json.bin | 1 + .../poetry/plain_local_lock11_1.2.xml.bin | 1 + .../poetry/plain_local_lock11_1.3.json.bin | 1 + .../poetry/plain_local_lock11_1.3.xml.bin | 1 + .../poetry/plain_local_lock11_1.4.json.bin | 1 + .../poetry/plain_local_lock11_1.4.xml.bin | 1 + .../poetry/plain_local_lock11_1.5.json.bin | 1 + .../poetry/plain_local_lock11_1.5.xml.bin | 1 + .../poetry/plain_local_lock11_1.6.json.bin | 7 + .../poetry/plain_local_lock11_1.6.xml.bin | 7 + .../poetry/plain_local_lock11_1.7.json.bin | 7 + .../poetry/plain_local_lock11_1.7.xml.bin | 7 + .../poetry/plain_local_lock20_1.2.json.bin | 1 + .../poetry/plain_local_lock20_1.2.xml.bin | 1 + .../poetry/plain_local_lock20_1.3.json.bin | 1 + .../poetry/plain_local_lock20_1.3.xml.bin | 1 + .../poetry/plain_local_lock20_1.4.json.bin | 1 + .../poetry/plain_local_lock20_1.4.xml.bin | 1 + .../poetry/plain_local_lock20_1.5.json.bin | 1 + .../poetry/plain_local_lock20_1.5.xml.bin | 1 + .../poetry/plain_local_lock20_1.6.json.bin | 7 + .../poetry/plain_local_lock20_1.6.xml.bin | 7 + .../poetry/plain_local_lock20_1.7.json.bin | 7 + .../poetry/plain_local_lock20_1.7.xml.bin | 7 + .../poetry/plain_local_lock21_1.2.json.bin | 1 + .../poetry/plain_local_lock21_1.2.xml.bin | 1 + .../poetry/plain_local_lock21_1.3.json.bin | 1 + .../poetry/plain_local_lock21_1.3.xml.bin | 1 + .../poetry/plain_local_lock21_1.4.json.bin | 1 + .../poetry/plain_local_lock21_1.4.xml.bin | 1 + .../poetry/plain_local_lock21_1.5.json.bin | 1 + .../poetry/plain_local_lock21_1.5.xml.bin | 1 + .../poetry/plain_local_lock21_1.6.json.bin | 7 + .../poetry/plain_local_lock21_1.6.xml.bin | 7 + .../poetry/plain_local_lock21_1.7.json.bin | 7 + .../poetry/plain_local_lock21_1.7.xml.bin | 7 + .../plain_main-and-dev_lock10_1.2.json.bin | 1 + .../plain_main-and-dev_lock10_1.2.xml.bin | 1 + .../plain_main-and-dev_lock10_1.3.json.bin | 1 + .../plain_main-and-dev_lock10_1.3.xml.bin | 1 + .../plain_main-and-dev_lock10_1.4.json.bin | 1 + .../plain_main-and-dev_lock10_1.4.xml.bin | 1 + .../plain_main-and-dev_lock10_1.5.json.bin | 1 + .../plain_main-and-dev_lock10_1.5.xml.bin | 1 + .../plain_main-and-dev_lock10_1.6.json.bin | 7 + .../plain_main-and-dev_lock10_1.6.xml.bin | 7 + .../plain_main-and-dev_lock10_1.7.json.bin | 7 + .../plain_main-and-dev_lock10_1.7.xml.bin | 7 + .../plain_main-and-dev_lock11_1.2.json.bin | 1 + .../plain_main-and-dev_lock11_1.2.xml.bin | 1 + .../plain_main-and-dev_lock11_1.3.json.bin | 1 + .../plain_main-and-dev_lock11_1.3.xml.bin | 1 + .../plain_main-and-dev_lock11_1.4.json.bin | 1 + .../plain_main-and-dev_lock11_1.4.xml.bin | 1 + .../plain_main-and-dev_lock11_1.5.json.bin | 1 + .../plain_main-and-dev_lock11_1.5.xml.bin | 1 + .../plain_main-and-dev_lock11_1.6.json.bin | 7 + .../plain_main-and-dev_lock11_1.6.xml.bin | 7 + .../plain_main-and-dev_lock11_1.7.json.bin | 7 + .../plain_main-and-dev_lock11_1.7.xml.bin | 7 + .../plain_main-and-dev_lock20_1.2.json.bin | 1 + .../plain_main-and-dev_lock20_1.2.xml.bin | 1 + .../plain_main-and-dev_lock20_1.3.json.bin | 1 + .../plain_main-and-dev_lock20_1.3.xml.bin | 1 + .../plain_main-and-dev_lock20_1.4.json.bin | 1 + .../plain_main-and-dev_lock20_1.4.xml.bin | 1 + .../plain_main-and-dev_lock20_1.5.json.bin | 1 + .../plain_main-and-dev_lock20_1.5.xml.bin | 1 + .../plain_main-and-dev_lock20_1.6.json.bin | 7 + .../plain_main-and-dev_lock20_1.6.xml.bin | 7 + .../plain_main-and-dev_lock20_1.7.json.bin | 7 + .../plain_main-and-dev_lock20_1.7.xml.bin | 7 + .../plain_main-and-dev_lock21_1.2.json.bin | 1 + .../plain_main-and-dev_lock21_1.2.xml.bin | 1 + .../plain_main-and-dev_lock21_1.3.json.bin | 1 + .../plain_main-and-dev_lock21_1.3.xml.bin | 1 + .../plain_main-and-dev_lock21_1.4.json.bin | 1 + .../plain_main-and-dev_lock21_1.4.xml.bin | 1 + .../plain_main-and-dev_lock21_1.5.json.bin | 1 + .../plain_main-and-dev_lock21_1.5.xml.bin | 1 + .../plain_main-and-dev_lock21_1.6.json.bin | 7 + .../plain_main-and-dev_lock21_1.6.xml.bin | 7 + .../plain_main-and-dev_lock21_1.7.json.bin | 7 + .../plain_main-and-dev_lock21_1.7.xml.bin | 7 + ..._multi-constraint-deps_lock11_1.2.json.bin | 1 + ...n_multi-constraint-deps_lock11_1.2.xml.bin | 1 + ..._multi-constraint-deps_lock11_1.3.json.bin | 1 + ...n_multi-constraint-deps_lock11_1.3.xml.bin | 1 + ..._multi-constraint-deps_lock11_1.4.json.bin | 1 + ...n_multi-constraint-deps_lock11_1.4.xml.bin | 1 + ..._multi-constraint-deps_lock11_1.5.json.bin | 1 + ...n_multi-constraint-deps_lock11_1.5.xml.bin | 1 + ..._multi-constraint-deps_lock11_1.6.json.bin | 7 + ...n_multi-constraint-deps_lock11_1.6.xml.bin | 7 + ..._multi-constraint-deps_lock11_1.7.json.bin | 7 + ...n_multi-constraint-deps_lock11_1.7.xml.bin | 7 + ..._multi-constraint-deps_lock20_1.2.json.bin | 1 + ...n_multi-constraint-deps_lock20_1.2.xml.bin | 1 + ..._multi-constraint-deps_lock20_1.3.json.bin | 1 + ...n_multi-constraint-deps_lock20_1.3.xml.bin | 1 + ..._multi-constraint-deps_lock20_1.4.json.bin | 1 + ...n_multi-constraint-deps_lock20_1.4.xml.bin | 1 + ..._multi-constraint-deps_lock20_1.5.json.bin | 1 + ...n_multi-constraint-deps_lock20_1.5.xml.bin | 1 + ..._multi-constraint-deps_lock20_1.6.json.bin | 7 + ...n_multi-constraint-deps_lock20_1.6.xml.bin | 7 + ..._multi-constraint-deps_lock20_1.7.json.bin | 7 + ...n_multi-constraint-deps_lock20_1.7.xml.bin | 7 + ..._multi-constraint-deps_lock21_1.2.json.bin | 1 + ...n_multi-constraint-deps_lock21_1.2.xml.bin | 1 + ..._multi-constraint-deps_lock21_1.3.json.bin | 1 + ...n_multi-constraint-deps_lock21_1.3.xml.bin | 1 + ..._multi-constraint-deps_lock21_1.4.json.bin | 1 + ...n_multi-constraint-deps_lock21_1.4.xml.bin | 1 + ..._multi-constraint-deps_lock21_1.5.json.bin | 1 + ...n_multi-constraint-deps_lock21_1.5.xml.bin | 1 + ..._multi-constraint-deps_lock21_1.6.json.bin | 7 + ...n_multi-constraint-deps_lock21_1.6.xml.bin | 7 + ..._multi-constraint-deps_lock21_1.7.json.bin | 7 + ...n_multi-constraint-deps_lock21_1.7.xml.bin | 7 + .../poetry/plain_no-deps_lock20_1.6.json.bin | 9 ++ .../poetry/plain_no-deps_lock20_1.6.xml.bin | 9 ++ .../poetry/plain_no-deps_lock20_1.7.json.bin | 9 ++ .../poetry/plain_no-deps_lock20_1.7.xml.bin | 9 ++ .../poetry/plain_no-deps_lock21_1.6.json.bin | 9 ++ .../poetry/plain_no-deps_lock21_1.6.xml.bin | 9 ++ .../poetry/plain_no-deps_lock21_1.7.json.bin | 9 ++ .../poetry/plain_no-deps_lock21_1.7.xml.bin | 9 ++ ..._normalize-packagename_lock10_1.2.json.bin | 1 + ...n_normalize-packagename_lock10_1.2.xml.bin | 1 + ..._normalize-packagename_lock10_1.3.json.bin | 1 + ...n_normalize-packagename_lock10_1.3.xml.bin | 1 + ..._normalize-packagename_lock10_1.4.json.bin | 1 + ...n_normalize-packagename_lock10_1.4.xml.bin | 1 + ..._normalize-packagename_lock10_1.5.json.bin | 1 + ...n_normalize-packagename_lock10_1.5.xml.bin | 1 + ..._normalize-packagename_lock10_1.6.json.bin | 7 + ...n_normalize-packagename_lock10_1.6.xml.bin | 7 + ..._normalize-packagename_lock10_1.7.json.bin | 7 + ...n_normalize-packagename_lock10_1.7.xml.bin | 7 + ..._normalize-packagename_lock20_1.2.json.bin | 1 + ...n_normalize-packagename_lock20_1.2.xml.bin | 1 + ..._normalize-packagename_lock20_1.3.json.bin | 1 + ...n_normalize-packagename_lock20_1.3.xml.bin | 1 + ..._normalize-packagename_lock20_1.4.json.bin | 1 + ...n_normalize-packagename_lock20_1.4.xml.bin | 1 + ..._normalize-packagename_lock20_1.5.json.bin | 1 + ...n_normalize-packagename_lock20_1.5.xml.bin | 1 + ..._normalize-packagename_lock20_1.6.json.bin | 7 + ...n_normalize-packagename_lock20_1.6.xml.bin | 7 + ..._normalize-packagename_lock20_1.7.json.bin | 7 + ...n_normalize-packagename_lock20_1.7.xml.bin | 7 + ..._normalize-packagename_lock21_1.2.json.bin | 1 + ...n_normalize-packagename_lock21_1.2.xml.bin | 1 + ..._normalize-packagename_lock21_1.3.json.bin | 1 + ...n_normalize-packagename_lock21_1.3.xml.bin | 1 + ..._normalize-packagename_lock21_1.4.json.bin | 1 + ...n_normalize-packagename_lock21_1.4.xml.bin | 1 + ..._normalize-packagename_lock21_1.5.json.bin | 1 + ...n_normalize-packagename_lock21_1.5.xml.bin | 1 + ..._normalize-packagename_lock21_1.6.json.bin | 7 + ...n_normalize-packagename_lock21_1.6.xml.bin | 7 + ..._normalize-packagename_lock21_1.7.json.bin | 7 + ...n_normalize-packagename_lock21_1.7.xml.bin | 7 + .../plain_private-packges_lock10_1.2.json.bin | 1 + .../plain_private-packges_lock10_1.2.xml.bin | 1 + .../plain_private-packges_lock10_1.3.json.bin | 1 + .../plain_private-packges_lock10_1.3.xml.bin | 1 + .../plain_private-packges_lock10_1.4.json.bin | 1 + .../plain_private-packges_lock10_1.4.xml.bin | 1 + .../plain_private-packges_lock10_1.5.json.bin | 1 + .../plain_private-packges_lock10_1.5.xml.bin | 1 + .../plain_private-packges_lock10_1.6.json.bin | 7 + .../plain_private-packges_lock10_1.6.xml.bin | 7 + .../plain_private-packges_lock10_1.7.json.bin | 7 + .../plain_private-packges_lock10_1.7.xml.bin | 7 + .../plain_private-packges_lock11_1.2.json.bin | 1 + .../plain_private-packges_lock11_1.2.xml.bin | 1 + .../plain_private-packges_lock11_1.3.json.bin | 1 + .../plain_private-packges_lock11_1.3.xml.bin | 1 + .../plain_private-packges_lock11_1.4.json.bin | 1 + .../plain_private-packges_lock11_1.4.xml.bin | 1 + .../plain_private-packges_lock11_1.5.json.bin | 1 + .../plain_private-packges_lock11_1.5.xml.bin | 1 + .../plain_private-packges_lock11_1.6.json.bin | 7 + .../plain_private-packges_lock11_1.6.xml.bin | 7 + .../plain_private-packges_lock11_1.7.json.bin | 7 + .../plain_private-packges_lock11_1.7.xml.bin | 7 + .../plain_private-packges_lock20_1.2.json.bin | 1 + .../plain_private-packges_lock20_1.2.xml.bin | 1 + .../plain_private-packges_lock20_1.3.json.bin | 1 + .../plain_private-packges_lock20_1.3.xml.bin | 1 + .../plain_private-packges_lock20_1.4.json.bin | 1 + .../plain_private-packges_lock20_1.4.xml.bin | 1 + .../plain_private-packges_lock20_1.5.json.bin | 1 + .../plain_private-packges_lock20_1.5.xml.bin | 1 + .../plain_private-packges_lock20_1.6.json.bin | 7 + .../plain_private-packges_lock20_1.6.xml.bin | 7 + .../plain_private-packges_lock20_1.7.json.bin | 7 + .../plain_private-packges_lock20_1.7.xml.bin | 7 + ...ain_private-packges_v2_lock21_1.2.json.bin | 1 + ...lain_private-packges_v2_lock21_1.2.xml.bin | 1 + ...ain_private-packges_v2_lock21_1.3.json.bin | 1 + ...lain_private-packges_v2_lock21_1.3.xml.bin | 1 + ...ain_private-packges_v2_lock21_1.4.json.bin | 1 + ...lain_private-packges_v2_lock21_1.4.xml.bin | 1 + ...ain_private-packges_v2_lock21_1.5.json.bin | 1 + ...lain_private-packges_v2_lock21_1.5.xml.bin | 1 + ...ain_private-packges_v2_lock21_1.6.json.bin | 7 + ...lain_private-packges_v2_lock21_1.6.xml.bin | 7 + ...ain_private-packges_v2_lock21_1.7.json.bin | 7 + ...lain_private-packges_v2_lock21_1.7.xml.bin | 7 + ...in_regression-issue611_lock20_1.2.json.bin | 1 + ...ain_regression-issue611_lock20_1.2.xml.bin | 1 + ...in_regression-issue611_lock20_1.3.json.bin | 1 + ...ain_regression-issue611_lock20_1.3.xml.bin | 1 + ...in_regression-issue611_lock20_1.4.json.bin | 1 + ...ain_regression-issue611_lock20_1.4.xml.bin | 1 + ...in_regression-issue611_lock20_1.5.json.bin | 1 + ...ain_regression-issue611_lock20_1.5.xml.bin | 1 + ...in_regression-issue611_lock20_1.6.json.bin | 7 + ...ain_regression-issue611_lock20_1.6.xml.bin | 7 + ...in_regression-issue611_lock20_1.7.json.bin | 7 + ...ain_regression-issue611_lock20_1.7.xml.bin | 7 + ...in_regression-issue611_lock21_1.2.json.bin | 1 + ...ain_regression-issue611_lock21_1.2.xml.bin | 1 + ...in_regression-issue611_lock21_1.3.json.bin | 1 + ...ain_regression-issue611_lock21_1.3.xml.bin | 1 + ...in_regression-issue611_lock21_1.4.json.bin | 1 + ...ain_regression-issue611_lock21_1.4.xml.bin | 1 + ...in_regression-issue611_lock21_1.5.json.bin | 1 + ...ain_regression-issue611_lock21_1.5.xml.bin | 1 + ...in_regression-issue611_lock21_1.6.json.bin | 7 + ...ain_regression-issue611_lock21_1.6.xml.bin | 7 + ...in_regression-issue611_lock21_1.7.json.bin | 7 + ...ain_regression-issue611_lock21_1.7.xml.bin | 7 + ...in_regression-issue702_lock10_1.2.json.bin | 1 + ...ain_regression-issue702_lock10_1.2.xml.bin | 1 + ...in_regression-issue702_lock10_1.3.json.bin | 1 + ...ain_regression-issue702_lock10_1.3.xml.bin | 1 + ...in_regression-issue702_lock10_1.4.json.bin | 1 + ...ain_regression-issue702_lock10_1.4.xml.bin | 1 + ...in_regression-issue702_lock10_1.5.json.bin | 1 + ...ain_regression-issue702_lock10_1.5.xml.bin | 1 + ...in_regression-issue702_lock10_1.6.json.bin | 7 + ...ain_regression-issue702_lock10_1.6.xml.bin | 7 + ...in_regression-issue702_lock10_1.7.json.bin | 7 + ...ain_regression-issue702_lock10_1.7.xml.bin | 7 + ...in_regression-issue702_lock11_1.2.json.bin | 1 + ...ain_regression-issue702_lock11_1.2.xml.bin | 1 + ...in_regression-issue702_lock11_1.3.json.bin | 1 + ...ain_regression-issue702_lock11_1.3.xml.bin | 1 + ...in_regression-issue702_lock11_1.4.json.bin | 1 + ...ain_regression-issue702_lock11_1.4.xml.bin | 1 + ...in_regression-issue702_lock11_1.5.json.bin | 1 + ...ain_regression-issue702_lock11_1.5.xml.bin | 1 + ...in_regression-issue702_lock11_1.6.json.bin | 7 + ...ain_regression-issue702_lock11_1.6.xml.bin | 7 + ...in_regression-issue702_lock11_1.7.json.bin | 7 + ...ain_regression-issue702_lock11_1.7.xml.bin | 7 + ...in_regression-issue702_lock20_1.2.json.bin | 1 + ...ain_regression-issue702_lock20_1.2.xml.bin | 1 + ...in_regression-issue702_lock20_1.3.json.bin | 1 + ...ain_regression-issue702_lock20_1.3.xml.bin | 1 + ...in_regression-issue702_lock20_1.4.json.bin | 1 + ...ain_regression-issue702_lock20_1.4.xml.bin | 1 + ...in_regression-issue702_lock20_1.5.json.bin | 1 + ...ain_regression-issue702_lock20_1.5.xml.bin | 1 + ...in_regression-issue702_lock20_1.6.json.bin | 7 + ...ain_regression-issue702_lock20_1.6.xml.bin | 7 + ...in_regression-issue702_lock20_1.7.json.bin | 7 + ...ain_regression-issue702_lock20_1.7.xml.bin | 7 + ...in_regression-issue702_lock21_1.2.json.bin | 1 + ...ain_regression-issue702_lock21_1.2.xml.bin | 1 + ...in_regression-issue702_lock21_1.3.json.bin | 1 + ...ain_regression-issue702_lock21_1.3.xml.bin | 1 + ...in_regression-issue702_lock21_1.4.json.bin | 1 + ...ain_regression-issue702_lock21_1.4.xml.bin | 1 + ...in_regression-issue702_lock21_1.5.json.bin | 1 + ...ain_regression-issue702_lock21_1.5.xml.bin | 1 + ...in_regression-issue702_lock21_1.6.json.bin | 7 + ...ain_regression-issue702_lock21_1.6.xml.bin | 7 + ...in_regression-issue702_lock21_1.7.json.bin | 7 + ...ain_regression-issue702_lock21_1.7.xml.bin | 7 + ...in_regression-issue727_lock20_1.2.json.bin | 1 + ...ain_regression-issue727_lock20_1.2.xml.bin | 1 + ...in_regression-issue727_lock20_1.3.json.bin | 1 + ...ain_regression-issue727_lock20_1.3.xml.bin | 1 + ...in_regression-issue727_lock20_1.4.json.bin | 1 + ...ain_regression-issue727_lock20_1.4.xml.bin | 1 + ...in_regression-issue727_lock20_1.5.json.bin | 1 + ...ain_regression-issue727_lock20_1.5.xml.bin | 1 + ...in_regression-issue727_lock20_1.6.json.bin | 7 + ...ain_regression-issue727_lock20_1.6.xml.bin | 7 + ...in_regression-issue727_lock20_1.7.json.bin | 7 + ...ain_regression-issue727_lock20_1.7.xml.bin | 7 + ...in_regression-issue727_lock21_1.2.json.bin | 1 + ...ain_regression-issue727_lock21_1.2.xml.bin | 1 + ...in_regression-issue727_lock21_1.3.json.bin | 1 + ...ain_regression-issue727_lock21_1.3.xml.bin | 1 + ...in_regression-issue727_lock21_1.4.json.bin | 1 + ...ain_regression-issue727_lock21_1.4.xml.bin | 1 + ...in_regression-issue727_lock21_1.5.json.bin | 1 + ...ain_regression-issue727_lock21_1.5.xml.bin | 1 + ...in_regression-issue727_lock21_1.6.json.bin | 7 + ...ain_regression-issue727_lock21_1.6.xml.bin | 7 + ...in_regression-issue727_lock21_1.7.json.bin | 7 + ...ain_regression-issue727_lock21_1.7.xml.bin | 7 + .../plain_with-extras_lock10_1.2.json.bin | 1 + .../plain_with-extras_lock10_1.2.xml.bin | 1 + .../plain_with-extras_lock10_1.3.json.bin | 1 + .../plain_with-extras_lock10_1.3.xml.bin | 1 + .../plain_with-extras_lock10_1.4.json.bin | 1 + .../plain_with-extras_lock10_1.4.xml.bin | 1 + .../plain_with-extras_lock10_1.5.json.bin | 1 + .../plain_with-extras_lock10_1.5.xml.bin | 1 + .../plain_with-extras_lock10_1.6.json.bin | 7 + .../plain_with-extras_lock10_1.6.xml.bin | 7 + .../plain_with-extras_lock10_1.7.json.bin | 7 + .../plain_with-extras_lock10_1.7.xml.bin | 7 + .../plain_with-extras_lock11_1.2.json.bin | 1 + .../plain_with-extras_lock11_1.2.xml.bin | 1 + .../plain_with-extras_lock11_1.3.json.bin | 1 + .../plain_with-extras_lock11_1.3.xml.bin | 1 + .../plain_with-extras_lock11_1.4.json.bin | 1 + .../plain_with-extras_lock11_1.4.xml.bin | 1 + .../plain_with-extras_lock11_1.5.json.bin | 1 + .../plain_with-extras_lock11_1.5.xml.bin | 1 + .../plain_with-extras_lock11_1.6.json.bin | 7 + .../plain_with-extras_lock11_1.6.xml.bin | 7 + .../plain_with-extras_lock11_1.7.json.bin | 7 + .../plain_with-extras_lock11_1.7.xml.bin | 7 + .../plain_with-extras_lock20_1.2.json.bin | 1 + .../plain_with-extras_lock20_1.2.xml.bin | 1 + .../plain_with-extras_lock20_1.3.json.bin | 1 + .../plain_with-extras_lock20_1.3.xml.bin | 1 + .../plain_with-extras_lock20_1.4.json.bin | 1 + .../plain_with-extras_lock20_1.4.xml.bin | 1 + .../plain_with-extras_lock20_1.5.json.bin | 1 + .../plain_with-extras_lock20_1.5.xml.bin | 1 + .../plain_with-extras_lock20_1.6.json.bin | 7 + .../plain_with-extras_lock20_1.6.xml.bin | 7 + .../plain_with-extras_lock20_1.7.json.bin | 7 + .../plain_with-extras_lock20_1.7.xml.bin | 7 + .../plain_with-extras_lock21_1.2.json.bin | 1 + .../plain_with-extras_lock21_1.2.xml.bin | 1 + .../plain_with-extras_lock21_1.3.json.bin | 1 + .../plain_with-extras_lock21_1.3.xml.bin | 1 + .../plain_with-extras_lock21_1.4.json.bin | 1 + .../plain_with-extras_lock21_1.4.xml.bin | 1 + .../plain_with-extras_lock21_1.5.json.bin | 1 + .../plain_with-extras_lock21_1.5.xml.bin | 1 + .../plain_with-extras_lock21_1.6.json.bin | 7 + .../plain_with-extras_lock21_1.6.xml.bin | 7 + .../plain_with-extras_lock21_1.7.json.bin | 7 + .../plain_with-extras_lock21_1.7.xml.bin | 7 + ...ith-optionals-no-extra_lock10_1.2.json.bin | 1 + ...with-optionals-no-extra_lock10_1.2.xml.bin | 1 + ...ith-optionals-no-extra_lock10_1.3.json.bin | 1 + ...with-optionals-no-extra_lock10_1.3.xml.bin | 1 + ...ith-optionals-no-extra_lock10_1.4.json.bin | 1 + ...with-optionals-no-extra_lock10_1.4.xml.bin | 1 + ...ith-optionals-no-extra_lock10_1.5.json.bin | 1 + ...with-optionals-no-extra_lock10_1.5.xml.bin | 1 + ...ith-optionals-no-extra_lock10_1.6.json.bin | 7 + ...with-optionals-no-extra_lock10_1.6.xml.bin | 7 + ...ith-optionals-no-extra_lock10_1.7.json.bin | 7 + ...with-optionals-no-extra_lock10_1.7.xml.bin | 7 + ...ith-optionals-no-extra_lock11_1.2.json.bin | 1 + ...with-optionals-no-extra_lock11_1.2.xml.bin | 1 + ...ith-optionals-no-extra_lock11_1.3.json.bin | 1 + ...with-optionals-no-extra_lock11_1.3.xml.bin | 1 + ...ith-optionals-no-extra_lock11_1.4.json.bin | 1 + ...with-optionals-no-extra_lock11_1.4.xml.bin | 1 + ...ith-optionals-no-extra_lock11_1.5.json.bin | 1 + ...with-optionals-no-extra_lock11_1.5.xml.bin | 1 + ...ith-optionals-no-extra_lock11_1.6.json.bin | 7 + ...with-optionals-no-extra_lock11_1.6.xml.bin | 7 + ...ith-optionals-no-extra_lock11_1.7.json.bin | 7 + ...with-optionals-no-extra_lock11_1.7.xml.bin | 7 + ...ith-optionals-no-extra_lock20_1.2.json.bin | 1 + ...with-optionals-no-extra_lock20_1.2.xml.bin | 1 + ...ith-optionals-no-extra_lock20_1.3.json.bin | 1 + ...with-optionals-no-extra_lock20_1.3.xml.bin | 1 + ...ith-optionals-no-extra_lock20_1.4.json.bin | 1 + ...with-optionals-no-extra_lock20_1.4.xml.bin | 1 + ...ith-optionals-no-extra_lock20_1.5.json.bin | 1 + ...with-optionals-no-extra_lock20_1.5.xml.bin | 1 + ...ith-optionals-no-extra_lock20_1.6.json.bin | 7 + ...with-optionals-no-extra_lock20_1.6.xml.bin | 7 + ...ith-optionals-no-extra_lock20_1.7.json.bin | 7 + ...with-optionals-no-extra_lock20_1.7.xml.bin | 7 + ...ith-optionals-no-extra_lock21_1.2.json.bin | 1 + ...with-optionals-no-extra_lock21_1.2.xml.bin | 1 + ...ith-optionals-no-extra_lock21_1.3.json.bin | 1 + ...with-optionals-no-extra_lock21_1.3.xml.bin | 1 + ...ith-optionals-no-extra_lock21_1.4.json.bin | 1 + ...with-optionals-no-extra_lock21_1.4.xml.bin | 1 + ...ith-optionals-no-extra_lock21_1.5.json.bin | 1 + ...with-optionals-no-extra_lock21_1.5.xml.bin | 1 + ...ith-optionals-no-extra_lock21_1.6.json.bin | 7 + ...with-optionals-no-extra_lock21_1.6.xml.bin | 7 + ...ith-optionals-no-extra_lock21_1.7.json.bin | 7 + ...with-optionals-no-extra_lock21_1.7.xml.bin | 7 + .../plain_with-urls_lock10_1.2.json.bin | 1 + .../poetry/plain_with-urls_lock10_1.2.xml.bin | 1 + .../plain_with-urls_lock10_1.3.json.bin | 1 + .../poetry/plain_with-urls_lock10_1.3.xml.bin | 1 + .../plain_with-urls_lock10_1.4.json.bin | 1 + .../poetry/plain_with-urls_lock10_1.4.xml.bin | 1 + .../plain_with-urls_lock10_1.5.json.bin | 1 + .../poetry/plain_with-urls_lock10_1.5.xml.bin | 1 + .../plain_with-urls_lock10_1.6.json.bin | 7 + .../poetry/plain_with-urls_lock10_1.6.xml.bin | 7 + .../plain_with-urls_lock10_1.7.json.bin | 7 + .../poetry/plain_with-urls_lock10_1.7.xml.bin | 7 + .../plain_with-urls_lock11_1.2.json.bin | 1 + .../poetry/plain_with-urls_lock11_1.2.xml.bin | 1 + .../plain_with-urls_lock11_1.3.json.bin | 1 + .../poetry/plain_with-urls_lock11_1.3.xml.bin | 1 + .../plain_with-urls_lock11_1.4.json.bin | 1 + .../poetry/plain_with-urls_lock11_1.4.xml.bin | 1 + .../plain_with-urls_lock11_1.5.json.bin | 1 + .../poetry/plain_with-urls_lock11_1.5.xml.bin | 1 + .../plain_with-urls_lock11_1.6.json.bin | 7 + .../poetry/plain_with-urls_lock11_1.6.xml.bin | 7 + .../plain_with-urls_lock11_1.7.json.bin | 7 + .../poetry/plain_with-urls_lock11_1.7.xml.bin | 7 + .../plain_with-urls_lock20_1.2.json.bin | 1 + .../poetry/plain_with-urls_lock20_1.2.xml.bin | 1 + .../plain_with-urls_lock20_1.3.json.bin | 1 + .../poetry/plain_with-urls_lock20_1.3.xml.bin | 1 + .../plain_with-urls_lock20_1.4.json.bin | 1 + .../poetry/plain_with-urls_lock20_1.4.xml.bin | 1 + .../plain_with-urls_lock20_1.5.json.bin | 1 + .../poetry/plain_with-urls_lock20_1.5.xml.bin | 1 + .../plain_with-urls_lock20_1.6.json.bin | 7 + .../poetry/plain_with-urls_lock20_1.6.xml.bin | 7 + .../plain_with-urls_lock20_1.7.json.bin | 7 + .../poetry/plain_with-urls_lock20_1.7.xml.bin | 7 + .../plain_with-urls_lock21_1.2.json.bin | 1 + .../poetry/plain_with-urls_lock21_1.2.xml.bin | 1 + .../plain_with-urls_lock21_1.3.json.bin | 1 + .../poetry/plain_with-urls_lock21_1.3.xml.bin | 1 + .../plain_with-urls_lock21_1.4.json.bin | 1 + .../poetry/plain_with-urls_lock21_1.4.xml.bin | 1 + .../plain_with-urls_lock21_1.5.json.bin | 1 + .../poetry/plain_with-urls_lock21_1.5.xml.bin | 1 + .../plain_with-urls_lock21_1.6.json.bin | 7 + .../poetry/plain_with-urls_lock21_1.6.xml.bin | 7 + .../plain_with-urls_lock21_1.7.json.bin | 7 + .../poetry/plain_with-urls_lock21_1.7.xml.bin | 7 + ...ome-extras_with-extras_lock10_1.2.json.bin | 1 + ...some-extras_with-extras_lock10_1.2.xml.bin | 1 + ...ome-extras_with-extras_lock10_1.3.json.bin | 1 + ...some-extras_with-extras_lock10_1.3.xml.bin | 1 + ...ome-extras_with-extras_lock10_1.4.json.bin | 1 + ...some-extras_with-extras_lock10_1.4.xml.bin | 1 + ...ome-extras_with-extras_lock10_1.5.json.bin | 1 + ...some-extras_with-extras_lock10_1.5.xml.bin | 1 + ...ome-extras_with-extras_lock10_1.6.json.bin | 7 + ...some-extras_with-extras_lock10_1.6.xml.bin | 7 + ...ome-extras_with-extras_lock10_1.7.json.bin | 7 + ...some-extras_with-extras_lock10_1.7.xml.bin | 7 + ...ome-extras_with-extras_lock11_1.2.json.bin | 1 + ...some-extras_with-extras_lock11_1.2.xml.bin | 1 + ...ome-extras_with-extras_lock11_1.3.json.bin | 1 + ...some-extras_with-extras_lock11_1.3.xml.bin | 1 + ...ome-extras_with-extras_lock11_1.4.json.bin | 1 + ...some-extras_with-extras_lock11_1.4.xml.bin | 1 + ...ome-extras_with-extras_lock11_1.5.json.bin | 1 + ...some-extras_with-extras_lock11_1.5.xml.bin | 1 + ...ome-extras_with-extras_lock11_1.6.json.bin | 7 + ...some-extras_with-extras_lock11_1.6.xml.bin | 7 + ...ome-extras_with-extras_lock11_1.7.json.bin | 7 + ...some-extras_with-extras_lock11_1.7.xml.bin | 7 + ...ome-extras_with-extras_lock20_1.2.json.bin | 1 + ...some-extras_with-extras_lock20_1.2.xml.bin | 1 + ...ome-extras_with-extras_lock20_1.3.json.bin | 1 + ...some-extras_with-extras_lock20_1.3.xml.bin | 1 + ...ome-extras_with-extras_lock20_1.4.json.bin | 1 + ...some-extras_with-extras_lock20_1.4.xml.bin | 1 + ...ome-extras_with-extras_lock20_1.5.json.bin | 1 + ...some-extras_with-extras_lock20_1.5.xml.bin | 1 + ...ome-extras_with-extras_lock20_1.6.json.bin | 7 + ...some-extras_with-extras_lock20_1.6.xml.bin | 7 + ...ome-extras_with-extras_lock20_1.7.json.bin | 7 + ...some-extras_with-extras_lock20_1.7.xml.bin | 7 + ...ome-extras_with-extras_lock21_1.2.json.bin | 1 + ...some-extras_with-extras_lock21_1.2.xml.bin | 1 + ...ome-extras_with-extras_lock21_1.3.json.bin | 1 + ...some-extras_with-extras_lock21_1.3.xml.bin | 1 + ...ome-extras_with-extras_lock21_1.4.json.bin | 1 + ...some-extras_with-extras_lock21_1.4.xml.bin | 1 + ...ome-extras_with-extras_lock21_1.5.json.bin | 1 + ...some-extras_with-extras_lock21_1.5.xml.bin | 1 + ...ome-extras_with-extras_lock21_1.6.json.bin | 7 + ...some-extras_with-extras_lock21_1.6.xml.bin | 7 + ...ome-extras_with-extras_lock21_1.7.json.bin | 7 + ...some-extras_with-extras_lock21_1.7.xml.bin | 7 + ...some-groups_group-deps_lock11_1.2.json.bin | 1 + .../some-groups_group-deps_lock11_1.2.xml.bin | 1 + ...some-groups_group-deps_lock11_1.3.json.bin | 1 + .../some-groups_group-deps_lock11_1.3.xml.bin | 1 + ...some-groups_group-deps_lock11_1.4.json.bin | 1 + .../some-groups_group-deps_lock11_1.4.xml.bin | 1 + ...some-groups_group-deps_lock11_1.5.json.bin | 1 + .../some-groups_group-deps_lock11_1.5.xml.bin | 1 + ...some-groups_group-deps_lock11_1.6.json.bin | 7 + .../some-groups_group-deps_lock11_1.6.xml.bin | 7 + ...some-groups_group-deps_lock11_1.7.json.bin | 7 + .../some-groups_group-deps_lock11_1.7.xml.bin | 7 + ...some-groups_group-deps_lock20_1.2.json.bin | 1 + .../some-groups_group-deps_lock20_1.2.xml.bin | 1 + ...some-groups_group-deps_lock20_1.3.json.bin | 1 + .../some-groups_group-deps_lock20_1.3.xml.bin | 1 + ...some-groups_group-deps_lock20_1.4.json.bin | 1 + .../some-groups_group-deps_lock20_1.4.xml.bin | 1 + ...some-groups_group-deps_lock20_1.5.json.bin | 1 + .../some-groups_group-deps_lock20_1.5.xml.bin | 1 + ...some-groups_group-deps_lock20_1.6.json.bin | 7 + .../some-groups_group-deps_lock20_1.6.xml.bin | 7 + ...some-groups_group-deps_lock20_1.7.json.bin | 7 + .../some-groups_group-deps_lock20_1.7.xml.bin | 7 + ...some-groups_group-deps_lock21_1.2.json.bin | 1 + .../some-groups_group-deps_lock21_1.2.xml.bin | 1 + ...some-groups_group-deps_lock21_1.3.json.bin | 1 + .../some-groups_group-deps_lock21_1.3.xml.bin | 1 + ...some-groups_group-deps_lock21_1.4.json.bin | 1 + .../some-groups_group-deps_lock21_1.4.xml.bin | 1 + ...some-groups_group-deps_lock21_1.5.json.bin | 1 + .../some-groups_group-deps_lock21_1.5.xml.bin | 1 + ...some-groups_group-deps_lock21_1.6.json.bin | 7 + .../some-groups_group-deps_lock21_1.6.xml.bin | 7 + ...some-groups_group-deps_lock21_1.7.json.bin | 7 + .../some-groups_group-deps_lock21_1.7.xml.bin | 7 + .../requirements/file_frozen_1.6.json.bin | 9 ++ .../requirements/file_frozen_1.6.xml.bin | 9 ++ .../requirements/file_frozen_1.7.json.bin | 9 ++ .../requirements/file_frozen_1.7.xml.bin | 9 ++ .../requirements/file_local_1.6.json.bin | 9 ++ .../requirements/file_local_1.6.xml.bin | 9 ++ .../requirements/file_local_1.7.json.bin | 9 ++ .../requirements/file_local_1.7.xml.bin | 9 ++ .../requirements/file_nested_1.6.json.bin | 9 ++ .../requirements/file_nested_1.6.xml.bin | 9 ++ .../requirements/file_nested_1.7.json.bin | 9 ++ .../requirements/file_nested_1.7.xml.bin | 9 ++ .../file_private-packages_1.6.json.bin | 9 ++ .../file_private-packages_1.6.xml.bin | 9 ++ .../file_private-packages_1.7.json.bin | 9 ++ .../file_private-packages_1.7.xml.bin | 9 ++ .../file_with-comments_1.6.json.bin | 9 ++ .../file_with-comments_1.6.xml.bin | 9 ++ .../file_with-comments_1.7.json.bin | 9 ++ .../file_with-comments_1.7.xml.bin | 9 ++ .../file_with-extras_1.6.json.bin | 9 ++ .../requirements/file_with-extras_1.6.xml.bin | 9 ++ .../file_with-extras_1.7.json.bin | 9 ++ .../requirements/file_with-extras_1.7.xml.bin | 9 ++ .../file_with-hashes_1.6.json.bin | 9 ++ .../requirements/file_with-hashes_1.6.xml.bin | 9 ++ .../file_with-hashes_1.7.json.bin | 9 ++ .../requirements/file_with-hashes_1.7.xml.bin | 9 ++ .../requirements/file_with-urls_1.6.json.bin | 9 ++ .../requirements/file_with-urls_1.6.xml.bin | 9 ++ .../requirements/file_with-urls_1.7.json.bin | 9 ++ .../requirements/file_with-urls_1.7.xml.bin | 9 ++ .../file_without-pinned-versions_1.6.json.bin | 9 ++ .../file_without-pinned-versions_1.6.xml.bin | 9 ++ .../file_without-pinned-versions_1.7.json.bin | 9 ++ .../file_without-pinned-versions_1.7.xml.bin | 9 ++ .../index_auth_frozen_1.6.json.bin | 9 ++ .../index_auth_frozen_1.6.xml.bin | 9 ++ .../index_auth_frozen_1.7.json.bin | 9 ++ .../index_auth_frozen_1.7.xml.bin | 9 ++ tests/integration/test_utils_contact.py | 83 ++++++++++++ tests/integration/test_utils_packaging.py | 128 ++++++++++++++++++ tests/integration/test_utils_pep621.py | 103 +++++++++++++- tests/integration/test_utils_poetry.py | 89 ++++++++++++ 847 files changed, 3442 insertions(+), 286 deletions(-) create mode 100644 cyclonedx_py/_internal/utils/contact.py create mode 100644 tests/integration/test_utils_contact.py create mode 100644 tests/integration/test_utils_packaging.py create mode 100644 tests/integration/test_utils_poetry.py diff --git a/cyclonedx_py/_internal/environment.py b/cyclonedx_py/_internal/environment.py index b0eb7f9e9..f3b44ebf7 100644 --- a/cyclonedx_py/_internal/environment.py +++ b/cyclonedx_py/_internal/environment.py @@ -36,7 +36,8 @@ from . import BomBuilder, PropertyName, PurlTypePypi from .cli_common import add_argument_mc_type, add_argument_pyproject from .utils.cdx import licenses_fixup, make_bom -from .utils.packaging import metadata2extrefs, metadata2licenses, normalize_packagename +from .utils.contact import contacts2author +from .utils.packaging import metadata2authors, metadata2extrefs, metadata2licenses, normalize_packagename from .utils.pep610 import PackageSourceArchive, PackageSourceVcs, packagesource2extref, packagesource4dist from .utils.pep639 import dist2licenses_from_files as pep639_dist2licenses_from_files from .utils.pyproject import pyproject2component, pyproject2dependencies, pyproject_load @@ -181,6 +182,7 @@ def __add_components(self, bom: 'Bom', dist_meta = dist.metadata # see https://packaging.python.org/en/latest/specifications/core-metadata/ dist_name = dist_meta['Name'] dist_version = dist_meta['Version'] + authors = tuple(metadata2authors(dist_meta)) component = Component( type=ComponentType.LIBRARY, bom_ref=f'{dist_name}=={dist_version}', @@ -188,8 +190,11 @@ def __add_components(self, bom: 'Bom', version=dist_version, description=dist_meta['Summary'] if 'Summary' in dist_meta else None, external_references=metadata2extrefs(dist_meta), + authors=authors, + author=contacts2author(authors), # path of dist-package on disc? naaa... a package may have multiple files/folders on disc ) + del authors # region licenses component.licenses.update(metadata2licenses(dist_meta, LicenseFactory(), diff --git a/cyclonedx_py/_internal/utils/contact.py b/cyclonedx_py/_internal/utils/contact.py new file mode 100644 index 000000000..96e577697 --- /dev/null +++ b/cyclonedx_py/_internal/utils/contact.py @@ -0,0 +1,77 @@ +# This file is part of CycloneDX Python +# +# Licensed under the Apache License, Version 2.0 (the "License"); +# you may not use this file except in compliance with the License. +# You may obtain a copy of the License at +# +# http://www.apache.org/licenses/LICENSE-2.0 +# +# Unless required by applicable law or agreed to in writing, software +# distributed under the License is distributed on an "AS IS" BASIS, +# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. +# See the License for the specific language governing permissions and +# limitations under the License. +# +# SPDX-License-Identifier: Apache-2.0 +# Copyright (c) OWASP Foundation. All Rights Reserved. + +""" +Helpers for turning the free-form "person" data found in `pyproject.toml`, +Poetry manifests and packaging core-metadata into `OrganizationalContact` model instances. +""" + +from re import compile as re_compile +from typing import TYPE_CHECKING, Optional + +from cyclonedx.model.contact import OrganizationalContact + +if TYPE_CHECKING: # pragma: nocover + from collections.abc import Iterable + +# Matches the "Name " convention used by Poetry's `authors`/`maintainers` lists +# and by packaging core-metadata's free-text `Author`/`Author-email` fields. +# Both the name and the `` part are optional on their own - see `person_string2contact()`. +_PERSON_STRING_MATCHER = re_compile(r'^\s*(?P[^<]*?)\s*(?:<(?P[^<>]*)>)?\s*$') + + +def person_string2contact(value: str) -> Optional[OrganizationalContact]: + """ + Parse a free-form ``"Name "`` string - as used by Poetry and by + packaging core-metadata - into an `OrganizationalContact`. + + The name and the email are each optional on their own: a bare name + (``"Jane Doe"``), a bare email (``""``) and the + combined form (``"Jane Doe "``) are all valid. + + Returns `None` if `value` carries no usable name or email at all. + """ + m = _PERSON_STRING_MATCHER.match(value) + if m is None: # pragma: nocover -- the pattern matches any string, including the empty one + return None + name = m.group('name') or None + email = m.group('email') or None + if name is None and email is None: + return None + return OrganizationalContact(name=name, email=email) + + +def contacts2author(contacts: 'Iterable[OrganizationalContact]') -> Optional[str]: + """ + Derive the legacy singular `Component.author` string from a set of `OrganizationalContact`. + + CycloneDX 1.6 deprecated the singular free-text `author` in favour of the + structured, repeatable `authors`. There is no agreed-upon way to fold + multiple authors back into a single string - see + https://github.com/CycloneDX/specification/issues/335 - so this + deliberately does *not* guess a join convention for more than one author. + + Returns the sole author's ``"Name "``/``"Name"``/``""`` + representation when there is exactly one, else `None`. + """ + contacts = tuple(contacts) + if len(contacts) != 1: + return None + contact = contacts[0] + if contact.name and contact.email: + return f'{contact.name} <{contact.email}>' + return contact.name or contact.email or None diff --git a/cyclonedx_py/_internal/utils/packaging.py b/cyclonedx_py/_internal/utils/packaging.py index 0b51003ef..a6b9d15e0 100644 --- a/cyclonedx_py/_internal/utils/packaging.py +++ b/cyclonedx_py/_internal/utils/packaging.py @@ -16,11 +16,13 @@ # Copyright (c) OWASP Foundation. All Rights Reserved. from collections.abc import Generator +from email.utils import getaddresses from re import compile as re_compile from typing import TYPE_CHECKING from cyclonedx.exception.model import InvalidUriException from cyclonedx.model import AttachedText, ExternalReference, ExternalReferenceType, XsUri +from cyclonedx.model.contact import OrganizationalContact from cyclonedx.model.license import DisjunctiveLicense, LicenseAcknowledgement from .cdx import url_label_to_ert @@ -93,6 +95,45 @@ def metadata2extrefs(metadata: 'PackageMetadata') -> Generator['ExternalReferenc pass +def metadata2authors(metadata: 'PackageMetadata') -> Generator['OrganizationalContact', None, None]: + """ + See: + - https://packaging.python.org/en/latest/specifications/core-metadata/#author + - https://packaging.python.org/en/latest/specifications/core-metadata/#author-email + + `Author` and `Author-email` are two independent free-text fields; there is no + guaranteed way to correlate them when either holds more than one person. So: + - if `Author-email` resolves to exactly one address with no display name of its + own, and `Author` looks like a bare name (no `<`/`@`), the two are combined + into a single contact; + - otherwise, every address found in `Author-email` becomes its own contact, + and a bare-name `Author` is used as a fallback contact only when + `Author-email` is absent entirely. + """ + author = metadata.get('Author') + author_email = metadata.get('Author-email') + if author_email: + # `email.utils.getaddresses()` expects RFC 5322 address syntax. Fed something + # that isn't actually shaped like an email - e.g. a bare name with no `<...>` + # and no `@` - it silently mis-splits on whitespace and drops everything but + # the last "word": `getaddresses(['Jane Doe']) == [('', 'Jane')]`. + # Guard against that by only trusting entries that actually look like an email. + addresses = [ + (name or None, email) + for name, email in getaddresses([author_email]) + if '@' in email + ] + bare_name = bool(author and '<' not in author and '@' not in author) + if len(addresses) == 1 and addresses[0][0] is None and bare_name: + yield OrganizationalContact(name=author, email=addresses[0][1]) + return + for name, email in addresses: + yield OrganizationalContact(name=name, email=email) + return + if author: + yield OrganizationalContact(name=author) + + _NORMALIZE_PN_MATCHER = re_compile(r'[-_.]+') _NORMALIZE_PN_REPLACE = '-' diff --git a/cyclonedx_py/_internal/utils/pep621.py b/cyclonedx_py/_internal/utils/pep621.py index add8ab8c8..513579be0 100644 --- a/cyclonedx_py/_internal/utils/pep621.py +++ b/cyclonedx_py/_internal/utils/pep621.py @@ -32,10 +32,12 @@ from cyclonedx.exception.model import InvalidUriException from cyclonedx.model import AttachedText, Encoding, ExternalReference, XsUri from cyclonedx.model.component import Component +from cyclonedx.model.contact import OrganizationalContact from cyclonedx.model.license import DisjunctiveLicense, LicenseAcknowledgement from packaging.requirements import Requirement from .cdx import url_label_to_ert +from .contact import contacts2author, person_string2contact from .license_trove_classifier import is_license_trove, license_trove2spdx from .mimetypes import guess_type @@ -114,15 +116,36 @@ def project2extrefs(project: dict[str, Any]) -> Generator['ExternalReference', N pass +def project2authors(project: dict[str, Any]) -> Generator['OrganizationalContact', None, None]: + # see https://packaging.python.org/en/latest/specifications/pyproject-toml/#authors-maintainers + # see https://peps.python.org/pep-0621/#authors-maintainers + for author in project.get('authors', ()): + if isinstance(author, str): + # Not per spec -- PEP 621 authors are tables, not strings -- but some + # real-world pyproject.toml files use Poetry's "Name " convention + # here regardless. Be lenient and parse it the same way, rather than crash. + contact = person_string2contact(author) + if contact is not None: + yield contact + continue + name = author.get('name') or None + email = author.get('email') or None + if name is not None or email is not None: + yield OrganizationalContact(name=name, email=email) + + def project2component(project: dict[str, Any], *, ctype: 'ComponentType') -> 'Component': dynamic = project.get('dynamic', ()) + authors = tuple(project2authors(project)) if 'authors' not in dynamic else () return Component( type=ctype, name=project['name'], version=project.get('version', None) if 'version' not in dynamic else None, description=project.get('description', None) if 'description' not in dynamic else None, external_references=project2extrefs(project), + authors=authors, + author=contacts2author(authors), # licenses are not gathered here per default, they may be sourced otherwise # TODO add more properties according to spec ) diff --git a/cyclonedx_py/_internal/utils/poetry.py b/cyclonedx_py/_internal/utils/poetry.py index 78adbb905..06c17b764 100644 --- a/cyclonedx_py/_internal/utils/poetry.py +++ b/cyclonedx_py/_internal/utils/poetry.py @@ -29,10 +29,12 @@ from cyclonedx.factory.license import LicenseFactory from cyclonedx.model import ExternalReference, ExternalReferenceType, XsUri from cyclonedx.model.component import Component +from cyclonedx.model.contact import OrganizationalContact from cyclonedx.model.license import LicenseAcknowledgement from packaging.requirements import Requirement from .cdx import licenses_fixup, url_label_to_ert +from .contact import contacts2author, person_string2contact from .pep621 import classifiers2licenses if TYPE_CHECKING: @@ -62,13 +64,24 @@ def poetry2extrefs(poetry: dict[str, Any]) -> Generator['ExternalReference', Non pass +def poetry2authors(poetry: dict[str, Any]) -> Generator['OrganizationalContact', None, None]: + # see https://python-poetry.org/docs/pyproject/#authors + for author in poetry.get('authors', ()): + contact = person_string2contact(author) + if contact is not None: + yield contact + + def poetry2component(poetry: dict[str, Any], *, ctype: 'ComponentType') -> 'Component': + authors = tuple(poetry2authors(poetry)) component = Component( type=ctype, name=poetry['name'], version=poetry.get('version'), description=poetry.get('description'), external_references=poetry2extrefs(poetry), + authors=authors, + author=contacts2author(authors), # TODO add more properties according to spec ) # region licenses diff --git a/tests/_data/snapshots/environment/plain_editable-self_1.2.json.bin b/tests/_data/snapshots/environment/plain_editable-self_1.2.json.bin index cc39ad902..68969486e 100644 --- a/tests/_data/snapshots/environment/plain_editable-self_1.2.json.bin +++ b/tests/_data/snapshots/environment/plain_editable-self_1.2.json.bin @@ -1,6 +1,7 @@ { "components": [ { + "author": "Benjamin Peterson ", "bom-ref": "six==1.16.0", "description": "Python 2 and 3 compatibility utilities", "externalReferences": [ diff --git a/tests/_data/snapshots/environment/plain_editable-self_1.2.xml.bin b/tests/_data/snapshots/environment/plain_editable-self_1.2.xml.bin index 47c3717e9..2f2a42f17 100644 --- a/tests/_data/snapshots/environment/plain_editable-self_1.2.xml.bin +++ b/tests/_data/snapshots/environment/plain_editable-self_1.2.xml.bin @@ -21,6 +21,7 @@ + Benjamin Peterson <benjamin@python.org> six 1.16.0 Python 2 and 3 compatibility utilities diff --git a/tests/_data/snapshots/environment/plain_editable-self_1.3.json.bin b/tests/_data/snapshots/environment/plain_editable-self_1.3.json.bin index 0e06fe0f0..5f5e95591 100644 --- a/tests/_data/snapshots/environment/plain_editable-self_1.3.json.bin +++ b/tests/_data/snapshots/environment/plain_editable-self_1.3.json.bin @@ -1,6 +1,7 @@ { "components": [ { + "author": "Benjamin Peterson ", "bom-ref": "six==1.16.0", "description": "Python 2 and 3 compatibility utilities", "externalReferences": [ diff --git a/tests/_data/snapshots/environment/plain_editable-self_1.3.xml.bin b/tests/_data/snapshots/environment/plain_editable-self_1.3.xml.bin index 810d605fa..0c4d6e7b5 100644 --- a/tests/_data/snapshots/environment/plain_editable-self_1.3.xml.bin +++ b/tests/_data/snapshots/environment/plain_editable-self_1.3.xml.bin @@ -24,6 +24,7 @@ + Benjamin Peterson <benjamin@python.org> six 1.16.0 Python 2 and 3 compatibility utilities diff --git a/tests/_data/snapshots/environment/plain_editable-self_1.4.json.bin b/tests/_data/snapshots/environment/plain_editable-self_1.4.json.bin index 601748151..540244691 100644 --- a/tests/_data/snapshots/environment/plain_editable-self_1.4.json.bin +++ b/tests/_data/snapshots/environment/plain_editable-self_1.4.json.bin @@ -1,6 +1,7 @@ { "components": [ { + "author": "Benjamin Peterson ", "bom-ref": "six==1.16.0", "description": "Python 2 and 3 compatibility utilities", "externalReferences": [ diff --git a/tests/_data/snapshots/environment/plain_editable-self_1.4.xml.bin b/tests/_data/snapshots/environment/plain_editable-self_1.4.xml.bin index 6a3abd68c..725393ec5 100644 --- a/tests/_data/snapshots/environment/plain_editable-self_1.4.xml.bin +++ b/tests/_data/snapshots/environment/plain_editable-self_1.4.xml.bin @@ -51,6 +51,7 @@ + Benjamin Peterson <benjamin@python.org> six 1.16.0 Python 2 and 3 compatibility utilities diff --git a/tests/_data/snapshots/environment/plain_editable-self_1.5.json.bin b/tests/_data/snapshots/environment/plain_editable-self_1.5.json.bin index 2ed6f4860..3abcdb31f 100644 --- a/tests/_data/snapshots/environment/plain_editable-self_1.5.json.bin +++ b/tests/_data/snapshots/environment/plain_editable-self_1.5.json.bin @@ -1,6 +1,7 @@ { "components": [ { + "author": "Benjamin Peterson ", "bom-ref": "six==1.16.0", "description": "Python 2 and 3 compatibility utilities", "externalReferences": [ diff --git a/tests/_data/snapshots/environment/plain_editable-self_1.5.xml.bin b/tests/_data/snapshots/environment/plain_editable-self_1.5.xml.bin index 97b92c3b9..6386e313b 100644 --- a/tests/_data/snapshots/environment/plain_editable-self_1.5.xml.bin +++ b/tests/_data/snapshots/environment/plain_editable-self_1.5.xml.bin @@ -61,6 +61,7 @@ + Benjamin Peterson <benjamin@python.org> six 1.16.0 Python 2 and 3 compatibility utilities diff --git a/tests/_data/snapshots/environment/plain_editable-self_1.6.json.bin b/tests/_data/snapshots/environment/plain_editable-self_1.6.json.bin index 6eae686a1..b9f3aa5cf 100644 --- a/tests/_data/snapshots/environment/plain_editable-self_1.6.json.bin +++ b/tests/_data/snapshots/environment/plain_editable-self_1.6.json.bin @@ -1,6 +1,13 @@ { "components": [ { + "author": "Benjamin Peterson ", + "authors": [ + { + "email": "benjamin@python.org", + "name": "Benjamin Peterson" + } + ], "bom-ref": "six==1.16.0", "description": "Python 2 and 3 compatibility utilities", "externalReferences": [ diff --git a/tests/_data/snapshots/environment/plain_editable-self_1.6.xml.bin b/tests/_data/snapshots/environment/plain_editable-self_1.6.xml.bin index d8d21b5f4..35cb57c84 100644 --- a/tests/_data/snapshots/environment/plain_editable-self_1.6.xml.bin +++ b/tests/_data/snapshots/environment/plain_editable-self_1.6.xml.bin @@ -61,6 +61,13 @@ + + + Benjamin Peterson + benjamin@python.org + + + Benjamin Peterson <benjamin@python.org> six 1.16.0 Python 2 and 3 compatibility utilities diff --git a/tests/_data/snapshots/environment/plain_editable-self_1.7.json.bin b/tests/_data/snapshots/environment/plain_editable-self_1.7.json.bin index 0eb85847b..3da273440 100644 --- a/tests/_data/snapshots/environment/plain_editable-self_1.7.json.bin +++ b/tests/_data/snapshots/environment/plain_editable-self_1.7.json.bin @@ -1,6 +1,13 @@ { "components": [ { + "author": "Benjamin Peterson ", + "authors": [ + { + "email": "benjamin@python.org", + "name": "Benjamin Peterson" + } + ], "bom-ref": "six==1.16.0", "description": "Python 2 and 3 compatibility utilities", "externalReferences": [ diff --git a/tests/_data/snapshots/environment/plain_editable-self_1.7.xml.bin b/tests/_data/snapshots/environment/plain_editable-self_1.7.xml.bin index c0dc85a83..9ac7badf7 100644 --- a/tests/_data/snapshots/environment/plain_editable-self_1.7.xml.bin +++ b/tests/_data/snapshots/environment/plain_editable-self_1.7.xml.bin @@ -61,6 +61,13 @@ + + + Benjamin Peterson + benjamin@python.org + + + Benjamin Peterson <benjamin@python.org> six 1.16.0 Python 2 and 3 compatibility utilities diff --git a/tests/_data/snapshots/environment/plain_no-deps_1.6.json.bin b/tests/_data/snapshots/environment/plain_no-deps_1.6.json.bin index 960672b5b..93c5a5ee3 100644 --- a/tests/_data/snapshots/environment/plain_no-deps_1.6.json.bin +++ b/tests/_data/snapshots/environment/plain_no-deps_1.6.json.bin @@ -6,6 +6,15 @@ ], "metadata": { "component": { + "authors": [ + { + "name": "My Name" + }, + { + "email": "you@example.com", + "name": "Your Name" + } + ], "bom-ref": "root-component", "description": "packages with all meta, but no deps", "evidence": { diff --git a/tests/_data/snapshots/environment/plain_no-deps_1.6.xml.bin b/tests/_data/snapshots/environment/plain_no-deps_1.6.xml.bin index 805573888..e803fbf76 100644 --- a/tests/_data/snapshots/environment/plain_no-deps_1.6.xml.bin +++ b/tests/_data/snapshots/environment/plain_no-deps_1.6.xml.bin @@ -51,6 +51,15 @@ + + + My Name + + + Your Name + you@example.com + + no-deps 0.1.0 packages with all meta, but no deps diff --git a/tests/_data/snapshots/environment/plain_no-deps_1.7.json.bin b/tests/_data/snapshots/environment/plain_no-deps_1.7.json.bin index d25b96605..a12475ffb 100644 --- a/tests/_data/snapshots/environment/plain_no-deps_1.7.json.bin +++ b/tests/_data/snapshots/environment/plain_no-deps_1.7.json.bin @@ -6,6 +6,15 @@ ], "metadata": { "component": { + "authors": [ + { + "name": "My Name" + }, + { + "email": "you@example.com", + "name": "Your Name" + } + ], "bom-ref": "root-component", "description": "packages with all meta, but no deps", "evidence": { diff --git a/tests/_data/snapshots/environment/plain_no-deps_1.7.xml.bin b/tests/_data/snapshots/environment/plain_no-deps_1.7.xml.bin index 0de97df86..8a03be4fb 100644 --- a/tests/_data/snapshots/environment/plain_no-deps_1.7.xml.bin +++ b/tests/_data/snapshots/environment/plain_no-deps_1.7.xml.bin @@ -51,6 +51,15 @@ + + + My Name + + + Your Name + you@example.com + + no-deps 0.1.0 packages with all meta, but no deps diff --git a/tests/_data/snapshots/environment/plain_normalize-packagename_1.2.json.bin b/tests/_data/snapshots/environment/plain_normalize-packagename_1.2.json.bin index a225a2802..7aca17ad1 100644 --- a/tests/_data/snapshots/environment/plain_normalize-packagename_1.2.json.bin +++ b/tests/_data/snapshots/environment/plain_normalize-packagename_1.2.json.bin @@ -1,6 +1,7 @@ { "components": [ { + "author": "Anthon van der Neut ", "bom-ref": "ruamel.yaml==0.18.5", "description": "ruamel.yaml is a YAML parser/emitter that supports roundtrip preservation of comments, seq/map flow style, and map key order", "externalReferences": [ @@ -38,6 +39,7 @@ "version": "0.18.5" }, { + "author": "Anthon van der Neut ", "bom-ref": "ruamel.yaml.jinja2==0.2.7", "description": "jinja2 pre and post-processor to update with YAML", "externalReferences": [ diff --git a/tests/_data/snapshots/environment/plain_normalize-packagename_1.2.xml.bin b/tests/_data/snapshots/environment/plain_normalize-packagename_1.2.xml.bin index a1961673d..4f9fefe33 100644 --- a/tests/_data/snapshots/environment/plain_normalize-packagename_1.2.xml.bin +++ b/tests/_data/snapshots/environment/plain_normalize-packagename_1.2.xml.bin @@ -21,6 +21,7 @@ + Anthon van der Neut <a.van.der.neut@ruamel.eu> ruamel.yaml 0.18.5 ruamel.yaml is a YAML parser/emitter that supports roundtrip preservation of comments, seq/map flow style, and map key order @@ -50,6 +51,7 @@ + Anthon van der Neut <a.van.der.neut@ruamel.eu> ruamel.yaml.jinja2 0.2.7 jinja2 pre and post-processor to update with YAML diff --git a/tests/_data/snapshots/environment/plain_normalize-packagename_1.3.json.bin b/tests/_data/snapshots/environment/plain_normalize-packagename_1.3.json.bin index 524ad20bd..b1c3246c2 100644 --- a/tests/_data/snapshots/environment/plain_normalize-packagename_1.3.json.bin +++ b/tests/_data/snapshots/environment/plain_normalize-packagename_1.3.json.bin @@ -1,6 +1,7 @@ { "components": [ { + "author": "Anthon van der Neut ", "bom-ref": "ruamel.yaml==0.18.5", "description": "ruamel.yaml is a YAML parser/emitter that supports roundtrip preservation of comments, seq/map flow style, and map key order", "externalReferences": [ @@ -44,6 +45,7 @@ "version": "0.18.5" }, { + "author": "Anthon van der Neut ", "bom-ref": "ruamel.yaml.jinja2==0.2.7", "description": "jinja2 pre and post-processor to update with YAML", "externalReferences": [ diff --git a/tests/_data/snapshots/environment/plain_normalize-packagename_1.3.xml.bin b/tests/_data/snapshots/environment/plain_normalize-packagename_1.3.xml.bin index 9a6cc0b2d..a94132dfe 100644 --- a/tests/_data/snapshots/environment/plain_normalize-packagename_1.3.xml.bin +++ b/tests/_data/snapshots/environment/plain_normalize-packagename_1.3.xml.bin @@ -24,6 +24,7 @@ + Anthon van der Neut <a.van.der.neut@ruamel.eu> ruamel.yaml 0.18.5 ruamel.yaml is a YAML parser/emitter that supports roundtrip preservation of comments, seq/map flow style, and map key order @@ -56,6 +57,7 @@ + Anthon van der Neut <a.van.der.neut@ruamel.eu> ruamel.yaml.jinja2 0.2.7 jinja2 pre and post-processor to update with YAML diff --git a/tests/_data/snapshots/environment/plain_normalize-packagename_1.4.json.bin b/tests/_data/snapshots/environment/plain_normalize-packagename_1.4.json.bin index 036cd6509..3c6ab4fdb 100644 --- a/tests/_data/snapshots/environment/plain_normalize-packagename_1.4.json.bin +++ b/tests/_data/snapshots/environment/plain_normalize-packagename_1.4.json.bin @@ -1,6 +1,7 @@ { "components": [ { + "author": "Anthon van der Neut ", "bom-ref": "ruamel.yaml==0.18.5", "description": "ruamel.yaml is a YAML parser/emitter that supports roundtrip preservation of comments, seq/map flow style, and map key order", "externalReferences": [ @@ -44,6 +45,7 @@ "version": "0.18.5" }, { + "author": "Anthon van der Neut ", "bom-ref": "ruamel.yaml.jinja2==0.2.7", "description": "jinja2 pre and post-processor to update with YAML", "externalReferences": [ diff --git a/tests/_data/snapshots/environment/plain_normalize-packagename_1.4.xml.bin b/tests/_data/snapshots/environment/plain_normalize-packagename_1.4.xml.bin index 545b48684..1bc4539d3 100644 --- a/tests/_data/snapshots/environment/plain_normalize-packagename_1.4.xml.bin +++ b/tests/_data/snapshots/environment/plain_normalize-packagename_1.4.xml.bin @@ -51,6 +51,7 @@ + Anthon van der Neut <a.van.der.neut@ruamel.eu> ruamel.yaml 0.18.5 ruamel.yaml is a YAML parser/emitter that supports roundtrip preservation of comments, seq/map flow style, and map key order @@ -83,6 +84,7 @@ + Anthon van der Neut <a.van.der.neut@ruamel.eu> ruamel.yaml.jinja2 0.2.7 jinja2 pre and post-processor to update with YAML diff --git a/tests/_data/snapshots/environment/plain_normalize-packagename_1.5.json.bin b/tests/_data/snapshots/environment/plain_normalize-packagename_1.5.json.bin index 5a0fb10bd..ce1ee713b 100644 --- a/tests/_data/snapshots/environment/plain_normalize-packagename_1.5.json.bin +++ b/tests/_data/snapshots/environment/plain_normalize-packagename_1.5.json.bin @@ -1,6 +1,7 @@ { "components": [ { + "author": "Anthon van der Neut ", "bom-ref": "ruamel.yaml==0.18.5", "description": "ruamel.yaml is a YAML parser/emitter that supports roundtrip preservation of comments, seq/map flow style, and map key order", "externalReferences": [ @@ -44,6 +45,7 @@ "version": "0.18.5" }, { + "author": "Anthon van der Neut ", "bom-ref": "ruamel.yaml.jinja2==0.2.7", "description": "jinja2 pre and post-processor to update with YAML", "externalReferences": [ diff --git a/tests/_data/snapshots/environment/plain_normalize-packagename_1.5.xml.bin b/tests/_data/snapshots/environment/plain_normalize-packagename_1.5.xml.bin index 51adc4aa7..7c88e6cdd 100644 --- a/tests/_data/snapshots/environment/plain_normalize-packagename_1.5.xml.bin +++ b/tests/_data/snapshots/environment/plain_normalize-packagename_1.5.xml.bin @@ -61,6 +61,7 @@ + Anthon van der Neut <a.van.der.neut@ruamel.eu> ruamel.yaml 0.18.5 ruamel.yaml is a YAML parser/emitter that supports roundtrip preservation of comments, seq/map flow style, and map key order @@ -93,6 +94,7 @@ + Anthon van der Neut <a.van.der.neut@ruamel.eu> ruamel.yaml.jinja2 0.2.7 jinja2 pre and post-processor to update with YAML diff --git a/tests/_data/snapshots/environment/plain_normalize-packagename_1.6.json.bin b/tests/_data/snapshots/environment/plain_normalize-packagename_1.6.json.bin index 2b716f80c..27416742a 100644 --- a/tests/_data/snapshots/environment/plain_normalize-packagename_1.6.json.bin +++ b/tests/_data/snapshots/environment/plain_normalize-packagename_1.6.json.bin @@ -1,6 +1,13 @@ { "components": [ { + "author": "Anthon van der Neut ", + "authors": [ + { + "email": "a.van.der.neut@ruamel.eu", + "name": "Anthon van der Neut" + } + ], "bom-ref": "ruamel.yaml==0.18.5", "description": "ruamel.yaml is a YAML parser/emitter that supports roundtrip preservation of comments, seq/map flow style, and map key order", "externalReferences": [ @@ -45,6 +52,13 @@ "version": "0.18.5" }, { + "author": "Anthon van der Neut ", + "authors": [ + { + "email": "a.van.der.neut@ruamel.eu", + "name": "Anthon van der Neut" + } + ], "bom-ref": "ruamel.yaml.jinja2==0.2.7", "description": "jinja2 pre and post-processor to update with YAML", "externalReferences": [ diff --git a/tests/_data/snapshots/environment/plain_normalize-packagename_1.6.xml.bin b/tests/_data/snapshots/environment/plain_normalize-packagename_1.6.xml.bin index 27360cf0b..e5483a114 100644 --- a/tests/_data/snapshots/environment/plain_normalize-packagename_1.6.xml.bin +++ b/tests/_data/snapshots/environment/plain_normalize-packagename_1.6.xml.bin @@ -61,6 +61,13 @@ + + + Anthon van der Neut + a.van.der.neut@ruamel.eu + + + Anthon van der Neut <a.van.der.neut@ruamel.eu> ruamel.yaml 0.18.5 ruamel.yaml is a YAML parser/emitter that supports roundtrip preservation of comments, seq/map flow style, and map key order @@ -93,6 +100,13 @@ + + + Anthon van der Neut + a.van.der.neut@ruamel.eu + + + Anthon van der Neut <a.van.der.neut@ruamel.eu> ruamel.yaml.jinja2 0.2.7 jinja2 pre and post-processor to update with YAML diff --git a/tests/_data/snapshots/environment/plain_normalize-packagename_1.7.json.bin b/tests/_data/snapshots/environment/plain_normalize-packagename_1.7.json.bin index 6f6762062..37ae0d028 100644 --- a/tests/_data/snapshots/environment/plain_normalize-packagename_1.7.json.bin +++ b/tests/_data/snapshots/environment/plain_normalize-packagename_1.7.json.bin @@ -1,6 +1,13 @@ { "components": [ { + "author": "Anthon van der Neut ", + "authors": [ + { + "email": "a.van.der.neut@ruamel.eu", + "name": "Anthon van der Neut" + } + ], "bom-ref": "ruamel.yaml==0.18.5", "description": "ruamel.yaml is a YAML parser/emitter that supports roundtrip preservation of comments, seq/map flow style, and map key order", "externalReferences": [ @@ -45,6 +52,13 @@ "version": "0.18.5" }, { + "author": "Anthon van der Neut ", + "authors": [ + { + "email": "a.van.der.neut@ruamel.eu", + "name": "Anthon van der Neut" + } + ], "bom-ref": "ruamel.yaml.jinja2==0.2.7", "description": "jinja2 pre and post-processor to update with YAML", "externalReferences": [ diff --git a/tests/_data/snapshots/environment/plain_normalize-packagename_1.7.xml.bin b/tests/_data/snapshots/environment/plain_normalize-packagename_1.7.xml.bin index d7eae2688..3a8c2e47b 100644 --- a/tests/_data/snapshots/environment/plain_normalize-packagename_1.7.xml.bin +++ b/tests/_data/snapshots/environment/plain_normalize-packagename_1.7.xml.bin @@ -61,6 +61,13 @@ + + + Anthon van der Neut + a.van.der.neut@ruamel.eu + + + Anthon van der Neut <a.van.der.neut@ruamel.eu> ruamel.yaml 0.18.5 ruamel.yaml is a YAML parser/emitter that supports roundtrip preservation of comments, seq/map flow style, and map key order @@ -93,6 +100,13 @@ + + + Anthon van der Neut + a.van.der.neut@ruamel.eu + + + Anthon van der Neut <a.van.der.neut@ruamel.eu> ruamel.yaml.jinja2 0.2.7 jinja2 pre and post-processor to update with YAML diff --git a/tests/_data/snapshots/environment/plain_private-packages_1.0.xml.bin b/tests/_data/snapshots/environment/plain_private-packages_1.0.xml.bin index 48f79b1b6..f54d9d570 100644 --- a/tests/_data/snapshots/environment/plain_private-packages_1.0.xml.bin +++ b/tests/_data/snapshots/environment/plain_private-packages_1.0.xml.bin @@ -8,12 +8,5 @@ pkg:pypi/six@1.16.0 false - - toml - 0.10.2 - Python Library for Tom's Obvious, Minimal Language - pkg:pypi/toml@0.10.2 - false - diff --git a/tests/_data/snapshots/environment/plain_private-packages_1.1.xml.bin b/tests/_data/snapshots/environment/plain_private-packages_1.1.xml.bin index 1aebcf54b..fe2134cfb 100644 --- a/tests/_data/snapshots/environment/plain_private-packages_1.1.xml.bin +++ b/tests/_data/snapshots/environment/plain_private-packages_1.1.xml.bin @@ -22,22 +22,5 @@ - - toml - 0.10.2 - Python Library for Tom's Obvious, Minimal Language - - - MIT - - - pkg:pypi/toml@0.10.2 - - - https://github.com/uiri/toml - from packaging metadata: Home-page - - - diff --git a/tests/_data/snapshots/environment/plain_private-packages_1.2.json.bin b/tests/_data/snapshots/environment/plain_private-packages_1.2.json.bin index 7034e743c..53def30b4 100644 --- a/tests/_data/snapshots/environment/plain_private-packages_1.2.json.bin +++ b/tests/_data/snapshots/environment/plain_private-packages_1.2.json.bin @@ -1,6 +1,7 @@ { "components": [ { + "author": "Benjamin Peterson ", "bom-ref": "six==1.16.0", "description": "Python 2 and 3 compatibility utilities", "externalReferences": [ @@ -26,28 +27,6 @@ "purl": "pkg:pypi/six@1.16.0", "type": "library", "version": "1.16.0" - }, - { - "bom-ref": "toml==0.10.2", - "description": "Python Library for Tom's Obvious, Minimal Language", - "externalReferences": [ - { - "comment": "from packaging metadata: Home-page", - "type": "website", - "url": "https://github.com/uiri/toml" - } - ], - "licenses": [ - { - "license": { - "id": "MIT" - } - } - ], - "name": "toml", - "purl": "pkg:pypi/toml@0.10.2", - "type": "library", - "version": "0.10.2" } ], "dependencies": [ @@ -59,9 +38,6 @@ }, { "ref": "six==1.16.0" - }, - { - "ref": "toml==0.10.2" } ], "metadata": { diff --git a/tests/_data/snapshots/environment/plain_private-packages_1.2.xml.bin b/tests/_data/snapshots/environment/plain_private-packages_1.2.xml.bin index 7498dda1f..51a0c66e8 100644 --- a/tests/_data/snapshots/environment/plain_private-packages_1.2.xml.bin +++ b/tests/_data/snapshots/environment/plain_private-packages_1.2.xml.bin @@ -21,6 +21,7 @@ + Benjamin Peterson <benjamin@python.org> six 1.16.0 Python 2 and 3 compatibility utilities @@ -41,29 +42,11 @@ - - toml - 0.10.2 - Python Library for Tom's Obvious, Minimal Language - - - MIT - - - pkg:pypi/toml@0.10.2 - - - https://github.com/uiri/toml - from packaging metadata: Home-page - - - - diff --git a/tests/_data/snapshots/environment/plain_private-packages_1.3.json.bin b/tests/_data/snapshots/environment/plain_private-packages_1.3.json.bin index f58bf3e54..6fa4953d7 100644 --- a/tests/_data/snapshots/environment/plain_private-packages_1.3.json.bin +++ b/tests/_data/snapshots/environment/plain_private-packages_1.3.json.bin @@ -1,6 +1,7 @@ { "components": [ { + "author": "Benjamin Peterson ", "bom-ref": "six==1.16.0", "description": "Python 2 and 3 compatibility utilities", "externalReferences": [ @@ -32,28 +33,6 @@ "purl": "pkg:pypi/six@1.16.0", "type": "library", "version": "1.16.0" - }, - { - "bom-ref": "toml==0.10.2", - "description": "Python Library for Tom's Obvious, Minimal Language", - "externalReferences": [ - { - "comment": "from packaging metadata: Home-page", - "type": "website", - "url": "https://github.com/uiri/toml" - } - ], - "licenses": [ - { - "license": { - "id": "MIT" - } - } - ], - "name": "toml", - "purl": "pkg:pypi/toml@0.10.2", - "type": "library", - "version": "0.10.2" } ], "dependencies": [ @@ -65,9 +44,6 @@ }, { "ref": "six==1.16.0" - }, - { - "ref": "toml==0.10.2" } ], "metadata": { diff --git a/tests/_data/snapshots/environment/plain_private-packages_1.3.xml.bin b/tests/_data/snapshots/environment/plain_private-packages_1.3.xml.bin index b9df9aade..318d28426 100644 --- a/tests/_data/snapshots/environment/plain_private-packages_1.3.xml.bin +++ b/tests/_data/snapshots/environment/plain_private-packages_1.3.xml.bin @@ -24,6 +24,7 @@ + Benjamin Peterson <benjamin@python.org> six 1.16.0 Python 2 and 3 compatibility utilities @@ -47,29 +48,11 @@ - - toml - 0.10.2 - Python Library for Tom's Obvious, Minimal Language - - - MIT - - - pkg:pypi/toml@0.10.2 - - - https://github.com/uiri/toml - from packaging metadata: Home-page - - - - diff --git a/tests/_data/snapshots/environment/plain_private-packages_1.4.json.bin b/tests/_data/snapshots/environment/plain_private-packages_1.4.json.bin index 2f0753183..f1c4ea245 100644 --- a/tests/_data/snapshots/environment/plain_private-packages_1.4.json.bin +++ b/tests/_data/snapshots/environment/plain_private-packages_1.4.json.bin @@ -1,6 +1,7 @@ { "components": [ { + "author": "Benjamin Peterson ", "bom-ref": "six==1.16.0", "description": "Python 2 and 3 compatibility utilities", "externalReferences": [ @@ -32,28 +33,6 @@ "purl": "pkg:pypi/six@1.16.0", "type": "library", "version": "1.16.0" - }, - { - "bom-ref": "toml==0.10.2", - "description": "Python Library for Tom's Obvious, Minimal Language", - "externalReferences": [ - { - "comment": "from packaging metadata: Home-page", - "type": "website", - "url": "https://github.com/uiri/toml" - } - ], - "licenses": [ - { - "license": { - "id": "MIT" - } - } - ], - "name": "toml", - "purl": "pkg:pypi/toml@0.10.2", - "type": "library", - "version": "0.10.2" } ], "dependencies": [ @@ -65,9 +44,6 @@ }, { "ref": "six==1.16.0" - }, - { - "ref": "toml==0.10.2" } ], "metadata": { diff --git a/tests/_data/snapshots/environment/plain_private-packages_1.4.xml.bin b/tests/_data/snapshots/environment/plain_private-packages_1.4.xml.bin index 2597a674b..83e2a8995 100644 --- a/tests/_data/snapshots/environment/plain_private-packages_1.4.xml.bin +++ b/tests/_data/snapshots/environment/plain_private-packages_1.4.xml.bin @@ -51,6 +51,7 @@ + Benjamin Peterson <benjamin@python.org> six 1.16.0 Python 2 and 3 compatibility utilities @@ -74,29 +75,11 @@ - - toml - 0.10.2 - Python Library for Tom's Obvious, Minimal Language - - - MIT - - - pkg:pypi/toml@0.10.2 - - - https://github.com/uiri/toml - from packaging metadata: Home-page - - - - diff --git a/tests/_data/snapshots/environment/plain_private-packages_1.5.json.bin b/tests/_data/snapshots/environment/plain_private-packages_1.5.json.bin index e95da34ca..97485413a 100644 --- a/tests/_data/snapshots/environment/plain_private-packages_1.5.json.bin +++ b/tests/_data/snapshots/environment/plain_private-packages_1.5.json.bin @@ -1,6 +1,7 @@ { "components": [ { + "author": "Benjamin Peterson ", "bom-ref": "six==1.16.0", "description": "Python 2 and 3 compatibility utilities", "externalReferences": [ @@ -32,28 +33,6 @@ "purl": "pkg:pypi/six@1.16.0", "type": "library", "version": "1.16.0" - }, - { - "bom-ref": "toml==0.10.2", - "description": "Python Library for Tom's Obvious, Minimal Language", - "externalReferences": [ - { - "comment": "from packaging metadata: Home-page", - "type": "website", - "url": "https://github.com/uiri/toml" - } - ], - "licenses": [ - { - "license": { - "id": "MIT" - } - } - ], - "name": "toml", - "purl": "pkg:pypi/toml@0.10.2", - "type": "library", - "version": "0.10.2" } ], "dependencies": [ @@ -65,9 +44,6 @@ }, { "ref": "six==1.16.0" - }, - { - "ref": "toml==0.10.2" } ], "metadata": { diff --git a/tests/_data/snapshots/environment/plain_private-packages_1.5.xml.bin b/tests/_data/snapshots/environment/plain_private-packages_1.5.xml.bin index 17cdfb631..693fd7a8b 100644 --- a/tests/_data/snapshots/environment/plain_private-packages_1.5.xml.bin +++ b/tests/_data/snapshots/environment/plain_private-packages_1.5.xml.bin @@ -61,6 +61,7 @@ + Benjamin Peterson <benjamin@python.org> six 1.16.0 Python 2 and 3 compatibility utilities @@ -84,29 +85,11 @@ - - toml - 0.10.2 - Python Library for Tom's Obvious, Minimal Language - - - MIT - - - pkg:pypi/toml@0.10.2 - - - https://github.com/uiri/toml - from packaging metadata: Home-page - - - - diff --git a/tests/_data/snapshots/environment/plain_private-packages_1.6.json.bin b/tests/_data/snapshots/environment/plain_private-packages_1.6.json.bin index 141868309..b7a867d15 100644 --- a/tests/_data/snapshots/environment/plain_private-packages_1.6.json.bin +++ b/tests/_data/snapshots/environment/plain_private-packages_1.6.json.bin @@ -1,6 +1,13 @@ { "components": [ { + "author": "Benjamin Peterson ", + "authors": [ + { + "email": "benjamin@python.org", + "name": "Benjamin Peterson" + } + ], "bom-ref": "six==1.16.0", "description": "Python 2 and 3 compatibility utilities", "externalReferences": [ @@ -33,29 +40,6 @@ "purl": "pkg:pypi/six@1.16.0", "type": "library", "version": "1.16.0" - }, - { - "bom-ref": "toml==0.10.2", - "description": "Python Library for Tom's Obvious, Minimal Language", - "externalReferences": [ - { - "comment": "from packaging metadata: Home-page", - "type": "website", - "url": "https://github.com/uiri/toml" - } - ], - "licenses": [ - { - "license": { - "acknowledgement": "declared", - "id": "MIT" - } - } - ], - "name": "toml", - "purl": "pkg:pypi/toml@0.10.2", - "type": "library", - "version": "0.10.2" } ], "dependencies": [ @@ -67,9 +51,6 @@ }, { "ref": "six==1.16.0" - }, - { - "ref": "toml==0.10.2" } ], "metadata": { diff --git a/tests/_data/snapshots/environment/plain_private-packages_1.6.xml.bin b/tests/_data/snapshots/environment/plain_private-packages_1.6.xml.bin index 300f95479..b3b542b75 100644 --- a/tests/_data/snapshots/environment/plain_private-packages_1.6.xml.bin +++ b/tests/_data/snapshots/environment/plain_private-packages_1.6.xml.bin @@ -61,6 +61,13 @@ + + + Benjamin Peterson + benjamin@python.org + + + Benjamin Peterson <benjamin@python.org> six 1.16.0 Python 2 and 3 compatibility utilities @@ -84,29 +91,11 @@ - - toml - 0.10.2 - Python Library for Tom's Obvious, Minimal Language - - - MIT - - - pkg:pypi/toml@0.10.2 - - - https://github.com/uiri/toml - from packaging metadata: Home-page - - - - diff --git a/tests/_data/snapshots/environment/plain_private-packages_1.7.json.bin b/tests/_data/snapshots/environment/plain_private-packages_1.7.json.bin index 428fa0f03..f6cf17f5d 100644 --- a/tests/_data/snapshots/environment/plain_private-packages_1.7.json.bin +++ b/tests/_data/snapshots/environment/plain_private-packages_1.7.json.bin @@ -1,6 +1,13 @@ { "components": [ { + "author": "Benjamin Peterson ", + "authors": [ + { + "email": "benjamin@python.org", + "name": "Benjamin Peterson" + } + ], "bom-ref": "six==1.16.0", "description": "Python 2 and 3 compatibility utilities", "externalReferences": [ @@ -33,29 +40,6 @@ "purl": "pkg:pypi/six@1.16.0", "type": "library", "version": "1.16.0" - }, - { - "bom-ref": "toml==0.10.2", - "description": "Python Library for Tom's Obvious, Minimal Language", - "externalReferences": [ - { - "comment": "from packaging metadata: Home-page", - "type": "website", - "url": "https://github.com/uiri/toml" - } - ], - "licenses": [ - { - "license": { - "acknowledgement": "declared", - "id": "MIT" - } - } - ], - "name": "toml", - "purl": "pkg:pypi/toml@0.10.2", - "type": "library", - "version": "0.10.2" } ], "dependencies": [ @@ -67,9 +51,6 @@ }, { "ref": "six==1.16.0" - }, - { - "ref": "toml==0.10.2" } ], "metadata": { diff --git a/tests/_data/snapshots/environment/plain_private-packages_1.7.xml.bin b/tests/_data/snapshots/environment/plain_private-packages_1.7.xml.bin index 7b4ea79ec..503074926 100644 --- a/tests/_data/snapshots/environment/plain_private-packages_1.7.xml.bin +++ b/tests/_data/snapshots/environment/plain_private-packages_1.7.xml.bin @@ -61,6 +61,13 @@ + + + Benjamin Peterson + benjamin@python.org + + + Benjamin Peterson <benjamin@python.org> six 1.16.0 Python 2 and 3 compatibility utilities @@ -84,29 +91,11 @@ - - toml - 0.10.2 - Python Library for Tom's Obvious, Minimal Language - - - MIT - - - pkg:pypi/toml@0.10.2 - - - https://github.com/uiri/toml - from packaging metadata: Home-page - - - - diff --git a/tests/_data/snapshots/pipenv/plain_no-deps_1.6.json.bin b/tests/_data/snapshots/pipenv/plain_no-deps_1.6.json.bin index 960672b5b..93c5a5ee3 100644 --- a/tests/_data/snapshots/pipenv/plain_no-deps_1.6.json.bin +++ b/tests/_data/snapshots/pipenv/plain_no-deps_1.6.json.bin @@ -6,6 +6,15 @@ ], "metadata": { "component": { + "authors": [ + { + "name": "My Name" + }, + { + "email": "you@example.com", + "name": "Your Name" + } + ], "bom-ref": "root-component", "description": "packages with all meta, but no deps", "evidence": { diff --git a/tests/_data/snapshots/pipenv/plain_no-deps_1.6.xml.bin b/tests/_data/snapshots/pipenv/plain_no-deps_1.6.xml.bin index 805573888..e803fbf76 100644 --- a/tests/_data/snapshots/pipenv/plain_no-deps_1.6.xml.bin +++ b/tests/_data/snapshots/pipenv/plain_no-deps_1.6.xml.bin @@ -51,6 +51,15 @@ + + + My Name + + + Your Name + you@example.com + + no-deps 0.1.0 packages with all meta, but no deps diff --git a/tests/_data/snapshots/pipenv/plain_no-deps_1.7.json.bin b/tests/_data/snapshots/pipenv/plain_no-deps_1.7.json.bin index d25b96605..a12475ffb 100644 --- a/tests/_data/snapshots/pipenv/plain_no-deps_1.7.json.bin +++ b/tests/_data/snapshots/pipenv/plain_no-deps_1.7.json.bin @@ -6,6 +6,15 @@ ], "metadata": { "component": { + "authors": [ + { + "name": "My Name" + }, + { + "email": "you@example.com", + "name": "Your Name" + } + ], "bom-ref": "root-component", "description": "packages with all meta, but no deps", "evidence": { diff --git a/tests/_data/snapshots/pipenv/plain_no-deps_1.7.xml.bin b/tests/_data/snapshots/pipenv/plain_no-deps_1.7.xml.bin index 0de97df86..8a03be4fb 100644 --- a/tests/_data/snapshots/pipenv/plain_no-deps_1.7.xml.bin +++ b/tests/_data/snapshots/pipenv/plain_no-deps_1.7.xml.bin @@ -51,6 +51,15 @@ + + + My Name + + + Your Name + you@example.com + + no-deps 0.1.0 packages with all meta, but no deps diff --git a/tests/_data/snapshots/poetry/all-extras_with-extras_lock10_1.2.json.bin b/tests/_data/snapshots/poetry/all-extras_with-extras_lock10_1.2.json.bin index 158b2c1a4..e78853881 100644 --- a/tests/_data/snapshots/poetry/all-extras_with-extras_lock10_1.2.json.bin +++ b/tests/_data/snapshots/poetry/all-extras_with-extras_lock10_1.2.json.bin @@ -120,6 +120,7 @@ ], "metadata": { "component": { + "author": "Your Name ", "bom-ref": "with-extras", "description": "depenndencies with extras", "name": "with-extras", diff --git a/tests/_data/snapshots/poetry/all-extras_with-extras_lock10_1.2.xml.bin b/tests/_data/snapshots/poetry/all-extras_with-extras_lock10_1.2.xml.bin index 572abc4b7..c583b4756 100644 --- a/tests/_data/snapshots/poetry/all-extras_with-extras_lock10_1.2.xml.bin +++ b/tests/_data/snapshots/poetry/all-extras_with-extras_lock10_1.2.xml.bin @@ -14,6 +14,7 @@ + Your Name <you@example.com> with-extras 0.1.0 depenndencies with extras diff --git a/tests/_data/snapshots/poetry/all-extras_with-extras_lock10_1.3.json.bin b/tests/_data/snapshots/poetry/all-extras_with-extras_lock10_1.3.json.bin index c26b1b1a0..2b285f2c4 100644 --- a/tests/_data/snapshots/poetry/all-extras_with-extras_lock10_1.3.json.bin +++ b/tests/_data/snapshots/poetry/all-extras_with-extras_lock10_1.3.json.bin @@ -176,6 +176,7 @@ ], "metadata": { "component": { + "author": "Your Name ", "bom-ref": "with-extras", "description": "depenndencies with extras", "name": "with-extras", diff --git a/tests/_data/snapshots/poetry/all-extras_with-extras_lock10_1.3.xml.bin b/tests/_data/snapshots/poetry/all-extras_with-extras_lock10_1.3.xml.bin index 40869c9c6..931ba2113 100644 --- a/tests/_data/snapshots/poetry/all-extras_with-extras_lock10_1.3.xml.bin +++ b/tests/_data/snapshots/poetry/all-extras_with-extras_lock10_1.3.xml.bin @@ -14,6 +14,7 @@ + Your Name <you@example.com> with-extras 0.1.0 depenndencies with extras diff --git a/tests/_data/snapshots/poetry/all-extras_with-extras_lock10_1.4.json.bin b/tests/_data/snapshots/poetry/all-extras_with-extras_lock10_1.4.json.bin index a45c23cd2..09fcb6cde 100644 --- a/tests/_data/snapshots/poetry/all-extras_with-extras_lock10_1.4.json.bin +++ b/tests/_data/snapshots/poetry/all-extras_with-extras_lock10_1.4.json.bin @@ -176,6 +176,7 @@ ], "metadata": { "component": { + "author": "Your Name ", "bom-ref": "with-extras", "description": "depenndencies with extras", "name": "with-extras", diff --git a/tests/_data/snapshots/poetry/all-extras_with-extras_lock10_1.4.xml.bin b/tests/_data/snapshots/poetry/all-extras_with-extras_lock10_1.4.xml.bin index 0d8f20500..dc8ce157e 100644 --- a/tests/_data/snapshots/poetry/all-extras_with-extras_lock10_1.4.xml.bin +++ b/tests/_data/snapshots/poetry/all-extras_with-extras_lock10_1.4.xml.bin @@ -41,6 +41,7 @@ + Your Name <you@example.com> with-extras 0.1.0 depenndencies with extras diff --git a/tests/_data/snapshots/poetry/all-extras_with-extras_lock10_1.5.json.bin b/tests/_data/snapshots/poetry/all-extras_with-extras_lock10_1.5.json.bin index 0c97a4c35..997be3c69 100644 --- a/tests/_data/snapshots/poetry/all-extras_with-extras_lock10_1.5.json.bin +++ b/tests/_data/snapshots/poetry/all-extras_with-extras_lock10_1.5.json.bin @@ -176,6 +176,7 @@ ], "metadata": { "component": { + "author": "Your Name ", "bom-ref": "with-extras", "description": "depenndencies with extras", "name": "with-extras", diff --git a/tests/_data/snapshots/poetry/all-extras_with-extras_lock10_1.5.xml.bin b/tests/_data/snapshots/poetry/all-extras_with-extras_lock10_1.5.xml.bin index 300a4ad1a..aa3bf3652 100644 --- a/tests/_data/snapshots/poetry/all-extras_with-extras_lock10_1.5.xml.bin +++ b/tests/_data/snapshots/poetry/all-extras_with-extras_lock10_1.5.xml.bin @@ -51,6 +51,7 @@ + Your Name <you@example.com> with-extras 0.1.0 depenndencies with extras diff --git a/tests/_data/snapshots/poetry/all-extras_with-extras_lock10_1.6.json.bin b/tests/_data/snapshots/poetry/all-extras_with-extras_lock10_1.6.json.bin index fed43de2b..b3e41f159 100644 --- a/tests/_data/snapshots/poetry/all-extras_with-extras_lock10_1.6.json.bin +++ b/tests/_data/snapshots/poetry/all-extras_with-extras_lock10_1.6.json.bin @@ -176,6 +176,13 @@ ], "metadata": { "component": { + "author": "Your Name ", + "authors": [ + { + "email": "you@example.com", + "name": "Your Name" + } + ], "bom-ref": "with-extras", "description": "depenndencies with extras", "name": "with-extras", diff --git a/tests/_data/snapshots/poetry/all-extras_with-extras_lock10_1.6.xml.bin b/tests/_data/snapshots/poetry/all-extras_with-extras_lock10_1.6.xml.bin index 7b177c25a..329cf597b 100644 --- a/tests/_data/snapshots/poetry/all-extras_with-extras_lock10_1.6.xml.bin +++ b/tests/_data/snapshots/poetry/all-extras_with-extras_lock10_1.6.xml.bin @@ -51,6 +51,13 @@ + + + Your Name + you@example.com + + + Your Name <you@example.com> with-extras 0.1.0 depenndencies with extras diff --git a/tests/_data/snapshots/poetry/all-extras_with-extras_lock10_1.7.json.bin b/tests/_data/snapshots/poetry/all-extras_with-extras_lock10_1.7.json.bin index c3017b199..a50a92196 100644 --- a/tests/_data/snapshots/poetry/all-extras_with-extras_lock10_1.7.json.bin +++ b/tests/_data/snapshots/poetry/all-extras_with-extras_lock10_1.7.json.bin @@ -176,6 +176,13 @@ ], "metadata": { "component": { + "author": "Your Name ", + "authors": [ + { + "email": "you@example.com", + "name": "Your Name" + } + ], "bom-ref": "with-extras", "description": "depenndencies with extras", "name": "with-extras", diff --git a/tests/_data/snapshots/poetry/all-extras_with-extras_lock10_1.7.xml.bin b/tests/_data/snapshots/poetry/all-extras_with-extras_lock10_1.7.xml.bin index 5259a2f86..5aebb3c3b 100644 --- a/tests/_data/snapshots/poetry/all-extras_with-extras_lock10_1.7.xml.bin +++ b/tests/_data/snapshots/poetry/all-extras_with-extras_lock10_1.7.xml.bin @@ -51,6 +51,13 @@ + + + Your Name + you@example.com + + + Your Name <you@example.com> with-extras 0.1.0 depenndencies with extras diff --git a/tests/_data/snapshots/poetry/all-extras_with-extras_lock11_1.2.json.bin b/tests/_data/snapshots/poetry/all-extras_with-extras_lock11_1.2.json.bin index 5e94e2fe3..e96d38675 100644 --- a/tests/_data/snapshots/poetry/all-extras_with-extras_lock11_1.2.json.bin +++ b/tests/_data/snapshots/poetry/all-extras_with-extras_lock11_1.2.json.bin @@ -1392,6 +1392,7 @@ ], "metadata": { "component": { + "author": "Your Name ", "bom-ref": "with-extras", "description": "depenndencies with extras", "name": "with-extras", diff --git a/tests/_data/snapshots/poetry/all-extras_with-extras_lock11_1.2.xml.bin b/tests/_data/snapshots/poetry/all-extras_with-extras_lock11_1.2.xml.bin index 0056693e7..d66dec487 100644 --- a/tests/_data/snapshots/poetry/all-extras_with-extras_lock11_1.2.xml.bin +++ b/tests/_data/snapshots/poetry/all-extras_with-extras_lock11_1.2.xml.bin @@ -14,6 +14,7 @@ + Your Name <you@example.com> with-extras 0.1.0 depenndencies with extras diff --git a/tests/_data/snapshots/poetry/all-extras_with-extras_lock11_1.3.json.bin b/tests/_data/snapshots/poetry/all-extras_with-extras_lock11_1.3.json.bin index 3ef592674..6d634ac5c 100644 --- a/tests/_data/snapshots/poetry/all-extras_with-extras_lock11_1.3.json.bin +++ b/tests/_data/snapshots/poetry/all-extras_with-extras_lock11_1.3.json.bin @@ -2694,6 +2694,7 @@ ], "metadata": { "component": { + "author": "Your Name ", "bom-ref": "with-extras", "description": "depenndencies with extras", "name": "with-extras", diff --git a/tests/_data/snapshots/poetry/all-extras_with-extras_lock11_1.3.xml.bin b/tests/_data/snapshots/poetry/all-extras_with-extras_lock11_1.3.xml.bin index 436001149..20667cbc4 100644 --- a/tests/_data/snapshots/poetry/all-extras_with-extras_lock11_1.3.xml.bin +++ b/tests/_data/snapshots/poetry/all-extras_with-extras_lock11_1.3.xml.bin @@ -14,6 +14,7 @@ + Your Name <you@example.com> with-extras 0.1.0 depenndencies with extras diff --git a/tests/_data/snapshots/poetry/all-extras_with-extras_lock11_1.4.json.bin b/tests/_data/snapshots/poetry/all-extras_with-extras_lock11_1.4.json.bin index 43066d726..c7cc5a46f 100644 --- a/tests/_data/snapshots/poetry/all-extras_with-extras_lock11_1.4.json.bin +++ b/tests/_data/snapshots/poetry/all-extras_with-extras_lock11_1.4.json.bin @@ -2694,6 +2694,7 @@ ], "metadata": { "component": { + "author": "Your Name ", "bom-ref": "with-extras", "description": "depenndencies with extras", "name": "with-extras", diff --git a/tests/_data/snapshots/poetry/all-extras_with-extras_lock11_1.4.xml.bin b/tests/_data/snapshots/poetry/all-extras_with-extras_lock11_1.4.xml.bin index 3ebce4d27..b2ed7206d 100644 --- a/tests/_data/snapshots/poetry/all-extras_with-extras_lock11_1.4.xml.bin +++ b/tests/_data/snapshots/poetry/all-extras_with-extras_lock11_1.4.xml.bin @@ -41,6 +41,7 @@ + Your Name <you@example.com> with-extras 0.1.0 depenndencies with extras diff --git a/tests/_data/snapshots/poetry/all-extras_with-extras_lock11_1.5.json.bin b/tests/_data/snapshots/poetry/all-extras_with-extras_lock11_1.5.json.bin index 9a6a4b5dd..e5c90483a 100644 --- a/tests/_data/snapshots/poetry/all-extras_with-extras_lock11_1.5.json.bin +++ b/tests/_data/snapshots/poetry/all-extras_with-extras_lock11_1.5.json.bin @@ -2694,6 +2694,7 @@ ], "metadata": { "component": { + "author": "Your Name ", "bom-ref": "with-extras", "description": "depenndencies with extras", "name": "with-extras", diff --git a/tests/_data/snapshots/poetry/all-extras_with-extras_lock11_1.5.xml.bin b/tests/_data/snapshots/poetry/all-extras_with-extras_lock11_1.5.xml.bin index ddf9a2158..03fd8ab1f 100644 --- a/tests/_data/snapshots/poetry/all-extras_with-extras_lock11_1.5.xml.bin +++ b/tests/_data/snapshots/poetry/all-extras_with-extras_lock11_1.5.xml.bin @@ -51,6 +51,7 @@ + Your Name <you@example.com> with-extras 0.1.0 depenndencies with extras diff --git a/tests/_data/snapshots/poetry/all-extras_with-extras_lock11_1.6.json.bin b/tests/_data/snapshots/poetry/all-extras_with-extras_lock11_1.6.json.bin index 4b568d833..8e98c858d 100644 --- a/tests/_data/snapshots/poetry/all-extras_with-extras_lock11_1.6.json.bin +++ b/tests/_data/snapshots/poetry/all-extras_with-extras_lock11_1.6.json.bin @@ -2694,6 +2694,13 @@ ], "metadata": { "component": { + "author": "Your Name ", + "authors": [ + { + "email": "you@example.com", + "name": "Your Name" + } + ], "bom-ref": "with-extras", "description": "depenndencies with extras", "name": "with-extras", diff --git a/tests/_data/snapshots/poetry/all-extras_with-extras_lock11_1.6.xml.bin b/tests/_data/snapshots/poetry/all-extras_with-extras_lock11_1.6.xml.bin index d424f99ba..a58741bdd 100644 --- a/tests/_data/snapshots/poetry/all-extras_with-extras_lock11_1.6.xml.bin +++ b/tests/_data/snapshots/poetry/all-extras_with-extras_lock11_1.6.xml.bin @@ -51,6 +51,13 @@ + + + Your Name + you@example.com + + + Your Name <you@example.com> with-extras 0.1.0 depenndencies with extras diff --git a/tests/_data/snapshots/poetry/all-extras_with-extras_lock11_1.7.json.bin b/tests/_data/snapshots/poetry/all-extras_with-extras_lock11_1.7.json.bin index 7f9aa86c3..1ebc61101 100644 --- a/tests/_data/snapshots/poetry/all-extras_with-extras_lock11_1.7.json.bin +++ b/tests/_data/snapshots/poetry/all-extras_with-extras_lock11_1.7.json.bin @@ -2694,6 +2694,13 @@ ], "metadata": { "component": { + "author": "Your Name ", + "authors": [ + { + "email": "you@example.com", + "name": "Your Name" + } + ], "bom-ref": "with-extras", "description": "depenndencies with extras", "name": "with-extras", diff --git a/tests/_data/snapshots/poetry/all-extras_with-extras_lock11_1.7.xml.bin b/tests/_data/snapshots/poetry/all-extras_with-extras_lock11_1.7.xml.bin index 05aa795f0..489cb0166 100644 --- a/tests/_data/snapshots/poetry/all-extras_with-extras_lock11_1.7.xml.bin +++ b/tests/_data/snapshots/poetry/all-extras_with-extras_lock11_1.7.xml.bin @@ -51,6 +51,13 @@ + + + Your Name + you@example.com + + + Your Name <you@example.com> with-extras 0.1.0 depenndencies with extras diff --git a/tests/_data/snapshots/poetry/all-extras_with-extras_lock20_1.2.json.bin b/tests/_data/snapshots/poetry/all-extras_with-extras_lock20_1.2.json.bin index 82473f833..9eeba0309 100644 --- a/tests/_data/snapshots/poetry/all-extras_with-extras_lock20_1.2.json.bin +++ b/tests/_data/snapshots/poetry/all-extras_with-extras_lock20_1.2.json.bin @@ -1847,6 +1847,7 @@ ], "metadata": { "component": { + "author": "Your Name ", "bom-ref": "with-extras", "description": "depenndencies with extras", "name": "with-extras", diff --git a/tests/_data/snapshots/poetry/all-extras_with-extras_lock20_1.2.xml.bin b/tests/_data/snapshots/poetry/all-extras_with-extras_lock20_1.2.xml.bin index 7d5bf77d8..817b2a586 100644 --- a/tests/_data/snapshots/poetry/all-extras_with-extras_lock20_1.2.xml.bin +++ b/tests/_data/snapshots/poetry/all-extras_with-extras_lock20_1.2.xml.bin @@ -14,6 +14,7 @@ + Your Name <you@example.com> with-extras 0.1.0 depenndencies with extras diff --git a/tests/_data/snapshots/poetry/all-extras_with-extras_lock20_1.3.json.bin b/tests/_data/snapshots/poetry/all-extras_with-extras_lock20_1.3.json.bin index 6beaf6bdb..83b63459d 100644 --- a/tests/_data/snapshots/poetry/all-extras_with-extras_lock20_1.3.json.bin +++ b/tests/_data/snapshots/poetry/all-extras_with-extras_lock20_1.3.json.bin @@ -3523,6 +3523,7 @@ ], "metadata": { "component": { + "author": "Your Name ", "bom-ref": "with-extras", "description": "depenndencies with extras", "name": "with-extras", diff --git a/tests/_data/snapshots/poetry/all-extras_with-extras_lock20_1.3.xml.bin b/tests/_data/snapshots/poetry/all-extras_with-extras_lock20_1.3.xml.bin index a40d50443..ab75b1d8c 100644 --- a/tests/_data/snapshots/poetry/all-extras_with-extras_lock20_1.3.xml.bin +++ b/tests/_data/snapshots/poetry/all-extras_with-extras_lock20_1.3.xml.bin @@ -14,6 +14,7 @@ + Your Name <you@example.com> with-extras 0.1.0 depenndencies with extras diff --git a/tests/_data/snapshots/poetry/all-extras_with-extras_lock20_1.4.json.bin b/tests/_data/snapshots/poetry/all-extras_with-extras_lock20_1.4.json.bin index fbcb783ca..08be7bdfc 100644 --- a/tests/_data/snapshots/poetry/all-extras_with-extras_lock20_1.4.json.bin +++ b/tests/_data/snapshots/poetry/all-extras_with-extras_lock20_1.4.json.bin @@ -3523,6 +3523,7 @@ ], "metadata": { "component": { + "author": "Your Name ", "bom-ref": "with-extras", "description": "depenndencies with extras", "name": "with-extras", diff --git a/tests/_data/snapshots/poetry/all-extras_with-extras_lock20_1.4.xml.bin b/tests/_data/snapshots/poetry/all-extras_with-extras_lock20_1.4.xml.bin index 63066be0d..19b536089 100644 --- a/tests/_data/snapshots/poetry/all-extras_with-extras_lock20_1.4.xml.bin +++ b/tests/_data/snapshots/poetry/all-extras_with-extras_lock20_1.4.xml.bin @@ -41,6 +41,7 @@ + Your Name <you@example.com> with-extras 0.1.0 depenndencies with extras diff --git a/tests/_data/snapshots/poetry/all-extras_with-extras_lock20_1.5.json.bin b/tests/_data/snapshots/poetry/all-extras_with-extras_lock20_1.5.json.bin index 5238f3b78..b66f0fb20 100644 --- a/tests/_data/snapshots/poetry/all-extras_with-extras_lock20_1.5.json.bin +++ b/tests/_data/snapshots/poetry/all-extras_with-extras_lock20_1.5.json.bin @@ -3523,6 +3523,7 @@ ], "metadata": { "component": { + "author": "Your Name ", "bom-ref": "with-extras", "description": "depenndencies with extras", "name": "with-extras", diff --git a/tests/_data/snapshots/poetry/all-extras_with-extras_lock20_1.5.xml.bin b/tests/_data/snapshots/poetry/all-extras_with-extras_lock20_1.5.xml.bin index 05bedf4ca..ea70f3d59 100644 --- a/tests/_data/snapshots/poetry/all-extras_with-extras_lock20_1.5.xml.bin +++ b/tests/_data/snapshots/poetry/all-extras_with-extras_lock20_1.5.xml.bin @@ -51,6 +51,7 @@ + Your Name <you@example.com> with-extras 0.1.0 depenndencies with extras diff --git a/tests/_data/snapshots/poetry/all-extras_with-extras_lock20_1.6.json.bin b/tests/_data/snapshots/poetry/all-extras_with-extras_lock20_1.6.json.bin index 9f2d7a68e..94ee7163a 100644 --- a/tests/_data/snapshots/poetry/all-extras_with-extras_lock20_1.6.json.bin +++ b/tests/_data/snapshots/poetry/all-extras_with-extras_lock20_1.6.json.bin @@ -3523,6 +3523,13 @@ ], "metadata": { "component": { + "author": "Your Name ", + "authors": [ + { + "email": "you@example.com", + "name": "Your Name" + } + ], "bom-ref": "with-extras", "description": "depenndencies with extras", "name": "with-extras", diff --git a/tests/_data/snapshots/poetry/all-extras_with-extras_lock20_1.6.xml.bin b/tests/_data/snapshots/poetry/all-extras_with-extras_lock20_1.6.xml.bin index 6348a72c8..d87dd50fe 100644 --- a/tests/_data/snapshots/poetry/all-extras_with-extras_lock20_1.6.xml.bin +++ b/tests/_data/snapshots/poetry/all-extras_with-extras_lock20_1.6.xml.bin @@ -51,6 +51,13 @@ + + + Your Name + you@example.com + + + Your Name <you@example.com> with-extras 0.1.0 depenndencies with extras diff --git a/tests/_data/snapshots/poetry/all-extras_with-extras_lock20_1.7.json.bin b/tests/_data/snapshots/poetry/all-extras_with-extras_lock20_1.7.json.bin index 2ce3b7345..144b4ddf1 100644 --- a/tests/_data/snapshots/poetry/all-extras_with-extras_lock20_1.7.json.bin +++ b/tests/_data/snapshots/poetry/all-extras_with-extras_lock20_1.7.json.bin @@ -3523,6 +3523,13 @@ ], "metadata": { "component": { + "author": "Your Name ", + "authors": [ + { + "email": "you@example.com", + "name": "Your Name" + } + ], "bom-ref": "with-extras", "description": "depenndencies with extras", "name": "with-extras", diff --git a/tests/_data/snapshots/poetry/all-extras_with-extras_lock20_1.7.xml.bin b/tests/_data/snapshots/poetry/all-extras_with-extras_lock20_1.7.xml.bin index d4455ca34..d2797bb6f 100644 --- a/tests/_data/snapshots/poetry/all-extras_with-extras_lock20_1.7.xml.bin +++ b/tests/_data/snapshots/poetry/all-extras_with-extras_lock20_1.7.xml.bin @@ -51,6 +51,13 @@ + + + Your Name + you@example.com + + + Your Name <you@example.com> with-extras 0.1.0 depenndencies with extras diff --git a/tests/_data/snapshots/poetry/all-extras_with-extras_lock21_1.2.json.bin b/tests/_data/snapshots/poetry/all-extras_with-extras_lock21_1.2.json.bin index 1daa1df7c..881af5e00 100644 --- a/tests/_data/snapshots/poetry/all-extras_with-extras_lock21_1.2.json.bin +++ b/tests/_data/snapshots/poetry/all-extras_with-extras_lock21_1.2.json.bin @@ -1872,6 +1872,7 @@ ], "metadata": { "component": { + "author": "Your Name ", "bom-ref": "with-extras", "description": "depenndencies with extras", "name": "with-extras", diff --git a/tests/_data/snapshots/poetry/all-extras_with-extras_lock21_1.2.xml.bin b/tests/_data/snapshots/poetry/all-extras_with-extras_lock21_1.2.xml.bin index 38fbb0aef..2ef82969b 100644 --- a/tests/_data/snapshots/poetry/all-extras_with-extras_lock21_1.2.xml.bin +++ b/tests/_data/snapshots/poetry/all-extras_with-extras_lock21_1.2.xml.bin @@ -14,6 +14,7 @@ + Your Name <you@example.com> with-extras 0.1.0 depenndencies with extras diff --git a/tests/_data/snapshots/poetry/all-extras_with-extras_lock21_1.3.json.bin b/tests/_data/snapshots/poetry/all-extras_with-extras_lock21_1.3.json.bin index 3dcfe9e4e..b47d55148 100644 --- a/tests/_data/snapshots/poetry/all-extras_with-extras_lock21_1.3.json.bin +++ b/tests/_data/snapshots/poetry/all-extras_with-extras_lock21_1.3.json.bin @@ -3578,6 +3578,7 @@ ], "metadata": { "component": { + "author": "Your Name ", "bom-ref": "with-extras", "description": "depenndencies with extras", "name": "with-extras", diff --git a/tests/_data/snapshots/poetry/all-extras_with-extras_lock21_1.3.xml.bin b/tests/_data/snapshots/poetry/all-extras_with-extras_lock21_1.3.xml.bin index f912f2eac..3d4ee73cc 100644 --- a/tests/_data/snapshots/poetry/all-extras_with-extras_lock21_1.3.xml.bin +++ b/tests/_data/snapshots/poetry/all-extras_with-extras_lock21_1.3.xml.bin @@ -14,6 +14,7 @@ + Your Name <you@example.com> with-extras 0.1.0 depenndencies with extras diff --git a/tests/_data/snapshots/poetry/all-extras_with-extras_lock21_1.4.json.bin b/tests/_data/snapshots/poetry/all-extras_with-extras_lock21_1.4.json.bin index ee68ef5d3..765a2f8e6 100644 --- a/tests/_data/snapshots/poetry/all-extras_with-extras_lock21_1.4.json.bin +++ b/tests/_data/snapshots/poetry/all-extras_with-extras_lock21_1.4.json.bin @@ -3578,6 +3578,7 @@ ], "metadata": { "component": { + "author": "Your Name ", "bom-ref": "with-extras", "description": "depenndencies with extras", "name": "with-extras", diff --git a/tests/_data/snapshots/poetry/all-extras_with-extras_lock21_1.4.xml.bin b/tests/_data/snapshots/poetry/all-extras_with-extras_lock21_1.4.xml.bin index 577005cd5..10f098a54 100644 --- a/tests/_data/snapshots/poetry/all-extras_with-extras_lock21_1.4.xml.bin +++ b/tests/_data/snapshots/poetry/all-extras_with-extras_lock21_1.4.xml.bin @@ -41,6 +41,7 @@ + Your Name <you@example.com> with-extras 0.1.0 depenndencies with extras diff --git a/tests/_data/snapshots/poetry/all-extras_with-extras_lock21_1.5.json.bin b/tests/_data/snapshots/poetry/all-extras_with-extras_lock21_1.5.json.bin index 99d9fb3a7..1f0f89098 100644 --- a/tests/_data/snapshots/poetry/all-extras_with-extras_lock21_1.5.json.bin +++ b/tests/_data/snapshots/poetry/all-extras_with-extras_lock21_1.5.json.bin @@ -3578,6 +3578,7 @@ ], "metadata": { "component": { + "author": "Your Name ", "bom-ref": "with-extras", "description": "depenndencies with extras", "name": "with-extras", diff --git a/tests/_data/snapshots/poetry/all-extras_with-extras_lock21_1.5.xml.bin b/tests/_data/snapshots/poetry/all-extras_with-extras_lock21_1.5.xml.bin index 0116bc0b3..7ebb766c9 100644 --- a/tests/_data/snapshots/poetry/all-extras_with-extras_lock21_1.5.xml.bin +++ b/tests/_data/snapshots/poetry/all-extras_with-extras_lock21_1.5.xml.bin @@ -51,6 +51,7 @@ + Your Name <you@example.com> with-extras 0.1.0 depenndencies with extras diff --git a/tests/_data/snapshots/poetry/all-extras_with-extras_lock21_1.6.json.bin b/tests/_data/snapshots/poetry/all-extras_with-extras_lock21_1.6.json.bin index d0c4a6c8f..4410889df 100644 --- a/tests/_data/snapshots/poetry/all-extras_with-extras_lock21_1.6.json.bin +++ b/tests/_data/snapshots/poetry/all-extras_with-extras_lock21_1.6.json.bin @@ -3578,6 +3578,13 @@ ], "metadata": { "component": { + "author": "Your Name ", + "authors": [ + { + "email": "you@example.com", + "name": "Your Name" + } + ], "bom-ref": "with-extras", "description": "depenndencies with extras", "name": "with-extras", diff --git a/tests/_data/snapshots/poetry/all-extras_with-extras_lock21_1.6.xml.bin b/tests/_data/snapshots/poetry/all-extras_with-extras_lock21_1.6.xml.bin index 90cf0f8da..df899c109 100644 --- a/tests/_data/snapshots/poetry/all-extras_with-extras_lock21_1.6.xml.bin +++ b/tests/_data/snapshots/poetry/all-extras_with-extras_lock21_1.6.xml.bin @@ -51,6 +51,13 @@ + + + Your Name + you@example.com + + + Your Name <you@example.com> with-extras 0.1.0 depenndencies with extras diff --git a/tests/_data/snapshots/poetry/all-extras_with-extras_lock21_1.7.json.bin b/tests/_data/snapshots/poetry/all-extras_with-extras_lock21_1.7.json.bin index a846feb16..e4ff84b71 100644 --- a/tests/_data/snapshots/poetry/all-extras_with-extras_lock21_1.7.json.bin +++ b/tests/_data/snapshots/poetry/all-extras_with-extras_lock21_1.7.json.bin @@ -3578,6 +3578,13 @@ ], "metadata": { "component": { + "author": "Your Name ", + "authors": [ + { + "email": "you@example.com", + "name": "Your Name" + } + ], "bom-ref": "with-extras", "description": "depenndencies with extras", "name": "with-extras", diff --git a/tests/_data/snapshots/poetry/all-extras_with-extras_lock21_1.7.xml.bin b/tests/_data/snapshots/poetry/all-extras_with-extras_lock21_1.7.xml.bin index f17b9d472..e18bbcd3d 100644 --- a/tests/_data/snapshots/poetry/all-extras_with-extras_lock21_1.7.xml.bin +++ b/tests/_data/snapshots/poetry/all-extras_with-extras_lock21_1.7.xml.bin @@ -51,6 +51,13 @@ + + + Your Name + you@example.com + + + Your Name <you@example.com> with-extras 0.1.0 depenndencies with extras diff --git a/tests/_data/snapshots/poetry/no-dev_group-deps_lock11_1.2.json.bin b/tests/_data/snapshots/poetry/no-dev_group-deps_lock11_1.2.json.bin index e59540e3d..90259edec 100644 --- a/tests/_data/snapshots/poetry/no-dev_group-deps_lock11_1.2.json.bin +++ b/tests/_data/snapshots/poetry/no-dev_group-deps_lock11_1.2.json.bin @@ -34,6 +34,7 @@ ], "metadata": { "component": { + "author": "Your Name ", "bom-ref": "group-deps", "description": "dependencies organized in groups", "name": "group-deps", diff --git a/tests/_data/snapshots/poetry/no-dev_group-deps_lock11_1.2.xml.bin b/tests/_data/snapshots/poetry/no-dev_group-deps_lock11_1.2.xml.bin index 9f5b73f07..ff4a918a7 100644 --- a/tests/_data/snapshots/poetry/no-dev_group-deps_lock11_1.2.xml.bin +++ b/tests/_data/snapshots/poetry/no-dev_group-deps_lock11_1.2.xml.bin @@ -14,6 +14,7 @@ + Your Name <you@example.com> group-deps 0.1.0 dependencies organized in groups diff --git a/tests/_data/snapshots/poetry/no-dev_group-deps_lock11_1.3.json.bin b/tests/_data/snapshots/poetry/no-dev_group-deps_lock11_1.3.json.bin index db7c61f16..2fed629c9 100644 --- a/tests/_data/snapshots/poetry/no-dev_group-deps_lock11_1.3.json.bin +++ b/tests/_data/snapshots/poetry/no-dev_group-deps_lock11_1.3.json.bin @@ -52,6 +52,7 @@ ], "metadata": { "component": { + "author": "Your Name ", "bom-ref": "group-deps", "description": "dependencies organized in groups", "name": "group-deps", diff --git a/tests/_data/snapshots/poetry/no-dev_group-deps_lock11_1.3.xml.bin b/tests/_data/snapshots/poetry/no-dev_group-deps_lock11_1.3.xml.bin index a6c23702c..58cdc7b61 100644 --- a/tests/_data/snapshots/poetry/no-dev_group-deps_lock11_1.3.xml.bin +++ b/tests/_data/snapshots/poetry/no-dev_group-deps_lock11_1.3.xml.bin @@ -14,6 +14,7 @@ + Your Name <you@example.com> group-deps 0.1.0 dependencies organized in groups diff --git a/tests/_data/snapshots/poetry/no-dev_group-deps_lock11_1.4.json.bin b/tests/_data/snapshots/poetry/no-dev_group-deps_lock11_1.4.json.bin index e4590fe0f..6b9d9e6e3 100644 --- a/tests/_data/snapshots/poetry/no-dev_group-deps_lock11_1.4.json.bin +++ b/tests/_data/snapshots/poetry/no-dev_group-deps_lock11_1.4.json.bin @@ -52,6 +52,7 @@ ], "metadata": { "component": { + "author": "Your Name ", "bom-ref": "group-deps", "description": "dependencies organized in groups", "name": "group-deps", diff --git a/tests/_data/snapshots/poetry/no-dev_group-deps_lock11_1.4.xml.bin b/tests/_data/snapshots/poetry/no-dev_group-deps_lock11_1.4.xml.bin index 391fe83de..e6ceb9daf 100644 --- a/tests/_data/snapshots/poetry/no-dev_group-deps_lock11_1.4.xml.bin +++ b/tests/_data/snapshots/poetry/no-dev_group-deps_lock11_1.4.xml.bin @@ -41,6 +41,7 @@ + Your Name <you@example.com> group-deps 0.1.0 dependencies organized in groups diff --git a/tests/_data/snapshots/poetry/no-dev_group-deps_lock11_1.5.json.bin b/tests/_data/snapshots/poetry/no-dev_group-deps_lock11_1.5.json.bin index 9fa3e6dea..077807343 100644 --- a/tests/_data/snapshots/poetry/no-dev_group-deps_lock11_1.5.json.bin +++ b/tests/_data/snapshots/poetry/no-dev_group-deps_lock11_1.5.json.bin @@ -52,6 +52,7 @@ ], "metadata": { "component": { + "author": "Your Name ", "bom-ref": "group-deps", "description": "dependencies organized in groups", "name": "group-deps", diff --git a/tests/_data/snapshots/poetry/no-dev_group-deps_lock11_1.5.xml.bin b/tests/_data/snapshots/poetry/no-dev_group-deps_lock11_1.5.xml.bin index 28f188d41..bf9febbf8 100644 --- a/tests/_data/snapshots/poetry/no-dev_group-deps_lock11_1.5.xml.bin +++ b/tests/_data/snapshots/poetry/no-dev_group-deps_lock11_1.5.xml.bin @@ -51,6 +51,7 @@ + Your Name <you@example.com> group-deps 0.1.0 dependencies organized in groups diff --git a/tests/_data/snapshots/poetry/no-dev_group-deps_lock11_1.6.json.bin b/tests/_data/snapshots/poetry/no-dev_group-deps_lock11_1.6.json.bin index f2b229d14..db897cf4f 100644 --- a/tests/_data/snapshots/poetry/no-dev_group-deps_lock11_1.6.json.bin +++ b/tests/_data/snapshots/poetry/no-dev_group-deps_lock11_1.6.json.bin @@ -52,6 +52,13 @@ ], "metadata": { "component": { + "author": "Your Name ", + "authors": [ + { + "email": "you@example.com", + "name": "Your Name" + } + ], "bom-ref": "group-deps", "description": "dependencies organized in groups", "name": "group-deps", diff --git a/tests/_data/snapshots/poetry/no-dev_group-deps_lock11_1.6.xml.bin b/tests/_data/snapshots/poetry/no-dev_group-deps_lock11_1.6.xml.bin index 233c258ef..f752e4422 100644 --- a/tests/_data/snapshots/poetry/no-dev_group-deps_lock11_1.6.xml.bin +++ b/tests/_data/snapshots/poetry/no-dev_group-deps_lock11_1.6.xml.bin @@ -51,6 +51,13 @@ + + + Your Name + you@example.com + + + Your Name <you@example.com> group-deps 0.1.0 dependencies organized in groups diff --git a/tests/_data/snapshots/poetry/no-dev_group-deps_lock11_1.7.json.bin b/tests/_data/snapshots/poetry/no-dev_group-deps_lock11_1.7.json.bin index 7c7ee4481..c91bf8730 100644 --- a/tests/_data/snapshots/poetry/no-dev_group-deps_lock11_1.7.json.bin +++ b/tests/_data/snapshots/poetry/no-dev_group-deps_lock11_1.7.json.bin @@ -52,6 +52,13 @@ ], "metadata": { "component": { + "author": "Your Name ", + "authors": [ + { + "email": "you@example.com", + "name": "Your Name" + } + ], "bom-ref": "group-deps", "description": "dependencies organized in groups", "name": "group-deps", diff --git a/tests/_data/snapshots/poetry/no-dev_group-deps_lock11_1.7.xml.bin b/tests/_data/snapshots/poetry/no-dev_group-deps_lock11_1.7.xml.bin index d0b496688..06fa2e419 100644 --- a/tests/_data/snapshots/poetry/no-dev_group-deps_lock11_1.7.xml.bin +++ b/tests/_data/snapshots/poetry/no-dev_group-deps_lock11_1.7.xml.bin @@ -51,6 +51,13 @@ + + + Your Name + you@example.com + + + Your Name <you@example.com> group-deps 0.1.0 dependencies organized in groups diff --git a/tests/_data/snapshots/poetry/no-dev_group-deps_lock20_1.2.json.bin b/tests/_data/snapshots/poetry/no-dev_group-deps_lock20_1.2.json.bin index e59540e3d..90259edec 100644 --- a/tests/_data/snapshots/poetry/no-dev_group-deps_lock20_1.2.json.bin +++ b/tests/_data/snapshots/poetry/no-dev_group-deps_lock20_1.2.json.bin @@ -34,6 +34,7 @@ ], "metadata": { "component": { + "author": "Your Name ", "bom-ref": "group-deps", "description": "dependencies organized in groups", "name": "group-deps", diff --git a/tests/_data/snapshots/poetry/no-dev_group-deps_lock20_1.2.xml.bin b/tests/_data/snapshots/poetry/no-dev_group-deps_lock20_1.2.xml.bin index 9f5b73f07..ff4a918a7 100644 --- a/tests/_data/snapshots/poetry/no-dev_group-deps_lock20_1.2.xml.bin +++ b/tests/_data/snapshots/poetry/no-dev_group-deps_lock20_1.2.xml.bin @@ -14,6 +14,7 @@ + Your Name <you@example.com> group-deps 0.1.0 dependencies organized in groups diff --git a/tests/_data/snapshots/poetry/no-dev_group-deps_lock20_1.3.json.bin b/tests/_data/snapshots/poetry/no-dev_group-deps_lock20_1.3.json.bin index db7c61f16..2fed629c9 100644 --- a/tests/_data/snapshots/poetry/no-dev_group-deps_lock20_1.3.json.bin +++ b/tests/_data/snapshots/poetry/no-dev_group-deps_lock20_1.3.json.bin @@ -52,6 +52,7 @@ ], "metadata": { "component": { + "author": "Your Name ", "bom-ref": "group-deps", "description": "dependencies organized in groups", "name": "group-deps", diff --git a/tests/_data/snapshots/poetry/no-dev_group-deps_lock20_1.3.xml.bin b/tests/_data/snapshots/poetry/no-dev_group-deps_lock20_1.3.xml.bin index a6c23702c..58cdc7b61 100644 --- a/tests/_data/snapshots/poetry/no-dev_group-deps_lock20_1.3.xml.bin +++ b/tests/_data/snapshots/poetry/no-dev_group-deps_lock20_1.3.xml.bin @@ -14,6 +14,7 @@ + Your Name <you@example.com> group-deps 0.1.0 dependencies organized in groups diff --git a/tests/_data/snapshots/poetry/no-dev_group-deps_lock20_1.4.json.bin b/tests/_data/snapshots/poetry/no-dev_group-deps_lock20_1.4.json.bin index e4590fe0f..6b9d9e6e3 100644 --- a/tests/_data/snapshots/poetry/no-dev_group-deps_lock20_1.4.json.bin +++ b/tests/_data/snapshots/poetry/no-dev_group-deps_lock20_1.4.json.bin @@ -52,6 +52,7 @@ ], "metadata": { "component": { + "author": "Your Name ", "bom-ref": "group-deps", "description": "dependencies organized in groups", "name": "group-deps", diff --git a/tests/_data/snapshots/poetry/no-dev_group-deps_lock20_1.4.xml.bin b/tests/_data/snapshots/poetry/no-dev_group-deps_lock20_1.4.xml.bin index 391fe83de..e6ceb9daf 100644 --- a/tests/_data/snapshots/poetry/no-dev_group-deps_lock20_1.4.xml.bin +++ b/tests/_data/snapshots/poetry/no-dev_group-deps_lock20_1.4.xml.bin @@ -41,6 +41,7 @@ + Your Name <you@example.com> group-deps 0.1.0 dependencies organized in groups diff --git a/tests/_data/snapshots/poetry/no-dev_group-deps_lock20_1.5.json.bin b/tests/_data/snapshots/poetry/no-dev_group-deps_lock20_1.5.json.bin index 9fa3e6dea..077807343 100644 --- a/tests/_data/snapshots/poetry/no-dev_group-deps_lock20_1.5.json.bin +++ b/tests/_data/snapshots/poetry/no-dev_group-deps_lock20_1.5.json.bin @@ -52,6 +52,7 @@ ], "metadata": { "component": { + "author": "Your Name ", "bom-ref": "group-deps", "description": "dependencies organized in groups", "name": "group-deps", diff --git a/tests/_data/snapshots/poetry/no-dev_group-deps_lock20_1.5.xml.bin b/tests/_data/snapshots/poetry/no-dev_group-deps_lock20_1.5.xml.bin index 28f188d41..bf9febbf8 100644 --- a/tests/_data/snapshots/poetry/no-dev_group-deps_lock20_1.5.xml.bin +++ b/tests/_data/snapshots/poetry/no-dev_group-deps_lock20_1.5.xml.bin @@ -51,6 +51,7 @@ + Your Name <you@example.com> group-deps 0.1.0 dependencies organized in groups diff --git a/tests/_data/snapshots/poetry/no-dev_group-deps_lock20_1.6.json.bin b/tests/_data/snapshots/poetry/no-dev_group-deps_lock20_1.6.json.bin index f2b229d14..db897cf4f 100644 --- a/tests/_data/snapshots/poetry/no-dev_group-deps_lock20_1.6.json.bin +++ b/tests/_data/snapshots/poetry/no-dev_group-deps_lock20_1.6.json.bin @@ -52,6 +52,13 @@ ], "metadata": { "component": { + "author": "Your Name ", + "authors": [ + { + "email": "you@example.com", + "name": "Your Name" + } + ], "bom-ref": "group-deps", "description": "dependencies organized in groups", "name": "group-deps", diff --git a/tests/_data/snapshots/poetry/no-dev_group-deps_lock20_1.6.xml.bin b/tests/_data/snapshots/poetry/no-dev_group-deps_lock20_1.6.xml.bin index 233c258ef..f752e4422 100644 --- a/tests/_data/snapshots/poetry/no-dev_group-deps_lock20_1.6.xml.bin +++ b/tests/_data/snapshots/poetry/no-dev_group-deps_lock20_1.6.xml.bin @@ -51,6 +51,13 @@ + + + Your Name + you@example.com + + + Your Name <you@example.com> group-deps 0.1.0 dependencies organized in groups diff --git a/tests/_data/snapshots/poetry/no-dev_group-deps_lock20_1.7.json.bin b/tests/_data/snapshots/poetry/no-dev_group-deps_lock20_1.7.json.bin index 7c7ee4481..c91bf8730 100644 --- a/tests/_data/snapshots/poetry/no-dev_group-deps_lock20_1.7.json.bin +++ b/tests/_data/snapshots/poetry/no-dev_group-deps_lock20_1.7.json.bin @@ -52,6 +52,13 @@ ], "metadata": { "component": { + "author": "Your Name ", + "authors": [ + { + "email": "you@example.com", + "name": "Your Name" + } + ], "bom-ref": "group-deps", "description": "dependencies organized in groups", "name": "group-deps", diff --git a/tests/_data/snapshots/poetry/no-dev_group-deps_lock20_1.7.xml.bin b/tests/_data/snapshots/poetry/no-dev_group-deps_lock20_1.7.xml.bin index d0b496688..06fa2e419 100644 --- a/tests/_data/snapshots/poetry/no-dev_group-deps_lock20_1.7.xml.bin +++ b/tests/_data/snapshots/poetry/no-dev_group-deps_lock20_1.7.xml.bin @@ -51,6 +51,13 @@ + + + Your Name + you@example.com + + + Your Name <you@example.com> group-deps 0.1.0 dependencies organized in groups diff --git a/tests/_data/snapshots/poetry/no-dev_group-deps_lock21_1.2.json.bin b/tests/_data/snapshots/poetry/no-dev_group-deps_lock21_1.2.json.bin index e59540e3d..90259edec 100644 --- a/tests/_data/snapshots/poetry/no-dev_group-deps_lock21_1.2.json.bin +++ b/tests/_data/snapshots/poetry/no-dev_group-deps_lock21_1.2.json.bin @@ -34,6 +34,7 @@ ], "metadata": { "component": { + "author": "Your Name ", "bom-ref": "group-deps", "description": "dependencies organized in groups", "name": "group-deps", diff --git a/tests/_data/snapshots/poetry/no-dev_group-deps_lock21_1.2.xml.bin b/tests/_data/snapshots/poetry/no-dev_group-deps_lock21_1.2.xml.bin index 9f5b73f07..ff4a918a7 100644 --- a/tests/_data/snapshots/poetry/no-dev_group-deps_lock21_1.2.xml.bin +++ b/tests/_data/snapshots/poetry/no-dev_group-deps_lock21_1.2.xml.bin @@ -14,6 +14,7 @@ + Your Name <you@example.com> group-deps 0.1.0 dependencies organized in groups diff --git a/tests/_data/snapshots/poetry/no-dev_group-deps_lock21_1.3.json.bin b/tests/_data/snapshots/poetry/no-dev_group-deps_lock21_1.3.json.bin index db7c61f16..2fed629c9 100644 --- a/tests/_data/snapshots/poetry/no-dev_group-deps_lock21_1.3.json.bin +++ b/tests/_data/snapshots/poetry/no-dev_group-deps_lock21_1.3.json.bin @@ -52,6 +52,7 @@ ], "metadata": { "component": { + "author": "Your Name ", "bom-ref": "group-deps", "description": "dependencies organized in groups", "name": "group-deps", diff --git a/tests/_data/snapshots/poetry/no-dev_group-deps_lock21_1.3.xml.bin b/tests/_data/snapshots/poetry/no-dev_group-deps_lock21_1.3.xml.bin index a6c23702c..58cdc7b61 100644 --- a/tests/_data/snapshots/poetry/no-dev_group-deps_lock21_1.3.xml.bin +++ b/tests/_data/snapshots/poetry/no-dev_group-deps_lock21_1.3.xml.bin @@ -14,6 +14,7 @@ + Your Name <you@example.com> group-deps 0.1.0 dependencies organized in groups diff --git a/tests/_data/snapshots/poetry/no-dev_group-deps_lock21_1.4.json.bin b/tests/_data/snapshots/poetry/no-dev_group-deps_lock21_1.4.json.bin index e4590fe0f..6b9d9e6e3 100644 --- a/tests/_data/snapshots/poetry/no-dev_group-deps_lock21_1.4.json.bin +++ b/tests/_data/snapshots/poetry/no-dev_group-deps_lock21_1.4.json.bin @@ -52,6 +52,7 @@ ], "metadata": { "component": { + "author": "Your Name ", "bom-ref": "group-deps", "description": "dependencies organized in groups", "name": "group-deps", diff --git a/tests/_data/snapshots/poetry/no-dev_group-deps_lock21_1.4.xml.bin b/tests/_data/snapshots/poetry/no-dev_group-deps_lock21_1.4.xml.bin index 391fe83de..e6ceb9daf 100644 --- a/tests/_data/snapshots/poetry/no-dev_group-deps_lock21_1.4.xml.bin +++ b/tests/_data/snapshots/poetry/no-dev_group-deps_lock21_1.4.xml.bin @@ -41,6 +41,7 @@ + Your Name <you@example.com> group-deps 0.1.0 dependencies organized in groups diff --git a/tests/_data/snapshots/poetry/no-dev_group-deps_lock21_1.5.json.bin b/tests/_data/snapshots/poetry/no-dev_group-deps_lock21_1.5.json.bin index 9fa3e6dea..077807343 100644 --- a/tests/_data/snapshots/poetry/no-dev_group-deps_lock21_1.5.json.bin +++ b/tests/_data/snapshots/poetry/no-dev_group-deps_lock21_1.5.json.bin @@ -52,6 +52,7 @@ ], "metadata": { "component": { + "author": "Your Name ", "bom-ref": "group-deps", "description": "dependencies organized in groups", "name": "group-deps", diff --git a/tests/_data/snapshots/poetry/no-dev_group-deps_lock21_1.5.xml.bin b/tests/_data/snapshots/poetry/no-dev_group-deps_lock21_1.5.xml.bin index 28f188d41..bf9febbf8 100644 --- a/tests/_data/snapshots/poetry/no-dev_group-deps_lock21_1.5.xml.bin +++ b/tests/_data/snapshots/poetry/no-dev_group-deps_lock21_1.5.xml.bin @@ -51,6 +51,7 @@ + Your Name <you@example.com> group-deps 0.1.0 dependencies organized in groups diff --git a/tests/_data/snapshots/poetry/no-dev_group-deps_lock21_1.6.json.bin b/tests/_data/snapshots/poetry/no-dev_group-deps_lock21_1.6.json.bin index f2b229d14..db897cf4f 100644 --- a/tests/_data/snapshots/poetry/no-dev_group-deps_lock21_1.6.json.bin +++ b/tests/_data/snapshots/poetry/no-dev_group-deps_lock21_1.6.json.bin @@ -52,6 +52,13 @@ ], "metadata": { "component": { + "author": "Your Name ", + "authors": [ + { + "email": "you@example.com", + "name": "Your Name" + } + ], "bom-ref": "group-deps", "description": "dependencies organized in groups", "name": "group-deps", diff --git a/tests/_data/snapshots/poetry/no-dev_group-deps_lock21_1.6.xml.bin b/tests/_data/snapshots/poetry/no-dev_group-deps_lock21_1.6.xml.bin index 233c258ef..f752e4422 100644 --- a/tests/_data/snapshots/poetry/no-dev_group-deps_lock21_1.6.xml.bin +++ b/tests/_data/snapshots/poetry/no-dev_group-deps_lock21_1.6.xml.bin @@ -51,6 +51,13 @@ + + + Your Name + you@example.com + + + Your Name <you@example.com> group-deps 0.1.0 dependencies organized in groups diff --git a/tests/_data/snapshots/poetry/no-dev_group-deps_lock21_1.7.json.bin b/tests/_data/snapshots/poetry/no-dev_group-deps_lock21_1.7.json.bin index 7c7ee4481..c91bf8730 100644 --- a/tests/_data/snapshots/poetry/no-dev_group-deps_lock21_1.7.json.bin +++ b/tests/_data/snapshots/poetry/no-dev_group-deps_lock21_1.7.json.bin @@ -52,6 +52,13 @@ ], "metadata": { "component": { + "author": "Your Name ", + "authors": [ + { + "email": "you@example.com", + "name": "Your Name" + } + ], "bom-ref": "group-deps", "description": "dependencies organized in groups", "name": "group-deps", diff --git a/tests/_data/snapshots/poetry/no-dev_group-deps_lock21_1.7.xml.bin b/tests/_data/snapshots/poetry/no-dev_group-deps_lock21_1.7.xml.bin index d0b496688..06fa2e419 100644 --- a/tests/_data/snapshots/poetry/no-dev_group-deps_lock21_1.7.xml.bin +++ b/tests/_data/snapshots/poetry/no-dev_group-deps_lock21_1.7.xml.bin @@ -51,6 +51,13 @@ + + + Your Name + you@example.com + + + Your Name <you@example.com> group-deps 0.1.0 dependencies organized in groups diff --git a/tests/_data/snapshots/poetry/no-dev_main-and-dev_lock10_1.2.json.bin b/tests/_data/snapshots/poetry/no-dev_main-and-dev_lock10_1.2.json.bin index 50fee0bc6..bd7a2de0d 100644 --- a/tests/_data/snapshots/poetry/no-dev_main-and-dev_lock10_1.2.json.bin +++ b/tests/_data/snapshots/poetry/no-dev_main-and-dev_lock10_1.2.json.bin @@ -158,6 +158,7 @@ ], "metadata": { "component": { + "author": "Your Name ", "bom-ref": "main-and-dev", "description": "main and dev depenndencies", "name": "main-and-dev", diff --git a/tests/_data/snapshots/poetry/no-dev_main-and-dev_lock10_1.2.xml.bin b/tests/_data/snapshots/poetry/no-dev_main-and-dev_lock10_1.2.xml.bin index 7a80e02f2..13c759177 100644 --- a/tests/_data/snapshots/poetry/no-dev_main-and-dev_lock10_1.2.xml.bin +++ b/tests/_data/snapshots/poetry/no-dev_main-and-dev_lock10_1.2.xml.bin @@ -14,6 +14,7 @@ + Your Name <you@example.com> main-and-dev 0.1.0 main and dev depenndencies diff --git a/tests/_data/snapshots/poetry/no-dev_main-and-dev_lock10_1.3.json.bin b/tests/_data/snapshots/poetry/no-dev_main-and-dev_lock10_1.3.json.bin index 6a77b2e06..ee28438ff 100644 --- a/tests/_data/snapshots/poetry/no-dev_main-and-dev_lock10_1.3.json.bin +++ b/tests/_data/snapshots/poetry/no-dev_main-and-dev_lock10_1.3.json.bin @@ -266,6 +266,7 @@ ], "metadata": { "component": { + "author": "Your Name ", "bom-ref": "main-and-dev", "description": "main and dev depenndencies", "name": "main-and-dev", diff --git a/tests/_data/snapshots/poetry/no-dev_main-and-dev_lock10_1.3.xml.bin b/tests/_data/snapshots/poetry/no-dev_main-and-dev_lock10_1.3.xml.bin index 8c9b71ad5..6e3b4e770 100644 --- a/tests/_data/snapshots/poetry/no-dev_main-and-dev_lock10_1.3.xml.bin +++ b/tests/_data/snapshots/poetry/no-dev_main-and-dev_lock10_1.3.xml.bin @@ -14,6 +14,7 @@ + Your Name <you@example.com> main-and-dev 0.1.0 main and dev depenndencies diff --git a/tests/_data/snapshots/poetry/no-dev_main-and-dev_lock10_1.4.json.bin b/tests/_data/snapshots/poetry/no-dev_main-and-dev_lock10_1.4.json.bin index b5a99a86c..7204edd88 100644 --- a/tests/_data/snapshots/poetry/no-dev_main-and-dev_lock10_1.4.json.bin +++ b/tests/_data/snapshots/poetry/no-dev_main-and-dev_lock10_1.4.json.bin @@ -266,6 +266,7 @@ ], "metadata": { "component": { + "author": "Your Name ", "bom-ref": "main-and-dev", "description": "main and dev depenndencies", "name": "main-and-dev", diff --git a/tests/_data/snapshots/poetry/no-dev_main-and-dev_lock10_1.4.xml.bin b/tests/_data/snapshots/poetry/no-dev_main-and-dev_lock10_1.4.xml.bin index 7b611a8e6..3f2303f33 100644 --- a/tests/_data/snapshots/poetry/no-dev_main-and-dev_lock10_1.4.xml.bin +++ b/tests/_data/snapshots/poetry/no-dev_main-and-dev_lock10_1.4.xml.bin @@ -41,6 +41,7 @@ + Your Name <you@example.com> main-and-dev 0.1.0 main and dev depenndencies diff --git a/tests/_data/snapshots/poetry/no-dev_main-and-dev_lock10_1.5.json.bin b/tests/_data/snapshots/poetry/no-dev_main-and-dev_lock10_1.5.json.bin index 7a204597c..67c048c66 100644 --- a/tests/_data/snapshots/poetry/no-dev_main-and-dev_lock10_1.5.json.bin +++ b/tests/_data/snapshots/poetry/no-dev_main-and-dev_lock10_1.5.json.bin @@ -266,6 +266,7 @@ ], "metadata": { "component": { + "author": "Your Name ", "bom-ref": "main-and-dev", "description": "main and dev depenndencies", "name": "main-and-dev", diff --git a/tests/_data/snapshots/poetry/no-dev_main-and-dev_lock10_1.5.xml.bin b/tests/_data/snapshots/poetry/no-dev_main-and-dev_lock10_1.5.xml.bin index ab14d8f22..48bf0393e 100644 --- a/tests/_data/snapshots/poetry/no-dev_main-and-dev_lock10_1.5.xml.bin +++ b/tests/_data/snapshots/poetry/no-dev_main-and-dev_lock10_1.5.xml.bin @@ -51,6 +51,7 @@ + Your Name <you@example.com> main-and-dev 0.1.0 main and dev depenndencies diff --git a/tests/_data/snapshots/poetry/no-dev_main-and-dev_lock10_1.6.json.bin b/tests/_data/snapshots/poetry/no-dev_main-and-dev_lock10_1.6.json.bin index 8cfeb8f5c..1747f8487 100644 --- a/tests/_data/snapshots/poetry/no-dev_main-and-dev_lock10_1.6.json.bin +++ b/tests/_data/snapshots/poetry/no-dev_main-and-dev_lock10_1.6.json.bin @@ -266,6 +266,13 @@ ], "metadata": { "component": { + "author": "Your Name ", + "authors": [ + { + "email": "you@example.com", + "name": "Your Name" + } + ], "bom-ref": "main-and-dev", "description": "main and dev depenndencies", "name": "main-and-dev", diff --git a/tests/_data/snapshots/poetry/no-dev_main-and-dev_lock10_1.6.xml.bin b/tests/_data/snapshots/poetry/no-dev_main-and-dev_lock10_1.6.xml.bin index 7a4d153b9..2342a72ae 100644 --- a/tests/_data/snapshots/poetry/no-dev_main-and-dev_lock10_1.6.xml.bin +++ b/tests/_data/snapshots/poetry/no-dev_main-and-dev_lock10_1.6.xml.bin @@ -51,6 +51,13 @@ + + + Your Name + you@example.com + + + Your Name <you@example.com> main-and-dev 0.1.0 main and dev depenndencies diff --git a/tests/_data/snapshots/poetry/no-dev_main-and-dev_lock10_1.7.json.bin b/tests/_data/snapshots/poetry/no-dev_main-and-dev_lock10_1.7.json.bin index cca0c0082..f09f28c5a 100644 --- a/tests/_data/snapshots/poetry/no-dev_main-and-dev_lock10_1.7.json.bin +++ b/tests/_data/snapshots/poetry/no-dev_main-and-dev_lock10_1.7.json.bin @@ -266,6 +266,13 @@ ], "metadata": { "component": { + "author": "Your Name ", + "authors": [ + { + "email": "you@example.com", + "name": "Your Name" + } + ], "bom-ref": "main-and-dev", "description": "main and dev depenndencies", "name": "main-and-dev", diff --git a/tests/_data/snapshots/poetry/no-dev_main-and-dev_lock10_1.7.xml.bin b/tests/_data/snapshots/poetry/no-dev_main-and-dev_lock10_1.7.xml.bin index 8ff4c08a6..471945937 100644 --- a/tests/_data/snapshots/poetry/no-dev_main-and-dev_lock10_1.7.xml.bin +++ b/tests/_data/snapshots/poetry/no-dev_main-and-dev_lock10_1.7.xml.bin @@ -51,6 +51,13 @@ + + + Your Name + you@example.com + + + Your Name <you@example.com> main-and-dev 0.1.0 main and dev depenndencies diff --git a/tests/_data/snapshots/poetry/no-dev_main-and-dev_lock11_1.2.json.bin b/tests/_data/snapshots/poetry/no-dev_main-and-dev_lock11_1.2.json.bin index 50fee0bc6..bd7a2de0d 100644 --- a/tests/_data/snapshots/poetry/no-dev_main-and-dev_lock11_1.2.json.bin +++ b/tests/_data/snapshots/poetry/no-dev_main-and-dev_lock11_1.2.json.bin @@ -158,6 +158,7 @@ ], "metadata": { "component": { + "author": "Your Name ", "bom-ref": "main-and-dev", "description": "main and dev depenndencies", "name": "main-and-dev", diff --git a/tests/_data/snapshots/poetry/no-dev_main-and-dev_lock11_1.2.xml.bin b/tests/_data/snapshots/poetry/no-dev_main-and-dev_lock11_1.2.xml.bin index 7a80e02f2..13c759177 100644 --- a/tests/_data/snapshots/poetry/no-dev_main-and-dev_lock11_1.2.xml.bin +++ b/tests/_data/snapshots/poetry/no-dev_main-and-dev_lock11_1.2.xml.bin @@ -14,6 +14,7 @@ + Your Name <you@example.com> main-and-dev 0.1.0 main and dev depenndencies diff --git a/tests/_data/snapshots/poetry/no-dev_main-and-dev_lock11_1.3.json.bin b/tests/_data/snapshots/poetry/no-dev_main-and-dev_lock11_1.3.json.bin index 6a77b2e06..ee28438ff 100644 --- a/tests/_data/snapshots/poetry/no-dev_main-and-dev_lock11_1.3.json.bin +++ b/tests/_data/snapshots/poetry/no-dev_main-and-dev_lock11_1.3.json.bin @@ -266,6 +266,7 @@ ], "metadata": { "component": { + "author": "Your Name ", "bom-ref": "main-and-dev", "description": "main and dev depenndencies", "name": "main-and-dev", diff --git a/tests/_data/snapshots/poetry/no-dev_main-and-dev_lock11_1.3.xml.bin b/tests/_data/snapshots/poetry/no-dev_main-and-dev_lock11_1.3.xml.bin index 8c9b71ad5..6e3b4e770 100644 --- a/tests/_data/snapshots/poetry/no-dev_main-and-dev_lock11_1.3.xml.bin +++ b/tests/_data/snapshots/poetry/no-dev_main-and-dev_lock11_1.3.xml.bin @@ -14,6 +14,7 @@ + Your Name <you@example.com> main-and-dev 0.1.0 main and dev depenndencies diff --git a/tests/_data/snapshots/poetry/no-dev_main-and-dev_lock11_1.4.json.bin b/tests/_data/snapshots/poetry/no-dev_main-and-dev_lock11_1.4.json.bin index b5a99a86c..7204edd88 100644 --- a/tests/_data/snapshots/poetry/no-dev_main-and-dev_lock11_1.4.json.bin +++ b/tests/_data/snapshots/poetry/no-dev_main-and-dev_lock11_1.4.json.bin @@ -266,6 +266,7 @@ ], "metadata": { "component": { + "author": "Your Name ", "bom-ref": "main-and-dev", "description": "main and dev depenndencies", "name": "main-and-dev", diff --git a/tests/_data/snapshots/poetry/no-dev_main-and-dev_lock11_1.4.xml.bin b/tests/_data/snapshots/poetry/no-dev_main-and-dev_lock11_1.4.xml.bin index 7b611a8e6..3f2303f33 100644 --- a/tests/_data/snapshots/poetry/no-dev_main-and-dev_lock11_1.4.xml.bin +++ b/tests/_data/snapshots/poetry/no-dev_main-and-dev_lock11_1.4.xml.bin @@ -41,6 +41,7 @@ + Your Name <you@example.com> main-and-dev 0.1.0 main and dev depenndencies diff --git a/tests/_data/snapshots/poetry/no-dev_main-and-dev_lock11_1.5.json.bin b/tests/_data/snapshots/poetry/no-dev_main-and-dev_lock11_1.5.json.bin index 7a204597c..67c048c66 100644 --- a/tests/_data/snapshots/poetry/no-dev_main-and-dev_lock11_1.5.json.bin +++ b/tests/_data/snapshots/poetry/no-dev_main-and-dev_lock11_1.5.json.bin @@ -266,6 +266,7 @@ ], "metadata": { "component": { + "author": "Your Name ", "bom-ref": "main-and-dev", "description": "main and dev depenndencies", "name": "main-and-dev", diff --git a/tests/_data/snapshots/poetry/no-dev_main-and-dev_lock11_1.5.xml.bin b/tests/_data/snapshots/poetry/no-dev_main-and-dev_lock11_1.5.xml.bin index ab14d8f22..48bf0393e 100644 --- a/tests/_data/snapshots/poetry/no-dev_main-and-dev_lock11_1.5.xml.bin +++ b/tests/_data/snapshots/poetry/no-dev_main-and-dev_lock11_1.5.xml.bin @@ -51,6 +51,7 @@ + Your Name <you@example.com> main-and-dev 0.1.0 main and dev depenndencies diff --git a/tests/_data/snapshots/poetry/no-dev_main-and-dev_lock11_1.6.json.bin b/tests/_data/snapshots/poetry/no-dev_main-and-dev_lock11_1.6.json.bin index 8cfeb8f5c..1747f8487 100644 --- a/tests/_data/snapshots/poetry/no-dev_main-and-dev_lock11_1.6.json.bin +++ b/tests/_data/snapshots/poetry/no-dev_main-and-dev_lock11_1.6.json.bin @@ -266,6 +266,13 @@ ], "metadata": { "component": { + "author": "Your Name ", + "authors": [ + { + "email": "you@example.com", + "name": "Your Name" + } + ], "bom-ref": "main-and-dev", "description": "main and dev depenndencies", "name": "main-and-dev", diff --git a/tests/_data/snapshots/poetry/no-dev_main-and-dev_lock11_1.6.xml.bin b/tests/_data/snapshots/poetry/no-dev_main-and-dev_lock11_1.6.xml.bin index 7a4d153b9..2342a72ae 100644 --- a/tests/_data/snapshots/poetry/no-dev_main-and-dev_lock11_1.6.xml.bin +++ b/tests/_data/snapshots/poetry/no-dev_main-and-dev_lock11_1.6.xml.bin @@ -51,6 +51,13 @@ + + + Your Name + you@example.com + + + Your Name <you@example.com> main-and-dev 0.1.0 main and dev depenndencies diff --git a/tests/_data/snapshots/poetry/no-dev_main-and-dev_lock11_1.7.json.bin b/tests/_data/snapshots/poetry/no-dev_main-and-dev_lock11_1.7.json.bin index cca0c0082..f09f28c5a 100644 --- a/tests/_data/snapshots/poetry/no-dev_main-and-dev_lock11_1.7.json.bin +++ b/tests/_data/snapshots/poetry/no-dev_main-and-dev_lock11_1.7.json.bin @@ -266,6 +266,13 @@ ], "metadata": { "component": { + "author": "Your Name ", + "authors": [ + { + "email": "you@example.com", + "name": "Your Name" + } + ], "bom-ref": "main-and-dev", "description": "main and dev depenndencies", "name": "main-and-dev", diff --git a/tests/_data/snapshots/poetry/no-dev_main-and-dev_lock11_1.7.xml.bin b/tests/_data/snapshots/poetry/no-dev_main-and-dev_lock11_1.7.xml.bin index 8ff4c08a6..471945937 100644 --- a/tests/_data/snapshots/poetry/no-dev_main-and-dev_lock11_1.7.xml.bin +++ b/tests/_data/snapshots/poetry/no-dev_main-and-dev_lock11_1.7.xml.bin @@ -51,6 +51,13 @@ + + + Your Name + you@example.com + + + Your Name <you@example.com> main-and-dev 0.1.0 main and dev depenndencies diff --git a/tests/_data/snapshots/poetry/no-dev_main-and-dev_lock20_1.2.json.bin b/tests/_data/snapshots/poetry/no-dev_main-and-dev_lock20_1.2.json.bin index 50fee0bc6..bd7a2de0d 100644 --- a/tests/_data/snapshots/poetry/no-dev_main-and-dev_lock20_1.2.json.bin +++ b/tests/_data/snapshots/poetry/no-dev_main-and-dev_lock20_1.2.json.bin @@ -158,6 +158,7 @@ ], "metadata": { "component": { + "author": "Your Name ", "bom-ref": "main-and-dev", "description": "main and dev depenndencies", "name": "main-and-dev", diff --git a/tests/_data/snapshots/poetry/no-dev_main-and-dev_lock20_1.2.xml.bin b/tests/_data/snapshots/poetry/no-dev_main-and-dev_lock20_1.2.xml.bin index 7a80e02f2..13c759177 100644 --- a/tests/_data/snapshots/poetry/no-dev_main-and-dev_lock20_1.2.xml.bin +++ b/tests/_data/snapshots/poetry/no-dev_main-and-dev_lock20_1.2.xml.bin @@ -14,6 +14,7 @@ + Your Name <you@example.com> main-and-dev 0.1.0 main and dev depenndencies diff --git a/tests/_data/snapshots/poetry/no-dev_main-and-dev_lock20_1.3.json.bin b/tests/_data/snapshots/poetry/no-dev_main-and-dev_lock20_1.3.json.bin index c17d28f77..875db43ce 100644 --- a/tests/_data/snapshots/poetry/no-dev_main-and-dev_lock20_1.3.json.bin +++ b/tests/_data/snapshots/poetry/no-dev_main-and-dev_lock20_1.3.json.bin @@ -248,6 +248,7 @@ ], "metadata": { "component": { + "author": "Your Name ", "bom-ref": "main-and-dev", "description": "main and dev depenndencies", "name": "main-and-dev", diff --git a/tests/_data/snapshots/poetry/no-dev_main-and-dev_lock20_1.3.xml.bin b/tests/_data/snapshots/poetry/no-dev_main-and-dev_lock20_1.3.xml.bin index e4720af3f..710a4505b 100644 --- a/tests/_data/snapshots/poetry/no-dev_main-and-dev_lock20_1.3.xml.bin +++ b/tests/_data/snapshots/poetry/no-dev_main-and-dev_lock20_1.3.xml.bin @@ -14,6 +14,7 @@ + Your Name <you@example.com> main-and-dev 0.1.0 main and dev depenndencies diff --git a/tests/_data/snapshots/poetry/no-dev_main-and-dev_lock20_1.4.json.bin b/tests/_data/snapshots/poetry/no-dev_main-and-dev_lock20_1.4.json.bin index 6164d30b8..8f324568b 100644 --- a/tests/_data/snapshots/poetry/no-dev_main-and-dev_lock20_1.4.json.bin +++ b/tests/_data/snapshots/poetry/no-dev_main-and-dev_lock20_1.4.json.bin @@ -248,6 +248,7 @@ ], "metadata": { "component": { + "author": "Your Name ", "bom-ref": "main-and-dev", "description": "main and dev depenndencies", "name": "main-and-dev", diff --git a/tests/_data/snapshots/poetry/no-dev_main-and-dev_lock20_1.4.xml.bin b/tests/_data/snapshots/poetry/no-dev_main-and-dev_lock20_1.4.xml.bin index 7ec5eef35..5efbecc8d 100644 --- a/tests/_data/snapshots/poetry/no-dev_main-and-dev_lock20_1.4.xml.bin +++ b/tests/_data/snapshots/poetry/no-dev_main-and-dev_lock20_1.4.xml.bin @@ -41,6 +41,7 @@ + Your Name <you@example.com> main-and-dev 0.1.0 main and dev depenndencies diff --git a/tests/_data/snapshots/poetry/no-dev_main-and-dev_lock20_1.5.json.bin b/tests/_data/snapshots/poetry/no-dev_main-and-dev_lock20_1.5.json.bin index f9bc5f4a7..5ac3d9926 100644 --- a/tests/_data/snapshots/poetry/no-dev_main-and-dev_lock20_1.5.json.bin +++ b/tests/_data/snapshots/poetry/no-dev_main-and-dev_lock20_1.5.json.bin @@ -248,6 +248,7 @@ ], "metadata": { "component": { + "author": "Your Name ", "bom-ref": "main-and-dev", "description": "main and dev depenndencies", "name": "main-and-dev", diff --git a/tests/_data/snapshots/poetry/no-dev_main-and-dev_lock20_1.5.xml.bin b/tests/_data/snapshots/poetry/no-dev_main-and-dev_lock20_1.5.xml.bin index 7a5a6a60f..a1f2e2045 100644 --- a/tests/_data/snapshots/poetry/no-dev_main-and-dev_lock20_1.5.xml.bin +++ b/tests/_data/snapshots/poetry/no-dev_main-and-dev_lock20_1.5.xml.bin @@ -51,6 +51,7 @@ + Your Name <you@example.com> main-and-dev 0.1.0 main and dev depenndencies diff --git a/tests/_data/snapshots/poetry/no-dev_main-and-dev_lock20_1.6.json.bin b/tests/_data/snapshots/poetry/no-dev_main-and-dev_lock20_1.6.json.bin index 56acd04a0..29f441690 100644 --- a/tests/_data/snapshots/poetry/no-dev_main-and-dev_lock20_1.6.json.bin +++ b/tests/_data/snapshots/poetry/no-dev_main-and-dev_lock20_1.6.json.bin @@ -248,6 +248,13 @@ ], "metadata": { "component": { + "author": "Your Name ", + "authors": [ + { + "email": "you@example.com", + "name": "Your Name" + } + ], "bom-ref": "main-and-dev", "description": "main and dev depenndencies", "name": "main-and-dev", diff --git a/tests/_data/snapshots/poetry/no-dev_main-and-dev_lock20_1.6.xml.bin b/tests/_data/snapshots/poetry/no-dev_main-and-dev_lock20_1.6.xml.bin index 1f93a6f23..0a79d86bb 100644 --- a/tests/_data/snapshots/poetry/no-dev_main-and-dev_lock20_1.6.xml.bin +++ b/tests/_data/snapshots/poetry/no-dev_main-and-dev_lock20_1.6.xml.bin @@ -51,6 +51,13 @@ + + + Your Name + you@example.com + + + Your Name <you@example.com> main-and-dev 0.1.0 main and dev depenndencies diff --git a/tests/_data/snapshots/poetry/no-dev_main-and-dev_lock20_1.7.json.bin b/tests/_data/snapshots/poetry/no-dev_main-and-dev_lock20_1.7.json.bin index 5f960b5d1..227babfbb 100644 --- a/tests/_data/snapshots/poetry/no-dev_main-and-dev_lock20_1.7.json.bin +++ b/tests/_data/snapshots/poetry/no-dev_main-and-dev_lock20_1.7.json.bin @@ -248,6 +248,13 @@ ], "metadata": { "component": { + "author": "Your Name ", + "authors": [ + { + "email": "you@example.com", + "name": "Your Name" + } + ], "bom-ref": "main-and-dev", "description": "main and dev depenndencies", "name": "main-and-dev", diff --git a/tests/_data/snapshots/poetry/no-dev_main-and-dev_lock20_1.7.xml.bin b/tests/_data/snapshots/poetry/no-dev_main-and-dev_lock20_1.7.xml.bin index afd03d5d0..4b5224d08 100644 --- a/tests/_data/snapshots/poetry/no-dev_main-and-dev_lock20_1.7.xml.bin +++ b/tests/_data/snapshots/poetry/no-dev_main-and-dev_lock20_1.7.xml.bin @@ -51,6 +51,13 @@ + + + Your Name + you@example.com + + + Your Name <you@example.com> main-and-dev 0.1.0 main and dev depenndencies diff --git a/tests/_data/snapshots/poetry/no-dev_main-and-dev_lock21_1.2.json.bin b/tests/_data/snapshots/poetry/no-dev_main-and-dev_lock21_1.2.json.bin index 6692fe29e..7550b4500 100644 --- a/tests/_data/snapshots/poetry/no-dev_main-and-dev_lock21_1.2.json.bin +++ b/tests/_data/snapshots/poetry/no-dev_main-and-dev_lock21_1.2.json.bin @@ -158,6 +158,7 @@ ], "metadata": { "component": { + "author": "Your Name ", "bom-ref": "main-and-dev", "description": "main and dev depenndencies", "name": "main-and-dev", diff --git a/tests/_data/snapshots/poetry/no-dev_main-and-dev_lock21_1.2.xml.bin b/tests/_data/snapshots/poetry/no-dev_main-and-dev_lock21_1.2.xml.bin index 0e8a1f661..2b9446c4c 100644 --- a/tests/_data/snapshots/poetry/no-dev_main-and-dev_lock21_1.2.xml.bin +++ b/tests/_data/snapshots/poetry/no-dev_main-and-dev_lock21_1.2.xml.bin @@ -14,6 +14,7 @@ + Your Name <you@example.com> main-and-dev 0.1.0 main and dev depenndencies diff --git a/tests/_data/snapshots/poetry/no-dev_main-and-dev_lock21_1.3.json.bin b/tests/_data/snapshots/poetry/no-dev_main-and-dev_lock21_1.3.json.bin index 07cad6498..1680f3ca5 100644 --- a/tests/_data/snapshots/poetry/no-dev_main-and-dev_lock21_1.3.json.bin +++ b/tests/_data/snapshots/poetry/no-dev_main-and-dev_lock21_1.3.json.bin @@ -248,6 +248,7 @@ ], "metadata": { "component": { + "author": "Your Name ", "bom-ref": "main-and-dev", "description": "main and dev depenndencies", "name": "main-and-dev", diff --git a/tests/_data/snapshots/poetry/no-dev_main-and-dev_lock21_1.3.xml.bin b/tests/_data/snapshots/poetry/no-dev_main-and-dev_lock21_1.3.xml.bin index 25ff75bd8..1429c5599 100644 --- a/tests/_data/snapshots/poetry/no-dev_main-and-dev_lock21_1.3.xml.bin +++ b/tests/_data/snapshots/poetry/no-dev_main-and-dev_lock21_1.3.xml.bin @@ -14,6 +14,7 @@ + Your Name <you@example.com> main-and-dev 0.1.0 main and dev depenndencies diff --git a/tests/_data/snapshots/poetry/no-dev_main-and-dev_lock21_1.4.json.bin b/tests/_data/snapshots/poetry/no-dev_main-and-dev_lock21_1.4.json.bin index 8940b8b0b..866ff1e31 100644 --- a/tests/_data/snapshots/poetry/no-dev_main-and-dev_lock21_1.4.json.bin +++ b/tests/_data/snapshots/poetry/no-dev_main-and-dev_lock21_1.4.json.bin @@ -248,6 +248,7 @@ ], "metadata": { "component": { + "author": "Your Name ", "bom-ref": "main-and-dev", "description": "main and dev depenndencies", "name": "main-and-dev", diff --git a/tests/_data/snapshots/poetry/no-dev_main-and-dev_lock21_1.4.xml.bin b/tests/_data/snapshots/poetry/no-dev_main-and-dev_lock21_1.4.xml.bin index 365506649..ff4362db1 100644 --- a/tests/_data/snapshots/poetry/no-dev_main-and-dev_lock21_1.4.xml.bin +++ b/tests/_data/snapshots/poetry/no-dev_main-and-dev_lock21_1.4.xml.bin @@ -41,6 +41,7 @@ + Your Name <you@example.com> main-and-dev 0.1.0 main and dev depenndencies diff --git a/tests/_data/snapshots/poetry/no-dev_main-and-dev_lock21_1.5.json.bin b/tests/_data/snapshots/poetry/no-dev_main-and-dev_lock21_1.5.json.bin index 981e76d00..0f1bba4c2 100644 --- a/tests/_data/snapshots/poetry/no-dev_main-and-dev_lock21_1.5.json.bin +++ b/tests/_data/snapshots/poetry/no-dev_main-and-dev_lock21_1.5.json.bin @@ -248,6 +248,7 @@ ], "metadata": { "component": { + "author": "Your Name ", "bom-ref": "main-and-dev", "description": "main and dev depenndencies", "name": "main-and-dev", diff --git a/tests/_data/snapshots/poetry/no-dev_main-and-dev_lock21_1.5.xml.bin b/tests/_data/snapshots/poetry/no-dev_main-and-dev_lock21_1.5.xml.bin index 4f689cae6..fe651e575 100644 --- a/tests/_data/snapshots/poetry/no-dev_main-and-dev_lock21_1.5.xml.bin +++ b/tests/_data/snapshots/poetry/no-dev_main-and-dev_lock21_1.5.xml.bin @@ -51,6 +51,7 @@ + Your Name <you@example.com> main-and-dev 0.1.0 main and dev depenndencies diff --git a/tests/_data/snapshots/poetry/no-dev_main-and-dev_lock21_1.6.json.bin b/tests/_data/snapshots/poetry/no-dev_main-and-dev_lock21_1.6.json.bin index ab30b70e4..b9c7f4556 100644 --- a/tests/_data/snapshots/poetry/no-dev_main-and-dev_lock21_1.6.json.bin +++ b/tests/_data/snapshots/poetry/no-dev_main-and-dev_lock21_1.6.json.bin @@ -248,6 +248,13 @@ ], "metadata": { "component": { + "author": "Your Name ", + "authors": [ + { + "email": "you@example.com", + "name": "Your Name" + } + ], "bom-ref": "main-and-dev", "description": "main and dev depenndencies", "name": "main-and-dev", diff --git a/tests/_data/snapshots/poetry/no-dev_main-and-dev_lock21_1.6.xml.bin b/tests/_data/snapshots/poetry/no-dev_main-and-dev_lock21_1.6.xml.bin index 8e4b35043..9916e69ca 100644 --- a/tests/_data/snapshots/poetry/no-dev_main-and-dev_lock21_1.6.xml.bin +++ b/tests/_data/snapshots/poetry/no-dev_main-and-dev_lock21_1.6.xml.bin @@ -51,6 +51,13 @@ + + + Your Name + you@example.com + + + Your Name <you@example.com> main-and-dev 0.1.0 main and dev depenndencies diff --git a/tests/_data/snapshots/poetry/no-dev_main-and-dev_lock21_1.7.json.bin b/tests/_data/snapshots/poetry/no-dev_main-and-dev_lock21_1.7.json.bin index 73dc2279e..2bd9cd68b 100644 --- a/tests/_data/snapshots/poetry/no-dev_main-and-dev_lock21_1.7.json.bin +++ b/tests/_data/snapshots/poetry/no-dev_main-and-dev_lock21_1.7.json.bin @@ -248,6 +248,13 @@ ], "metadata": { "component": { + "author": "Your Name ", + "authors": [ + { + "email": "you@example.com", + "name": "Your Name" + } + ], "bom-ref": "main-and-dev", "description": "main and dev depenndencies", "name": "main-and-dev", diff --git a/tests/_data/snapshots/poetry/no-dev_main-and-dev_lock21_1.7.xml.bin b/tests/_data/snapshots/poetry/no-dev_main-and-dev_lock21_1.7.xml.bin index 7ebc24df1..8a691e2bd 100644 --- a/tests/_data/snapshots/poetry/no-dev_main-and-dev_lock21_1.7.xml.bin +++ b/tests/_data/snapshots/poetry/no-dev_main-and-dev_lock21_1.7.xml.bin @@ -51,6 +51,13 @@ + + + Your Name + you@example.com + + + Your Name <you@example.com> main-and-dev 0.1.0 main and dev depenndencies diff --git a/tests/_data/snapshots/poetry/only-groups_group-deps_lock11_1.2.json.bin b/tests/_data/snapshots/poetry/only-groups_group-deps_lock11_1.2.json.bin index 154eba671..2592e48fd 100644 --- a/tests/_data/snapshots/poetry/only-groups_group-deps_lock11_1.2.json.bin +++ b/tests/_data/snapshots/poetry/only-groups_group-deps_lock11_1.2.json.bin @@ -136,6 +136,7 @@ ], "metadata": { "component": { + "author": "Your Name ", "bom-ref": "group-deps", "description": "dependencies organized in groups", "name": "group-deps", diff --git a/tests/_data/snapshots/poetry/only-groups_group-deps_lock11_1.2.xml.bin b/tests/_data/snapshots/poetry/only-groups_group-deps_lock11_1.2.xml.bin index 35e2d2310..3da0bc50c 100644 --- a/tests/_data/snapshots/poetry/only-groups_group-deps_lock11_1.2.xml.bin +++ b/tests/_data/snapshots/poetry/only-groups_group-deps_lock11_1.2.xml.bin @@ -14,6 +14,7 @@ + Your Name <you@example.com> group-deps 0.1.0 dependencies organized in groups diff --git a/tests/_data/snapshots/poetry/only-groups_group-deps_lock11_1.3.json.bin b/tests/_data/snapshots/poetry/only-groups_group-deps_lock11_1.3.json.bin index f8ca0dbd9..250d8b821 100644 --- a/tests/_data/snapshots/poetry/only-groups_group-deps_lock11_1.3.json.bin +++ b/tests/_data/snapshots/poetry/only-groups_group-deps_lock11_1.3.json.bin @@ -230,6 +230,7 @@ ], "metadata": { "component": { + "author": "Your Name ", "bom-ref": "group-deps", "description": "dependencies organized in groups", "name": "group-deps", diff --git a/tests/_data/snapshots/poetry/only-groups_group-deps_lock11_1.3.xml.bin b/tests/_data/snapshots/poetry/only-groups_group-deps_lock11_1.3.xml.bin index cdab0c1d4..01d51afb4 100644 --- a/tests/_data/snapshots/poetry/only-groups_group-deps_lock11_1.3.xml.bin +++ b/tests/_data/snapshots/poetry/only-groups_group-deps_lock11_1.3.xml.bin @@ -14,6 +14,7 @@ + Your Name <you@example.com> group-deps 0.1.0 dependencies organized in groups diff --git a/tests/_data/snapshots/poetry/only-groups_group-deps_lock11_1.4.json.bin b/tests/_data/snapshots/poetry/only-groups_group-deps_lock11_1.4.json.bin index 17e820285..af1379574 100644 --- a/tests/_data/snapshots/poetry/only-groups_group-deps_lock11_1.4.json.bin +++ b/tests/_data/snapshots/poetry/only-groups_group-deps_lock11_1.4.json.bin @@ -230,6 +230,7 @@ ], "metadata": { "component": { + "author": "Your Name ", "bom-ref": "group-deps", "description": "dependencies organized in groups", "name": "group-deps", diff --git a/tests/_data/snapshots/poetry/only-groups_group-deps_lock11_1.4.xml.bin b/tests/_data/snapshots/poetry/only-groups_group-deps_lock11_1.4.xml.bin index 8b176a150..034dd6838 100644 --- a/tests/_data/snapshots/poetry/only-groups_group-deps_lock11_1.4.xml.bin +++ b/tests/_data/snapshots/poetry/only-groups_group-deps_lock11_1.4.xml.bin @@ -41,6 +41,7 @@ + Your Name <you@example.com> group-deps 0.1.0 dependencies organized in groups diff --git a/tests/_data/snapshots/poetry/only-groups_group-deps_lock11_1.5.json.bin b/tests/_data/snapshots/poetry/only-groups_group-deps_lock11_1.5.json.bin index f4105a066..f95b0a15b 100644 --- a/tests/_data/snapshots/poetry/only-groups_group-deps_lock11_1.5.json.bin +++ b/tests/_data/snapshots/poetry/only-groups_group-deps_lock11_1.5.json.bin @@ -230,6 +230,7 @@ ], "metadata": { "component": { + "author": "Your Name ", "bom-ref": "group-deps", "description": "dependencies organized in groups", "name": "group-deps", diff --git a/tests/_data/snapshots/poetry/only-groups_group-deps_lock11_1.5.xml.bin b/tests/_data/snapshots/poetry/only-groups_group-deps_lock11_1.5.xml.bin index 619d83916..8ae695054 100644 --- a/tests/_data/snapshots/poetry/only-groups_group-deps_lock11_1.5.xml.bin +++ b/tests/_data/snapshots/poetry/only-groups_group-deps_lock11_1.5.xml.bin @@ -51,6 +51,7 @@ + Your Name <you@example.com> group-deps 0.1.0 dependencies organized in groups diff --git a/tests/_data/snapshots/poetry/only-groups_group-deps_lock11_1.6.json.bin b/tests/_data/snapshots/poetry/only-groups_group-deps_lock11_1.6.json.bin index 741bd705d..6952f0308 100644 --- a/tests/_data/snapshots/poetry/only-groups_group-deps_lock11_1.6.json.bin +++ b/tests/_data/snapshots/poetry/only-groups_group-deps_lock11_1.6.json.bin @@ -230,6 +230,13 @@ ], "metadata": { "component": { + "author": "Your Name ", + "authors": [ + { + "email": "you@example.com", + "name": "Your Name" + } + ], "bom-ref": "group-deps", "description": "dependencies organized in groups", "name": "group-deps", diff --git a/tests/_data/snapshots/poetry/only-groups_group-deps_lock11_1.6.xml.bin b/tests/_data/snapshots/poetry/only-groups_group-deps_lock11_1.6.xml.bin index 340de5398..142df7dd7 100644 --- a/tests/_data/snapshots/poetry/only-groups_group-deps_lock11_1.6.xml.bin +++ b/tests/_data/snapshots/poetry/only-groups_group-deps_lock11_1.6.xml.bin @@ -51,6 +51,13 @@ + + + Your Name + you@example.com + + + Your Name <you@example.com> group-deps 0.1.0 dependencies organized in groups diff --git a/tests/_data/snapshots/poetry/only-groups_group-deps_lock11_1.7.json.bin b/tests/_data/snapshots/poetry/only-groups_group-deps_lock11_1.7.json.bin index 280214ab2..ef7c0e516 100644 --- a/tests/_data/snapshots/poetry/only-groups_group-deps_lock11_1.7.json.bin +++ b/tests/_data/snapshots/poetry/only-groups_group-deps_lock11_1.7.json.bin @@ -230,6 +230,13 @@ ], "metadata": { "component": { + "author": "Your Name ", + "authors": [ + { + "email": "you@example.com", + "name": "Your Name" + } + ], "bom-ref": "group-deps", "description": "dependencies organized in groups", "name": "group-deps", diff --git a/tests/_data/snapshots/poetry/only-groups_group-deps_lock11_1.7.xml.bin b/tests/_data/snapshots/poetry/only-groups_group-deps_lock11_1.7.xml.bin index 15849398b..3cbd4a1c3 100644 --- a/tests/_data/snapshots/poetry/only-groups_group-deps_lock11_1.7.xml.bin +++ b/tests/_data/snapshots/poetry/only-groups_group-deps_lock11_1.7.xml.bin @@ -51,6 +51,13 @@ + + + Your Name + you@example.com + + + Your Name <you@example.com> group-deps 0.1.0 dependencies organized in groups diff --git a/tests/_data/snapshots/poetry/only-groups_group-deps_lock20_1.2.json.bin b/tests/_data/snapshots/poetry/only-groups_group-deps_lock20_1.2.json.bin index 154eba671..2592e48fd 100644 --- a/tests/_data/snapshots/poetry/only-groups_group-deps_lock20_1.2.json.bin +++ b/tests/_data/snapshots/poetry/only-groups_group-deps_lock20_1.2.json.bin @@ -136,6 +136,7 @@ ], "metadata": { "component": { + "author": "Your Name ", "bom-ref": "group-deps", "description": "dependencies organized in groups", "name": "group-deps", diff --git a/tests/_data/snapshots/poetry/only-groups_group-deps_lock20_1.2.xml.bin b/tests/_data/snapshots/poetry/only-groups_group-deps_lock20_1.2.xml.bin index 35e2d2310..3da0bc50c 100644 --- a/tests/_data/snapshots/poetry/only-groups_group-deps_lock20_1.2.xml.bin +++ b/tests/_data/snapshots/poetry/only-groups_group-deps_lock20_1.2.xml.bin @@ -14,6 +14,7 @@ + Your Name <you@example.com> group-deps 0.1.0 dependencies organized in groups diff --git a/tests/_data/snapshots/poetry/only-groups_group-deps_lock20_1.3.json.bin b/tests/_data/snapshots/poetry/only-groups_group-deps_lock20_1.3.json.bin index 305ac5e82..8db9ba6d2 100644 --- a/tests/_data/snapshots/poetry/only-groups_group-deps_lock20_1.3.json.bin +++ b/tests/_data/snapshots/poetry/only-groups_group-deps_lock20_1.3.json.bin @@ -202,6 +202,7 @@ ], "metadata": { "component": { + "author": "Your Name ", "bom-ref": "group-deps", "description": "dependencies organized in groups", "name": "group-deps", diff --git a/tests/_data/snapshots/poetry/only-groups_group-deps_lock20_1.3.xml.bin b/tests/_data/snapshots/poetry/only-groups_group-deps_lock20_1.3.xml.bin index 8cd136813..b1231d2cd 100644 --- a/tests/_data/snapshots/poetry/only-groups_group-deps_lock20_1.3.xml.bin +++ b/tests/_data/snapshots/poetry/only-groups_group-deps_lock20_1.3.xml.bin @@ -14,6 +14,7 @@ + Your Name <you@example.com> group-deps 0.1.0 dependencies organized in groups diff --git a/tests/_data/snapshots/poetry/only-groups_group-deps_lock20_1.4.json.bin b/tests/_data/snapshots/poetry/only-groups_group-deps_lock20_1.4.json.bin index ba42a6e66..c35fccb92 100644 --- a/tests/_data/snapshots/poetry/only-groups_group-deps_lock20_1.4.json.bin +++ b/tests/_data/snapshots/poetry/only-groups_group-deps_lock20_1.4.json.bin @@ -202,6 +202,7 @@ ], "metadata": { "component": { + "author": "Your Name ", "bom-ref": "group-deps", "description": "dependencies organized in groups", "name": "group-deps", diff --git a/tests/_data/snapshots/poetry/only-groups_group-deps_lock20_1.4.xml.bin b/tests/_data/snapshots/poetry/only-groups_group-deps_lock20_1.4.xml.bin index eb2e36e33..ee18fe13e 100644 --- a/tests/_data/snapshots/poetry/only-groups_group-deps_lock20_1.4.xml.bin +++ b/tests/_data/snapshots/poetry/only-groups_group-deps_lock20_1.4.xml.bin @@ -41,6 +41,7 @@ + Your Name <you@example.com> group-deps 0.1.0 dependencies organized in groups diff --git a/tests/_data/snapshots/poetry/only-groups_group-deps_lock20_1.5.json.bin b/tests/_data/snapshots/poetry/only-groups_group-deps_lock20_1.5.json.bin index 1358a4546..f70d6375e 100644 --- a/tests/_data/snapshots/poetry/only-groups_group-deps_lock20_1.5.json.bin +++ b/tests/_data/snapshots/poetry/only-groups_group-deps_lock20_1.5.json.bin @@ -202,6 +202,7 @@ ], "metadata": { "component": { + "author": "Your Name ", "bom-ref": "group-deps", "description": "dependencies organized in groups", "name": "group-deps", diff --git a/tests/_data/snapshots/poetry/only-groups_group-deps_lock20_1.5.xml.bin b/tests/_data/snapshots/poetry/only-groups_group-deps_lock20_1.5.xml.bin index 412db2098..bb7a51257 100644 --- a/tests/_data/snapshots/poetry/only-groups_group-deps_lock20_1.5.xml.bin +++ b/tests/_data/snapshots/poetry/only-groups_group-deps_lock20_1.5.xml.bin @@ -51,6 +51,7 @@ + Your Name <you@example.com> group-deps 0.1.0 dependencies organized in groups diff --git a/tests/_data/snapshots/poetry/only-groups_group-deps_lock20_1.6.json.bin b/tests/_data/snapshots/poetry/only-groups_group-deps_lock20_1.6.json.bin index 16d4e0219..627b677ca 100644 --- a/tests/_data/snapshots/poetry/only-groups_group-deps_lock20_1.6.json.bin +++ b/tests/_data/snapshots/poetry/only-groups_group-deps_lock20_1.6.json.bin @@ -202,6 +202,13 @@ ], "metadata": { "component": { + "author": "Your Name ", + "authors": [ + { + "email": "you@example.com", + "name": "Your Name" + } + ], "bom-ref": "group-deps", "description": "dependencies organized in groups", "name": "group-deps", diff --git a/tests/_data/snapshots/poetry/only-groups_group-deps_lock20_1.6.xml.bin b/tests/_data/snapshots/poetry/only-groups_group-deps_lock20_1.6.xml.bin index 552ba0898..8b4af1df4 100644 --- a/tests/_data/snapshots/poetry/only-groups_group-deps_lock20_1.6.xml.bin +++ b/tests/_data/snapshots/poetry/only-groups_group-deps_lock20_1.6.xml.bin @@ -51,6 +51,13 @@ + + + Your Name + you@example.com + + + Your Name <you@example.com> group-deps 0.1.0 dependencies organized in groups diff --git a/tests/_data/snapshots/poetry/only-groups_group-deps_lock20_1.7.json.bin b/tests/_data/snapshots/poetry/only-groups_group-deps_lock20_1.7.json.bin index c70c85c55..4cd2a431d 100644 --- a/tests/_data/snapshots/poetry/only-groups_group-deps_lock20_1.7.json.bin +++ b/tests/_data/snapshots/poetry/only-groups_group-deps_lock20_1.7.json.bin @@ -202,6 +202,13 @@ ], "metadata": { "component": { + "author": "Your Name ", + "authors": [ + { + "email": "you@example.com", + "name": "Your Name" + } + ], "bom-ref": "group-deps", "description": "dependencies organized in groups", "name": "group-deps", diff --git a/tests/_data/snapshots/poetry/only-groups_group-deps_lock20_1.7.xml.bin b/tests/_data/snapshots/poetry/only-groups_group-deps_lock20_1.7.xml.bin index c14b1398c..faa24fc8a 100644 --- a/tests/_data/snapshots/poetry/only-groups_group-deps_lock20_1.7.xml.bin +++ b/tests/_data/snapshots/poetry/only-groups_group-deps_lock20_1.7.xml.bin @@ -51,6 +51,13 @@ + + + Your Name + you@example.com + + + Your Name <you@example.com> group-deps 0.1.0 dependencies organized in groups diff --git a/tests/_data/snapshots/poetry/only-groups_group-deps_lock21_1.2.json.bin b/tests/_data/snapshots/poetry/only-groups_group-deps_lock21_1.2.json.bin index 9c9b8e589..b841cc49e 100644 --- a/tests/_data/snapshots/poetry/only-groups_group-deps_lock21_1.2.json.bin +++ b/tests/_data/snapshots/poetry/only-groups_group-deps_lock21_1.2.json.bin @@ -136,6 +136,7 @@ ], "metadata": { "component": { + "author": "Your Name ", "bom-ref": "group-deps", "description": "dependencies organized in groups", "name": "group-deps", diff --git a/tests/_data/snapshots/poetry/only-groups_group-deps_lock21_1.2.xml.bin b/tests/_data/snapshots/poetry/only-groups_group-deps_lock21_1.2.xml.bin index 3ea6e3e05..9d4a557e0 100644 --- a/tests/_data/snapshots/poetry/only-groups_group-deps_lock21_1.2.xml.bin +++ b/tests/_data/snapshots/poetry/only-groups_group-deps_lock21_1.2.xml.bin @@ -14,6 +14,7 @@ + Your Name <you@example.com> group-deps 0.1.0 dependencies organized in groups diff --git a/tests/_data/snapshots/poetry/only-groups_group-deps_lock21_1.3.json.bin b/tests/_data/snapshots/poetry/only-groups_group-deps_lock21_1.3.json.bin index 2b3810ad4..f4a48af58 100644 --- a/tests/_data/snapshots/poetry/only-groups_group-deps_lock21_1.3.json.bin +++ b/tests/_data/snapshots/poetry/only-groups_group-deps_lock21_1.3.json.bin @@ -202,6 +202,7 @@ ], "metadata": { "component": { + "author": "Your Name ", "bom-ref": "group-deps", "description": "dependencies organized in groups", "name": "group-deps", diff --git a/tests/_data/snapshots/poetry/only-groups_group-deps_lock21_1.3.xml.bin b/tests/_data/snapshots/poetry/only-groups_group-deps_lock21_1.3.xml.bin index 0f7060e1a..3ec7c9f52 100644 --- a/tests/_data/snapshots/poetry/only-groups_group-deps_lock21_1.3.xml.bin +++ b/tests/_data/snapshots/poetry/only-groups_group-deps_lock21_1.3.xml.bin @@ -14,6 +14,7 @@ + Your Name <you@example.com> group-deps 0.1.0 dependencies organized in groups diff --git a/tests/_data/snapshots/poetry/only-groups_group-deps_lock21_1.4.json.bin b/tests/_data/snapshots/poetry/only-groups_group-deps_lock21_1.4.json.bin index d8f2ea1a4..ca7bdbcfc 100644 --- a/tests/_data/snapshots/poetry/only-groups_group-deps_lock21_1.4.json.bin +++ b/tests/_data/snapshots/poetry/only-groups_group-deps_lock21_1.4.json.bin @@ -202,6 +202,7 @@ ], "metadata": { "component": { + "author": "Your Name ", "bom-ref": "group-deps", "description": "dependencies organized in groups", "name": "group-deps", diff --git a/tests/_data/snapshots/poetry/only-groups_group-deps_lock21_1.4.xml.bin b/tests/_data/snapshots/poetry/only-groups_group-deps_lock21_1.4.xml.bin index 3923f072f..d58ce00c9 100644 --- a/tests/_data/snapshots/poetry/only-groups_group-deps_lock21_1.4.xml.bin +++ b/tests/_data/snapshots/poetry/only-groups_group-deps_lock21_1.4.xml.bin @@ -41,6 +41,7 @@ + Your Name <you@example.com> group-deps 0.1.0 dependencies organized in groups diff --git a/tests/_data/snapshots/poetry/only-groups_group-deps_lock21_1.5.json.bin b/tests/_data/snapshots/poetry/only-groups_group-deps_lock21_1.5.json.bin index 72ffe81a5..b78bfb08d 100644 --- a/tests/_data/snapshots/poetry/only-groups_group-deps_lock21_1.5.json.bin +++ b/tests/_data/snapshots/poetry/only-groups_group-deps_lock21_1.5.json.bin @@ -202,6 +202,7 @@ ], "metadata": { "component": { + "author": "Your Name ", "bom-ref": "group-deps", "description": "dependencies organized in groups", "name": "group-deps", diff --git a/tests/_data/snapshots/poetry/only-groups_group-deps_lock21_1.5.xml.bin b/tests/_data/snapshots/poetry/only-groups_group-deps_lock21_1.5.xml.bin index a8d743309..974d2d660 100644 --- a/tests/_data/snapshots/poetry/only-groups_group-deps_lock21_1.5.xml.bin +++ b/tests/_data/snapshots/poetry/only-groups_group-deps_lock21_1.5.xml.bin @@ -51,6 +51,7 @@ + Your Name <you@example.com> group-deps 0.1.0 dependencies organized in groups diff --git a/tests/_data/snapshots/poetry/only-groups_group-deps_lock21_1.6.json.bin b/tests/_data/snapshots/poetry/only-groups_group-deps_lock21_1.6.json.bin index 4f7fdf4df..67d42a355 100644 --- a/tests/_data/snapshots/poetry/only-groups_group-deps_lock21_1.6.json.bin +++ b/tests/_data/snapshots/poetry/only-groups_group-deps_lock21_1.6.json.bin @@ -202,6 +202,13 @@ ], "metadata": { "component": { + "author": "Your Name ", + "authors": [ + { + "email": "you@example.com", + "name": "Your Name" + } + ], "bom-ref": "group-deps", "description": "dependencies organized in groups", "name": "group-deps", diff --git a/tests/_data/snapshots/poetry/only-groups_group-deps_lock21_1.6.xml.bin b/tests/_data/snapshots/poetry/only-groups_group-deps_lock21_1.6.xml.bin index 1a104d36b..5658caa93 100644 --- a/tests/_data/snapshots/poetry/only-groups_group-deps_lock21_1.6.xml.bin +++ b/tests/_data/snapshots/poetry/only-groups_group-deps_lock21_1.6.xml.bin @@ -51,6 +51,13 @@ + + + Your Name + you@example.com + + + Your Name <you@example.com> group-deps 0.1.0 dependencies organized in groups diff --git a/tests/_data/snapshots/poetry/only-groups_group-deps_lock21_1.7.json.bin b/tests/_data/snapshots/poetry/only-groups_group-deps_lock21_1.7.json.bin index 87ecc07b6..20429d2c2 100644 --- a/tests/_data/snapshots/poetry/only-groups_group-deps_lock21_1.7.json.bin +++ b/tests/_data/snapshots/poetry/only-groups_group-deps_lock21_1.7.json.bin @@ -202,6 +202,13 @@ ], "metadata": { "component": { + "author": "Your Name ", + "authors": [ + { + "email": "you@example.com", + "name": "Your Name" + } + ], "bom-ref": "group-deps", "description": "dependencies organized in groups", "name": "group-deps", diff --git a/tests/_data/snapshots/poetry/only-groups_group-deps_lock21_1.7.xml.bin b/tests/_data/snapshots/poetry/only-groups_group-deps_lock21_1.7.xml.bin index a3e460069..17cfc9d92 100644 --- a/tests/_data/snapshots/poetry/only-groups_group-deps_lock21_1.7.xml.bin +++ b/tests/_data/snapshots/poetry/only-groups_group-deps_lock21_1.7.xml.bin @@ -51,6 +51,13 @@ + + + Your Name + you@example.com + + + Your Name <you@example.com> group-deps 0.1.0 dependencies organized in groups diff --git a/tests/_data/snapshots/poetry/plain_group-deps_lock11_1.2.json.bin b/tests/_data/snapshots/poetry/plain_group-deps_lock11_1.2.json.bin index 97a2754cc..e9c5acba1 100644 --- a/tests/_data/snapshots/poetry/plain_group-deps_lock11_1.2.json.bin +++ b/tests/_data/snapshots/poetry/plain_group-deps_lock11_1.2.json.bin @@ -184,6 +184,7 @@ ], "metadata": { "component": { + "author": "Your Name ", "bom-ref": "group-deps", "description": "dependencies organized in groups", "name": "group-deps", diff --git a/tests/_data/snapshots/poetry/plain_group-deps_lock11_1.2.xml.bin b/tests/_data/snapshots/poetry/plain_group-deps_lock11_1.2.xml.bin index 6373011d7..6c9c166a1 100644 --- a/tests/_data/snapshots/poetry/plain_group-deps_lock11_1.2.xml.bin +++ b/tests/_data/snapshots/poetry/plain_group-deps_lock11_1.2.xml.bin @@ -14,6 +14,7 @@ + Your Name <you@example.com> group-deps 0.1.0 dependencies organized in groups diff --git a/tests/_data/snapshots/poetry/plain_group-deps_lock11_1.3.json.bin b/tests/_data/snapshots/poetry/plain_group-deps_lock11_1.3.json.bin index 9bd91cd5a..b9fc3be9f 100644 --- a/tests/_data/snapshots/poetry/plain_group-deps_lock11_1.3.json.bin +++ b/tests/_data/snapshots/poetry/plain_group-deps_lock11_1.3.json.bin @@ -314,6 +314,7 @@ ], "metadata": { "component": { + "author": "Your Name ", "bom-ref": "group-deps", "description": "dependencies organized in groups", "name": "group-deps", diff --git a/tests/_data/snapshots/poetry/plain_group-deps_lock11_1.3.xml.bin b/tests/_data/snapshots/poetry/plain_group-deps_lock11_1.3.xml.bin index a08ba1397..ab77ddd1b 100644 --- a/tests/_data/snapshots/poetry/plain_group-deps_lock11_1.3.xml.bin +++ b/tests/_data/snapshots/poetry/plain_group-deps_lock11_1.3.xml.bin @@ -14,6 +14,7 @@ + Your Name <you@example.com> group-deps 0.1.0 dependencies organized in groups diff --git a/tests/_data/snapshots/poetry/plain_group-deps_lock11_1.4.json.bin b/tests/_data/snapshots/poetry/plain_group-deps_lock11_1.4.json.bin index 630bd68fe..c60e9a8ff 100644 --- a/tests/_data/snapshots/poetry/plain_group-deps_lock11_1.4.json.bin +++ b/tests/_data/snapshots/poetry/plain_group-deps_lock11_1.4.json.bin @@ -314,6 +314,7 @@ ], "metadata": { "component": { + "author": "Your Name ", "bom-ref": "group-deps", "description": "dependencies organized in groups", "name": "group-deps", diff --git a/tests/_data/snapshots/poetry/plain_group-deps_lock11_1.4.xml.bin b/tests/_data/snapshots/poetry/plain_group-deps_lock11_1.4.xml.bin index b510e44f3..883dbaadc 100644 --- a/tests/_data/snapshots/poetry/plain_group-deps_lock11_1.4.xml.bin +++ b/tests/_data/snapshots/poetry/plain_group-deps_lock11_1.4.xml.bin @@ -41,6 +41,7 @@ + Your Name <you@example.com> group-deps 0.1.0 dependencies organized in groups diff --git a/tests/_data/snapshots/poetry/plain_group-deps_lock11_1.5.json.bin b/tests/_data/snapshots/poetry/plain_group-deps_lock11_1.5.json.bin index 19a9d06d9..6d67eba55 100644 --- a/tests/_data/snapshots/poetry/plain_group-deps_lock11_1.5.json.bin +++ b/tests/_data/snapshots/poetry/plain_group-deps_lock11_1.5.json.bin @@ -314,6 +314,7 @@ ], "metadata": { "component": { + "author": "Your Name ", "bom-ref": "group-deps", "description": "dependencies organized in groups", "name": "group-deps", diff --git a/tests/_data/snapshots/poetry/plain_group-deps_lock11_1.5.xml.bin b/tests/_data/snapshots/poetry/plain_group-deps_lock11_1.5.xml.bin index b667a314f..402aa93c6 100644 --- a/tests/_data/snapshots/poetry/plain_group-deps_lock11_1.5.xml.bin +++ b/tests/_data/snapshots/poetry/plain_group-deps_lock11_1.5.xml.bin @@ -51,6 +51,7 @@ + Your Name <you@example.com> group-deps 0.1.0 dependencies organized in groups diff --git a/tests/_data/snapshots/poetry/plain_group-deps_lock11_1.6.json.bin b/tests/_data/snapshots/poetry/plain_group-deps_lock11_1.6.json.bin index ea6bc5366..48e62dbb7 100644 --- a/tests/_data/snapshots/poetry/plain_group-deps_lock11_1.6.json.bin +++ b/tests/_data/snapshots/poetry/plain_group-deps_lock11_1.6.json.bin @@ -314,6 +314,13 @@ ], "metadata": { "component": { + "author": "Your Name ", + "authors": [ + { + "email": "you@example.com", + "name": "Your Name" + } + ], "bom-ref": "group-deps", "description": "dependencies organized in groups", "name": "group-deps", diff --git a/tests/_data/snapshots/poetry/plain_group-deps_lock11_1.6.xml.bin b/tests/_data/snapshots/poetry/plain_group-deps_lock11_1.6.xml.bin index a6489f57e..73ba4c8c1 100644 --- a/tests/_data/snapshots/poetry/plain_group-deps_lock11_1.6.xml.bin +++ b/tests/_data/snapshots/poetry/plain_group-deps_lock11_1.6.xml.bin @@ -51,6 +51,13 @@ + + + Your Name + you@example.com + + + Your Name <you@example.com> group-deps 0.1.0 dependencies organized in groups diff --git a/tests/_data/snapshots/poetry/plain_group-deps_lock11_1.7.json.bin b/tests/_data/snapshots/poetry/plain_group-deps_lock11_1.7.json.bin index e49ce6f16..a6fc4270d 100644 --- a/tests/_data/snapshots/poetry/plain_group-deps_lock11_1.7.json.bin +++ b/tests/_data/snapshots/poetry/plain_group-deps_lock11_1.7.json.bin @@ -314,6 +314,13 @@ ], "metadata": { "component": { + "author": "Your Name ", + "authors": [ + { + "email": "you@example.com", + "name": "Your Name" + } + ], "bom-ref": "group-deps", "description": "dependencies organized in groups", "name": "group-deps", diff --git a/tests/_data/snapshots/poetry/plain_group-deps_lock11_1.7.xml.bin b/tests/_data/snapshots/poetry/plain_group-deps_lock11_1.7.xml.bin index f60276c1d..cb84f5be3 100644 --- a/tests/_data/snapshots/poetry/plain_group-deps_lock11_1.7.xml.bin +++ b/tests/_data/snapshots/poetry/plain_group-deps_lock11_1.7.xml.bin @@ -51,6 +51,13 @@ + + + Your Name + you@example.com + + + Your Name <you@example.com> group-deps 0.1.0 dependencies organized in groups diff --git a/tests/_data/snapshots/poetry/plain_group-deps_lock20_1.2.json.bin b/tests/_data/snapshots/poetry/plain_group-deps_lock20_1.2.json.bin index 97a2754cc..e9c5acba1 100644 --- a/tests/_data/snapshots/poetry/plain_group-deps_lock20_1.2.json.bin +++ b/tests/_data/snapshots/poetry/plain_group-deps_lock20_1.2.json.bin @@ -184,6 +184,7 @@ ], "metadata": { "component": { + "author": "Your Name ", "bom-ref": "group-deps", "description": "dependencies organized in groups", "name": "group-deps", diff --git a/tests/_data/snapshots/poetry/plain_group-deps_lock20_1.2.xml.bin b/tests/_data/snapshots/poetry/plain_group-deps_lock20_1.2.xml.bin index 6373011d7..6c9c166a1 100644 --- a/tests/_data/snapshots/poetry/plain_group-deps_lock20_1.2.xml.bin +++ b/tests/_data/snapshots/poetry/plain_group-deps_lock20_1.2.xml.bin @@ -14,6 +14,7 @@ + Your Name <you@example.com> group-deps 0.1.0 dependencies organized in groups diff --git a/tests/_data/snapshots/poetry/plain_group-deps_lock20_1.3.json.bin b/tests/_data/snapshots/poetry/plain_group-deps_lock20_1.3.json.bin index af7357beb..046def945 100644 --- a/tests/_data/snapshots/poetry/plain_group-deps_lock20_1.3.json.bin +++ b/tests/_data/snapshots/poetry/plain_group-deps_lock20_1.3.json.bin @@ -286,6 +286,7 @@ ], "metadata": { "component": { + "author": "Your Name ", "bom-ref": "group-deps", "description": "dependencies organized in groups", "name": "group-deps", diff --git a/tests/_data/snapshots/poetry/plain_group-deps_lock20_1.3.xml.bin b/tests/_data/snapshots/poetry/plain_group-deps_lock20_1.3.xml.bin index f4d82adc9..405aa84db 100644 --- a/tests/_data/snapshots/poetry/plain_group-deps_lock20_1.3.xml.bin +++ b/tests/_data/snapshots/poetry/plain_group-deps_lock20_1.3.xml.bin @@ -14,6 +14,7 @@ + Your Name <you@example.com> group-deps 0.1.0 dependencies organized in groups diff --git a/tests/_data/snapshots/poetry/plain_group-deps_lock20_1.4.json.bin b/tests/_data/snapshots/poetry/plain_group-deps_lock20_1.4.json.bin index 1933d8c67..abb47bc43 100644 --- a/tests/_data/snapshots/poetry/plain_group-deps_lock20_1.4.json.bin +++ b/tests/_data/snapshots/poetry/plain_group-deps_lock20_1.4.json.bin @@ -286,6 +286,7 @@ ], "metadata": { "component": { + "author": "Your Name ", "bom-ref": "group-deps", "description": "dependencies organized in groups", "name": "group-deps", diff --git a/tests/_data/snapshots/poetry/plain_group-deps_lock20_1.4.xml.bin b/tests/_data/snapshots/poetry/plain_group-deps_lock20_1.4.xml.bin index 055a6b8c3..32abf6065 100644 --- a/tests/_data/snapshots/poetry/plain_group-deps_lock20_1.4.xml.bin +++ b/tests/_data/snapshots/poetry/plain_group-deps_lock20_1.4.xml.bin @@ -41,6 +41,7 @@ + Your Name <you@example.com> group-deps 0.1.0 dependencies organized in groups diff --git a/tests/_data/snapshots/poetry/plain_group-deps_lock20_1.5.json.bin b/tests/_data/snapshots/poetry/plain_group-deps_lock20_1.5.json.bin index 77dbe89bb..9e312844b 100644 --- a/tests/_data/snapshots/poetry/plain_group-deps_lock20_1.5.json.bin +++ b/tests/_data/snapshots/poetry/plain_group-deps_lock20_1.5.json.bin @@ -286,6 +286,7 @@ ], "metadata": { "component": { + "author": "Your Name ", "bom-ref": "group-deps", "description": "dependencies organized in groups", "name": "group-deps", diff --git a/tests/_data/snapshots/poetry/plain_group-deps_lock20_1.5.xml.bin b/tests/_data/snapshots/poetry/plain_group-deps_lock20_1.5.xml.bin index 373624709..b602cfff0 100644 --- a/tests/_data/snapshots/poetry/plain_group-deps_lock20_1.5.xml.bin +++ b/tests/_data/snapshots/poetry/plain_group-deps_lock20_1.5.xml.bin @@ -51,6 +51,7 @@ + Your Name <you@example.com> group-deps 0.1.0 dependencies organized in groups diff --git a/tests/_data/snapshots/poetry/plain_group-deps_lock20_1.6.json.bin b/tests/_data/snapshots/poetry/plain_group-deps_lock20_1.6.json.bin index a4bf9fdbe..7d8d53607 100644 --- a/tests/_data/snapshots/poetry/plain_group-deps_lock20_1.6.json.bin +++ b/tests/_data/snapshots/poetry/plain_group-deps_lock20_1.6.json.bin @@ -286,6 +286,13 @@ ], "metadata": { "component": { + "author": "Your Name ", + "authors": [ + { + "email": "you@example.com", + "name": "Your Name" + } + ], "bom-ref": "group-deps", "description": "dependencies organized in groups", "name": "group-deps", diff --git a/tests/_data/snapshots/poetry/plain_group-deps_lock20_1.6.xml.bin b/tests/_data/snapshots/poetry/plain_group-deps_lock20_1.6.xml.bin index 523c70ff4..a6ba509d5 100644 --- a/tests/_data/snapshots/poetry/plain_group-deps_lock20_1.6.xml.bin +++ b/tests/_data/snapshots/poetry/plain_group-deps_lock20_1.6.xml.bin @@ -51,6 +51,13 @@ + + + Your Name + you@example.com + + + Your Name <you@example.com> group-deps 0.1.0 dependencies organized in groups diff --git a/tests/_data/snapshots/poetry/plain_group-deps_lock20_1.7.json.bin b/tests/_data/snapshots/poetry/plain_group-deps_lock20_1.7.json.bin index c95ee3043..c32ca89c6 100644 --- a/tests/_data/snapshots/poetry/plain_group-deps_lock20_1.7.json.bin +++ b/tests/_data/snapshots/poetry/plain_group-deps_lock20_1.7.json.bin @@ -286,6 +286,13 @@ ], "metadata": { "component": { + "author": "Your Name ", + "authors": [ + { + "email": "you@example.com", + "name": "Your Name" + } + ], "bom-ref": "group-deps", "description": "dependencies organized in groups", "name": "group-deps", diff --git a/tests/_data/snapshots/poetry/plain_group-deps_lock20_1.7.xml.bin b/tests/_data/snapshots/poetry/plain_group-deps_lock20_1.7.xml.bin index eeb5c7adf..968e2036f 100644 --- a/tests/_data/snapshots/poetry/plain_group-deps_lock20_1.7.xml.bin +++ b/tests/_data/snapshots/poetry/plain_group-deps_lock20_1.7.xml.bin @@ -51,6 +51,13 @@ + + + Your Name + you@example.com + + + Your Name <you@example.com> group-deps 0.1.0 dependencies organized in groups diff --git a/tests/_data/snapshots/poetry/plain_group-deps_lock21_1.2.json.bin b/tests/_data/snapshots/poetry/plain_group-deps_lock21_1.2.json.bin index 522e9f375..d0b7695b2 100644 --- a/tests/_data/snapshots/poetry/plain_group-deps_lock21_1.2.json.bin +++ b/tests/_data/snapshots/poetry/plain_group-deps_lock21_1.2.json.bin @@ -184,6 +184,7 @@ ], "metadata": { "component": { + "author": "Your Name ", "bom-ref": "group-deps", "description": "dependencies organized in groups", "name": "group-deps", diff --git a/tests/_data/snapshots/poetry/plain_group-deps_lock21_1.2.xml.bin b/tests/_data/snapshots/poetry/plain_group-deps_lock21_1.2.xml.bin index f50b3fb01..5b80046d6 100644 --- a/tests/_data/snapshots/poetry/plain_group-deps_lock21_1.2.xml.bin +++ b/tests/_data/snapshots/poetry/plain_group-deps_lock21_1.2.xml.bin @@ -14,6 +14,7 @@ + Your Name <you@example.com> group-deps 0.1.0 dependencies organized in groups diff --git a/tests/_data/snapshots/poetry/plain_group-deps_lock21_1.3.json.bin b/tests/_data/snapshots/poetry/plain_group-deps_lock21_1.3.json.bin index 398d9401e..a0c72c76f 100644 --- a/tests/_data/snapshots/poetry/plain_group-deps_lock21_1.3.json.bin +++ b/tests/_data/snapshots/poetry/plain_group-deps_lock21_1.3.json.bin @@ -286,6 +286,7 @@ ], "metadata": { "component": { + "author": "Your Name ", "bom-ref": "group-deps", "description": "dependencies organized in groups", "name": "group-deps", diff --git a/tests/_data/snapshots/poetry/plain_group-deps_lock21_1.3.xml.bin b/tests/_data/snapshots/poetry/plain_group-deps_lock21_1.3.xml.bin index 01a87c20c..0e3de7fa2 100644 --- a/tests/_data/snapshots/poetry/plain_group-deps_lock21_1.3.xml.bin +++ b/tests/_data/snapshots/poetry/plain_group-deps_lock21_1.3.xml.bin @@ -14,6 +14,7 @@ + Your Name <you@example.com> group-deps 0.1.0 dependencies organized in groups diff --git a/tests/_data/snapshots/poetry/plain_group-deps_lock21_1.4.json.bin b/tests/_data/snapshots/poetry/plain_group-deps_lock21_1.4.json.bin index 2ea7fb537..6585da158 100644 --- a/tests/_data/snapshots/poetry/plain_group-deps_lock21_1.4.json.bin +++ b/tests/_data/snapshots/poetry/plain_group-deps_lock21_1.4.json.bin @@ -286,6 +286,7 @@ ], "metadata": { "component": { + "author": "Your Name ", "bom-ref": "group-deps", "description": "dependencies organized in groups", "name": "group-deps", diff --git a/tests/_data/snapshots/poetry/plain_group-deps_lock21_1.4.xml.bin b/tests/_data/snapshots/poetry/plain_group-deps_lock21_1.4.xml.bin index 109162d94..40ea97c38 100644 --- a/tests/_data/snapshots/poetry/plain_group-deps_lock21_1.4.xml.bin +++ b/tests/_data/snapshots/poetry/plain_group-deps_lock21_1.4.xml.bin @@ -41,6 +41,7 @@ + Your Name <you@example.com> group-deps 0.1.0 dependencies organized in groups diff --git a/tests/_data/snapshots/poetry/plain_group-deps_lock21_1.5.json.bin b/tests/_data/snapshots/poetry/plain_group-deps_lock21_1.5.json.bin index 3827480db..85df6973d 100644 --- a/tests/_data/snapshots/poetry/plain_group-deps_lock21_1.5.json.bin +++ b/tests/_data/snapshots/poetry/plain_group-deps_lock21_1.5.json.bin @@ -286,6 +286,7 @@ ], "metadata": { "component": { + "author": "Your Name ", "bom-ref": "group-deps", "description": "dependencies organized in groups", "name": "group-deps", diff --git a/tests/_data/snapshots/poetry/plain_group-deps_lock21_1.5.xml.bin b/tests/_data/snapshots/poetry/plain_group-deps_lock21_1.5.xml.bin index 0e34f17b6..3862b82ce 100644 --- a/tests/_data/snapshots/poetry/plain_group-deps_lock21_1.5.xml.bin +++ b/tests/_data/snapshots/poetry/plain_group-deps_lock21_1.5.xml.bin @@ -51,6 +51,7 @@ + Your Name <you@example.com> group-deps 0.1.0 dependencies organized in groups diff --git a/tests/_data/snapshots/poetry/plain_group-deps_lock21_1.6.json.bin b/tests/_data/snapshots/poetry/plain_group-deps_lock21_1.6.json.bin index 9af28292b..46345499a 100644 --- a/tests/_data/snapshots/poetry/plain_group-deps_lock21_1.6.json.bin +++ b/tests/_data/snapshots/poetry/plain_group-deps_lock21_1.6.json.bin @@ -286,6 +286,13 @@ ], "metadata": { "component": { + "author": "Your Name ", + "authors": [ + { + "email": "you@example.com", + "name": "Your Name" + } + ], "bom-ref": "group-deps", "description": "dependencies organized in groups", "name": "group-deps", diff --git a/tests/_data/snapshots/poetry/plain_group-deps_lock21_1.6.xml.bin b/tests/_data/snapshots/poetry/plain_group-deps_lock21_1.6.xml.bin index a90222691..0ce601580 100644 --- a/tests/_data/snapshots/poetry/plain_group-deps_lock21_1.6.xml.bin +++ b/tests/_data/snapshots/poetry/plain_group-deps_lock21_1.6.xml.bin @@ -51,6 +51,13 @@ + + + Your Name + you@example.com + + + Your Name <you@example.com> group-deps 0.1.0 dependencies organized in groups diff --git a/tests/_data/snapshots/poetry/plain_group-deps_lock21_1.7.json.bin b/tests/_data/snapshots/poetry/plain_group-deps_lock21_1.7.json.bin index 83a716fcb..a32a98335 100644 --- a/tests/_data/snapshots/poetry/plain_group-deps_lock21_1.7.json.bin +++ b/tests/_data/snapshots/poetry/plain_group-deps_lock21_1.7.json.bin @@ -286,6 +286,13 @@ ], "metadata": { "component": { + "author": "Your Name ", + "authors": [ + { + "email": "you@example.com", + "name": "Your Name" + } + ], "bom-ref": "group-deps", "description": "dependencies organized in groups", "name": "group-deps", diff --git a/tests/_data/snapshots/poetry/plain_group-deps_lock21_1.7.xml.bin b/tests/_data/snapshots/poetry/plain_group-deps_lock21_1.7.xml.bin index 8610fa1f2..164123b9c 100644 --- a/tests/_data/snapshots/poetry/plain_group-deps_lock21_1.7.xml.bin +++ b/tests/_data/snapshots/poetry/plain_group-deps_lock21_1.7.xml.bin @@ -51,6 +51,13 @@ + + + Your Name + you@example.com + + + Your Name <you@example.com> group-deps 0.1.0 dependencies organized in groups diff --git a/tests/_data/snapshots/poetry/plain_local_lock10_1.2.json.bin b/tests/_data/snapshots/poetry/plain_local_lock10_1.2.json.bin index 0c36a746e..24b47925a 100644 --- a/tests/_data/snapshots/poetry/plain_local_lock10_1.2.json.bin +++ b/tests/_data/snapshots/poetry/plain_local_lock10_1.2.json.bin @@ -46,6 +46,7 @@ ], "metadata": { "component": { + "author": "Your Name ", "bom-ref": "local", "description": "packages from local paths", "name": "local", diff --git a/tests/_data/snapshots/poetry/plain_local_lock10_1.2.xml.bin b/tests/_data/snapshots/poetry/plain_local_lock10_1.2.xml.bin index aa7532f0b..c4e4bd1d9 100644 --- a/tests/_data/snapshots/poetry/plain_local_lock10_1.2.xml.bin +++ b/tests/_data/snapshots/poetry/plain_local_lock10_1.2.xml.bin @@ -14,6 +14,7 @@ + Your Name <you@example.com> local 0.1.0 packages from local paths diff --git a/tests/_data/snapshots/poetry/plain_local_lock10_1.3.json.bin b/tests/_data/snapshots/poetry/plain_local_lock10_1.3.json.bin index 6b2ca4aad..f2ac6f1cd 100644 --- a/tests/_data/snapshots/poetry/plain_local_lock10_1.3.json.bin +++ b/tests/_data/snapshots/poetry/plain_local_lock10_1.3.json.bin @@ -70,6 +70,7 @@ ], "metadata": { "component": { + "author": "Your Name ", "bom-ref": "local", "description": "packages from local paths", "name": "local", diff --git a/tests/_data/snapshots/poetry/plain_local_lock10_1.3.xml.bin b/tests/_data/snapshots/poetry/plain_local_lock10_1.3.xml.bin index 31d890fe5..ae6b490ed 100644 --- a/tests/_data/snapshots/poetry/plain_local_lock10_1.3.xml.bin +++ b/tests/_data/snapshots/poetry/plain_local_lock10_1.3.xml.bin @@ -14,6 +14,7 @@ + Your Name <you@example.com> local 0.1.0 packages from local paths diff --git a/tests/_data/snapshots/poetry/plain_local_lock10_1.4.json.bin b/tests/_data/snapshots/poetry/plain_local_lock10_1.4.json.bin index a23a22f86..fe6bab72c 100644 --- a/tests/_data/snapshots/poetry/plain_local_lock10_1.4.json.bin +++ b/tests/_data/snapshots/poetry/plain_local_lock10_1.4.json.bin @@ -70,6 +70,7 @@ ], "metadata": { "component": { + "author": "Your Name ", "bom-ref": "local", "description": "packages from local paths", "name": "local", diff --git a/tests/_data/snapshots/poetry/plain_local_lock10_1.4.xml.bin b/tests/_data/snapshots/poetry/plain_local_lock10_1.4.xml.bin index 25e2e4ecf..0c4b5ebd3 100644 --- a/tests/_data/snapshots/poetry/plain_local_lock10_1.4.xml.bin +++ b/tests/_data/snapshots/poetry/plain_local_lock10_1.4.xml.bin @@ -41,6 +41,7 @@ + Your Name <you@example.com> local 0.1.0 packages from local paths diff --git a/tests/_data/snapshots/poetry/plain_local_lock10_1.5.json.bin b/tests/_data/snapshots/poetry/plain_local_lock10_1.5.json.bin index b6a05a492..41dd90da8 100644 --- a/tests/_data/snapshots/poetry/plain_local_lock10_1.5.json.bin +++ b/tests/_data/snapshots/poetry/plain_local_lock10_1.5.json.bin @@ -70,6 +70,7 @@ ], "metadata": { "component": { + "author": "Your Name ", "bom-ref": "local", "description": "packages from local paths", "name": "local", diff --git a/tests/_data/snapshots/poetry/plain_local_lock10_1.5.xml.bin b/tests/_data/snapshots/poetry/plain_local_lock10_1.5.xml.bin index 1c5946c9f..88d5698e3 100644 --- a/tests/_data/snapshots/poetry/plain_local_lock10_1.5.xml.bin +++ b/tests/_data/snapshots/poetry/plain_local_lock10_1.5.xml.bin @@ -51,6 +51,7 @@ + Your Name <you@example.com> local 0.1.0 packages from local paths diff --git a/tests/_data/snapshots/poetry/plain_local_lock10_1.6.json.bin b/tests/_data/snapshots/poetry/plain_local_lock10_1.6.json.bin index 39be65d03..b0c68452e 100644 --- a/tests/_data/snapshots/poetry/plain_local_lock10_1.6.json.bin +++ b/tests/_data/snapshots/poetry/plain_local_lock10_1.6.json.bin @@ -70,6 +70,13 @@ ], "metadata": { "component": { + "author": "Your Name ", + "authors": [ + { + "email": "you@example.com", + "name": "Your Name" + } + ], "bom-ref": "local", "description": "packages from local paths", "name": "local", diff --git a/tests/_data/snapshots/poetry/plain_local_lock10_1.6.xml.bin b/tests/_data/snapshots/poetry/plain_local_lock10_1.6.xml.bin index ef4b4bd50..3d628b806 100644 --- a/tests/_data/snapshots/poetry/plain_local_lock10_1.6.xml.bin +++ b/tests/_data/snapshots/poetry/plain_local_lock10_1.6.xml.bin @@ -51,6 +51,13 @@ + + + Your Name + you@example.com + + + Your Name <you@example.com> local 0.1.0 packages from local paths diff --git a/tests/_data/snapshots/poetry/plain_local_lock10_1.7.json.bin b/tests/_data/snapshots/poetry/plain_local_lock10_1.7.json.bin index c8ebe8cea..47f81e6df 100644 --- a/tests/_data/snapshots/poetry/plain_local_lock10_1.7.json.bin +++ b/tests/_data/snapshots/poetry/plain_local_lock10_1.7.json.bin @@ -70,6 +70,13 @@ ], "metadata": { "component": { + "author": "Your Name ", + "authors": [ + { + "email": "you@example.com", + "name": "Your Name" + } + ], "bom-ref": "local", "description": "packages from local paths", "name": "local", diff --git a/tests/_data/snapshots/poetry/plain_local_lock10_1.7.xml.bin b/tests/_data/snapshots/poetry/plain_local_lock10_1.7.xml.bin index 1f8f400e7..2092c1b41 100644 --- a/tests/_data/snapshots/poetry/plain_local_lock10_1.7.xml.bin +++ b/tests/_data/snapshots/poetry/plain_local_lock10_1.7.xml.bin @@ -51,6 +51,13 @@ + + + Your Name + you@example.com + + + Your Name <you@example.com> local 0.1.0 packages from local paths diff --git a/tests/_data/snapshots/poetry/plain_local_lock11_1.2.json.bin b/tests/_data/snapshots/poetry/plain_local_lock11_1.2.json.bin index 4c53765a9..7627afed9 100644 --- a/tests/_data/snapshots/poetry/plain_local_lock11_1.2.json.bin +++ b/tests/_data/snapshots/poetry/plain_local_lock11_1.2.json.bin @@ -64,6 +64,7 @@ ], "metadata": { "component": { + "author": "Your Name ", "bom-ref": "local", "description": "packages from local paths", "name": "local", diff --git a/tests/_data/snapshots/poetry/plain_local_lock11_1.2.xml.bin b/tests/_data/snapshots/poetry/plain_local_lock11_1.2.xml.bin index 623da37bc..9b5f09952 100644 --- a/tests/_data/snapshots/poetry/plain_local_lock11_1.2.xml.bin +++ b/tests/_data/snapshots/poetry/plain_local_lock11_1.2.xml.bin @@ -14,6 +14,7 @@ + Your Name <you@example.com> local 0.1.0 packages from local paths diff --git a/tests/_data/snapshots/poetry/plain_local_lock11_1.3.json.bin b/tests/_data/snapshots/poetry/plain_local_lock11_1.3.json.bin index 7563e5e64..0f21fa9a2 100644 --- a/tests/_data/snapshots/poetry/plain_local_lock11_1.3.json.bin +++ b/tests/_data/snapshots/poetry/plain_local_lock11_1.3.json.bin @@ -94,6 +94,7 @@ ], "metadata": { "component": { + "author": "Your Name ", "bom-ref": "local", "description": "packages from local paths", "name": "local", diff --git a/tests/_data/snapshots/poetry/plain_local_lock11_1.3.xml.bin b/tests/_data/snapshots/poetry/plain_local_lock11_1.3.xml.bin index 0448bfd7a..dcacdccd6 100644 --- a/tests/_data/snapshots/poetry/plain_local_lock11_1.3.xml.bin +++ b/tests/_data/snapshots/poetry/plain_local_lock11_1.3.xml.bin @@ -14,6 +14,7 @@ + Your Name <you@example.com> local 0.1.0 packages from local paths diff --git a/tests/_data/snapshots/poetry/plain_local_lock11_1.4.json.bin b/tests/_data/snapshots/poetry/plain_local_lock11_1.4.json.bin index b21c4ff87..c229d89f4 100644 --- a/tests/_data/snapshots/poetry/plain_local_lock11_1.4.json.bin +++ b/tests/_data/snapshots/poetry/plain_local_lock11_1.4.json.bin @@ -94,6 +94,7 @@ ], "metadata": { "component": { + "author": "Your Name ", "bom-ref": "local", "description": "packages from local paths", "name": "local", diff --git a/tests/_data/snapshots/poetry/plain_local_lock11_1.4.xml.bin b/tests/_data/snapshots/poetry/plain_local_lock11_1.4.xml.bin index 277fdbf22..7c6d3e872 100644 --- a/tests/_data/snapshots/poetry/plain_local_lock11_1.4.xml.bin +++ b/tests/_data/snapshots/poetry/plain_local_lock11_1.4.xml.bin @@ -41,6 +41,7 @@ + Your Name <you@example.com> local 0.1.0 packages from local paths diff --git a/tests/_data/snapshots/poetry/plain_local_lock11_1.5.json.bin b/tests/_data/snapshots/poetry/plain_local_lock11_1.5.json.bin index 1cf0f94fd..4b987cb39 100644 --- a/tests/_data/snapshots/poetry/plain_local_lock11_1.5.json.bin +++ b/tests/_data/snapshots/poetry/plain_local_lock11_1.5.json.bin @@ -94,6 +94,7 @@ ], "metadata": { "component": { + "author": "Your Name ", "bom-ref": "local", "description": "packages from local paths", "name": "local", diff --git a/tests/_data/snapshots/poetry/plain_local_lock11_1.5.xml.bin b/tests/_data/snapshots/poetry/plain_local_lock11_1.5.xml.bin index e9fc37658..56ffa778d 100644 --- a/tests/_data/snapshots/poetry/plain_local_lock11_1.5.xml.bin +++ b/tests/_data/snapshots/poetry/plain_local_lock11_1.5.xml.bin @@ -51,6 +51,7 @@ + Your Name <you@example.com> local 0.1.0 packages from local paths diff --git a/tests/_data/snapshots/poetry/plain_local_lock11_1.6.json.bin b/tests/_data/snapshots/poetry/plain_local_lock11_1.6.json.bin index 1bf97254a..fc0545fc9 100644 --- a/tests/_data/snapshots/poetry/plain_local_lock11_1.6.json.bin +++ b/tests/_data/snapshots/poetry/plain_local_lock11_1.6.json.bin @@ -94,6 +94,13 @@ ], "metadata": { "component": { + "author": "Your Name ", + "authors": [ + { + "email": "you@example.com", + "name": "Your Name" + } + ], "bom-ref": "local", "description": "packages from local paths", "name": "local", diff --git a/tests/_data/snapshots/poetry/plain_local_lock11_1.6.xml.bin b/tests/_data/snapshots/poetry/plain_local_lock11_1.6.xml.bin index 43a84fd7a..8913da9f6 100644 --- a/tests/_data/snapshots/poetry/plain_local_lock11_1.6.xml.bin +++ b/tests/_data/snapshots/poetry/plain_local_lock11_1.6.xml.bin @@ -51,6 +51,13 @@ + + + Your Name + you@example.com + + + Your Name <you@example.com> local 0.1.0 packages from local paths diff --git a/tests/_data/snapshots/poetry/plain_local_lock11_1.7.json.bin b/tests/_data/snapshots/poetry/plain_local_lock11_1.7.json.bin index c55c40f10..c7e4e7376 100644 --- a/tests/_data/snapshots/poetry/plain_local_lock11_1.7.json.bin +++ b/tests/_data/snapshots/poetry/plain_local_lock11_1.7.json.bin @@ -94,6 +94,13 @@ ], "metadata": { "component": { + "author": "Your Name ", + "authors": [ + { + "email": "you@example.com", + "name": "Your Name" + } + ], "bom-ref": "local", "description": "packages from local paths", "name": "local", diff --git a/tests/_data/snapshots/poetry/plain_local_lock11_1.7.xml.bin b/tests/_data/snapshots/poetry/plain_local_lock11_1.7.xml.bin index 668afc69c..b047f59b8 100644 --- a/tests/_data/snapshots/poetry/plain_local_lock11_1.7.xml.bin +++ b/tests/_data/snapshots/poetry/plain_local_lock11_1.7.xml.bin @@ -51,6 +51,13 @@ + + + Your Name + you@example.com + + + Your Name <you@example.com> local 0.1.0 packages from local paths diff --git a/tests/_data/snapshots/poetry/plain_local_lock20_1.2.json.bin b/tests/_data/snapshots/poetry/plain_local_lock20_1.2.json.bin index 4c53765a9..7627afed9 100644 --- a/tests/_data/snapshots/poetry/plain_local_lock20_1.2.json.bin +++ b/tests/_data/snapshots/poetry/plain_local_lock20_1.2.json.bin @@ -64,6 +64,7 @@ ], "metadata": { "component": { + "author": "Your Name ", "bom-ref": "local", "description": "packages from local paths", "name": "local", diff --git a/tests/_data/snapshots/poetry/plain_local_lock20_1.2.xml.bin b/tests/_data/snapshots/poetry/plain_local_lock20_1.2.xml.bin index 623da37bc..9b5f09952 100644 --- a/tests/_data/snapshots/poetry/plain_local_lock20_1.2.xml.bin +++ b/tests/_data/snapshots/poetry/plain_local_lock20_1.2.xml.bin @@ -14,6 +14,7 @@ + Your Name <you@example.com> local 0.1.0 packages from local paths diff --git a/tests/_data/snapshots/poetry/plain_local_lock20_1.3.json.bin b/tests/_data/snapshots/poetry/plain_local_lock20_1.3.json.bin index 7563e5e64..0f21fa9a2 100644 --- a/tests/_data/snapshots/poetry/plain_local_lock20_1.3.json.bin +++ b/tests/_data/snapshots/poetry/plain_local_lock20_1.3.json.bin @@ -94,6 +94,7 @@ ], "metadata": { "component": { + "author": "Your Name ", "bom-ref": "local", "description": "packages from local paths", "name": "local", diff --git a/tests/_data/snapshots/poetry/plain_local_lock20_1.3.xml.bin b/tests/_data/snapshots/poetry/plain_local_lock20_1.3.xml.bin index 0448bfd7a..dcacdccd6 100644 --- a/tests/_data/snapshots/poetry/plain_local_lock20_1.3.xml.bin +++ b/tests/_data/snapshots/poetry/plain_local_lock20_1.3.xml.bin @@ -14,6 +14,7 @@ + Your Name <you@example.com> local 0.1.0 packages from local paths diff --git a/tests/_data/snapshots/poetry/plain_local_lock20_1.4.json.bin b/tests/_data/snapshots/poetry/plain_local_lock20_1.4.json.bin index b21c4ff87..c229d89f4 100644 --- a/tests/_data/snapshots/poetry/plain_local_lock20_1.4.json.bin +++ b/tests/_data/snapshots/poetry/plain_local_lock20_1.4.json.bin @@ -94,6 +94,7 @@ ], "metadata": { "component": { + "author": "Your Name ", "bom-ref": "local", "description": "packages from local paths", "name": "local", diff --git a/tests/_data/snapshots/poetry/plain_local_lock20_1.4.xml.bin b/tests/_data/snapshots/poetry/plain_local_lock20_1.4.xml.bin index 277fdbf22..7c6d3e872 100644 --- a/tests/_data/snapshots/poetry/plain_local_lock20_1.4.xml.bin +++ b/tests/_data/snapshots/poetry/plain_local_lock20_1.4.xml.bin @@ -41,6 +41,7 @@ + Your Name <you@example.com> local 0.1.0 packages from local paths diff --git a/tests/_data/snapshots/poetry/plain_local_lock20_1.5.json.bin b/tests/_data/snapshots/poetry/plain_local_lock20_1.5.json.bin index 1cf0f94fd..4b987cb39 100644 --- a/tests/_data/snapshots/poetry/plain_local_lock20_1.5.json.bin +++ b/tests/_data/snapshots/poetry/plain_local_lock20_1.5.json.bin @@ -94,6 +94,7 @@ ], "metadata": { "component": { + "author": "Your Name ", "bom-ref": "local", "description": "packages from local paths", "name": "local", diff --git a/tests/_data/snapshots/poetry/plain_local_lock20_1.5.xml.bin b/tests/_data/snapshots/poetry/plain_local_lock20_1.5.xml.bin index e9fc37658..56ffa778d 100644 --- a/tests/_data/snapshots/poetry/plain_local_lock20_1.5.xml.bin +++ b/tests/_data/snapshots/poetry/plain_local_lock20_1.5.xml.bin @@ -51,6 +51,7 @@ + Your Name <you@example.com> local 0.1.0 packages from local paths diff --git a/tests/_data/snapshots/poetry/plain_local_lock20_1.6.json.bin b/tests/_data/snapshots/poetry/plain_local_lock20_1.6.json.bin index 1bf97254a..fc0545fc9 100644 --- a/tests/_data/snapshots/poetry/plain_local_lock20_1.6.json.bin +++ b/tests/_data/snapshots/poetry/plain_local_lock20_1.6.json.bin @@ -94,6 +94,13 @@ ], "metadata": { "component": { + "author": "Your Name ", + "authors": [ + { + "email": "you@example.com", + "name": "Your Name" + } + ], "bom-ref": "local", "description": "packages from local paths", "name": "local", diff --git a/tests/_data/snapshots/poetry/plain_local_lock20_1.6.xml.bin b/tests/_data/snapshots/poetry/plain_local_lock20_1.6.xml.bin index 43a84fd7a..8913da9f6 100644 --- a/tests/_data/snapshots/poetry/plain_local_lock20_1.6.xml.bin +++ b/tests/_data/snapshots/poetry/plain_local_lock20_1.6.xml.bin @@ -51,6 +51,13 @@ + + + Your Name + you@example.com + + + Your Name <you@example.com> local 0.1.0 packages from local paths diff --git a/tests/_data/snapshots/poetry/plain_local_lock20_1.7.json.bin b/tests/_data/snapshots/poetry/plain_local_lock20_1.7.json.bin index c55c40f10..c7e4e7376 100644 --- a/tests/_data/snapshots/poetry/plain_local_lock20_1.7.json.bin +++ b/tests/_data/snapshots/poetry/plain_local_lock20_1.7.json.bin @@ -94,6 +94,13 @@ ], "metadata": { "component": { + "author": "Your Name ", + "authors": [ + { + "email": "you@example.com", + "name": "Your Name" + } + ], "bom-ref": "local", "description": "packages from local paths", "name": "local", diff --git a/tests/_data/snapshots/poetry/plain_local_lock20_1.7.xml.bin b/tests/_data/snapshots/poetry/plain_local_lock20_1.7.xml.bin index 668afc69c..b047f59b8 100644 --- a/tests/_data/snapshots/poetry/plain_local_lock20_1.7.xml.bin +++ b/tests/_data/snapshots/poetry/plain_local_lock20_1.7.xml.bin @@ -51,6 +51,13 @@ + + + Your Name + you@example.com + + + Your Name <you@example.com> local 0.1.0 packages from local paths diff --git a/tests/_data/snapshots/poetry/plain_local_lock21_1.2.json.bin b/tests/_data/snapshots/poetry/plain_local_lock21_1.2.json.bin index 4c53765a9..7627afed9 100644 --- a/tests/_data/snapshots/poetry/plain_local_lock21_1.2.json.bin +++ b/tests/_data/snapshots/poetry/plain_local_lock21_1.2.json.bin @@ -64,6 +64,7 @@ ], "metadata": { "component": { + "author": "Your Name ", "bom-ref": "local", "description": "packages from local paths", "name": "local", diff --git a/tests/_data/snapshots/poetry/plain_local_lock21_1.2.xml.bin b/tests/_data/snapshots/poetry/plain_local_lock21_1.2.xml.bin index 623da37bc..9b5f09952 100644 --- a/tests/_data/snapshots/poetry/plain_local_lock21_1.2.xml.bin +++ b/tests/_data/snapshots/poetry/plain_local_lock21_1.2.xml.bin @@ -14,6 +14,7 @@ + Your Name <you@example.com> local 0.1.0 packages from local paths diff --git a/tests/_data/snapshots/poetry/plain_local_lock21_1.3.json.bin b/tests/_data/snapshots/poetry/plain_local_lock21_1.3.json.bin index b77cfd294..4c952eabb 100644 --- a/tests/_data/snapshots/poetry/plain_local_lock21_1.3.json.bin +++ b/tests/_data/snapshots/poetry/plain_local_lock21_1.3.json.bin @@ -94,6 +94,7 @@ ], "metadata": { "component": { + "author": "Your Name ", "bom-ref": "local", "description": "packages from local paths", "name": "local", diff --git a/tests/_data/snapshots/poetry/plain_local_lock21_1.3.xml.bin b/tests/_data/snapshots/poetry/plain_local_lock21_1.3.xml.bin index 9d8c53275..8a537f5a8 100644 --- a/tests/_data/snapshots/poetry/plain_local_lock21_1.3.xml.bin +++ b/tests/_data/snapshots/poetry/plain_local_lock21_1.3.xml.bin @@ -14,6 +14,7 @@ + Your Name <you@example.com> local 0.1.0 packages from local paths diff --git a/tests/_data/snapshots/poetry/plain_local_lock21_1.4.json.bin b/tests/_data/snapshots/poetry/plain_local_lock21_1.4.json.bin index 96eaf7857..e3538efa2 100644 --- a/tests/_data/snapshots/poetry/plain_local_lock21_1.4.json.bin +++ b/tests/_data/snapshots/poetry/plain_local_lock21_1.4.json.bin @@ -94,6 +94,7 @@ ], "metadata": { "component": { + "author": "Your Name ", "bom-ref": "local", "description": "packages from local paths", "name": "local", diff --git a/tests/_data/snapshots/poetry/plain_local_lock21_1.4.xml.bin b/tests/_data/snapshots/poetry/plain_local_lock21_1.4.xml.bin index 41377af14..55e5b5d15 100644 --- a/tests/_data/snapshots/poetry/plain_local_lock21_1.4.xml.bin +++ b/tests/_data/snapshots/poetry/plain_local_lock21_1.4.xml.bin @@ -41,6 +41,7 @@ + Your Name <you@example.com> local 0.1.0 packages from local paths diff --git a/tests/_data/snapshots/poetry/plain_local_lock21_1.5.json.bin b/tests/_data/snapshots/poetry/plain_local_lock21_1.5.json.bin index 3093ddc1b..ffbe9ec0d 100644 --- a/tests/_data/snapshots/poetry/plain_local_lock21_1.5.json.bin +++ b/tests/_data/snapshots/poetry/plain_local_lock21_1.5.json.bin @@ -94,6 +94,7 @@ ], "metadata": { "component": { + "author": "Your Name ", "bom-ref": "local", "description": "packages from local paths", "name": "local", diff --git a/tests/_data/snapshots/poetry/plain_local_lock21_1.5.xml.bin b/tests/_data/snapshots/poetry/plain_local_lock21_1.5.xml.bin index 112f1e71f..26edfc7bf 100644 --- a/tests/_data/snapshots/poetry/plain_local_lock21_1.5.xml.bin +++ b/tests/_data/snapshots/poetry/plain_local_lock21_1.5.xml.bin @@ -51,6 +51,7 @@ + Your Name <you@example.com> local 0.1.0 packages from local paths diff --git a/tests/_data/snapshots/poetry/plain_local_lock21_1.6.json.bin b/tests/_data/snapshots/poetry/plain_local_lock21_1.6.json.bin index c67e8d9bd..23b25f359 100644 --- a/tests/_data/snapshots/poetry/plain_local_lock21_1.6.json.bin +++ b/tests/_data/snapshots/poetry/plain_local_lock21_1.6.json.bin @@ -94,6 +94,13 @@ ], "metadata": { "component": { + "author": "Your Name ", + "authors": [ + { + "email": "you@example.com", + "name": "Your Name" + } + ], "bom-ref": "local", "description": "packages from local paths", "name": "local", diff --git a/tests/_data/snapshots/poetry/plain_local_lock21_1.6.xml.bin b/tests/_data/snapshots/poetry/plain_local_lock21_1.6.xml.bin index 1858b7997..d300ad083 100644 --- a/tests/_data/snapshots/poetry/plain_local_lock21_1.6.xml.bin +++ b/tests/_data/snapshots/poetry/plain_local_lock21_1.6.xml.bin @@ -51,6 +51,13 @@ + + + Your Name + you@example.com + + + Your Name <you@example.com> local 0.1.0 packages from local paths diff --git a/tests/_data/snapshots/poetry/plain_local_lock21_1.7.json.bin b/tests/_data/snapshots/poetry/plain_local_lock21_1.7.json.bin index f40eaf8e7..90853bcda 100644 --- a/tests/_data/snapshots/poetry/plain_local_lock21_1.7.json.bin +++ b/tests/_data/snapshots/poetry/plain_local_lock21_1.7.json.bin @@ -94,6 +94,13 @@ ], "metadata": { "component": { + "author": "Your Name ", + "authors": [ + { + "email": "you@example.com", + "name": "Your Name" + } + ], "bom-ref": "local", "description": "packages from local paths", "name": "local", diff --git a/tests/_data/snapshots/poetry/plain_local_lock21_1.7.xml.bin b/tests/_data/snapshots/poetry/plain_local_lock21_1.7.xml.bin index 0d3f3077e..b0e007521 100644 --- a/tests/_data/snapshots/poetry/plain_local_lock21_1.7.xml.bin +++ b/tests/_data/snapshots/poetry/plain_local_lock21_1.7.xml.bin @@ -51,6 +51,13 @@ + + + Your Name + you@example.com + + + Your Name <you@example.com> local 0.1.0 packages from local paths diff --git a/tests/_data/snapshots/poetry/plain_main-and-dev_lock10_1.2.json.bin b/tests/_data/snapshots/poetry/plain_main-and-dev_lock10_1.2.json.bin index d1c7c243c..fe13b45e1 100644 --- a/tests/_data/snapshots/poetry/plain_main-and-dev_lock10_1.2.json.bin +++ b/tests/_data/snapshots/poetry/plain_main-and-dev_lock10_1.2.json.bin @@ -185,6 +185,7 @@ ], "metadata": { "component": { + "author": "Your Name ", "bom-ref": "main-and-dev", "description": "main and dev depenndencies", "name": "main-and-dev", diff --git a/tests/_data/snapshots/poetry/plain_main-and-dev_lock10_1.2.xml.bin b/tests/_data/snapshots/poetry/plain_main-and-dev_lock10_1.2.xml.bin index 158bef4c7..0194d1200 100644 --- a/tests/_data/snapshots/poetry/plain_main-and-dev_lock10_1.2.xml.bin +++ b/tests/_data/snapshots/poetry/plain_main-and-dev_lock10_1.2.xml.bin @@ -14,6 +14,7 @@ + Your Name <you@example.com> main-and-dev 0.1.0 main and dev depenndencies diff --git a/tests/_data/snapshots/poetry/plain_main-and-dev_lock10_1.3.json.bin b/tests/_data/snapshots/poetry/plain_main-and-dev_lock10_1.3.json.bin index fddba02ff..06ba24c02 100644 --- a/tests/_data/snapshots/poetry/plain_main-and-dev_lock10_1.3.json.bin +++ b/tests/_data/snapshots/poetry/plain_main-and-dev_lock10_1.3.json.bin @@ -311,6 +311,7 @@ ], "metadata": { "component": { + "author": "Your Name ", "bom-ref": "main-and-dev", "description": "main and dev depenndencies", "name": "main-and-dev", diff --git a/tests/_data/snapshots/poetry/plain_main-and-dev_lock10_1.3.xml.bin b/tests/_data/snapshots/poetry/plain_main-and-dev_lock10_1.3.xml.bin index 22238b8b3..633a593d4 100644 --- a/tests/_data/snapshots/poetry/plain_main-and-dev_lock10_1.3.xml.bin +++ b/tests/_data/snapshots/poetry/plain_main-and-dev_lock10_1.3.xml.bin @@ -14,6 +14,7 @@ + Your Name <you@example.com> main-and-dev 0.1.0 main and dev depenndencies diff --git a/tests/_data/snapshots/poetry/plain_main-and-dev_lock10_1.4.json.bin b/tests/_data/snapshots/poetry/plain_main-and-dev_lock10_1.4.json.bin index a92a4ba06..d738c3359 100644 --- a/tests/_data/snapshots/poetry/plain_main-and-dev_lock10_1.4.json.bin +++ b/tests/_data/snapshots/poetry/plain_main-and-dev_lock10_1.4.json.bin @@ -311,6 +311,7 @@ ], "metadata": { "component": { + "author": "Your Name ", "bom-ref": "main-and-dev", "description": "main and dev depenndencies", "name": "main-and-dev", diff --git a/tests/_data/snapshots/poetry/plain_main-and-dev_lock10_1.4.xml.bin b/tests/_data/snapshots/poetry/plain_main-and-dev_lock10_1.4.xml.bin index 803d9a51b..eb92f80ec 100644 --- a/tests/_data/snapshots/poetry/plain_main-and-dev_lock10_1.4.xml.bin +++ b/tests/_data/snapshots/poetry/plain_main-and-dev_lock10_1.4.xml.bin @@ -41,6 +41,7 @@ + Your Name <you@example.com> main-and-dev 0.1.0 main and dev depenndencies diff --git a/tests/_data/snapshots/poetry/plain_main-and-dev_lock10_1.5.json.bin b/tests/_data/snapshots/poetry/plain_main-and-dev_lock10_1.5.json.bin index 32fa6dd68..bba41611e 100644 --- a/tests/_data/snapshots/poetry/plain_main-and-dev_lock10_1.5.json.bin +++ b/tests/_data/snapshots/poetry/plain_main-and-dev_lock10_1.5.json.bin @@ -311,6 +311,7 @@ ], "metadata": { "component": { + "author": "Your Name ", "bom-ref": "main-and-dev", "description": "main and dev depenndencies", "name": "main-and-dev", diff --git a/tests/_data/snapshots/poetry/plain_main-and-dev_lock10_1.5.xml.bin b/tests/_data/snapshots/poetry/plain_main-and-dev_lock10_1.5.xml.bin index fd8a667ab..7a4509919 100644 --- a/tests/_data/snapshots/poetry/plain_main-and-dev_lock10_1.5.xml.bin +++ b/tests/_data/snapshots/poetry/plain_main-and-dev_lock10_1.5.xml.bin @@ -51,6 +51,7 @@ + Your Name <you@example.com> main-and-dev 0.1.0 main and dev depenndencies diff --git a/tests/_data/snapshots/poetry/plain_main-and-dev_lock10_1.6.json.bin b/tests/_data/snapshots/poetry/plain_main-and-dev_lock10_1.6.json.bin index 6a0a7fc11..ec48bde11 100644 --- a/tests/_data/snapshots/poetry/plain_main-and-dev_lock10_1.6.json.bin +++ b/tests/_data/snapshots/poetry/plain_main-and-dev_lock10_1.6.json.bin @@ -311,6 +311,13 @@ ], "metadata": { "component": { + "author": "Your Name ", + "authors": [ + { + "email": "you@example.com", + "name": "Your Name" + } + ], "bom-ref": "main-and-dev", "description": "main and dev depenndencies", "name": "main-and-dev", diff --git a/tests/_data/snapshots/poetry/plain_main-and-dev_lock10_1.6.xml.bin b/tests/_data/snapshots/poetry/plain_main-and-dev_lock10_1.6.xml.bin index 14d95bb0e..ade647897 100644 --- a/tests/_data/snapshots/poetry/plain_main-and-dev_lock10_1.6.xml.bin +++ b/tests/_data/snapshots/poetry/plain_main-and-dev_lock10_1.6.xml.bin @@ -51,6 +51,13 @@ + + + Your Name + you@example.com + + + Your Name <you@example.com> main-and-dev 0.1.0 main and dev depenndencies diff --git a/tests/_data/snapshots/poetry/plain_main-and-dev_lock10_1.7.json.bin b/tests/_data/snapshots/poetry/plain_main-and-dev_lock10_1.7.json.bin index b4e3ec47a..073fde614 100644 --- a/tests/_data/snapshots/poetry/plain_main-and-dev_lock10_1.7.json.bin +++ b/tests/_data/snapshots/poetry/plain_main-and-dev_lock10_1.7.json.bin @@ -311,6 +311,13 @@ ], "metadata": { "component": { + "author": "Your Name ", + "authors": [ + { + "email": "you@example.com", + "name": "Your Name" + } + ], "bom-ref": "main-and-dev", "description": "main and dev depenndencies", "name": "main-and-dev", diff --git a/tests/_data/snapshots/poetry/plain_main-and-dev_lock10_1.7.xml.bin b/tests/_data/snapshots/poetry/plain_main-and-dev_lock10_1.7.xml.bin index ed5f9b673..bce4d500b 100644 --- a/tests/_data/snapshots/poetry/plain_main-and-dev_lock10_1.7.xml.bin +++ b/tests/_data/snapshots/poetry/plain_main-and-dev_lock10_1.7.xml.bin @@ -51,6 +51,13 @@ + + + Your Name + you@example.com + + + Your Name <you@example.com> main-and-dev 0.1.0 main and dev depenndencies diff --git a/tests/_data/snapshots/poetry/plain_main-and-dev_lock11_1.2.json.bin b/tests/_data/snapshots/poetry/plain_main-and-dev_lock11_1.2.json.bin index d1c7c243c..fe13b45e1 100644 --- a/tests/_data/snapshots/poetry/plain_main-and-dev_lock11_1.2.json.bin +++ b/tests/_data/snapshots/poetry/plain_main-and-dev_lock11_1.2.json.bin @@ -185,6 +185,7 @@ ], "metadata": { "component": { + "author": "Your Name ", "bom-ref": "main-and-dev", "description": "main and dev depenndencies", "name": "main-and-dev", diff --git a/tests/_data/snapshots/poetry/plain_main-and-dev_lock11_1.2.xml.bin b/tests/_data/snapshots/poetry/plain_main-and-dev_lock11_1.2.xml.bin index 158bef4c7..0194d1200 100644 --- a/tests/_data/snapshots/poetry/plain_main-and-dev_lock11_1.2.xml.bin +++ b/tests/_data/snapshots/poetry/plain_main-and-dev_lock11_1.2.xml.bin @@ -14,6 +14,7 @@ + Your Name <you@example.com> main-and-dev 0.1.0 main and dev depenndencies diff --git a/tests/_data/snapshots/poetry/plain_main-and-dev_lock11_1.3.json.bin b/tests/_data/snapshots/poetry/plain_main-and-dev_lock11_1.3.json.bin index fddba02ff..06ba24c02 100644 --- a/tests/_data/snapshots/poetry/plain_main-and-dev_lock11_1.3.json.bin +++ b/tests/_data/snapshots/poetry/plain_main-and-dev_lock11_1.3.json.bin @@ -311,6 +311,7 @@ ], "metadata": { "component": { + "author": "Your Name ", "bom-ref": "main-and-dev", "description": "main and dev depenndencies", "name": "main-and-dev", diff --git a/tests/_data/snapshots/poetry/plain_main-and-dev_lock11_1.3.xml.bin b/tests/_data/snapshots/poetry/plain_main-and-dev_lock11_1.3.xml.bin index 22238b8b3..633a593d4 100644 --- a/tests/_data/snapshots/poetry/plain_main-and-dev_lock11_1.3.xml.bin +++ b/tests/_data/snapshots/poetry/plain_main-and-dev_lock11_1.3.xml.bin @@ -14,6 +14,7 @@ + Your Name <you@example.com> main-and-dev 0.1.0 main and dev depenndencies diff --git a/tests/_data/snapshots/poetry/plain_main-and-dev_lock11_1.4.json.bin b/tests/_data/snapshots/poetry/plain_main-and-dev_lock11_1.4.json.bin index a92a4ba06..d738c3359 100644 --- a/tests/_data/snapshots/poetry/plain_main-and-dev_lock11_1.4.json.bin +++ b/tests/_data/snapshots/poetry/plain_main-and-dev_lock11_1.4.json.bin @@ -311,6 +311,7 @@ ], "metadata": { "component": { + "author": "Your Name ", "bom-ref": "main-and-dev", "description": "main and dev depenndencies", "name": "main-and-dev", diff --git a/tests/_data/snapshots/poetry/plain_main-and-dev_lock11_1.4.xml.bin b/tests/_data/snapshots/poetry/plain_main-and-dev_lock11_1.4.xml.bin index 803d9a51b..eb92f80ec 100644 --- a/tests/_data/snapshots/poetry/plain_main-and-dev_lock11_1.4.xml.bin +++ b/tests/_data/snapshots/poetry/plain_main-and-dev_lock11_1.4.xml.bin @@ -41,6 +41,7 @@ + Your Name <you@example.com> main-and-dev 0.1.0 main and dev depenndencies diff --git a/tests/_data/snapshots/poetry/plain_main-and-dev_lock11_1.5.json.bin b/tests/_data/snapshots/poetry/plain_main-and-dev_lock11_1.5.json.bin index 32fa6dd68..bba41611e 100644 --- a/tests/_data/snapshots/poetry/plain_main-and-dev_lock11_1.5.json.bin +++ b/tests/_data/snapshots/poetry/plain_main-and-dev_lock11_1.5.json.bin @@ -311,6 +311,7 @@ ], "metadata": { "component": { + "author": "Your Name ", "bom-ref": "main-and-dev", "description": "main and dev depenndencies", "name": "main-and-dev", diff --git a/tests/_data/snapshots/poetry/plain_main-and-dev_lock11_1.5.xml.bin b/tests/_data/snapshots/poetry/plain_main-and-dev_lock11_1.5.xml.bin index fd8a667ab..7a4509919 100644 --- a/tests/_data/snapshots/poetry/plain_main-and-dev_lock11_1.5.xml.bin +++ b/tests/_data/snapshots/poetry/plain_main-and-dev_lock11_1.5.xml.bin @@ -51,6 +51,7 @@ + Your Name <you@example.com> main-and-dev 0.1.0 main and dev depenndencies diff --git a/tests/_data/snapshots/poetry/plain_main-and-dev_lock11_1.6.json.bin b/tests/_data/snapshots/poetry/plain_main-and-dev_lock11_1.6.json.bin index 6a0a7fc11..ec48bde11 100644 --- a/tests/_data/snapshots/poetry/plain_main-and-dev_lock11_1.6.json.bin +++ b/tests/_data/snapshots/poetry/plain_main-and-dev_lock11_1.6.json.bin @@ -311,6 +311,13 @@ ], "metadata": { "component": { + "author": "Your Name ", + "authors": [ + { + "email": "you@example.com", + "name": "Your Name" + } + ], "bom-ref": "main-and-dev", "description": "main and dev depenndencies", "name": "main-and-dev", diff --git a/tests/_data/snapshots/poetry/plain_main-and-dev_lock11_1.6.xml.bin b/tests/_data/snapshots/poetry/plain_main-and-dev_lock11_1.6.xml.bin index 14d95bb0e..ade647897 100644 --- a/tests/_data/snapshots/poetry/plain_main-and-dev_lock11_1.6.xml.bin +++ b/tests/_data/snapshots/poetry/plain_main-and-dev_lock11_1.6.xml.bin @@ -51,6 +51,13 @@ + + + Your Name + you@example.com + + + Your Name <you@example.com> main-and-dev 0.1.0 main and dev depenndencies diff --git a/tests/_data/snapshots/poetry/plain_main-and-dev_lock11_1.7.json.bin b/tests/_data/snapshots/poetry/plain_main-and-dev_lock11_1.7.json.bin index b4e3ec47a..073fde614 100644 --- a/tests/_data/snapshots/poetry/plain_main-and-dev_lock11_1.7.json.bin +++ b/tests/_data/snapshots/poetry/plain_main-and-dev_lock11_1.7.json.bin @@ -311,6 +311,13 @@ ], "metadata": { "component": { + "author": "Your Name ", + "authors": [ + { + "email": "you@example.com", + "name": "Your Name" + } + ], "bom-ref": "main-and-dev", "description": "main and dev depenndencies", "name": "main-and-dev", diff --git a/tests/_data/snapshots/poetry/plain_main-and-dev_lock11_1.7.xml.bin b/tests/_data/snapshots/poetry/plain_main-and-dev_lock11_1.7.xml.bin index ed5f9b673..bce4d500b 100644 --- a/tests/_data/snapshots/poetry/plain_main-and-dev_lock11_1.7.xml.bin +++ b/tests/_data/snapshots/poetry/plain_main-and-dev_lock11_1.7.xml.bin @@ -51,6 +51,13 @@ + + + Your Name + you@example.com + + + Your Name <you@example.com> main-and-dev 0.1.0 main and dev depenndencies diff --git a/tests/_data/snapshots/poetry/plain_main-and-dev_lock20_1.2.json.bin b/tests/_data/snapshots/poetry/plain_main-and-dev_lock20_1.2.json.bin index d1c7c243c..fe13b45e1 100644 --- a/tests/_data/snapshots/poetry/plain_main-and-dev_lock20_1.2.json.bin +++ b/tests/_data/snapshots/poetry/plain_main-and-dev_lock20_1.2.json.bin @@ -185,6 +185,7 @@ ], "metadata": { "component": { + "author": "Your Name ", "bom-ref": "main-and-dev", "description": "main and dev depenndencies", "name": "main-and-dev", diff --git a/tests/_data/snapshots/poetry/plain_main-and-dev_lock20_1.2.xml.bin b/tests/_data/snapshots/poetry/plain_main-and-dev_lock20_1.2.xml.bin index 158bef4c7..0194d1200 100644 --- a/tests/_data/snapshots/poetry/plain_main-and-dev_lock20_1.2.xml.bin +++ b/tests/_data/snapshots/poetry/plain_main-and-dev_lock20_1.2.xml.bin @@ -14,6 +14,7 @@ + Your Name <you@example.com> main-and-dev 0.1.0 main and dev depenndencies diff --git a/tests/_data/snapshots/poetry/plain_main-and-dev_lock20_1.3.json.bin b/tests/_data/snapshots/poetry/plain_main-and-dev_lock20_1.3.json.bin index 7200d54bc..0ad00a839 100644 --- a/tests/_data/snapshots/poetry/plain_main-and-dev_lock20_1.3.json.bin +++ b/tests/_data/snapshots/poetry/plain_main-and-dev_lock20_1.3.json.bin @@ -293,6 +293,7 @@ ], "metadata": { "component": { + "author": "Your Name ", "bom-ref": "main-and-dev", "description": "main and dev depenndencies", "name": "main-and-dev", diff --git a/tests/_data/snapshots/poetry/plain_main-and-dev_lock20_1.3.xml.bin b/tests/_data/snapshots/poetry/plain_main-and-dev_lock20_1.3.xml.bin index fa306358a..26ab1c50a 100644 --- a/tests/_data/snapshots/poetry/plain_main-and-dev_lock20_1.3.xml.bin +++ b/tests/_data/snapshots/poetry/plain_main-and-dev_lock20_1.3.xml.bin @@ -14,6 +14,7 @@ + Your Name <you@example.com> main-and-dev 0.1.0 main and dev depenndencies diff --git a/tests/_data/snapshots/poetry/plain_main-and-dev_lock20_1.4.json.bin b/tests/_data/snapshots/poetry/plain_main-and-dev_lock20_1.4.json.bin index 94723c590..17b4812cd 100644 --- a/tests/_data/snapshots/poetry/plain_main-and-dev_lock20_1.4.json.bin +++ b/tests/_data/snapshots/poetry/plain_main-and-dev_lock20_1.4.json.bin @@ -293,6 +293,7 @@ ], "metadata": { "component": { + "author": "Your Name ", "bom-ref": "main-and-dev", "description": "main and dev depenndencies", "name": "main-and-dev", diff --git a/tests/_data/snapshots/poetry/plain_main-and-dev_lock20_1.4.xml.bin b/tests/_data/snapshots/poetry/plain_main-and-dev_lock20_1.4.xml.bin index 2f3e5d14c..289aeafd8 100644 --- a/tests/_data/snapshots/poetry/plain_main-and-dev_lock20_1.4.xml.bin +++ b/tests/_data/snapshots/poetry/plain_main-and-dev_lock20_1.4.xml.bin @@ -41,6 +41,7 @@ + Your Name <you@example.com> main-and-dev 0.1.0 main and dev depenndencies diff --git a/tests/_data/snapshots/poetry/plain_main-and-dev_lock20_1.5.json.bin b/tests/_data/snapshots/poetry/plain_main-and-dev_lock20_1.5.json.bin index 4c32f56b7..94d9455c3 100644 --- a/tests/_data/snapshots/poetry/plain_main-and-dev_lock20_1.5.json.bin +++ b/tests/_data/snapshots/poetry/plain_main-and-dev_lock20_1.5.json.bin @@ -293,6 +293,7 @@ ], "metadata": { "component": { + "author": "Your Name ", "bom-ref": "main-and-dev", "description": "main and dev depenndencies", "name": "main-and-dev", diff --git a/tests/_data/snapshots/poetry/plain_main-and-dev_lock20_1.5.xml.bin b/tests/_data/snapshots/poetry/plain_main-and-dev_lock20_1.5.xml.bin index 719cbfb14..28020e7c1 100644 --- a/tests/_data/snapshots/poetry/plain_main-and-dev_lock20_1.5.xml.bin +++ b/tests/_data/snapshots/poetry/plain_main-and-dev_lock20_1.5.xml.bin @@ -51,6 +51,7 @@ + Your Name <you@example.com> main-and-dev 0.1.0 main and dev depenndencies diff --git a/tests/_data/snapshots/poetry/plain_main-and-dev_lock20_1.6.json.bin b/tests/_data/snapshots/poetry/plain_main-and-dev_lock20_1.6.json.bin index dfcdb1059..cc8e2a75e 100644 --- a/tests/_data/snapshots/poetry/plain_main-and-dev_lock20_1.6.json.bin +++ b/tests/_data/snapshots/poetry/plain_main-and-dev_lock20_1.6.json.bin @@ -293,6 +293,13 @@ ], "metadata": { "component": { + "author": "Your Name ", + "authors": [ + { + "email": "you@example.com", + "name": "Your Name" + } + ], "bom-ref": "main-and-dev", "description": "main and dev depenndencies", "name": "main-and-dev", diff --git a/tests/_data/snapshots/poetry/plain_main-and-dev_lock20_1.6.xml.bin b/tests/_data/snapshots/poetry/plain_main-and-dev_lock20_1.6.xml.bin index 7306ef5d8..a1b1b9421 100644 --- a/tests/_data/snapshots/poetry/plain_main-and-dev_lock20_1.6.xml.bin +++ b/tests/_data/snapshots/poetry/plain_main-and-dev_lock20_1.6.xml.bin @@ -51,6 +51,13 @@ + + + Your Name + you@example.com + + + Your Name <you@example.com> main-and-dev 0.1.0 main and dev depenndencies diff --git a/tests/_data/snapshots/poetry/plain_main-and-dev_lock20_1.7.json.bin b/tests/_data/snapshots/poetry/plain_main-and-dev_lock20_1.7.json.bin index b5d8b6e22..74834ed5d 100644 --- a/tests/_data/snapshots/poetry/plain_main-and-dev_lock20_1.7.json.bin +++ b/tests/_data/snapshots/poetry/plain_main-and-dev_lock20_1.7.json.bin @@ -293,6 +293,13 @@ ], "metadata": { "component": { + "author": "Your Name ", + "authors": [ + { + "email": "you@example.com", + "name": "Your Name" + } + ], "bom-ref": "main-and-dev", "description": "main and dev depenndencies", "name": "main-and-dev", diff --git a/tests/_data/snapshots/poetry/plain_main-and-dev_lock20_1.7.xml.bin b/tests/_data/snapshots/poetry/plain_main-and-dev_lock20_1.7.xml.bin index 4d0869f93..701e7c762 100644 --- a/tests/_data/snapshots/poetry/plain_main-and-dev_lock20_1.7.xml.bin +++ b/tests/_data/snapshots/poetry/plain_main-and-dev_lock20_1.7.xml.bin @@ -51,6 +51,13 @@ + + + Your Name + you@example.com + + + Your Name <you@example.com> main-and-dev 0.1.0 main and dev depenndencies diff --git a/tests/_data/snapshots/poetry/plain_main-and-dev_lock21_1.2.json.bin b/tests/_data/snapshots/poetry/plain_main-and-dev_lock21_1.2.json.bin index 36d4e47d4..b30dbec37 100644 --- a/tests/_data/snapshots/poetry/plain_main-and-dev_lock21_1.2.json.bin +++ b/tests/_data/snapshots/poetry/plain_main-and-dev_lock21_1.2.json.bin @@ -185,6 +185,7 @@ ], "metadata": { "component": { + "author": "Your Name ", "bom-ref": "main-and-dev", "description": "main and dev depenndencies", "name": "main-and-dev", diff --git a/tests/_data/snapshots/poetry/plain_main-and-dev_lock21_1.2.xml.bin b/tests/_data/snapshots/poetry/plain_main-and-dev_lock21_1.2.xml.bin index f93348f88..ea0b4818f 100644 --- a/tests/_data/snapshots/poetry/plain_main-and-dev_lock21_1.2.xml.bin +++ b/tests/_data/snapshots/poetry/plain_main-and-dev_lock21_1.2.xml.bin @@ -14,6 +14,7 @@ + Your Name <you@example.com> main-and-dev 0.1.0 main and dev depenndencies diff --git a/tests/_data/snapshots/poetry/plain_main-and-dev_lock21_1.3.json.bin b/tests/_data/snapshots/poetry/plain_main-and-dev_lock21_1.3.json.bin index 582306689..110767665 100644 --- a/tests/_data/snapshots/poetry/plain_main-and-dev_lock21_1.3.json.bin +++ b/tests/_data/snapshots/poetry/plain_main-and-dev_lock21_1.3.json.bin @@ -293,6 +293,7 @@ ], "metadata": { "component": { + "author": "Your Name ", "bom-ref": "main-and-dev", "description": "main and dev depenndencies", "name": "main-and-dev", diff --git a/tests/_data/snapshots/poetry/plain_main-and-dev_lock21_1.3.xml.bin b/tests/_data/snapshots/poetry/plain_main-and-dev_lock21_1.3.xml.bin index f37c203f2..22b7b7bba 100644 --- a/tests/_data/snapshots/poetry/plain_main-and-dev_lock21_1.3.xml.bin +++ b/tests/_data/snapshots/poetry/plain_main-and-dev_lock21_1.3.xml.bin @@ -14,6 +14,7 @@ + Your Name <you@example.com> main-and-dev 0.1.0 main and dev depenndencies diff --git a/tests/_data/snapshots/poetry/plain_main-and-dev_lock21_1.4.json.bin b/tests/_data/snapshots/poetry/plain_main-and-dev_lock21_1.4.json.bin index 75830b09f..feee9284d 100644 --- a/tests/_data/snapshots/poetry/plain_main-and-dev_lock21_1.4.json.bin +++ b/tests/_data/snapshots/poetry/plain_main-and-dev_lock21_1.4.json.bin @@ -293,6 +293,7 @@ ], "metadata": { "component": { + "author": "Your Name ", "bom-ref": "main-and-dev", "description": "main and dev depenndencies", "name": "main-and-dev", diff --git a/tests/_data/snapshots/poetry/plain_main-and-dev_lock21_1.4.xml.bin b/tests/_data/snapshots/poetry/plain_main-and-dev_lock21_1.4.xml.bin index b01a3a561..186abc3e7 100644 --- a/tests/_data/snapshots/poetry/plain_main-and-dev_lock21_1.4.xml.bin +++ b/tests/_data/snapshots/poetry/plain_main-and-dev_lock21_1.4.xml.bin @@ -41,6 +41,7 @@ + Your Name <you@example.com> main-and-dev 0.1.0 main and dev depenndencies diff --git a/tests/_data/snapshots/poetry/plain_main-and-dev_lock21_1.5.json.bin b/tests/_data/snapshots/poetry/plain_main-and-dev_lock21_1.5.json.bin index 0c8fe0072..4a298d487 100644 --- a/tests/_data/snapshots/poetry/plain_main-and-dev_lock21_1.5.json.bin +++ b/tests/_data/snapshots/poetry/plain_main-and-dev_lock21_1.5.json.bin @@ -293,6 +293,7 @@ ], "metadata": { "component": { + "author": "Your Name ", "bom-ref": "main-and-dev", "description": "main and dev depenndencies", "name": "main-and-dev", diff --git a/tests/_data/snapshots/poetry/plain_main-and-dev_lock21_1.5.xml.bin b/tests/_data/snapshots/poetry/plain_main-and-dev_lock21_1.5.xml.bin index bbf30935d..95b983bb5 100644 --- a/tests/_data/snapshots/poetry/plain_main-and-dev_lock21_1.5.xml.bin +++ b/tests/_data/snapshots/poetry/plain_main-and-dev_lock21_1.5.xml.bin @@ -51,6 +51,7 @@ + Your Name <you@example.com> main-and-dev 0.1.0 main and dev depenndencies diff --git a/tests/_data/snapshots/poetry/plain_main-and-dev_lock21_1.6.json.bin b/tests/_data/snapshots/poetry/plain_main-and-dev_lock21_1.6.json.bin index 0e35f51c2..aad6a5336 100644 --- a/tests/_data/snapshots/poetry/plain_main-and-dev_lock21_1.6.json.bin +++ b/tests/_data/snapshots/poetry/plain_main-and-dev_lock21_1.6.json.bin @@ -293,6 +293,13 @@ ], "metadata": { "component": { + "author": "Your Name ", + "authors": [ + { + "email": "you@example.com", + "name": "Your Name" + } + ], "bom-ref": "main-and-dev", "description": "main and dev depenndencies", "name": "main-and-dev", diff --git a/tests/_data/snapshots/poetry/plain_main-and-dev_lock21_1.6.xml.bin b/tests/_data/snapshots/poetry/plain_main-and-dev_lock21_1.6.xml.bin index f2f35114f..11d2cd06a 100644 --- a/tests/_data/snapshots/poetry/plain_main-and-dev_lock21_1.6.xml.bin +++ b/tests/_data/snapshots/poetry/plain_main-and-dev_lock21_1.6.xml.bin @@ -51,6 +51,13 @@ + + + Your Name + you@example.com + + + Your Name <you@example.com> main-and-dev 0.1.0 main and dev depenndencies diff --git a/tests/_data/snapshots/poetry/plain_main-and-dev_lock21_1.7.json.bin b/tests/_data/snapshots/poetry/plain_main-and-dev_lock21_1.7.json.bin index 6beab0971..4c862ca8a 100644 --- a/tests/_data/snapshots/poetry/plain_main-and-dev_lock21_1.7.json.bin +++ b/tests/_data/snapshots/poetry/plain_main-and-dev_lock21_1.7.json.bin @@ -293,6 +293,13 @@ ], "metadata": { "component": { + "author": "Your Name ", + "authors": [ + { + "email": "you@example.com", + "name": "Your Name" + } + ], "bom-ref": "main-and-dev", "description": "main and dev depenndencies", "name": "main-and-dev", diff --git a/tests/_data/snapshots/poetry/plain_main-and-dev_lock21_1.7.xml.bin b/tests/_data/snapshots/poetry/plain_main-and-dev_lock21_1.7.xml.bin index a90434654..b90cf4818 100644 --- a/tests/_data/snapshots/poetry/plain_main-and-dev_lock21_1.7.xml.bin +++ b/tests/_data/snapshots/poetry/plain_main-and-dev_lock21_1.7.xml.bin @@ -51,6 +51,13 @@ + + + Your Name + you@example.com + + + Your Name <you@example.com> main-and-dev 0.1.0 main and dev depenndencies diff --git a/tests/_data/snapshots/poetry/plain_multi-constraint-deps_lock11_1.2.json.bin b/tests/_data/snapshots/poetry/plain_multi-constraint-deps_lock11_1.2.json.bin index fb40a62fd..bcab1f4b4 100644 --- a/tests/_data/snapshots/poetry/plain_multi-constraint-deps_lock11_1.2.json.bin +++ b/tests/_data/snapshots/poetry/plain_multi-constraint-deps_lock11_1.2.json.bin @@ -290,6 +290,7 @@ ], "metadata": { "component": { + "author": "Your Name ", "bom-ref": "multi-constraint-deps", "description": "multi-constraint depenndencies", "name": "multi-constraint-deps", diff --git a/tests/_data/snapshots/poetry/plain_multi-constraint-deps_lock11_1.2.xml.bin b/tests/_data/snapshots/poetry/plain_multi-constraint-deps_lock11_1.2.xml.bin index 43cd81a80..7c321407a 100644 --- a/tests/_data/snapshots/poetry/plain_multi-constraint-deps_lock11_1.2.xml.bin +++ b/tests/_data/snapshots/poetry/plain_multi-constraint-deps_lock11_1.2.xml.bin @@ -14,6 +14,7 @@ + Your Name <you@example.com> multi-constraint-deps 0.1.0 multi-constraint depenndencies diff --git a/tests/_data/snapshots/poetry/plain_multi-constraint-deps_lock11_1.3.json.bin b/tests/_data/snapshots/poetry/plain_multi-constraint-deps_lock11_1.3.json.bin index dcc11156a..f4341d092 100644 --- a/tests/_data/snapshots/poetry/plain_multi-constraint-deps_lock11_1.3.json.bin +++ b/tests/_data/snapshots/poetry/plain_multi-constraint-deps_lock11_1.3.json.bin @@ -548,6 +548,7 @@ ], "metadata": { "component": { + "author": "Your Name ", "bom-ref": "multi-constraint-deps", "description": "multi-constraint depenndencies", "name": "multi-constraint-deps", diff --git a/tests/_data/snapshots/poetry/plain_multi-constraint-deps_lock11_1.3.xml.bin b/tests/_data/snapshots/poetry/plain_multi-constraint-deps_lock11_1.3.xml.bin index 0f7eaf8fd..6af00761f 100644 --- a/tests/_data/snapshots/poetry/plain_multi-constraint-deps_lock11_1.3.xml.bin +++ b/tests/_data/snapshots/poetry/plain_multi-constraint-deps_lock11_1.3.xml.bin @@ -14,6 +14,7 @@ + Your Name <you@example.com> multi-constraint-deps 0.1.0 multi-constraint depenndencies diff --git a/tests/_data/snapshots/poetry/plain_multi-constraint-deps_lock11_1.4.json.bin b/tests/_data/snapshots/poetry/plain_multi-constraint-deps_lock11_1.4.json.bin index 85c2ceb8a..033a4fc63 100644 --- a/tests/_data/snapshots/poetry/plain_multi-constraint-deps_lock11_1.4.json.bin +++ b/tests/_data/snapshots/poetry/plain_multi-constraint-deps_lock11_1.4.json.bin @@ -548,6 +548,7 @@ ], "metadata": { "component": { + "author": "Your Name ", "bom-ref": "multi-constraint-deps", "description": "multi-constraint depenndencies", "name": "multi-constraint-deps", diff --git a/tests/_data/snapshots/poetry/plain_multi-constraint-deps_lock11_1.4.xml.bin b/tests/_data/snapshots/poetry/plain_multi-constraint-deps_lock11_1.4.xml.bin index a66f74b31..264b21216 100644 --- a/tests/_data/snapshots/poetry/plain_multi-constraint-deps_lock11_1.4.xml.bin +++ b/tests/_data/snapshots/poetry/plain_multi-constraint-deps_lock11_1.4.xml.bin @@ -41,6 +41,7 @@ + Your Name <you@example.com> multi-constraint-deps 0.1.0 multi-constraint depenndencies diff --git a/tests/_data/snapshots/poetry/plain_multi-constraint-deps_lock11_1.5.json.bin b/tests/_data/snapshots/poetry/plain_multi-constraint-deps_lock11_1.5.json.bin index 80d2c1b78..a9a6c2738 100644 --- a/tests/_data/snapshots/poetry/plain_multi-constraint-deps_lock11_1.5.json.bin +++ b/tests/_data/snapshots/poetry/plain_multi-constraint-deps_lock11_1.5.json.bin @@ -548,6 +548,7 @@ ], "metadata": { "component": { + "author": "Your Name ", "bom-ref": "multi-constraint-deps", "description": "multi-constraint depenndencies", "name": "multi-constraint-deps", diff --git a/tests/_data/snapshots/poetry/plain_multi-constraint-deps_lock11_1.5.xml.bin b/tests/_data/snapshots/poetry/plain_multi-constraint-deps_lock11_1.5.xml.bin index 5574aa4d0..c05fb3326 100644 --- a/tests/_data/snapshots/poetry/plain_multi-constraint-deps_lock11_1.5.xml.bin +++ b/tests/_data/snapshots/poetry/plain_multi-constraint-deps_lock11_1.5.xml.bin @@ -51,6 +51,7 @@ + Your Name <you@example.com> multi-constraint-deps 0.1.0 multi-constraint depenndencies diff --git a/tests/_data/snapshots/poetry/plain_multi-constraint-deps_lock11_1.6.json.bin b/tests/_data/snapshots/poetry/plain_multi-constraint-deps_lock11_1.6.json.bin index 3085ede06..4f20df71c 100644 --- a/tests/_data/snapshots/poetry/plain_multi-constraint-deps_lock11_1.6.json.bin +++ b/tests/_data/snapshots/poetry/plain_multi-constraint-deps_lock11_1.6.json.bin @@ -548,6 +548,13 @@ ], "metadata": { "component": { + "author": "Your Name ", + "authors": [ + { + "email": "you@example.com", + "name": "Your Name" + } + ], "bom-ref": "multi-constraint-deps", "description": "multi-constraint depenndencies", "name": "multi-constraint-deps", diff --git a/tests/_data/snapshots/poetry/plain_multi-constraint-deps_lock11_1.6.xml.bin b/tests/_data/snapshots/poetry/plain_multi-constraint-deps_lock11_1.6.xml.bin index fa6ce7791..843aca09f 100644 --- a/tests/_data/snapshots/poetry/plain_multi-constraint-deps_lock11_1.6.xml.bin +++ b/tests/_data/snapshots/poetry/plain_multi-constraint-deps_lock11_1.6.xml.bin @@ -51,6 +51,13 @@ + + + Your Name + you@example.com + + + Your Name <you@example.com> multi-constraint-deps 0.1.0 multi-constraint depenndencies diff --git a/tests/_data/snapshots/poetry/plain_multi-constraint-deps_lock11_1.7.json.bin b/tests/_data/snapshots/poetry/plain_multi-constraint-deps_lock11_1.7.json.bin index 9a232c869..f6ffb2712 100644 --- a/tests/_data/snapshots/poetry/plain_multi-constraint-deps_lock11_1.7.json.bin +++ b/tests/_data/snapshots/poetry/plain_multi-constraint-deps_lock11_1.7.json.bin @@ -548,6 +548,13 @@ ], "metadata": { "component": { + "author": "Your Name ", + "authors": [ + { + "email": "you@example.com", + "name": "Your Name" + } + ], "bom-ref": "multi-constraint-deps", "description": "multi-constraint depenndencies", "name": "multi-constraint-deps", diff --git a/tests/_data/snapshots/poetry/plain_multi-constraint-deps_lock11_1.7.xml.bin b/tests/_data/snapshots/poetry/plain_multi-constraint-deps_lock11_1.7.xml.bin index d34057def..599d7bcd9 100644 --- a/tests/_data/snapshots/poetry/plain_multi-constraint-deps_lock11_1.7.xml.bin +++ b/tests/_data/snapshots/poetry/plain_multi-constraint-deps_lock11_1.7.xml.bin @@ -51,6 +51,13 @@ + + + Your Name + you@example.com + + + Your Name <you@example.com> multi-constraint-deps 0.1.0 multi-constraint depenndencies diff --git a/tests/_data/snapshots/poetry/plain_multi-constraint-deps_lock20_1.2.json.bin b/tests/_data/snapshots/poetry/plain_multi-constraint-deps_lock20_1.2.json.bin index fc41cb22c..efebdae58 100644 --- a/tests/_data/snapshots/poetry/plain_multi-constraint-deps_lock20_1.2.json.bin +++ b/tests/_data/snapshots/poetry/plain_multi-constraint-deps_lock20_1.2.json.bin @@ -234,6 +234,7 @@ ], "metadata": { "component": { + "author": "Your Name ", "bom-ref": "multi-constraint-deps", "description": "multi-constraint depenndencies", "name": "multi-constraint-deps", diff --git a/tests/_data/snapshots/poetry/plain_multi-constraint-deps_lock20_1.2.xml.bin b/tests/_data/snapshots/poetry/plain_multi-constraint-deps_lock20_1.2.xml.bin index 97c7a261a..1490ec6f1 100644 --- a/tests/_data/snapshots/poetry/plain_multi-constraint-deps_lock20_1.2.xml.bin +++ b/tests/_data/snapshots/poetry/plain_multi-constraint-deps_lock20_1.2.xml.bin @@ -14,6 +14,7 @@ + Your Name <you@example.com> multi-constraint-deps 0.1.0 multi-constraint depenndencies diff --git a/tests/_data/snapshots/poetry/plain_multi-constraint-deps_lock20_1.3.json.bin b/tests/_data/snapshots/poetry/plain_multi-constraint-deps_lock20_1.3.json.bin index f1e54d621..007d47b91 100644 --- a/tests/_data/snapshots/poetry/plain_multi-constraint-deps_lock20_1.3.json.bin +++ b/tests/_data/snapshots/poetry/plain_multi-constraint-deps_lock20_1.3.json.bin @@ -392,6 +392,7 @@ ], "metadata": { "component": { + "author": "Your Name ", "bom-ref": "multi-constraint-deps", "description": "multi-constraint depenndencies", "name": "multi-constraint-deps", diff --git a/tests/_data/snapshots/poetry/plain_multi-constraint-deps_lock20_1.3.xml.bin b/tests/_data/snapshots/poetry/plain_multi-constraint-deps_lock20_1.3.xml.bin index 39afe22d4..d79a78970 100644 --- a/tests/_data/snapshots/poetry/plain_multi-constraint-deps_lock20_1.3.xml.bin +++ b/tests/_data/snapshots/poetry/plain_multi-constraint-deps_lock20_1.3.xml.bin @@ -14,6 +14,7 @@ + Your Name <you@example.com> multi-constraint-deps 0.1.0 multi-constraint depenndencies diff --git a/tests/_data/snapshots/poetry/plain_multi-constraint-deps_lock20_1.4.json.bin b/tests/_data/snapshots/poetry/plain_multi-constraint-deps_lock20_1.4.json.bin index 17366c394..7cc7d9083 100644 --- a/tests/_data/snapshots/poetry/plain_multi-constraint-deps_lock20_1.4.json.bin +++ b/tests/_data/snapshots/poetry/plain_multi-constraint-deps_lock20_1.4.json.bin @@ -392,6 +392,7 @@ ], "metadata": { "component": { + "author": "Your Name ", "bom-ref": "multi-constraint-deps", "description": "multi-constraint depenndencies", "name": "multi-constraint-deps", diff --git a/tests/_data/snapshots/poetry/plain_multi-constraint-deps_lock20_1.4.xml.bin b/tests/_data/snapshots/poetry/plain_multi-constraint-deps_lock20_1.4.xml.bin index 6284cbe13..ad9d84ee9 100644 --- a/tests/_data/snapshots/poetry/plain_multi-constraint-deps_lock20_1.4.xml.bin +++ b/tests/_data/snapshots/poetry/plain_multi-constraint-deps_lock20_1.4.xml.bin @@ -41,6 +41,7 @@ + Your Name <you@example.com> multi-constraint-deps 0.1.0 multi-constraint depenndencies diff --git a/tests/_data/snapshots/poetry/plain_multi-constraint-deps_lock20_1.5.json.bin b/tests/_data/snapshots/poetry/plain_multi-constraint-deps_lock20_1.5.json.bin index 4fdc1f282..7ae31933f 100644 --- a/tests/_data/snapshots/poetry/plain_multi-constraint-deps_lock20_1.5.json.bin +++ b/tests/_data/snapshots/poetry/plain_multi-constraint-deps_lock20_1.5.json.bin @@ -392,6 +392,7 @@ ], "metadata": { "component": { + "author": "Your Name ", "bom-ref": "multi-constraint-deps", "description": "multi-constraint depenndencies", "name": "multi-constraint-deps", diff --git a/tests/_data/snapshots/poetry/plain_multi-constraint-deps_lock20_1.5.xml.bin b/tests/_data/snapshots/poetry/plain_multi-constraint-deps_lock20_1.5.xml.bin index d9b616560..976aad6ee 100644 --- a/tests/_data/snapshots/poetry/plain_multi-constraint-deps_lock20_1.5.xml.bin +++ b/tests/_data/snapshots/poetry/plain_multi-constraint-deps_lock20_1.5.xml.bin @@ -51,6 +51,7 @@ + Your Name <you@example.com> multi-constraint-deps 0.1.0 multi-constraint depenndencies diff --git a/tests/_data/snapshots/poetry/plain_multi-constraint-deps_lock20_1.6.json.bin b/tests/_data/snapshots/poetry/plain_multi-constraint-deps_lock20_1.6.json.bin index 6a320088f..1ccf45e51 100644 --- a/tests/_data/snapshots/poetry/plain_multi-constraint-deps_lock20_1.6.json.bin +++ b/tests/_data/snapshots/poetry/plain_multi-constraint-deps_lock20_1.6.json.bin @@ -392,6 +392,13 @@ ], "metadata": { "component": { + "author": "Your Name ", + "authors": [ + { + "email": "you@example.com", + "name": "Your Name" + } + ], "bom-ref": "multi-constraint-deps", "description": "multi-constraint depenndencies", "name": "multi-constraint-deps", diff --git a/tests/_data/snapshots/poetry/plain_multi-constraint-deps_lock20_1.6.xml.bin b/tests/_data/snapshots/poetry/plain_multi-constraint-deps_lock20_1.6.xml.bin index 9c316ad3c..20b5ec500 100644 --- a/tests/_data/snapshots/poetry/plain_multi-constraint-deps_lock20_1.6.xml.bin +++ b/tests/_data/snapshots/poetry/plain_multi-constraint-deps_lock20_1.6.xml.bin @@ -51,6 +51,13 @@ + + + Your Name + you@example.com + + + Your Name <you@example.com> multi-constraint-deps 0.1.0 multi-constraint depenndencies diff --git a/tests/_data/snapshots/poetry/plain_multi-constraint-deps_lock20_1.7.json.bin b/tests/_data/snapshots/poetry/plain_multi-constraint-deps_lock20_1.7.json.bin index 536473cca..985fc5247 100644 --- a/tests/_data/snapshots/poetry/plain_multi-constraint-deps_lock20_1.7.json.bin +++ b/tests/_data/snapshots/poetry/plain_multi-constraint-deps_lock20_1.7.json.bin @@ -392,6 +392,13 @@ ], "metadata": { "component": { + "author": "Your Name ", + "authors": [ + { + "email": "you@example.com", + "name": "Your Name" + } + ], "bom-ref": "multi-constraint-deps", "description": "multi-constraint depenndencies", "name": "multi-constraint-deps", diff --git a/tests/_data/snapshots/poetry/plain_multi-constraint-deps_lock20_1.7.xml.bin b/tests/_data/snapshots/poetry/plain_multi-constraint-deps_lock20_1.7.xml.bin index b9e67230d..aa7956431 100644 --- a/tests/_data/snapshots/poetry/plain_multi-constraint-deps_lock20_1.7.xml.bin +++ b/tests/_data/snapshots/poetry/plain_multi-constraint-deps_lock20_1.7.xml.bin @@ -51,6 +51,13 @@ + + + Your Name + you@example.com + + + Your Name <you@example.com> multi-constraint-deps 0.1.0 multi-constraint depenndencies diff --git a/tests/_data/snapshots/poetry/plain_multi-constraint-deps_lock21_1.2.json.bin b/tests/_data/snapshots/poetry/plain_multi-constraint-deps_lock21_1.2.json.bin index 565c492df..c5611f0e0 100644 --- a/tests/_data/snapshots/poetry/plain_multi-constraint-deps_lock21_1.2.json.bin +++ b/tests/_data/snapshots/poetry/plain_multi-constraint-deps_lock21_1.2.json.bin @@ -234,6 +234,7 @@ ], "metadata": { "component": { + "author": "Your Name ", "bom-ref": "multi-constraint-deps", "description": "multi-constraint depenndencies", "name": "multi-constraint-deps", diff --git a/tests/_data/snapshots/poetry/plain_multi-constraint-deps_lock21_1.2.xml.bin b/tests/_data/snapshots/poetry/plain_multi-constraint-deps_lock21_1.2.xml.bin index 395e69195..8cb3ee42b 100644 --- a/tests/_data/snapshots/poetry/plain_multi-constraint-deps_lock21_1.2.xml.bin +++ b/tests/_data/snapshots/poetry/plain_multi-constraint-deps_lock21_1.2.xml.bin @@ -14,6 +14,7 @@ + Your Name <you@example.com> multi-constraint-deps 0.1.0 multi-constraint depenndencies diff --git a/tests/_data/snapshots/poetry/plain_multi-constraint-deps_lock21_1.3.json.bin b/tests/_data/snapshots/poetry/plain_multi-constraint-deps_lock21_1.3.json.bin index 3eaecbffc..ddd3e0d4e 100644 --- a/tests/_data/snapshots/poetry/plain_multi-constraint-deps_lock21_1.3.json.bin +++ b/tests/_data/snapshots/poetry/plain_multi-constraint-deps_lock21_1.3.json.bin @@ -392,6 +392,7 @@ ], "metadata": { "component": { + "author": "Your Name ", "bom-ref": "multi-constraint-deps", "description": "multi-constraint depenndencies", "name": "multi-constraint-deps", diff --git a/tests/_data/snapshots/poetry/plain_multi-constraint-deps_lock21_1.3.xml.bin b/tests/_data/snapshots/poetry/plain_multi-constraint-deps_lock21_1.3.xml.bin index 20955a0f7..9e24a6cc9 100644 --- a/tests/_data/snapshots/poetry/plain_multi-constraint-deps_lock21_1.3.xml.bin +++ b/tests/_data/snapshots/poetry/plain_multi-constraint-deps_lock21_1.3.xml.bin @@ -14,6 +14,7 @@ + Your Name <you@example.com> multi-constraint-deps 0.1.0 multi-constraint depenndencies diff --git a/tests/_data/snapshots/poetry/plain_multi-constraint-deps_lock21_1.4.json.bin b/tests/_data/snapshots/poetry/plain_multi-constraint-deps_lock21_1.4.json.bin index 1b830d515..f446e8431 100644 --- a/tests/_data/snapshots/poetry/plain_multi-constraint-deps_lock21_1.4.json.bin +++ b/tests/_data/snapshots/poetry/plain_multi-constraint-deps_lock21_1.4.json.bin @@ -392,6 +392,7 @@ ], "metadata": { "component": { + "author": "Your Name ", "bom-ref": "multi-constraint-deps", "description": "multi-constraint depenndencies", "name": "multi-constraint-deps", diff --git a/tests/_data/snapshots/poetry/plain_multi-constraint-deps_lock21_1.4.xml.bin b/tests/_data/snapshots/poetry/plain_multi-constraint-deps_lock21_1.4.xml.bin index 2b3dc396a..ca1b97c79 100644 --- a/tests/_data/snapshots/poetry/plain_multi-constraint-deps_lock21_1.4.xml.bin +++ b/tests/_data/snapshots/poetry/plain_multi-constraint-deps_lock21_1.4.xml.bin @@ -41,6 +41,7 @@ + Your Name <you@example.com> multi-constraint-deps 0.1.0 multi-constraint depenndencies diff --git a/tests/_data/snapshots/poetry/plain_multi-constraint-deps_lock21_1.5.json.bin b/tests/_data/snapshots/poetry/plain_multi-constraint-deps_lock21_1.5.json.bin index 3c147ea15..d31d52d0a 100644 --- a/tests/_data/snapshots/poetry/plain_multi-constraint-deps_lock21_1.5.json.bin +++ b/tests/_data/snapshots/poetry/plain_multi-constraint-deps_lock21_1.5.json.bin @@ -392,6 +392,7 @@ ], "metadata": { "component": { + "author": "Your Name ", "bom-ref": "multi-constraint-deps", "description": "multi-constraint depenndencies", "name": "multi-constraint-deps", diff --git a/tests/_data/snapshots/poetry/plain_multi-constraint-deps_lock21_1.5.xml.bin b/tests/_data/snapshots/poetry/plain_multi-constraint-deps_lock21_1.5.xml.bin index 1b1fcf2a1..710175412 100644 --- a/tests/_data/snapshots/poetry/plain_multi-constraint-deps_lock21_1.5.xml.bin +++ b/tests/_data/snapshots/poetry/plain_multi-constraint-deps_lock21_1.5.xml.bin @@ -51,6 +51,7 @@ + Your Name <you@example.com> multi-constraint-deps 0.1.0 multi-constraint depenndencies diff --git a/tests/_data/snapshots/poetry/plain_multi-constraint-deps_lock21_1.6.json.bin b/tests/_data/snapshots/poetry/plain_multi-constraint-deps_lock21_1.6.json.bin index 4fee4b9f8..a456f060d 100644 --- a/tests/_data/snapshots/poetry/plain_multi-constraint-deps_lock21_1.6.json.bin +++ b/tests/_data/snapshots/poetry/plain_multi-constraint-deps_lock21_1.6.json.bin @@ -392,6 +392,13 @@ ], "metadata": { "component": { + "author": "Your Name ", + "authors": [ + { + "email": "you@example.com", + "name": "Your Name" + } + ], "bom-ref": "multi-constraint-deps", "description": "multi-constraint depenndencies", "name": "multi-constraint-deps", diff --git a/tests/_data/snapshots/poetry/plain_multi-constraint-deps_lock21_1.6.xml.bin b/tests/_data/snapshots/poetry/plain_multi-constraint-deps_lock21_1.6.xml.bin index 46e91ee86..614bd5372 100644 --- a/tests/_data/snapshots/poetry/plain_multi-constraint-deps_lock21_1.6.xml.bin +++ b/tests/_data/snapshots/poetry/plain_multi-constraint-deps_lock21_1.6.xml.bin @@ -51,6 +51,13 @@ + + + Your Name + you@example.com + + + Your Name <you@example.com> multi-constraint-deps 0.1.0 multi-constraint depenndencies diff --git a/tests/_data/snapshots/poetry/plain_multi-constraint-deps_lock21_1.7.json.bin b/tests/_data/snapshots/poetry/plain_multi-constraint-deps_lock21_1.7.json.bin index a27cf74e0..3fe63fddb 100644 --- a/tests/_data/snapshots/poetry/plain_multi-constraint-deps_lock21_1.7.json.bin +++ b/tests/_data/snapshots/poetry/plain_multi-constraint-deps_lock21_1.7.json.bin @@ -392,6 +392,13 @@ ], "metadata": { "component": { + "author": "Your Name ", + "authors": [ + { + "email": "you@example.com", + "name": "Your Name" + } + ], "bom-ref": "multi-constraint-deps", "description": "multi-constraint depenndencies", "name": "multi-constraint-deps", diff --git a/tests/_data/snapshots/poetry/plain_multi-constraint-deps_lock21_1.7.xml.bin b/tests/_data/snapshots/poetry/plain_multi-constraint-deps_lock21_1.7.xml.bin index 14eab313b..379d41c00 100644 --- a/tests/_data/snapshots/poetry/plain_multi-constraint-deps_lock21_1.7.xml.bin +++ b/tests/_data/snapshots/poetry/plain_multi-constraint-deps_lock21_1.7.xml.bin @@ -51,6 +51,13 @@ + + + Your Name + you@example.com + + + Your Name <you@example.com> multi-constraint-deps 0.1.0 multi-constraint depenndencies diff --git a/tests/_data/snapshots/poetry/plain_no-deps_lock20_1.6.json.bin b/tests/_data/snapshots/poetry/plain_no-deps_lock20_1.6.json.bin index f1aa9c057..c1bab585b 100644 --- a/tests/_data/snapshots/poetry/plain_no-deps_lock20_1.6.json.bin +++ b/tests/_data/snapshots/poetry/plain_no-deps_lock20_1.6.json.bin @@ -6,6 +6,15 @@ ], "metadata": { "component": { + "authors": [ + { + "name": "My Name" + }, + { + "email": "you@example.com", + "name": "Your Name" + } + ], "bom-ref": "no-deps", "description": "packages with all meta, but no deps", "evidence": { diff --git a/tests/_data/snapshots/poetry/plain_no-deps_lock20_1.6.xml.bin b/tests/_data/snapshots/poetry/plain_no-deps_lock20_1.6.xml.bin index 73ec5ee22..bc95f4216 100644 --- a/tests/_data/snapshots/poetry/plain_no-deps_lock20_1.6.xml.bin +++ b/tests/_data/snapshots/poetry/plain_no-deps_lock20_1.6.xml.bin @@ -51,6 +51,15 @@ + + + My Name + + + Your Name + you@example.com + + no-deps 0.1.0 packages with all meta, but no deps diff --git a/tests/_data/snapshots/poetry/plain_no-deps_lock20_1.7.json.bin b/tests/_data/snapshots/poetry/plain_no-deps_lock20_1.7.json.bin index 2ad65147b..a07ea3674 100644 --- a/tests/_data/snapshots/poetry/plain_no-deps_lock20_1.7.json.bin +++ b/tests/_data/snapshots/poetry/plain_no-deps_lock20_1.7.json.bin @@ -6,6 +6,15 @@ ], "metadata": { "component": { + "authors": [ + { + "name": "My Name" + }, + { + "email": "you@example.com", + "name": "Your Name" + } + ], "bom-ref": "no-deps", "description": "packages with all meta, but no deps", "evidence": { diff --git a/tests/_data/snapshots/poetry/plain_no-deps_lock20_1.7.xml.bin b/tests/_data/snapshots/poetry/plain_no-deps_lock20_1.7.xml.bin index 1e6455d02..e2ebfd4d9 100644 --- a/tests/_data/snapshots/poetry/plain_no-deps_lock20_1.7.xml.bin +++ b/tests/_data/snapshots/poetry/plain_no-deps_lock20_1.7.xml.bin @@ -51,6 +51,15 @@ + + + My Name + + + Your Name + you@example.com + + no-deps 0.1.0 packages with all meta, but no deps diff --git a/tests/_data/snapshots/poetry/plain_no-deps_lock21_1.6.json.bin b/tests/_data/snapshots/poetry/plain_no-deps_lock21_1.6.json.bin index f1aa9c057..c1bab585b 100644 --- a/tests/_data/snapshots/poetry/plain_no-deps_lock21_1.6.json.bin +++ b/tests/_data/snapshots/poetry/plain_no-deps_lock21_1.6.json.bin @@ -6,6 +6,15 @@ ], "metadata": { "component": { + "authors": [ + { + "name": "My Name" + }, + { + "email": "you@example.com", + "name": "Your Name" + } + ], "bom-ref": "no-deps", "description": "packages with all meta, but no deps", "evidence": { diff --git a/tests/_data/snapshots/poetry/plain_no-deps_lock21_1.6.xml.bin b/tests/_data/snapshots/poetry/plain_no-deps_lock21_1.6.xml.bin index 73ec5ee22..bc95f4216 100644 --- a/tests/_data/snapshots/poetry/plain_no-deps_lock21_1.6.xml.bin +++ b/tests/_data/snapshots/poetry/plain_no-deps_lock21_1.6.xml.bin @@ -51,6 +51,15 @@ + + + My Name + + + Your Name + you@example.com + + no-deps 0.1.0 packages with all meta, but no deps diff --git a/tests/_data/snapshots/poetry/plain_no-deps_lock21_1.7.json.bin b/tests/_data/snapshots/poetry/plain_no-deps_lock21_1.7.json.bin index 2ad65147b..a07ea3674 100644 --- a/tests/_data/snapshots/poetry/plain_no-deps_lock21_1.7.json.bin +++ b/tests/_data/snapshots/poetry/plain_no-deps_lock21_1.7.json.bin @@ -6,6 +6,15 @@ ], "metadata": { "component": { + "authors": [ + { + "name": "My Name" + }, + { + "email": "you@example.com", + "name": "Your Name" + } + ], "bom-ref": "no-deps", "description": "packages with all meta, but no deps", "evidence": { diff --git a/tests/_data/snapshots/poetry/plain_no-deps_lock21_1.7.xml.bin b/tests/_data/snapshots/poetry/plain_no-deps_lock21_1.7.xml.bin index 1e6455d02..e2ebfd4d9 100644 --- a/tests/_data/snapshots/poetry/plain_no-deps_lock21_1.7.xml.bin +++ b/tests/_data/snapshots/poetry/plain_no-deps_lock21_1.7.xml.bin @@ -51,6 +51,15 @@ + + + My Name + + + Your Name + you@example.com + + no-deps 0.1.0 packages with all meta, but no deps diff --git a/tests/_data/snapshots/poetry/plain_normalize-packagename_lock10_1.2.json.bin b/tests/_data/snapshots/poetry/plain_normalize-packagename_lock10_1.2.json.bin index 3a07742e9..a43045195 100644 --- a/tests/_data/snapshots/poetry/plain_normalize-packagename_lock10_1.2.json.bin +++ b/tests/_data/snapshots/poetry/plain_normalize-packagename_lock10_1.2.json.bin @@ -68,6 +68,7 @@ ], "metadata": { "component": { + "author": "Your Name ", "bom-ref": "normalize-packagename", "description": "packages with non-normalized names", "name": "normalize-packagename", diff --git a/tests/_data/snapshots/poetry/plain_normalize-packagename_lock10_1.2.xml.bin b/tests/_data/snapshots/poetry/plain_normalize-packagename_lock10_1.2.xml.bin index 4b52acf84..e40422e26 100644 --- a/tests/_data/snapshots/poetry/plain_normalize-packagename_lock10_1.2.xml.bin +++ b/tests/_data/snapshots/poetry/plain_normalize-packagename_lock10_1.2.xml.bin @@ -14,6 +14,7 @@ + Your Name <you@example.com> normalize-packagename 0.1.0 packages with non-normalized names diff --git a/tests/_data/snapshots/poetry/plain_normalize-packagename_lock10_1.3.json.bin b/tests/_data/snapshots/poetry/plain_normalize-packagename_lock10_1.3.json.bin index ef79ab2e1..f13821f64 100644 --- a/tests/_data/snapshots/poetry/plain_normalize-packagename_lock10_1.3.json.bin +++ b/tests/_data/snapshots/poetry/plain_normalize-packagename_lock10_1.3.json.bin @@ -100,6 +100,7 @@ ], "metadata": { "component": { + "author": "Your Name ", "bom-ref": "normalize-packagename", "description": "packages with non-normalized names", "name": "normalize-packagename", diff --git a/tests/_data/snapshots/poetry/plain_normalize-packagename_lock10_1.3.xml.bin b/tests/_data/snapshots/poetry/plain_normalize-packagename_lock10_1.3.xml.bin index cb58a3f1e..16778faef 100644 --- a/tests/_data/snapshots/poetry/plain_normalize-packagename_lock10_1.3.xml.bin +++ b/tests/_data/snapshots/poetry/plain_normalize-packagename_lock10_1.3.xml.bin @@ -14,6 +14,7 @@ + Your Name <you@example.com> normalize-packagename 0.1.0 packages with non-normalized names diff --git a/tests/_data/snapshots/poetry/plain_normalize-packagename_lock10_1.4.json.bin b/tests/_data/snapshots/poetry/plain_normalize-packagename_lock10_1.4.json.bin index 5c1037cf5..7d48340bf 100644 --- a/tests/_data/snapshots/poetry/plain_normalize-packagename_lock10_1.4.json.bin +++ b/tests/_data/snapshots/poetry/plain_normalize-packagename_lock10_1.4.json.bin @@ -100,6 +100,7 @@ ], "metadata": { "component": { + "author": "Your Name ", "bom-ref": "normalize-packagename", "description": "packages with non-normalized names", "name": "normalize-packagename", diff --git a/tests/_data/snapshots/poetry/plain_normalize-packagename_lock10_1.4.xml.bin b/tests/_data/snapshots/poetry/plain_normalize-packagename_lock10_1.4.xml.bin index 0a2f473a7..46db81b08 100644 --- a/tests/_data/snapshots/poetry/plain_normalize-packagename_lock10_1.4.xml.bin +++ b/tests/_data/snapshots/poetry/plain_normalize-packagename_lock10_1.4.xml.bin @@ -41,6 +41,7 @@ + Your Name <you@example.com> normalize-packagename 0.1.0 packages with non-normalized names diff --git a/tests/_data/snapshots/poetry/plain_normalize-packagename_lock10_1.5.json.bin b/tests/_data/snapshots/poetry/plain_normalize-packagename_lock10_1.5.json.bin index 8235ea2d0..562765621 100644 --- a/tests/_data/snapshots/poetry/plain_normalize-packagename_lock10_1.5.json.bin +++ b/tests/_data/snapshots/poetry/plain_normalize-packagename_lock10_1.5.json.bin @@ -100,6 +100,7 @@ ], "metadata": { "component": { + "author": "Your Name ", "bom-ref": "normalize-packagename", "description": "packages with non-normalized names", "name": "normalize-packagename", diff --git a/tests/_data/snapshots/poetry/plain_normalize-packagename_lock10_1.5.xml.bin b/tests/_data/snapshots/poetry/plain_normalize-packagename_lock10_1.5.xml.bin index d4b197ca0..02ff93547 100644 --- a/tests/_data/snapshots/poetry/plain_normalize-packagename_lock10_1.5.xml.bin +++ b/tests/_data/snapshots/poetry/plain_normalize-packagename_lock10_1.5.xml.bin @@ -51,6 +51,7 @@ + Your Name <you@example.com> normalize-packagename 0.1.0 packages with non-normalized names diff --git a/tests/_data/snapshots/poetry/plain_normalize-packagename_lock10_1.6.json.bin b/tests/_data/snapshots/poetry/plain_normalize-packagename_lock10_1.6.json.bin index 6e2cec257..c862d05e9 100644 --- a/tests/_data/snapshots/poetry/plain_normalize-packagename_lock10_1.6.json.bin +++ b/tests/_data/snapshots/poetry/plain_normalize-packagename_lock10_1.6.json.bin @@ -100,6 +100,13 @@ ], "metadata": { "component": { + "author": "Your Name ", + "authors": [ + { + "email": "you@example.com", + "name": "Your Name" + } + ], "bom-ref": "normalize-packagename", "description": "packages with non-normalized names", "name": "normalize-packagename", diff --git a/tests/_data/snapshots/poetry/plain_normalize-packagename_lock10_1.6.xml.bin b/tests/_data/snapshots/poetry/plain_normalize-packagename_lock10_1.6.xml.bin index e0fc121b6..bef0f167a 100644 --- a/tests/_data/snapshots/poetry/plain_normalize-packagename_lock10_1.6.xml.bin +++ b/tests/_data/snapshots/poetry/plain_normalize-packagename_lock10_1.6.xml.bin @@ -51,6 +51,13 @@ + + + Your Name + you@example.com + + + Your Name <you@example.com> normalize-packagename 0.1.0 packages with non-normalized names diff --git a/tests/_data/snapshots/poetry/plain_normalize-packagename_lock10_1.7.json.bin b/tests/_data/snapshots/poetry/plain_normalize-packagename_lock10_1.7.json.bin index 0a18ce1ab..4bfaac8a9 100644 --- a/tests/_data/snapshots/poetry/plain_normalize-packagename_lock10_1.7.json.bin +++ b/tests/_data/snapshots/poetry/plain_normalize-packagename_lock10_1.7.json.bin @@ -100,6 +100,13 @@ ], "metadata": { "component": { + "author": "Your Name ", + "authors": [ + { + "email": "you@example.com", + "name": "Your Name" + } + ], "bom-ref": "normalize-packagename", "description": "packages with non-normalized names", "name": "normalize-packagename", diff --git a/tests/_data/snapshots/poetry/plain_normalize-packagename_lock10_1.7.xml.bin b/tests/_data/snapshots/poetry/plain_normalize-packagename_lock10_1.7.xml.bin index 14ce589bc..f26d9f4a9 100644 --- a/tests/_data/snapshots/poetry/plain_normalize-packagename_lock10_1.7.xml.bin +++ b/tests/_data/snapshots/poetry/plain_normalize-packagename_lock10_1.7.xml.bin @@ -51,6 +51,13 @@ + + + Your Name + you@example.com + + + Your Name <you@example.com> normalize-packagename 0.1.0 packages with non-normalized names diff --git a/tests/_data/snapshots/poetry/plain_normalize-packagename_lock20_1.2.json.bin b/tests/_data/snapshots/poetry/plain_normalize-packagename_lock20_1.2.json.bin index b6eb6a26d..8bac4677b 100644 --- a/tests/_data/snapshots/poetry/plain_normalize-packagename_lock20_1.2.json.bin +++ b/tests/_data/snapshots/poetry/plain_normalize-packagename_lock20_1.2.json.bin @@ -327,6 +327,7 @@ ], "metadata": { "component": { + "author": "Your Name ", "bom-ref": "normalize-packagename", "description": "packages with non-normalized names", "name": "normalize-packagename", diff --git a/tests/_data/snapshots/poetry/plain_normalize-packagename_lock20_1.2.xml.bin b/tests/_data/snapshots/poetry/plain_normalize-packagename_lock20_1.2.xml.bin index ac18ca14d..3b040cf70 100644 --- a/tests/_data/snapshots/poetry/plain_normalize-packagename_lock20_1.2.xml.bin +++ b/tests/_data/snapshots/poetry/plain_normalize-packagename_lock20_1.2.xml.bin @@ -14,6 +14,7 @@ + Your Name <you@example.com> normalize-packagename 0.1.0 packages with non-normalized names diff --git a/tests/_data/snapshots/poetry/plain_normalize-packagename_lock20_1.3.json.bin b/tests/_data/snapshots/poetry/plain_normalize-packagename_lock20_1.3.json.bin index a456e88bd..22ff37e96 100644 --- a/tests/_data/snapshots/poetry/plain_normalize-packagename_lock20_1.3.json.bin +++ b/tests/_data/snapshots/poetry/plain_normalize-packagename_lock20_1.3.json.bin @@ -661,6 +661,7 @@ ], "metadata": { "component": { + "author": "Your Name ", "bom-ref": "normalize-packagename", "description": "packages with non-normalized names", "name": "normalize-packagename", diff --git a/tests/_data/snapshots/poetry/plain_normalize-packagename_lock20_1.3.xml.bin b/tests/_data/snapshots/poetry/plain_normalize-packagename_lock20_1.3.xml.bin index 1fc918cb9..40ee0e385 100644 --- a/tests/_data/snapshots/poetry/plain_normalize-packagename_lock20_1.3.xml.bin +++ b/tests/_data/snapshots/poetry/plain_normalize-packagename_lock20_1.3.xml.bin @@ -14,6 +14,7 @@ + Your Name <you@example.com> normalize-packagename 0.1.0 packages with non-normalized names diff --git a/tests/_data/snapshots/poetry/plain_normalize-packagename_lock20_1.4.json.bin b/tests/_data/snapshots/poetry/plain_normalize-packagename_lock20_1.4.json.bin index 206e5964c..ea7e32181 100644 --- a/tests/_data/snapshots/poetry/plain_normalize-packagename_lock20_1.4.json.bin +++ b/tests/_data/snapshots/poetry/plain_normalize-packagename_lock20_1.4.json.bin @@ -661,6 +661,7 @@ ], "metadata": { "component": { + "author": "Your Name ", "bom-ref": "normalize-packagename", "description": "packages with non-normalized names", "name": "normalize-packagename", diff --git a/tests/_data/snapshots/poetry/plain_normalize-packagename_lock20_1.4.xml.bin b/tests/_data/snapshots/poetry/plain_normalize-packagename_lock20_1.4.xml.bin index c56a154e6..c643e500b 100644 --- a/tests/_data/snapshots/poetry/plain_normalize-packagename_lock20_1.4.xml.bin +++ b/tests/_data/snapshots/poetry/plain_normalize-packagename_lock20_1.4.xml.bin @@ -41,6 +41,7 @@ + Your Name <you@example.com> normalize-packagename 0.1.0 packages with non-normalized names diff --git a/tests/_data/snapshots/poetry/plain_normalize-packagename_lock20_1.5.json.bin b/tests/_data/snapshots/poetry/plain_normalize-packagename_lock20_1.5.json.bin index ab670f36c..0e5fa01d8 100644 --- a/tests/_data/snapshots/poetry/plain_normalize-packagename_lock20_1.5.json.bin +++ b/tests/_data/snapshots/poetry/plain_normalize-packagename_lock20_1.5.json.bin @@ -661,6 +661,7 @@ ], "metadata": { "component": { + "author": "Your Name ", "bom-ref": "normalize-packagename", "description": "packages with non-normalized names", "name": "normalize-packagename", diff --git a/tests/_data/snapshots/poetry/plain_normalize-packagename_lock20_1.5.xml.bin b/tests/_data/snapshots/poetry/plain_normalize-packagename_lock20_1.5.xml.bin index 1e9ee2610..a032c9c4e 100644 --- a/tests/_data/snapshots/poetry/plain_normalize-packagename_lock20_1.5.xml.bin +++ b/tests/_data/snapshots/poetry/plain_normalize-packagename_lock20_1.5.xml.bin @@ -51,6 +51,7 @@ + Your Name <you@example.com> normalize-packagename 0.1.0 packages with non-normalized names diff --git a/tests/_data/snapshots/poetry/plain_normalize-packagename_lock20_1.6.json.bin b/tests/_data/snapshots/poetry/plain_normalize-packagename_lock20_1.6.json.bin index 67bcffea9..cbe514c85 100644 --- a/tests/_data/snapshots/poetry/plain_normalize-packagename_lock20_1.6.json.bin +++ b/tests/_data/snapshots/poetry/plain_normalize-packagename_lock20_1.6.json.bin @@ -661,6 +661,13 @@ ], "metadata": { "component": { + "author": "Your Name ", + "authors": [ + { + "email": "you@example.com", + "name": "Your Name" + } + ], "bom-ref": "normalize-packagename", "description": "packages with non-normalized names", "name": "normalize-packagename", diff --git a/tests/_data/snapshots/poetry/plain_normalize-packagename_lock20_1.6.xml.bin b/tests/_data/snapshots/poetry/plain_normalize-packagename_lock20_1.6.xml.bin index 52dc5852e..76520fbf5 100644 --- a/tests/_data/snapshots/poetry/plain_normalize-packagename_lock20_1.6.xml.bin +++ b/tests/_data/snapshots/poetry/plain_normalize-packagename_lock20_1.6.xml.bin @@ -51,6 +51,13 @@ + + + Your Name + you@example.com + + + Your Name <you@example.com> normalize-packagename 0.1.0 packages with non-normalized names diff --git a/tests/_data/snapshots/poetry/plain_normalize-packagename_lock20_1.7.json.bin b/tests/_data/snapshots/poetry/plain_normalize-packagename_lock20_1.7.json.bin index 3547ef2d0..f20fe76b6 100644 --- a/tests/_data/snapshots/poetry/plain_normalize-packagename_lock20_1.7.json.bin +++ b/tests/_data/snapshots/poetry/plain_normalize-packagename_lock20_1.7.json.bin @@ -661,6 +661,13 @@ ], "metadata": { "component": { + "author": "Your Name ", + "authors": [ + { + "email": "you@example.com", + "name": "Your Name" + } + ], "bom-ref": "normalize-packagename", "description": "packages with non-normalized names", "name": "normalize-packagename", diff --git a/tests/_data/snapshots/poetry/plain_normalize-packagename_lock20_1.7.xml.bin b/tests/_data/snapshots/poetry/plain_normalize-packagename_lock20_1.7.xml.bin index 669bbce9c..d9dd10e18 100644 --- a/tests/_data/snapshots/poetry/plain_normalize-packagename_lock20_1.7.xml.bin +++ b/tests/_data/snapshots/poetry/plain_normalize-packagename_lock20_1.7.xml.bin @@ -51,6 +51,13 @@ + + + Your Name + you@example.com + + + Your Name <you@example.com> normalize-packagename 0.1.0 packages with non-normalized names diff --git a/tests/_data/snapshots/poetry/plain_normalize-packagename_lock21_1.2.json.bin b/tests/_data/snapshots/poetry/plain_normalize-packagename_lock21_1.2.json.bin index da687e13f..937edf67b 100644 --- a/tests/_data/snapshots/poetry/plain_normalize-packagename_lock21_1.2.json.bin +++ b/tests/_data/snapshots/poetry/plain_normalize-packagename_lock21_1.2.json.bin @@ -327,6 +327,7 @@ ], "metadata": { "component": { + "author": "Your Name ", "bom-ref": "normalize-packagename", "description": "packages with non-normalized names", "name": "normalize-packagename", diff --git a/tests/_data/snapshots/poetry/plain_normalize-packagename_lock21_1.2.xml.bin b/tests/_data/snapshots/poetry/plain_normalize-packagename_lock21_1.2.xml.bin index 84b8b783f..3e866e18a 100644 --- a/tests/_data/snapshots/poetry/plain_normalize-packagename_lock21_1.2.xml.bin +++ b/tests/_data/snapshots/poetry/plain_normalize-packagename_lock21_1.2.xml.bin @@ -14,6 +14,7 @@ + Your Name <you@example.com> normalize-packagename 0.1.0 packages with non-normalized names diff --git a/tests/_data/snapshots/poetry/plain_normalize-packagename_lock21_1.3.json.bin b/tests/_data/snapshots/poetry/plain_normalize-packagename_lock21_1.3.json.bin index c19eacbcb..35f94ae47 100644 --- a/tests/_data/snapshots/poetry/plain_normalize-packagename_lock21_1.3.json.bin +++ b/tests/_data/snapshots/poetry/plain_normalize-packagename_lock21_1.3.json.bin @@ -661,6 +661,7 @@ ], "metadata": { "component": { + "author": "Your Name ", "bom-ref": "normalize-packagename", "description": "packages with non-normalized names", "name": "normalize-packagename", diff --git a/tests/_data/snapshots/poetry/plain_normalize-packagename_lock21_1.3.xml.bin b/tests/_data/snapshots/poetry/plain_normalize-packagename_lock21_1.3.xml.bin index ce9f530bb..8fd47827e 100644 --- a/tests/_data/snapshots/poetry/plain_normalize-packagename_lock21_1.3.xml.bin +++ b/tests/_data/snapshots/poetry/plain_normalize-packagename_lock21_1.3.xml.bin @@ -14,6 +14,7 @@ + Your Name <you@example.com> normalize-packagename 0.1.0 packages with non-normalized names diff --git a/tests/_data/snapshots/poetry/plain_normalize-packagename_lock21_1.4.json.bin b/tests/_data/snapshots/poetry/plain_normalize-packagename_lock21_1.4.json.bin index e214b14f2..d579cab3e 100644 --- a/tests/_data/snapshots/poetry/plain_normalize-packagename_lock21_1.4.json.bin +++ b/tests/_data/snapshots/poetry/plain_normalize-packagename_lock21_1.4.json.bin @@ -661,6 +661,7 @@ ], "metadata": { "component": { + "author": "Your Name ", "bom-ref": "normalize-packagename", "description": "packages with non-normalized names", "name": "normalize-packagename", diff --git a/tests/_data/snapshots/poetry/plain_normalize-packagename_lock21_1.4.xml.bin b/tests/_data/snapshots/poetry/plain_normalize-packagename_lock21_1.4.xml.bin index 8dd6d0b6f..77bb8237f 100644 --- a/tests/_data/snapshots/poetry/plain_normalize-packagename_lock21_1.4.xml.bin +++ b/tests/_data/snapshots/poetry/plain_normalize-packagename_lock21_1.4.xml.bin @@ -41,6 +41,7 @@ + Your Name <you@example.com> normalize-packagename 0.1.0 packages with non-normalized names diff --git a/tests/_data/snapshots/poetry/plain_normalize-packagename_lock21_1.5.json.bin b/tests/_data/snapshots/poetry/plain_normalize-packagename_lock21_1.5.json.bin index 093192191..997295674 100644 --- a/tests/_data/snapshots/poetry/plain_normalize-packagename_lock21_1.5.json.bin +++ b/tests/_data/snapshots/poetry/plain_normalize-packagename_lock21_1.5.json.bin @@ -661,6 +661,7 @@ ], "metadata": { "component": { + "author": "Your Name ", "bom-ref": "normalize-packagename", "description": "packages with non-normalized names", "name": "normalize-packagename", diff --git a/tests/_data/snapshots/poetry/plain_normalize-packagename_lock21_1.5.xml.bin b/tests/_data/snapshots/poetry/plain_normalize-packagename_lock21_1.5.xml.bin index 0049cbf3b..cb6c79d62 100644 --- a/tests/_data/snapshots/poetry/plain_normalize-packagename_lock21_1.5.xml.bin +++ b/tests/_data/snapshots/poetry/plain_normalize-packagename_lock21_1.5.xml.bin @@ -51,6 +51,7 @@ + Your Name <you@example.com> normalize-packagename 0.1.0 packages with non-normalized names diff --git a/tests/_data/snapshots/poetry/plain_normalize-packagename_lock21_1.6.json.bin b/tests/_data/snapshots/poetry/plain_normalize-packagename_lock21_1.6.json.bin index c2ec6c18d..3bd6e706a 100644 --- a/tests/_data/snapshots/poetry/plain_normalize-packagename_lock21_1.6.json.bin +++ b/tests/_data/snapshots/poetry/plain_normalize-packagename_lock21_1.6.json.bin @@ -661,6 +661,13 @@ ], "metadata": { "component": { + "author": "Your Name ", + "authors": [ + { + "email": "you@example.com", + "name": "Your Name" + } + ], "bom-ref": "normalize-packagename", "description": "packages with non-normalized names", "name": "normalize-packagename", diff --git a/tests/_data/snapshots/poetry/plain_normalize-packagename_lock21_1.6.xml.bin b/tests/_data/snapshots/poetry/plain_normalize-packagename_lock21_1.6.xml.bin index 3fe9cf268..cdc5c7146 100644 --- a/tests/_data/snapshots/poetry/plain_normalize-packagename_lock21_1.6.xml.bin +++ b/tests/_data/snapshots/poetry/plain_normalize-packagename_lock21_1.6.xml.bin @@ -51,6 +51,13 @@ + + + Your Name + you@example.com + + + Your Name <you@example.com> normalize-packagename 0.1.0 packages with non-normalized names diff --git a/tests/_data/snapshots/poetry/plain_normalize-packagename_lock21_1.7.json.bin b/tests/_data/snapshots/poetry/plain_normalize-packagename_lock21_1.7.json.bin index a3b2c5ab6..0506f86d5 100644 --- a/tests/_data/snapshots/poetry/plain_normalize-packagename_lock21_1.7.json.bin +++ b/tests/_data/snapshots/poetry/plain_normalize-packagename_lock21_1.7.json.bin @@ -661,6 +661,13 @@ ], "metadata": { "component": { + "author": "Your Name ", + "authors": [ + { + "email": "you@example.com", + "name": "Your Name" + } + ], "bom-ref": "normalize-packagename", "description": "packages with non-normalized names", "name": "normalize-packagename", diff --git a/tests/_data/snapshots/poetry/plain_normalize-packagename_lock21_1.7.xml.bin b/tests/_data/snapshots/poetry/plain_normalize-packagename_lock21_1.7.xml.bin index 12891b5e8..efc949e83 100644 --- a/tests/_data/snapshots/poetry/plain_normalize-packagename_lock21_1.7.xml.bin +++ b/tests/_data/snapshots/poetry/plain_normalize-packagename_lock21_1.7.xml.bin @@ -51,6 +51,13 @@ + + + Your Name + you@example.com + + + Your Name <you@example.com> normalize-packagename 0.1.0 packages with non-normalized names diff --git a/tests/_data/snapshots/poetry/plain_private-packges_lock10_1.2.json.bin b/tests/_data/snapshots/poetry/plain_private-packges_lock10_1.2.json.bin index 658c3f0f4..c30840f0b 100644 --- a/tests/_data/snapshots/poetry/plain_private-packges_lock10_1.2.json.bin +++ b/tests/_data/snapshots/poetry/plain_private-packges_lock10_1.2.json.bin @@ -77,6 +77,7 @@ ], "metadata": { "component": { + "author": "Your Name ", "bom-ref": "private-packges", "description": "packages from aternative package repositories", "name": "private-packges", diff --git a/tests/_data/snapshots/poetry/plain_private-packges_lock10_1.2.xml.bin b/tests/_data/snapshots/poetry/plain_private-packges_lock10_1.2.xml.bin index fda8b6e4c..2e4480be0 100644 --- a/tests/_data/snapshots/poetry/plain_private-packges_lock10_1.2.xml.bin +++ b/tests/_data/snapshots/poetry/plain_private-packges_lock10_1.2.xml.bin @@ -14,6 +14,7 @@ + Your Name <you@example.com> private-packges 0.1.0 packages from aternative package repositories diff --git a/tests/_data/snapshots/poetry/plain_private-packges_lock10_1.3.json.bin b/tests/_data/snapshots/poetry/plain_private-packges_lock10_1.3.json.bin index a9f5274a8..b7edd03ce 100644 --- a/tests/_data/snapshots/poetry/plain_private-packges_lock10_1.3.json.bin +++ b/tests/_data/snapshots/poetry/plain_private-packges_lock10_1.3.json.bin @@ -119,6 +119,7 @@ ], "metadata": { "component": { + "author": "Your Name ", "bom-ref": "private-packges", "description": "packages from aternative package repositories", "name": "private-packges", diff --git a/tests/_data/snapshots/poetry/plain_private-packges_lock10_1.3.xml.bin b/tests/_data/snapshots/poetry/plain_private-packges_lock10_1.3.xml.bin index 5ebb82170..53a50ddbf 100644 --- a/tests/_data/snapshots/poetry/plain_private-packges_lock10_1.3.xml.bin +++ b/tests/_data/snapshots/poetry/plain_private-packges_lock10_1.3.xml.bin @@ -14,6 +14,7 @@ + Your Name <you@example.com> private-packges 0.1.0 packages from aternative package repositories diff --git a/tests/_data/snapshots/poetry/plain_private-packges_lock10_1.4.json.bin b/tests/_data/snapshots/poetry/plain_private-packges_lock10_1.4.json.bin index 2f6013411..ccdda743d 100644 --- a/tests/_data/snapshots/poetry/plain_private-packges_lock10_1.4.json.bin +++ b/tests/_data/snapshots/poetry/plain_private-packges_lock10_1.4.json.bin @@ -119,6 +119,7 @@ ], "metadata": { "component": { + "author": "Your Name ", "bom-ref": "private-packges", "description": "packages from aternative package repositories", "name": "private-packges", diff --git a/tests/_data/snapshots/poetry/plain_private-packges_lock10_1.4.xml.bin b/tests/_data/snapshots/poetry/plain_private-packges_lock10_1.4.xml.bin index 65636e315..697245816 100644 --- a/tests/_data/snapshots/poetry/plain_private-packges_lock10_1.4.xml.bin +++ b/tests/_data/snapshots/poetry/plain_private-packges_lock10_1.4.xml.bin @@ -41,6 +41,7 @@ + Your Name <you@example.com> private-packges 0.1.0 packages from aternative package repositories diff --git a/tests/_data/snapshots/poetry/plain_private-packges_lock10_1.5.json.bin b/tests/_data/snapshots/poetry/plain_private-packges_lock10_1.5.json.bin index 49da60f8e..5f99faf5c 100644 --- a/tests/_data/snapshots/poetry/plain_private-packges_lock10_1.5.json.bin +++ b/tests/_data/snapshots/poetry/plain_private-packges_lock10_1.5.json.bin @@ -119,6 +119,7 @@ ], "metadata": { "component": { + "author": "Your Name ", "bom-ref": "private-packges", "description": "packages from aternative package repositories", "name": "private-packges", diff --git a/tests/_data/snapshots/poetry/plain_private-packges_lock10_1.5.xml.bin b/tests/_data/snapshots/poetry/plain_private-packges_lock10_1.5.xml.bin index 3d1a757e7..8939c4000 100644 --- a/tests/_data/snapshots/poetry/plain_private-packges_lock10_1.5.xml.bin +++ b/tests/_data/snapshots/poetry/plain_private-packges_lock10_1.5.xml.bin @@ -51,6 +51,7 @@ + Your Name <you@example.com> private-packges 0.1.0 packages from aternative package repositories diff --git a/tests/_data/snapshots/poetry/plain_private-packges_lock10_1.6.json.bin b/tests/_data/snapshots/poetry/plain_private-packges_lock10_1.6.json.bin index 532bbcab2..f93ff2166 100644 --- a/tests/_data/snapshots/poetry/plain_private-packges_lock10_1.6.json.bin +++ b/tests/_data/snapshots/poetry/plain_private-packges_lock10_1.6.json.bin @@ -119,6 +119,13 @@ ], "metadata": { "component": { + "author": "Your Name ", + "authors": [ + { + "email": "you@example.com", + "name": "Your Name" + } + ], "bom-ref": "private-packges", "description": "packages from aternative package repositories", "name": "private-packges", diff --git a/tests/_data/snapshots/poetry/plain_private-packges_lock10_1.6.xml.bin b/tests/_data/snapshots/poetry/plain_private-packges_lock10_1.6.xml.bin index 51a4a7fdd..45da6362b 100644 --- a/tests/_data/snapshots/poetry/plain_private-packges_lock10_1.6.xml.bin +++ b/tests/_data/snapshots/poetry/plain_private-packges_lock10_1.6.xml.bin @@ -51,6 +51,13 @@ + + + Your Name + you@example.com + + + Your Name <you@example.com> private-packges 0.1.0 packages from aternative package repositories diff --git a/tests/_data/snapshots/poetry/plain_private-packges_lock10_1.7.json.bin b/tests/_data/snapshots/poetry/plain_private-packges_lock10_1.7.json.bin index 3425c065c..c781bfe83 100644 --- a/tests/_data/snapshots/poetry/plain_private-packges_lock10_1.7.json.bin +++ b/tests/_data/snapshots/poetry/plain_private-packges_lock10_1.7.json.bin @@ -119,6 +119,13 @@ ], "metadata": { "component": { + "author": "Your Name ", + "authors": [ + { + "email": "you@example.com", + "name": "Your Name" + } + ], "bom-ref": "private-packges", "description": "packages from aternative package repositories", "name": "private-packges", diff --git a/tests/_data/snapshots/poetry/plain_private-packges_lock10_1.7.xml.bin b/tests/_data/snapshots/poetry/plain_private-packges_lock10_1.7.xml.bin index 6278542df..006115e17 100644 --- a/tests/_data/snapshots/poetry/plain_private-packges_lock10_1.7.xml.bin +++ b/tests/_data/snapshots/poetry/plain_private-packges_lock10_1.7.xml.bin @@ -51,6 +51,13 @@ + + + Your Name + you@example.com + + + Your Name <you@example.com> private-packges 0.1.0 packages from aternative package repositories diff --git a/tests/_data/snapshots/poetry/plain_private-packges_lock11_1.2.json.bin b/tests/_data/snapshots/poetry/plain_private-packges_lock11_1.2.json.bin index 658c3f0f4..c30840f0b 100644 --- a/tests/_data/snapshots/poetry/plain_private-packges_lock11_1.2.json.bin +++ b/tests/_data/snapshots/poetry/plain_private-packges_lock11_1.2.json.bin @@ -77,6 +77,7 @@ ], "metadata": { "component": { + "author": "Your Name ", "bom-ref": "private-packges", "description": "packages from aternative package repositories", "name": "private-packges", diff --git a/tests/_data/snapshots/poetry/plain_private-packges_lock11_1.2.xml.bin b/tests/_data/snapshots/poetry/plain_private-packges_lock11_1.2.xml.bin index fda8b6e4c..2e4480be0 100644 --- a/tests/_data/snapshots/poetry/plain_private-packges_lock11_1.2.xml.bin +++ b/tests/_data/snapshots/poetry/plain_private-packges_lock11_1.2.xml.bin @@ -14,6 +14,7 @@ + Your Name <you@example.com> private-packges 0.1.0 packages from aternative package repositories diff --git a/tests/_data/snapshots/poetry/plain_private-packges_lock11_1.3.json.bin b/tests/_data/snapshots/poetry/plain_private-packges_lock11_1.3.json.bin index a9f5274a8..b7edd03ce 100644 --- a/tests/_data/snapshots/poetry/plain_private-packges_lock11_1.3.json.bin +++ b/tests/_data/snapshots/poetry/plain_private-packges_lock11_1.3.json.bin @@ -119,6 +119,7 @@ ], "metadata": { "component": { + "author": "Your Name ", "bom-ref": "private-packges", "description": "packages from aternative package repositories", "name": "private-packges", diff --git a/tests/_data/snapshots/poetry/plain_private-packges_lock11_1.3.xml.bin b/tests/_data/snapshots/poetry/plain_private-packges_lock11_1.3.xml.bin index 5ebb82170..53a50ddbf 100644 --- a/tests/_data/snapshots/poetry/plain_private-packges_lock11_1.3.xml.bin +++ b/tests/_data/snapshots/poetry/plain_private-packges_lock11_1.3.xml.bin @@ -14,6 +14,7 @@ + Your Name <you@example.com> private-packges 0.1.0 packages from aternative package repositories diff --git a/tests/_data/snapshots/poetry/plain_private-packges_lock11_1.4.json.bin b/tests/_data/snapshots/poetry/plain_private-packges_lock11_1.4.json.bin index 2f6013411..ccdda743d 100644 --- a/tests/_data/snapshots/poetry/plain_private-packges_lock11_1.4.json.bin +++ b/tests/_data/snapshots/poetry/plain_private-packges_lock11_1.4.json.bin @@ -119,6 +119,7 @@ ], "metadata": { "component": { + "author": "Your Name ", "bom-ref": "private-packges", "description": "packages from aternative package repositories", "name": "private-packges", diff --git a/tests/_data/snapshots/poetry/plain_private-packges_lock11_1.4.xml.bin b/tests/_data/snapshots/poetry/plain_private-packges_lock11_1.4.xml.bin index 65636e315..697245816 100644 --- a/tests/_data/snapshots/poetry/plain_private-packges_lock11_1.4.xml.bin +++ b/tests/_data/snapshots/poetry/plain_private-packges_lock11_1.4.xml.bin @@ -41,6 +41,7 @@ + Your Name <you@example.com> private-packges 0.1.0 packages from aternative package repositories diff --git a/tests/_data/snapshots/poetry/plain_private-packges_lock11_1.5.json.bin b/tests/_data/snapshots/poetry/plain_private-packges_lock11_1.5.json.bin index 49da60f8e..5f99faf5c 100644 --- a/tests/_data/snapshots/poetry/plain_private-packges_lock11_1.5.json.bin +++ b/tests/_data/snapshots/poetry/plain_private-packges_lock11_1.5.json.bin @@ -119,6 +119,7 @@ ], "metadata": { "component": { + "author": "Your Name ", "bom-ref": "private-packges", "description": "packages from aternative package repositories", "name": "private-packges", diff --git a/tests/_data/snapshots/poetry/plain_private-packges_lock11_1.5.xml.bin b/tests/_data/snapshots/poetry/plain_private-packges_lock11_1.5.xml.bin index 3d1a757e7..8939c4000 100644 --- a/tests/_data/snapshots/poetry/plain_private-packges_lock11_1.5.xml.bin +++ b/tests/_data/snapshots/poetry/plain_private-packges_lock11_1.5.xml.bin @@ -51,6 +51,7 @@ + Your Name <you@example.com> private-packges 0.1.0 packages from aternative package repositories diff --git a/tests/_data/snapshots/poetry/plain_private-packges_lock11_1.6.json.bin b/tests/_data/snapshots/poetry/plain_private-packges_lock11_1.6.json.bin index 532bbcab2..f93ff2166 100644 --- a/tests/_data/snapshots/poetry/plain_private-packges_lock11_1.6.json.bin +++ b/tests/_data/snapshots/poetry/plain_private-packges_lock11_1.6.json.bin @@ -119,6 +119,13 @@ ], "metadata": { "component": { + "author": "Your Name ", + "authors": [ + { + "email": "you@example.com", + "name": "Your Name" + } + ], "bom-ref": "private-packges", "description": "packages from aternative package repositories", "name": "private-packges", diff --git a/tests/_data/snapshots/poetry/plain_private-packges_lock11_1.6.xml.bin b/tests/_data/snapshots/poetry/plain_private-packges_lock11_1.6.xml.bin index 51a4a7fdd..45da6362b 100644 --- a/tests/_data/snapshots/poetry/plain_private-packges_lock11_1.6.xml.bin +++ b/tests/_data/snapshots/poetry/plain_private-packges_lock11_1.6.xml.bin @@ -51,6 +51,13 @@ + + + Your Name + you@example.com + + + Your Name <you@example.com> private-packges 0.1.0 packages from aternative package repositories diff --git a/tests/_data/snapshots/poetry/plain_private-packges_lock11_1.7.json.bin b/tests/_data/snapshots/poetry/plain_private-packges_lock11_1.7.json.bin index 3425c065c..c781bfe83 100644 --- a/tests/_data/snapshots/poetry/plain_private-packges_lock11_1.7.json.bin +++ b/tests/_data/snapshots/poetry/plain_private-packges_lock11_1.7.json.bin @@ -119,6 +119,13 @@ ], "metadata": { "component": { + "author": "Your Name ", + "authors": [ + { + "email": "you@example.com", + "name": "Your Name" + } + ], "bom-ref": "private-packges", "description": "packages from aternative package repositories", "name": "private-packges", diff --git a/tests/_data/snapshots/poetry/plain_private-packges_lock11_1.7.xml.bin b/tests/_data/snapshots/poetry/plain_private-packges_lock11_1.7.xml.bin index 6278542df..006115e17 100644 --- a/tests/_data/snapshots/poetry/plain_private-packges_lock11_1.7.xml.bin +++ b/tests/_data/snapshots/poetry/plain_private-packges_lock11_1.7.xml.bin @@ -51,6 +51,13 @@ + + + Your Name + you@example.com + + + Your Name <you@example.com> private-packges 0.1.0 packages from aternative package repositories diff --git a/tests/_data/snapshots/poetry/plain_private-packges_lock20_1.2.json.bin b/tests/_data/snapshots/poetry/plain_private-packges_lock20_1.2.json.bin index e84ffde50..4d79c632c 100644 --- a/tests/_data/snapshots/poetry/plain_private-packges_lock20_1.2.json.bin +++ b/tests/_data/snapshots/poetry/plain_private-packges_lock20_1.2.json.bin @@ -618,6 +618,7 @@ ], "metadata": { "component": { + "author": "Your Name ", "bom-ref": "private-packges", "description": "packages from aternative package repositories", "name": "private-packges", diff --git a/tests/_data/snapshots/poetry/plain_private-packges_lock20_1.2.xml.bin b/tests/_data/snapshots/poetry/plain_private-packges_lock20_1.2.xml.bin index a264a91f1..01769cd03 100644 --- a/tests/_data/snapshots/poetry/plain_private-packges_lock20_1.2.xml.bin +++ b/tests/_data/snapshots/poetry/plain_private-packges_lock20_1.2.xml.bin @@ -14,6 +14,7 @@ + Your Name <you@example.com> private-packges 0.1.0 packages from aternative package repositories diff --git a/tests/_data/snapshots/poetry/plain_private-packges_lock20_1.3.json.bin b/tests/_data/snapshots/poetry/plain_private-packges_lock20_1.3.json.bin index 375a37a0b..468629f12 100644 --- a/tests/_data/snapshots/poetry/plain_private-packges_lock20_1.3.json.bin +++ b/tests/_data/snapshots/poetry/plain_private-packges_lock20_1.3.json.bin @@ -1188,6 +1188,7 @@ ], "metadata": { "component": { + "author": "Your Name ", "bom-ref": "private-packges", "description": "packages from aternative package repositories", "name": "private-packges", diff --git a/tests/_data/snapshots/poetry/plain_private-packges_lock20_1.3.xml.bin b/tests/_data/snapshots/poetry/plain_private-packges_lock20_1.3.xml.bin index 353cb5a1b..ab96410c1 100644 --- a/tests/_data/snapshots/poetry/plain_private-packges_lock20_1.3.xml.bin +++ b/tests/_data/snapshots/poetry/plain_private-packges_lock20_1.3.xml.bin @@ -14,6 +14,7 @@ + Your Name <you@example.com> private-packges 0.1.0 packages from aternative package repositories diff --git a/tests/_data/snapshots/poetry/plain_private-packges_lock20_1.4.json.bin b/tests/_data/snapshots/poetry/plain_private-packges_lock20_1.4.json.bin index 6b5c5ddcc..50b31f2d5 100644 --- a/tests/_data/snapshots/poetry/plain_private-packges_lock20_1.4.json.bin +++ b/tests/_data/snapshots/poetry/plain_private-packges_lock20_1.4.json.bin @@ -1188,6 +1188,7 @@ ], "metadata": { "component": { + "author": "Your Name ", "bom-ref": "private-packges", "description": "packages from aternative package repositories", "name": "private-packges", diff --git a/tests/_data/snapshots/poetry/plain_private-packges_lock20_1.4.xml.bin b/tests/_data/snapshots/poetry/plain_private-packges_lock20_1.4.xml.bin index aedc3142c..b7eac73ca 100644 --- a/tests/_data/snapshots/poetry/plain_private-packges_lock20_1.4.xml.bin +++ b/tests/_data/snapshots/poetry/plain_private-packges_lock20_1.4.xml.bin @@ -41,6 +41,7 @@ + Your Name <you@example.com> private-packges 0.1.0 packages from aternative package repositories diff --git a/tests/_data/snapshots/poetry/plain_private-packges_lock20_1.5.json.bin b/tests/_data/snapshots/poetry/plain_private-packges_lock20_1.5.json.bin index 4b38da2bc..7db21b9c6 100644 --- a/tests/_data/snapshots/poetry/plain_private-packges_lock20_1.5.json.bin +++ b/tests/_data/snapshots/poetry/plain_private-packges_lock20_1.5.json.bin @@ -1188,6 +1188,7 @@ ], "metadata": { "component": { + "author": "Your Name ", "bom-ref": "private-packges", "description": "packages from aternative package repositories", "name": "private-packges", diff --git a/tests/_data/snapshots/poetry/plain_private-packges_lock20_1.5.xml.bin b/tests/_data/snapshots/poetry/plain_private-packges_lock20_1.5.xml.bin index adb5065b2..2035ed190 100644 --- a/tests/_data/snapshots/poetry/plain_private-packges_lock20_1.5.xml.bin +++ b/tests/_data/snapshots/poetry/plain_private-packges_lock20_1.5.xml.bin @@ -51,6 +51,7 @@ + Your Name <you@example.com> private-packges 0.1.0 packages from aternative package repositories diff --git a/tests/_data/snapshots/poetry/plain_private-packges_lock20_1.6.json.bin b/tests/_data/snapshots/poetry/plain_private-packges_lock20_1.6.json.bin index b9405debb..043ee509f 100644 --- a/tests/_data/snapshots/poetry/plain_private-packges_lock20_1.6.json.bin +++ b/tests/_data/snapshots/poetry/plain_private-packges_lock20_1.6.json.bin @@ -1188,6 +1188,13 @@ ], "metadata": { "component": { + "author": "Your Name ", + "authors": [ + { + "email": "you@example.com", + "name": "Your Name" + } + ], "bom-ref": "private-packges", "description": "packages from aternative package repositories", "name": "private-packges", diff --git a/tests/_data/snapshots/poetry/plain_private-packges_lock20_1.6.xml.bin b/tests/_data/snapshots/poetry/plain_private-packges_lock20_1.6.xml.bin index fbf02f823..589bb53f1 100644 --- a/tests/_data/snapshots/poetry/plain_private-packges_lock20_1.6.xml.bin +++ b/tests/_data/snapshots/poetry/plain_private-packges_lock20_1.6.xml.bin @@ -51,6 +51,13 @@ + + + Your Name + you@example.com + + + Your Name <you@example.com> private-packges 0.1.0 packages from aternative package repositories diff --git a/tests/_data/snapshots/poetry/plain_private-packges_lock20_1.7.json.bin b/tests/_data/snapshots/poetry/plain_private-packges_lock20_1.7.json.bin index 93fc1ab76..156f62c77 100644 --- a/tests/_data/snapshots/poetry/plain_private-packges_lock20_1.7.json.bin +++ b/tests/_data/snapshots/poetry/plain_private-packges_lock20_1.7.json.bin @@ -1188,6 +1188,13 @@ ], "metadata": { "component": { + "author": "Your Name ", + "authors": [ + { + "email": "you@example.com", + "name": "Your Name" + } + ], "bom-ref": "private-packges", "description": "packages from aternative package repositories", "name": "private-packges", diff --git a/tests/_data/snapshots/poetry/plain_private-packges_lock20_1.7.xml.bin b/tests/_data/snapshots/poetry/plain_private-packges_lock20_1.7.xml.bin index 86bde989a..d25cb2315 100644 --- a/tests/_data/snapshots/poetry/plain_private-packges_lock20_1.7.xml.bin +++ b/tests/_data/snapshots/poetry/plain_private-packges_lock20_1.7.xml.bin @@ -51,6 +51,13 @@ + + + Your Name + you@example.com + + + Your Name <you@example.com> private-packges 0.1.0 packages from aternative package repositories diff --git a/tests/_data/snapshots/poetry/plain_private-packges_v2_lock21_1.2.json.bin b/tests/_data/snapshots/poetry/plain_private-packges_v2_lock21_1.2.json.bin index 723a4853e..869a9cae2 100644 --- a/tests/_data/snapshots/poetry/plain_private-packges_v2_lock21_1.2.json.bin +++ b/tests/_data/snapshots/poetry/plain_private-packges_v2_lock21_1.2.json.bin @@ -1234,6 +1234,7 @@ ], "metadata": { "component": { + "author": "Your Name ", "bom-ref": "private-packges_v2", "description": "packages from aternative package repositories", "name": "private-packges_v2", diff --git a/tests/_data/snapshots/poetry/plain_private-packges_v2_lock21_1.2.xml.bin b/tests/_data/snapshots/poetry/plain_private-packges_v2_lock21_1.2.xml.bin index bb2a40881..2fc9d392c 100644 --- a/tests/_data/snapshots/poetry/plain_private-packges_v2_lock21_1.2.xml.bin +++ b/tests/_data/snapshots/poetry/plain_private-packges_v2_lock21_1.2.xml.bin @@ -14,6 +14,7 @@ + Your Name <you@example.com> private-packges_v2 0.1.0 packages from aternative package repositories diff --git a/tests/_data/snapshots/poetry/plain_private-packges_v2_lock21_1.3.json.bin b/tests/_data/snapshots/poetry/plain_private-packges_v2_lock21_1.3.json.bin index 36b2c6d10..88e42cdf3 100644 --- a/tests/_data/snapshots/poetry/plain_private-packges_v2_lock21_1.3.json.bin +++ b/tests/_data/snapshots/poetry/plain_private-packges_v2_lock21_1.3.json.bin @@ -2506,6 +2506,7 @@ ], "metadata": { "component": { + "author": "Your Name ", "bom-ref": "private-packges_v2", "description": "packages from aternative package repositories", "name": "private-packges_v2", diff --git a/tests/_data/snapshots/poetry/plain_private-packges_v2_lock21_1.3.xml.bin b/tests/_data/snapshots/poetry/plain_private-packges_v2_lock21_1.3.xml.bin index 2ad5ad882..e714b1952 100644 --- a/tests/_data/snapshots/poetry/plain_private-packges_v2_lock21_1.3.xml.bin +++ b/tests/_data/snapshots/poetry/plain_private-packges_v2_lock21_1.3.xml.bin @@ -14,6 +14,7 @@ + Your Name <you@example.com> private-packges_v2 0.1.0 packages from aternative package repositories diff --git a/tests/_data/snapshots/poetry/plain_private-packges_v2_lock21_1.4.json.bin b/tests/_data/snapshots/poetry/plain_private-packges_v2_lock21_1.4.json.bin index a09836f05..4962cfd15 100644 --- a/tests/_data/snapshots/poetry/plain_private-packges_v2_lock21_1.4.json.bin +++ b/tests/_data/snapshots/poetry/plain_private-packges_v2_lock21_1.4.json.bin @@ -2506,6 +2506,7 @@ ], "metadata": { "component": { + "author": "Your Name ", "bom-ref": "private-packges_v2", "description": "packages from aternative package repositories", "name": "private-packges_v2", diff --git a/tests/_data/snapshots/poetry/plain_private-packges_v2_lock21_1.4.xml.bin b/tests/_data/snapshots/poetry/plain_private-packges_v2_lock21_1.4.xml.bin index 8db894783..4b6677292 100644 --- a/tests/_data/snapshots/poetry/plain_private-packges_v2_lock21_1.4.xml.bin +++ b/tests/_data/snapshots/poetry/plain_private-packges_v2_lock21_1.4.xml.bin @@ -41,6 +41,7 @@ + Your Name <you@example.com> private-packges_v2 0.1.0 packages from aternative package repositories diff --git a/tests/_data/snapshots/poetry/plain_private-packges_v2_lock21_1.5.json.bin b/tests/_data/snapshots/poetry/plain_private-packges_v2_lock21_1.5.json.bin index 3169b1752..9614445f9 100644 --- a/tests/_data/snapshots/poetry/plain_private-packges_v2_lock21_1.5.json.bin +++ b/tests/_data/snapshots/poetry/plain_private-packges_v2_lock21_1.5.json.bin @@ -2506,6 +2506,7 @@ ], "metadata": { "component": { + "author": "Your Name ", "bom-ref": "private-packges_v2", "description": "packages from aternative package repositories", "name": "private-packges_v2", diff --git a/tests/_data/snapshots/poetry/plain_private-packges_v2_lock21_1.5.xml.bin b/tests/_data/snapshots/poetry/plain_private-packges_v2_lock21_1.5.xml.bin index 5d7a280f3..d178a7164 100644 --- a/tests/_data/snapshots/poetry/plain_private-packges_v2_lock21_1.5.xml.bin +++ b/tests/_data/snapshots/poetry/plain_private-packges_v2_lock21_1.5.xml.bin @@ -51,6 +51,7 @@ + Your Name <you@example.com> private-packges_v2 0.1.0 packages from aternative package repositories diff --git a/tests/_data/snapshots/poetry/plain_private-packges_v2_lock21_1.6.json.bin b/tests/_data/snapshots/poetry/plain_private-packges_v2_lock21_1.6.json.bin index b0fa1b741..8692cdb68 100644 --- a/tests/_data/snapshots/poetry/plain_private-packges_v2_lock21_1.6.json.bin +++ b/tests/_data/snapshots/poetry/plain_private-packges_v2_lock21_1.6.json.bin @@ -2506,6 +2506,13 @@ ], "metadata": { "component": { + "author": "Your Name ", + "authors": [ + { + "email": "you@example.com", + "name": "Your Name" + } + ], "bom-ref": "private-packges_v2", "description": "packages from aternative package repositories", "name": "private-packges_v2", diff --git a/tests/_data/snapshots/poetry/plain_private-packges_v2_lock21_1.6.xml.bin b/tests/_data/snapshots/poetry/plain_private-packges_v2_lock21_1.6.xml.bin index f95ef9bcf..d9620ac4f 100644 --- a/tests/_data/snapshots/poetry/plain_private-packges_v2_lock21_1.6.xml.bin +++ b/tests/_data/snapshots/poetry/plain_private-packges_v2_lock21_1.6.xml.bin @@ -51,6 +51,13 @@ + + + Your Name + you@example.com + + + Your Name <you@example.com> private-packges_v2 0.1.0 packages from aternative package repositories diff --git a/tests/_data/snapshots/poetry/plain_private-packges_v2_lock21_1.7.json.bin b/tests/_data/snapshots/poetry/plain_private-packges_v2_lock21_1.7.json.bin index c540f178e..1d02e27f4 100644 --- a/tests/_data/snapshots/poetry/plain_private-packges_v2_lock21_1.7.json.bin +++ b/tests/_data/snapshots/poetry/plain_private-packges_v2_lock21_1.7.json.bin @@ -2506,6 +2506,13 @@ ], "metadata": { "component": { + "author": "Your Name ", + "authors": [ + { + "email": "you@example.com", + "name": "Your Name" + } + ], "bom-ref": "private-packges_v2", "description": "packages from aternative package repositories", "name": "private-packges_v2", diff --git a/tests/_data/snapshots/poetry/plain_private-packges_v2_lock21_1.7.xml.bin b/tests/_data/snapshots/poetry/plain_private-packges_v2_lock21_1.7.xml.bin index 963b53f04..e5d926ff7 100644 --- a/tests/_data/snapshots/poetry/plain_private-packges_v2_lock21_1.7.xml.bin +++ b/tests/_data/snapshots/poetry/plain_private-packges_v2_lock21_1.7.xml.bin @@ -51,6 +51,13 @@ + + + Your Name + you@example.com + + + Your Name <you@example.com> private-packges_v2 0.1.0 packages from aternative package repositories diff --git a/tests/_data/snapshots/poetry/plain_regression-issue611_lock20_1.2.json.bin b/tests/_data/snapshots/poetry/plain_regression-issue611_lock20_1.2.json.bin index e280b9b1c..6d9b19b44 100644 --- a/tests/_data/snapshots/poetry/plain_regression-issue611_lock20_1.2.json.bin +++ b/tests/_data/snapshots/poetry/plain_regression-issue611_lock20_1.2.json.bin @@ -34,6 +34,7 @@ ], "metadata": { "component": { + "author": "Your Name ", "bom-ref": "regression-issue611", "description": "regression for issue #611", "name": "regression-issue611", diff --git a/tests/_data/snapshots/poetry/plain_regression-issue611_lock20_1.2.xml.bin b/tests/_data/snapshots/poetry/plain_regression-issue611_lock20_1.2.xml.bin index d3bb28271..6200c2bf3 100644 --- a/tests/_data/snapshots/poetry/plain_regression-issue611_lock20_1.2.xml.bin +++ b/tests/_data/snapshots/poetry/plain_regression-issue611_lock20_1.2.xml.bin @@ -14,6 +14,7 @@ + Your Name <you@example.com> regression-issue611 0.1.0 regression for issue #611 diff --git a/tests/_data/snapshots/poetry/plain_regression-issue611_lock20_1.3.json.bin b/tests/_data/snapshots/poetry/plain_regression-issue611_lock20_1.3.json.bin index 210ee6d32..e6d668af6 100644 --- a/tests/_data/snapshots/poetry/plain_regression-issue611_lock20_1.3.json.bin +++ b/tests/_data/snapshots/poetry/plain_regression-issue611_lock20_1.3.json.bin @@ -52,6 +52,7 @@ ], "metadata": { "component": { + "author": "Your Name ", "bom-ref": "regression-issue611", "description": "regression for issue #611", "name": "regression-issue611", diff --git a/tests/_data/snapshots/poetry/plain_regression-issue611_lock20_1.3.xml.bin b/tests/_data/snapshots/poetry/plain_regression-issue611_lock20_1.3.xml.bin index 1dfdbe2a6..5d86c40ad 100644 --- a/tests/_data/snapshots/poetry/plain_regression-issue611_lock20_1.3.xml.bin +++ b/tests/_data/snapshots/poetry/plain_regression-issue611_lock20_1.3.xml.bin @@ -14,6 +14,7 @@ + Your Name <you@example.com> regression-issue611 0.1.0 regression for issue #611 diff --git a/tests/_data/snapshots/poetry/plain_regression-issue611_lock20_1.4.json.bin b/tests/_data/snapshots/poetry/plain_regression-issue611_lock20_1.4.json.bin index a3d18d6d5..cb7f1ac2f 100644 --- a/tests/_data/snapshots/poetry/plain_regression-issue611_lock20_1.4.json.bin +++ b/tests/_data/snapshots/poetry/plain_regression-issue611_lock20_1.4.json.bin @@ -52,6 +52,7 @@ ], "metadata": { "component": { + "author": "Your Name ", "bom-ref": "regression-issue611", "description": "regression for issue #611", "name": "regression-issue611", diff --git a/tests/_data/snapshots/poetry/plain_regression-issue611_lock20_1.4.xml.bin b/tests/_data/snapshots/poetry/plain_regression-issue611_lock20_1.4.xml.bin index 32691e21d..579611594 100644 --- a/tests/_data/snapshots/poetry/plain_regression-issue611_lock20_1.4.xml.bin +++ b/tests/_data/snapshots/poetry/plain_regression-issue611_lock20_1.4.xml.bin @@ -41,6 +41,7 @@ + Your Name <you@example.com> regression-issue611 0.1.0 regression for issue #611 diff --git a/tests/_data/snapshots/poetry/plain_regression-issue611_lock20_1.5.json.bin b/tests/_data/snapshots/poetry/plain_regression-issue611_lock20_1.5.json.bin index 6a4bcaa9e..de644eda4 100644 --- a/tests/_data/snapshots/poetry/plain_regression-issue611_lock20_1.5.json.bin +++ b/tests/_data/snapshots/poetry/plain_regression-issue611_lock20_1.5.json.bin @@ -52,6 +52,7 @@ ], "metadata": { "component": { + "author": "Your Name ", "bom-ref": "regression-issue611", "description": "regression for issue #611", "name": "regression-issue611", diff --git a/tests/_data/snapshots/poetry/plain_regression-issue611_lock20_1.5.xml.bin b/tests/_data/snapshots/poetry/plain_regression-issue611_lock20_1.5.xml.bin index 1d1eb1e58..1582647c2 100644 --- a/tests/_data/snapshots/poetry/plain_regression-issue611_lock20_1.5.xml.bin +++ b/tests/_data/snapshots/poetry/plain_regression-issue611_lock20_1.5.xml.bin @@ -51,6 +51,7 @@ + Your Name <you@example.com> regression-issue611 0.1.0 regression for issue #611 diff --git a/tests/_data/snapshots/poetry/plain_regression-issue611_lock20_1.6.json.bin b/tests/_data/snapshots/poetry/plain_regression-issue611_lock20_1.6.json.bin index e5f898312..dfe1fe79a 100644 --- a/tests/_data/snapshots/poetry/plain_regression-issue611_lock20_1.6.json.bin +++ b/tests/_data/snapshots/poetry/plain_regression-issue611_lock20_1.6.json.bin @@ -52,6 +52,13 @@ ], "metadata": { "component": { + "author": "Your Name ", + "authors": [ + { + "email": "you@example.com", + "name": "Your Name" + } + ], "bom-ref": "regression-issue611", "description": "regression for issue #611", "name": "regression-issue611", diff --git a/tests/_data/snapshots/poetry/plain_regression-issue611_lock20_1.6.xml.bin b/tests/_data/snapshots/poetry/plain_regression-issue611_lock20_1.6.xml.bin index e3d5c7a92..7beddf7b3 100644 --- a/tests/_data/snapshots/poetry/plain_regression-issue611_lock20_1.6.xml.bin +++ b/tests/_data/snapshots/poetry/plain_regression-issue611_lock20_1.6.xml.bin @@ -51,6 +51,13 @@ + + + Your Name + you@example.com + + + Your Name <you@example.com> regression-issue611 0.1.0 regression for issue #611 diff --git a/tests/_data/snapshots/poetry/plain_regression-issue611_lock20_1.7.json.bin b/tests/_data/snapshots/poetry/plain_regression-issue611_lock20_1.7.json.bin index cff0f6619..0baa502ed 100644 --- a/tests/_data/snapshots/poetry/plain_regression-issue611_lock20_1.7.json.bin +++ b/tests/_data/snapshots/poetry/plain_regression-issue611_lock20_1.7.json.bin @@ -52,6 +52,13 @@ ], "metadata": { "component": { + "author": "Your Name ", + "authors": [ + { + "email": "you@example.com", + "name": "Your Name" + } + ], "bom-ref": "regression-issue611", "description": "regression for issue #611", "name": "regression-issue611", diff --git a/tests/_data/snapshots/poetry/plain_regression-issue611_lock20_1.7.xml.bin b/tests/_data/snapshots/poetry/plain_regression-issue611_lock20_1.7.xml.bin index f9020c02a..3835c1e7f 100644 --- a/tests/_data/snapshots/poetry/plain_regression-issue611_lock20_1.7.xml.bin +++ b/tests/_data/snapshots/poetry/plain_regression-issue611_lock20_1.7.xml.bin @@ -51,6 +51,13 @@ + + + Your Name + you@example.com + + + Your Name <you@example.com> regression-issue611 0.1.0 regression for issue #611 diff --git a/tests/_data/snapshots/poetry/plain_regression-issue611_lock21_1.2.json.bin b/tests/_data/snapshots/poetry/plain_regression-issue611_lock21_1.2.json.bin index e280b9b1c..6d9b19b44 100644 --- a/tests/_data/snapshots/poetry/plain_regression-issue611_lock21_1.2.json.bin +++ b/tests/_data/snapshots/poetry/plain_regression-issue611_lock21_1.2.json.bin @@ -34,6 +34,7 @@ ], "metadata": { "component": { + "author": "Your Name ", "bom-ref": "regression-issue611", "description": "regression for issue #611", "name": "regression-issue611", diff --git a/tests/_data/snapshots/poetry/plain_regression-issue611_lock21_1.2.xml.bin b/tests/_data/snapshots/poetry/plain_regression-issue611_lock21_1.2.xml.bin index d3bb28271..6200c2bf3 100644 --- a/tests/_data/snapshots/poetry/plain_regression-issue611_lock21_1.2.xml.bin +++ b/tests/_data/snapshots/poetry/plain_regression-issue611_lock21_1.2.xml.bin @@ -14,6 +14,7 @@ + Your Name <you@example.com> regression-issue611 0.1.0 regression for issue #611 diff --git a/tests/_data/snapshots/poetry/plain_regression-issue611_lock21_1.3.json.bin b/tests/_data/snapshots/poetry/plain_regression-issue611_lock21_1.3.json.bin index 210ee6d32..e6d668af6 100644 --- a/tests/_data/snapshots/poetry/plain_regression-issue611_lock21_1.3.json.bin +++ b/tests/_data/snapshots/poetry/plain_regression-issue611_lock21_1.3.json.bin @@ -52,6 +52,7 @@ ], "metadata": { "component": { + "author": "Your Name ", "bom-ref": "regression-issue611", "description": "regression for issue #611", "name": "regression-issue611", diff --git a/tests/_data/snapshots/poetry/plain_regression-issue611_lock21_1.3.xml.bin b/tests/_data/snapshots/poetry/plain_regression-issue611_lock21_1.3.xml.bin index 1dfdbe2a6..5d86c40ad 100644 --- a/tests/_data/snapshots/poetry/plain_regression-issue611_lock21_1.3.xml.bin +++ b/tests/_data/snapshots/poetry/plain_regression-issue611_lock21_1.3.xml.bin @@ -14,6 +14,7 @@ + Your Name <you@example.com> regression-issue611 0.1.0 regression for issue #611 diff --git a/tests/_data/snapshots/poetry/plain_regression-issue611_lock21_1.4.json.bin b/tests/_data/snapshots/poetry/plain_regression-issue611_lock21_1.4.json.bin index a3d18d6d5..cb7f1ac2f 100644 --- a/tests/_data/snapshots/poetry/plain_regression-issue611_lock21_1.4.json.bin +++ b/tests/_data/snapshots/poetry/plain_regression-issue611_lock21_1.4.json.bin @@ -52,6 +52,7 @@ ], "metadata": { "component": { + "author": "Your Name ", "bom-ref": "regression-issue611", "description": "regression for issue #611", "name": "regression-issue611", diff --git a/tests/_data/snapshots/poetry/plain_regression-issue611_lock21_1.4.xml.bin b/tests/_data/snapshots/poetry/plain_regression-issue611_lock21_1.4.xml.bin index 32691e21d..579611594 100644 --- a/tests/_data/snapshots/poetry/plain_regression-issue611_lock21_1.4.xml.bin +++ b/tests/_data/snapshots/poetry/plain_regression-issue611_lock21_1.4.xml.bin @@ -41,6 +41,7 @@ + Your Name <you@example.com> regression-issue611 0.1.0 regression for issue #611 diff --git a/tests/_data/snapshots/poetry/plain_regression-issue611_lock21_1.5.json.bin b/tests/_data/snapshots/poetry/plain_regression-issue611_lock21_1.5.json.bin index 6a4bcaa9e..de644eda4 100644 --- a/tests/_data/snapshots/poetry/plain_regression-issue611_lock21_1.5.json.bin +++ b/tests/_data/snapshots/poetry/plain_regression-issue611_lock21_1.5.json.bin @@ -52,6 +52,7 @@ ], "metadata": { "component": { + "author": "Your Name ", "bom-ref": "regression-issue611", "description": "regression for issue #611", "name": "regression-issue611", diff --git a/tests/_data/snapshots/poetry/plain_regression-issue611_lock21_1.5.xml.bin b/tests/_data/snapshots/poetry/plain_regression-issue611_lock21_1.5.xml.bin index 1d1eb1e58..1582647c2 100644 --- a/tests/_data/snapshots/poetry/plain_regression-issue611_lock21_1.5.xml.bin +++ b/tests/_data/snapshots/poetry/plain_regression-issue611_lock21_1.5.xml.bin @@ -51,6 +51,7 @@ + Your Name <you@example.com> regression-issue611 0.1.0 regression for issue #611 diff --git a/tests/_data/snapshots/poetry/plain_regression-issue611_lock21_1.6.json.bin b/tests/_data/snapshots/poetry/plain_regression-issue611_lock21_1.6.json.bin index e5f898312..dfe1fe79a 100644 --- a/tests/_data/snapshots/poetry/plain_regression-issue611_lock21_1.6.json.bin +++ b/tests/_data/snapshots/poetry/plain_regression-issue611_lock21_1.6.json.bin @@ -52,6 +52,13 @@ ], "metadata": { "component": { + "author": "Your Name ", + "authors": [ + { + "email": "you@example.com", + "name": "Your Name" + } + ], "bom-ref": "regression-issue611", "description": "regression for issue #611", "name": "regression-issue611", diff --git a/tests/_data/snapshots/poetry/plain_regression-issue611_lock21_1.6.xml.bin b/tests/_data/snapshots/poetry/plain_regression-issue611_lock21_1.6.xml.bin index e3d5c7a92..7beddf7b3 100644 --- a/tests/_data/snapshots/poetry/plain_regression-issue611_lock21_1.6.xml.bin +++ b/tests/_data/snapshots/poetry/plain_regression-issue611_lock21_1.6.xml.bin @@ -51,6 +51,13 @@ + + + Your Name + you@example.com + + + Your Name <you@example.com> regression-issue611 0.1.0 regression for issue #611 diff --git a/tests/_data/snapshots/poetry/plain_regression-issue611_lock21_1.7.json.bin b/tests/_data/snapshots/poetry/plain_regression-issue611_lock21_1.7.json.bin index cff0f6619..0baa502ed 100644 --- a/tests/_data/snapshots/poetry/plain_regression-issue611_lock21_1.7.json.bin +++ b/tests/_data/snapshots/poetry/plain_regression-issue611_lock21_1.7.json.bin @@ -52,6 +52,13 @@ ], "metadata": { "component": { + "author": "Your Name ", + "authors": [ + { + "email": "you@example.com", + "name": "Your Name" + } + ], "bom-ref": "regression-issue611", "description": "regression for issue #611", "name": "regression-issue611", diff --git a/tests/_data/snapshots/poetry/plain_regression-issue611_lock21_1.7.xml.bin b/tests/_data/snapshots/poetry/plain_regression-issue611_lock21_1.7.xml.bin index f9020c02a..3835c1e7f 100644 --- a/tests/_data/snapshots/poetry/plain_regression-issue611_lock21_1.7.xml.bin +++ b/tests/_data/snapshots/poetry/plain_regression-issue611_lock21_1.7.xml.bin @@ -51,6 +51,13 @@ + + + Your Name + you@example.com + + + Your Name <you@example.com> regression-issue611 0.1.0 regression for issue #611 diff --git a/tests/_data/snapshots/poetry/plain_regression-issue702_lock10_1.2.json.bin b/tests/_data/snapshots/poetry/plain_regression-issue702_lock10_1.2.json.bin index 9d80ea5a0..4d90ae01c 100644 --- a/tests/_data/snapshots/poetry/plain_regression-issue702_lock10_1.2.json.bin +++ b/tests/_data/snapshots/poetry/plain_regression-issue702_lock10_1.2.json.bin @@ -758,6 +758,7 @@ ], "metadata": { "component": { + "author": "Your Name ", "bom-ref": "regression-issue702", "description": "regression for issue #702", "name": "regression-issue702", diff --git a/tests/_data/snapshots/poetry/plain_regression-issue702_lock10_1.2.xml.bin b/tests/_data/snapshots/poetry/plain_regression-issue702_lock10_1.2.xml.bin index 30d33957a..9a33c65d8 100644 --- a/tests/_data/snapshots/poetry/plain_regression-issue702_lock10_1.2.xml.bin +++ b/tests/_data/snapshots/poetry/plain_regression-issue702_lock10_1.2.xml.bin @@ -14,6 +14,7 @@ + Your Name <you@example.com> regression-issue702 0.1.0 regression for issue #702 diff --git a/tests/_data/snapshots/poetry/plain_regression-issue702_lock10_1.3.json.bin b/tests/_data/snapshots/poetry/plain_regression-issue702_lock10_1.3.json.bin index bf6254da6..d71f99e14 100644 --- a/tests/_data/snapshots/poetry/plain_regression-issue702_lock10_1.3.json.bin +++ b/tests/_data/snapshots/poetry/plain_regression-issue702_lock10_1.3.json.bin @@ -1098,6 +1098,7 @@ ], "metadata": { "component": { + "author": "Your Name ", "bom-ref": "regression-issue702", "description": "regression for issue #702", "name": "regression-issue702", diff --git a/tests/_data/snapshots/poetry/plain_regression-issue702_lock10_1.3.xml.bin b/tests/_data/snapshots/poetry/plain_regression-issue702_lock10_1.3.xml.bin index ea47bef36..822eeb558 100644 --- a/tests/_data/snapshots/poetry/plain_regression-issue702_lock10_1.3.xml.bin +++ b/tests/_data/snapshots/poetry/plain_regression-issue702_lock10_1.3.xml.bin @@ -14,6 +14,7 @@ + Your Name <you@example.com> regression-issue702 0.1.0 regression for issue #702 diff --git a/tests/_data/snapshots/poetry/plain_regression-issue702_lock10_1.4.json.bin b/tests/_data/snapshots/poetry/plain_regression-issue702_lock10_1.4.json.bin index 0a8f53a3f..e85738d1b 100644 --- a/tests/_data/snapshots/poetry/plain_regression-issue702_lock10_1.4.json.bin +++ b/tests/_data/snapshots/poetry/plain_regression-issue702_lock10_1.4.json.bin @@ -1098,6 +1098,7 @@ ], "metadata": { "component": { + "author": "Your Name ", "bom-ref": "regression-issue702", "description": "regression for issue #702", "name": "regression-issue702", diff --git a/tests/_data/snapshots/poetry/plain_regression-issue702_lock10_1.4.xml.bin b/tests/_data/snapshots/poetry/plain_regression-issue702_lock10_1.4.xml.bin index d7149087d..3eb364ca3 100644 --- a/tests/_data/snapshots/poetry/plain_regression-issue702_lock10_1.4.xml.bin +++ b/tests/_data/snapshots/poetry/plain_regression-issue702_lock10_1.4.xml.bin @@ -41,6 +41,7 @@ + Your Name <you@example.com> regression-issue702 0.1.0 regression for issue #702 diff --git a/tests/_data/snapshots/poetry/plain_regression-issue702_lock10_1.5.json.bin b/tests/_data/snapshots/poetry/plain_regression-issue702_lock10_1.5.json.bin index 017148c36..c35d79855 100644 --- a/tests/_data/snapshots/poetry/plain_regression-issue702_lock10_1.5.json.bin +++ b/tests/_data/snapshots/poetry/plain_regression-issue702_lock10_1.5.json.bin @@ -1098,6 +1098,7 @@ ], "metadata": { "component": { + "author": "Your Name ", "bom-ref": "regression-issue702", "description": "regression for issue #702", "name": "regression-issue702", diff --git a/tests/_data/snapshots/poetry/plain_regression-issue702_lock10_1.5.xml.bin b/tests/_data/snapshots/poetry/plain_regression-issue702_lock10_1.5.xml.bin index 1a5ebf4bf..ee94e80ba 100644 --- a/tests/_data/snapshots/poetry/plain_regression-issue702_lock10_1.5.xml.bin +++ b/tests/_data/snapshots/poetry/plain_regression-issue702_lock10_1.5.xml.bin @@ -51,6 +51,7 @@ + Your Name <you@example.com> regression-issue702 0.1.0 regression for issue #702 diff --git a/tests/_data/snapshots/poetry/plain_regression-issue702_lock10_1.6.json.bin b/tests/_data/snapshots/poetry/plain_regression-issue702_lock10_1.6.json.bin index 49fc27a5f..6fea03164 100644 --- a/tests/_data/snapshots/poetry/plain_regression-issue702_lock10_1.6.json.bin +++ b/tests/_data/snapshots/poetry/plain_regression-issue702_lock10_1.6.json.bin @@ -1098,6 +1098,13 @@ ], "metadata": { "component": { + "author": "Your Name ", + "authors": [ + { + "email": "you@example.com", + "name": "Your Name" + } + ], "bom-ref": "regression-issue702", "description": "regression for issue #702", "name": "regression-issue702", diff --git a/tests/_data/snapshots/poetry/plain_regression-issue702_lock10_1.6.xml.bin b/tests/_data/snapshots/poetry/plain_regression-issue702_lock10_1.6.xml.bin index a7fd12c41..bd98ad6aa 100644 --- a/tests/_data/snapshots/poetry/plain_regression-issue702_lock10_1.6.xml.bin +++ b/tests/_data/snapshots/poetry/plain_regression-issue702_lock10_1.6.xml.bin @@ -51,6 +51,13 @@ + + + Your Name + you@example.com + + + Your Name <you@example.com> regression-issue702 0.1.0 regression for issue #702 diff --git a/tests/_data/snapshots/poetry/plain_regression-issue702_lock10_1.7.json.bin b/tests/_data/snapshots/poetry/plain_regression-issue702_lock10_1.7.json.bin index ebac7f66a..25b135a70 100644 --- a/tests/_data/snapshots/poetry/plain_regression-issue702_lock10_1.7.json.bin +++ b/tests/_data/snapshots/poetry/plain_regression-issue702_lock10_1.7.json.bin @@ -1098,6 +1098,13 @@ ], "metadata": { "component": { + "author": "Your Name ", + "authors": [ + { + "email": "you@example.com", + "name": "Your Name" + } + ], "bom-ref": "regression-issue702", "description": "regression for issue #702", "name": "regression-issue702", diff --git a/tests/_data/snapshots/poetry/plain_regression-issue702_lock10_1.7.xml.bin b/tests/_data/snapshots/poetry/plain_regression-issue702_lock10_1.7.xml.bin index 7bd1f3b92..2b8c0aa96 100644 --- a/tests/_data/snapshots/poetry/plain_regression-issue702_lock10_1.7.xml.bin +++ b/tests/_data/snapshots/poetry/plain_regression-issue702_lock10_1.7.xml.bin @@ -51,6 +51,13 @@ + + + Your Name + you@example.com + + + Your Name <you@example.com> regression-issue702 0.1.0 regression for issue #702 diff --git a/tests/_data/snapshots/poetry/plain_regression-issue702_lock11_1.2.json.bin b/tests/_data/snapshots/poetry/plain_regression-issue702_lock11_1.2.json.bin index 532e4a3ad..8d0b849f5 100644 --- a/tests/_data/snapshots/poetry/plain_regression-issue702_lock11_1.2.json.bin +++ b/tests/_data/snapshots/poetry/plain_regression-issue702_lock11_1.2.json.bin @@ -6005,6 +6005,7 @@ ], "metadata": { "component": { + "author": "Your Name ", "bom-ref": "regression-issue702", "description": "regression for issue #702", "name": "regression-issue702", diff --git a/tests/_data/snapshots/poetry/plain_regression-issue702_lock11_1.2.xml.bin b/tests/_data/snapshots/poetry/plain_regression-issue702_lock11_1.2.xml.bin index dde1d86ec..d9e3a6485 100644 --- a/tests/_data/snapshots/poetry/plain_regression-issue702_lock11_1.2.xml.bin +++ b/tests/_data/snapshots/poetry/plain_regression-issue702_lock11_1.2.xml.bin @@ -14,6 +14,7 @@ + Your Name <you@example.com> regression-issue702 0.1.0 regression for issue #702 diff --git a/tests/_data/snapshots/poetry/plain_regression-issue702_lock11_1.3.json.bin b/tests/_data/snapshots/poetry/plain_regression-issue702_lock11_1.3.json.bin index 0355e2c92..0bad86380 100644 --- a/tests/_data/snapshots/poetry/plain_regression-issue702_lock11_1.3.json.bin +++ b/tests/_data/snapshots/poetry/plain_regression-issue702_lock11_1.3.json.bin @@ -12507,6 +12507,7 @@ ], "metadata": { "component": { + "author": "Your Name ", "bom-ref": "regression-issue702", "description": "regression for issue #702", "name": "regression-issue702", diff --git a/tests/_data/snapshots/poetry/plain_regression-issue702_lock11_1.3.xml.bin b/tests/_data/snapshots/poetry/plain_regression-issue702_lock11_1.3.xml.bin index 5c1764765..25683819f 100644 --- a/tests/_data/snapshots/poetry/plain_regression-issue702_lock11_1.3.xml.bin +++ b/tests/_data/snapshots/poetry/plain_regression-issue702_lock11_1.3.xml.bin @@ -14,6 +14,7 @@ + Your Name <you@example.com> regression-issue702 0.1.0 regression for issue #702 diff --git a/tests/_data/snapshots/poetry/plain_regression-issue702_lock11_1.4.json.bin b/tests/_data/snapshots/poetry/plain_regression-issue702_lock11_1.4.json.bin index 9146c9692..22be49d03 100644 --- a/tests/_data/snapshots/poetry/plain_regression-issue702_lock11_1.4.json.bin +++ b/tests/_data/snapshots/poetry/plain_regression-issue702_lock11_1.4.json.bin @@ -12507,6 +12507,7 @@ ], "metadata": { "component": { + "author": "Your Name ", "bom-ref": "regression-issue702", "description": "regression for issue #702", "name": "regression-issue702", diff --git a/tests/_data/snapshots/poetry/plain_regression-issue702_lock11_1.4.xml.bin b/tests/_data/snapshots/poetry/plain_regression-issue702_lock11_1.4.xml.bin index dd4ba1203..d6bfe8170 100644 --- a/tests/_data/snapshots/poetry/plain_regression-issue702_lock11_1.4.xml.bin +++ b/tests/_data/snapshots/poetry/plain_regression-issue702_lock11_1.4.xml.bin @@ -41,6 +41,7 @@ + Your Name <you@example.com> regression-issue702 0.1.0 regression for issue #702 diff --git a/tests/_data/snapshots/poetry/plain_regression-issue702_lock11_1.5.json.bin b/tests/_data/snapshots/poetry/plain_regression-issue702_lock11_1.5.json.bin index 940ecba4c..f24a1cc3a 100644 --- a/tests/_data/snapshots/poetry/plain_regression-issue702_lock11_1.5.json.bin +++ b/tests/_data/snapshots/poetry/plain_regression-issue702_lock11_1.5.json.bin @@ -12507,6 +12507,7 @@ ], "metadata": { "component": { + "author": "Your Name ", "bom-ref": "regression-issue702", "description": "regression for issue #702", "name": "regression-issue702", diff --git a/tests/_data/snapshots/poetry/plain_regression-issue702_lock11_1.5.xml.bin b/tests/_data/snapshots/poetry/plain_regression-issue702_lock11_1.5.xml.bin index ed1ddc601..53dc60fba 100644 --- a/tests/_data/snapshots/poetry/plain_regression-issue702_lock11_1.5.xml.bin +++ b/tests/_data/snapshots/poetry/plain_regression-issue702_lock11_1.5.xml.bin @@ -51,6 +51,7 @@ + Your Name <you@example.com> regression-issue702 0.1.0 regression for issue #702 diff --git a/tests/_data/snapshots/poetry/plain_regression-issue702_lock11_1.6.json.bin b/tests/_data/snapshots/poetry/plain_regression-issue702_lock11_1.6.json.bin index d93f52cc8..55b24d694 100644 --- a/tests/_data/snapshots/poetry/plain_regression-issue702_lock11_1.6.json.bin +++ b/tests/_data/snapshots/poetry/plain_regression-issue702_lock11_1.6.json.bin @@ -12507,6 +12507,13 @@ ], "metadata": { "component": { + "author": "Your Name ", + "authors": [ + { + "email": "you@example.com", + "name": "Your Name" + } + ], "bom-ref": "regression-issue702", "description": "regression for issue #702", "name": "regression-issue702", diff --git a/tests/_data/snapshots/poetry/plain_regression-issue702_lock11_1.6.xml.bin b/tests/_data/snapshots/poetry/plain_regression-issue702_lock11_1.6.xml.bin index 2efde0458..ecfa46188 100644 --- a/tests/_data/snapshots/poetry/plain_regression-issue702_lock11_1.6.xml.bin +++ b/tests/_data/snapshots/poetry/plain_regression-issue702_lock11_1.6.xml.bin @@ -51,6 +51,13 @@ + + + Your Name + you@example.com + + + Your Name <you@example.com> regression-issue702 0.1.0 regression for issue #702 diff --git a/tests/_data/snapshots/poetry/plain_regression-issue702_lock11_1.7.json.bin b/tests/_data/snapshots/poetry/plain_regression-issue702_lock11_1.7.json.bin index 88d4f131a..87b991431 100644 --- a/tests/_data/snapshots/poetry/plain_regression-issue702_lock11_1.7.json.bin +++ b/tests/_data/snapshots/poetry/plain_regression-issue702_lock11_1.7.json.bin @@ -12507,6 +12507,13 @@ ], "metadata": { "component": { + "author": "Your Name ", + "authors": [ + { + "email": "you@example.com", + "name": "Your Name" + } + ], "bom-ref": "regression-issue702", "description": "regression for issue #702", "name": "regression-issue702", diff --git a/tests/_data/snapshots/poetry/plain_regression-issue702_lock11_1.7.xml.bin b/tests/_data/snapshots/poetry/plain_regression-issue702_lock11_1.7.xml.bin index e2254c36c..caa879a80 100644 --- a/tests/_data/snapshots/poetry/plain_regression-issue702_lock11_1.7.xml.bin +++ b/tests/_data/snapshots/poetry/plain_regression-issue702_lock11_1.7.xml.bin @@ -51,6 +51,13 @@ + + + Your Name + you@example.com + + + Your Name <you@example.com> regression-issue702 0.1.0 regression for issue #702 diff --git a/tests/_data/snapshots/poetry/plain_regression-issue702_lock20_1.2.json.bin b/tests/_data/snapshots/poetry/plain_regression-issue702_lock20_1.2.json.bin index b550ca489..db7875fd8 100644 --- a/tests/_data/snapshots/poetry/plain_regression-issue702_lock20_1.2.json.bin +++ b/tests/_data/snapshots/poetry/plain_regression-issue702_lock20_1.2.json.bin @@ -6770,6 +6770,7 @@ ], "metadata": { "component": { + "author": "Your Name ", "bom-ref": "regression-issue702", "description": "regression for issue #702", "name": "regression-issue702", diff --git a/tests/_data/snapshots/poetry/plain_regression-issue702_lock20_1.2.xml.bin b/tests/_data/snapshots/poetry/plain_regression-issue702_lock20_1.2.xml.bin index ad1333193..62ab48ccf 100644 --- a/tests/_data/snapshots/poetry/plain_regression-issue702_lock20_1.2.xml.bin +++ b/tests/_data/snapshots/poetry/plain_regression-issue702_lock20_1.2.xml.bin @@ -14,6 +14,7 @@ + Your Name <you@example.com> regression-issue702 0.1.0 regression for issue #702 diff --git a/tests/_data/snapshots/poetry/plain_regression-issue702_lock20_1.3.json.bin b/tests/_data/snapshots/poetry/plain_regression-issue702_lock20_1.3.json.bin index 7f75bbda8..8fbe3b1cb 100644 --- a/tests/_data/snapshots/poetry/plain_regression-issue702_lock20_1.3.json.bin +++ b/tests/_data/snapshots/poetry/plain_regression-issue702_lock20_1.3.json.bin @@ -13794,6 +13794,7 @@ ], "metadata": { "component": { + "author": "Your Name ", "bom-ref": "regression-issue702", "description": "regression for issue #702", "name": "regression-issue702", diff --git a/tests/_data/snapshots/poetry/plain_regression-issue702_lock20_1.3.xml.bin b/tests/_data/snapshots/poetry/plain_regression-issue702_lock20_1.3.xml.bin index 4920f0f89..1b919e200 100644 --- a/tests/_data/snapshots/poetry/plain_regression-issue702_lock20_1.3.xml.bin +++ b/tests/_data/snapshots/poetry/plain_regression-issue702_lock20_1.3.xml.bin @@ -14,6 +14,7 @@ + Your Name <you@example.com> regression-issue702 0.1.0 regression for issue #702 diff --git a/tests/_data/snapshots/poetry/plain_regression-issue702_lock20_1.4.json.bin b/tests/_data/snapshots/poetry/plain_regression-issue702_lock20_1.4.json.bin index c7a1f21c4..c1c174809 100644 --- a/tests/_data/snapshots/poetry/plain_regression-issue702_lock20_1.4.json.bin +++ b/tests/_data/snapshots/poetry/plain_regression-issue702_lock20_1.4.json.bin @@ -13794,6 +13794,7 @@ ], "metadata": { "component": { + "author": "Your Name ", "bom-ref": "regression-issue702", "description": "regression for issue #702", "name": "regression-issue702", diff --git a/tests/_data/snapshots/poetry/plain_regression-issue702_lock20_1.4.xml.bin b/tests/_data/snapshots/poetry/plain_regression-issue702_lock20_1.4.xml.bin index fd782f138..49ece6b05 100644 --- a/tests/_data/snapshots/poetry/plain_regression-issue702_lock20_1.4.xml.bin +++ b/tests/_data/snapshots/poetry/plain_regression-issue702_lock20_1.4.xml.bin @@ -41,6 +41,7 @@ + Your Name <you@example.com> regression-issue702 0.1.0 regression for issue #702 diff --git a/tests/_data/snapshots/poetry/plain_regression-issue702_lock20_1.5.json.bin b/tests/_data/snapshots/poetry/plain_regression-issue702_lock20_1.5.json.bin index 3a4c5d1a5..3cf3530c4 100644 --- a/tests/_data/snapshots/poetry/plain_regression-issue702_lock20_1.5.json.bin +++ b/tests/_data/snapshots/poetry/plain_regression-issue702_lock20_1.5.json.bin @@ -13794,6 +13794,7 @@ ], "metadata": { "component": { + "author": "Your Name ", "bom-ref": "regression-issue702", "description": "regression for issue #702", "name": "regression-issue702", diff --git a/tests/_data/snapshots/poetry/plain_regression-issue702_lock20_1.5.xml.bin b/tests/_data/snapshots/poetry/plain_regression-issue702_lock20_1.5.xml.bin index 0f583e347..f2a0d8245 100644 --- a/tests/_data/snapshots/poetry/plain_regression-issue702_lock20_1.5.xml.bin +++ b/tests/_data/snapshots/poetry/plain_regression-issue702_lock20_1.5.xml.bin @@ -51,6 +51,7 @@ + Your Name <you@example.com> regression-issue702 0.1.0 regression for issue #702 diff --git a/tests/_data/snapshots/poetry/plain_regression-issue702_lock20_1.6.json.bin b/tests/_data/snapshots/poetry/plain_regression-issue702_lock20_1.6.json.bin index cbd211ad7..0eeb4923a 100644 --- a/tests/_data/snapshots/poetry/plain_regression-issue702_lock20_1.6.json.bin +++ b/tests/_data/snapshots/poetry/plain_regression-issue702_lock20_1.6.json.bin @@ -13794,6 +13794,13 @@ ], "metadata": { "component": { + "author": "Your Name ", + "authors": [ + { + "email": "you@example.com", + "name": "Your Name" + } + ], "bom-ref": "regression-issue702", "description": "regression for issue #702", "name": "regression-issue702", diff --git a/tests/_data/snapshots/poetry/plain_regression-issue702_lock20_1.6.xml.bin b/tests/_data/snapshots/poetry/plain_regression-issue702_lock20_1.6.xml.bin index 4b24be09c..29363d3f9 100644 --- a/tests/_data/snapshots/poetry/plain_regression-issue702_lock20_1.6.xml.bin +++ b/tests/_data/snapshots/poetry/plain_regression-issue702_lock20_1.6.xml.bin @@ -51,6 +51,13 @@ + + + Your Name + you@example.com + + + Your Name <you@example.com> regression-issue702 0.1.0 regression for issue #702 diff --git a/tests/_data/snapshots/poetry/plain_regression-issue702_lock20_1.7.json.bin b/tests/_data/snapshots/poetry/plain_regression-issue702_lock20_1.7.json.bin index 38cef98d8..67f900d6d 100644 --- a/tests/_data/snapshots/poetry/plain_regression-issue702_lock20_1.7.json.bin +++ b/tests/_data/snapshots/poetry/plain_regression-issue702_lock20_1.7.json.bin @@ -13794,6 +13794,13 @@ ], "metadata": { "component": { + "author": "Your Name ", + "authors": [ + { + "email": "you@example.com", + "name": "Your Name" + } + ], "bom-ref": "regression-issue702", "description": "regression for issue #702", "name": "regression-issue702", diff --git a/tests/_data/snapshots/poetry/plain_regression-issue702_lock20_1.7.xml.bin b/tests/_data/snapshots/poetry/plain_regression-issue702_lock20_1.7.xml.bin index 48849583b..028318794 100644 --- a/tests/_data/snapshots/poetry/plain_regression-issue702_lock20_1.7.xml.bin +++ b/tests/_data/snapshots/poetry/plain_regression-issue702_lock20_1.7.xml.bin @@ -51,6 +51,13 @@ + + + Your Name + you@example.com + + + Your Name <you@example.com> regression-issue702 0.1.0 regression for issue #702 diff --git a/tests/_data/snapshots/poetry/plain_regression-issue702_lock21_1.2.json.bin b/tests/_data/snapshots/poetry/plain_regression-issue702_lock21_1.2.json.bin index 218463970..69e233f6a 100644 --- a/tests/_data/snapshots/poetry/plain_regression-issue702_lock21_1.2.json.bin +++ b/tests/_data/snapshots/poetry/plain_regression-issue702_lock21_1.2.json.bin @@ -7670,6 +7670,7 @@ ], "metadata": { "component": { + "author": "Your Name ", "bom-ref": "regression-issue702", "description": "regression for issue #702", "name": "regression-issue702", diff --git a/tests/_data/snapshots/poetry/plain_regression-issue702_lock21_1.2.xml.bin b/tests/_data/snapshots/poetry/plain_regression-issue702_lock21_1.2.xml.bin index e49b1a580..f85ed57c7 100644 --- a/tests/_data/snapshots/poetry/plain_regression-issue702_lock21_1.2.xml.bin +++ b/tests/_data/snapshots/poetry/plain_regression-issue702_lock21_1.2.xml.bin @@ -14,6 +14,7 @@ + Your Name <you@example.com> regression-issue702 0.1.0 regression for issue #702 diff --git a/tests/_data/snapshots/poetry/plain_regression-issue702_lock21_1.3.json.bin b/tests/_data/snapshots/poetry/plain_regression-issue702_lock21_1.3.json.bin index 66ef02087..2375e1b2d 100644 --- a/tests/_data/snapshots/poetry/plain_regression-issue702_lock21_1.3.json.bin +++ b/tests/_data/snapshots/poetry/plain_regression-issue702_lock21_1.3.json.bin @@ -15714,6 +15714,7 @@ ], "metadata": { "component": { + "author": "Your Name ", "bom-ref": "regression-issue702", "description": "regression for issue #702", "name": "regression-issue702", diff --git a/tests/_data/snapshots/poetry/plain_regression-issue702_lock21_1.3.xml.bin b/tests/_data/snapshots/poetry/plain_regression-issue702_lock21_1.3.xml.bin index 548e3685a..6c164aa69 100644 --- a/tests/_data/snapshots/poetry/plain_regression-issue702_lock21_1.3.xml.bin +++ b/tests/_data/snapshots/poetry/plain_regression-issue702_lock21_1.3.xml.bin @@ -14,6 +14,7 @@ + Your Name <you@example.com> regression-issue702 0.1.0 regression for issue #702 diff --git a/tests/_data/snapshots/poetry/plain_regression-issue702_lock21_1.4.json.bin b/tests/_data/snapshots/poetry/plain_regression-issue702_lock21_1.4.json.bin index 1714c7f0b..910202384 100644 --- a/tests/_data/snapshots/poetry/plain_regression-issue702_lock21_1.4.json.bin +++ b/tests/_data/snapshots/poetry/plain_regression-issue702_lock21_1.4.json.bin @@ -15714,6 +15714,7 @@ ], "metadata": { "component": { + "author": "Your Name ", "bom-ref": "regression-issue702", "description": "regression for issue #702", "name": "regression-issue702", diff --git a/tests/_data/snapshots/poetry/plain_regression-issue702_lock21_1.4.xml.bin b/tests/_data/snapshots/poetry/plain_regression-issue702_lock21_1.4.xml.bin index 53b9a50df..5a825156d 100644 --- a/tests/_data/snapshots/poetry/plain_regression-issue702_lock21_1.4.xml.bin +++ b/tests/_data/snapshots/poetry/plain_regression-issue702_lock21_1.4.xml.bin @@ -41,6 +41,7 @@ + Your Name <you@example.com> regression-issue702 0.1.0 regression for issue #702 diff --git a/tests/_data/snapshots/poetry/plain_regression-issue702_lock21_1.5.json.bin b/tests/_data/snapshots/poetry/plain_regression-issue702_lock21_1.5.json.bin index 0b0f2e886..fbf50391e 100644 --- a/tests/_data/snapshots/poetry/plain_regression-issue702_lock21_1.5.json.bin +++ b/tests/_data/snapshots/poetry/plain_regression-issue702_lock21_1.5.json.bin @@ -15714,6 +15714,7 @@ ], "metadata": { "component": { + "author": "Your Name ", "bom-ref": "regression-issue702", "description": "regression for issue #702", "name": "regression-issue702", diff --git a/tests/_data/snapshots/poetry/plain_regression-issue702_lock21_1.5.xml.bin b/tests/_data/snapshots/poetry/plain_regression-issue702_lock21_1.5.xml.bin index 152d1d871..870576dbc 100644 --- a/tests/_data/snapshots/poetry/plain_regression-issue702_lock21_1.5.xml.bin +++ b/tests/_data/snapshots/poetry/plain_regression-issue702_lock21_1.5.xml.bin @@ -51,6 +51,7 @@ + Your Name <you@example.com> regression-issue702 0.1.0 regression for issue #702 diff --git a/tests/_data/snapshots/poetry/plain_regression-issue702_lock21_1.6.json.bin b/tests/_data/snapshots/poetry/plain_regression-issue702_lock21_1.6.json.bin index 54453ec04..60337a8bf 100644 --- a/tests/_data/snapshots/poetry/plain_regression-issue702_lock21_1.6.json.bin +++ b/tests/_data/snapshots/poetry/plain_regression-issue702_lock21_1.6.json.bin @@ -15714,6 +15714,13 @@ ], "metadata": { "component": { + "author": "Your Name ", + "authors": [ + { + "email": "you@example.com", + "name": "Your Name" + } + ], "bom-ref": "regression-issue702", "description": "regression for issue #702", "name": "regression-issue702", diff --git a/tests/_data/snapshots/poetry/plain_regression-issue702_lock21_1.6.xml.bin b/tests/_data/snapshots/poetry/plain_regression-issue702_lock21_1.6.xml.bin index b8dc69823..151219702 100644 --- a/tests/_data/snapshots/poetry/plain_regression-issue702_lock21_1.6.xml.bin +++ b/tests/_data/snapshots/poetry/plain_regression-issue702_lock21_1.6.xml.bin @@ -51,6 +51,13 @@ + + + Your Name + you@example.com + + + Your Name <you@example.com> regression-issue702 0.1.0 regression for issue #702 diff --git a/tests/_data/snapshots/poetry/plain_regression-issue702_lock21_1.7.json.bin b/tests/_data/snapshots/poetry/plain_regression-issue702_lock21_1.7.json.bin index 79e918cf1..12516ac64 100644 --- a/tests/_data/snapshots/poetry/plain_regression-issue702_lock21_1.7.json.bin +++ b/tests/_data/snapshots/poetry/plain_regression-issue702_lock21_1.7.json.bin @@ -15714,6 +15714,13 @@ ], "metadata": { "component": { + "author": "Your Name ", + "authors": [ + { + "email": "you@example.com", + "name": "Your Name" + } + ], "bom-ref": "regression-issue702", "description": "regression for issue #702", "name": "regression-issue702", diff --git a/tests/_data/snapshots/poetry/plain_regression-issue702_lock21_1.7.xml.bin b/tests/_data/snapshots/poetry/plain_regression-issue702_lock21_1.7.xml.bin index f04d4b6b8..b847724bd 100644 --- a/tests/_data/snapshots/poetry/plain_regression-issue702_lock21_1.7.xml.bin +++ b/tests/_data/snapshots/poetry/plain_regression-issue702_lock21_1.7.xml.bin @@ -51,6 +51,13 @@ + + + Your Name + you@example.com + + + Your Name <you@example.com> regression-issue702 0.1.0 regression for issue #702 diff --git a/tests/_data/snapshots/poetry/plain_regression-issue727_lock20_1.2.json.bin b/tests/_data/snapshots/poetry/plain_regression-issue727_lock20_1.2.json.bin index 3273c1fbd..c34910f92 100644 --- a/tests/_data/snapshots/poetry/plain_regression-issue727_lock20_1.2.json.bin +++ b/tests/_data/snapshots/poetry/plain_regression-issue727_lock20_1.2.json.bin @@ -862,6 +862,7 @@ ], "metadata": { "component": { + "author": "Your Name ", "bom-ref": "regression-issue727", "description": "regression for issue #727", "name": "regression-issue727", diff --git a/tests/_data/snapshots/poetry/plain_regression-issue727_lock20_1.2.xml.bin b/tests/_data/snapshots/poetry/plain_regression-issue727_lock20_1.2.xml.bin index 7ada3b862..ddf86415d 100644 --- a/tests/_data/snapshots/poetry/plain_regression-issue727_lock20_1.2.xml.bin +++ b/tests/_data/snapshots/poetry/plain_regression-issue727_lock20_1.2.xml.bin @@ -14,6 +14,7 @@ + Your Name <you@example.com> regression-issue727 0.1.0 regression for issue #727 diff --git a/tests/_data/snapshots/poetry/plain_regression-issue727_lock20_1.3.json.bin b/tests/_data/snapshots/poetry/plain_regression-issue727_lock20_1.3.json.bin index b7fa8c23e..22820c3d9 100644 --- a/tests/_data/snapshots/poetry/plain_regression-issue727_lock20_1.3.json.bin +++ b/tests/_data/snapshots/poetry/plain_regression-issue727_lock20_1.3.json.bin @@ -1498,6 +1498,7 @@ ], "metadata": { "component": { + "author": "Your Name ", "bom-ref": "regression-issue727", "description": "regression for issue #727", "name": "regression-issue727", diff --git a/tests/_data/snapshots/poetry/plain_regression-issue727_lock20_1.3.xml.bin b/tests/_data/snapshots/poetry/plain_regression-issue727_lock20_1.3.xml.bin index d33c00eb0..c2c20cc4c 100644 --- a/tests/_data/snapshots/poetry/plain_regression-issue727_lock20_1.3.xml.bin +++ b/tests/_data/snapshots/poetry/plain_regression-issue727_lock20_1.3.xml.bin @@ -14,6 +14,7 @@ + Your Name <you@example.com> regression-issue727 0.1.0 regression for issue #727 diff --git a/tests/_data/snapshots/poetry/plain_regression-issue727_lock20_1.4.json.bin b/tests/_data/snapshots/poetry/plain_regression-issue727_lock20_1.4.json.bin index dcfa8822f..a4be8c1b6 100644 --- a/tests/_data/snapshots/poetry/plain_regression-issue727_lock20_1.4.json.bin +++ b/tests/_data/snapshots/poetry/plain_regression-issue727_lock20_1.4.json.bin @@ -1498,6 +1498,7 @@ ], "metadata": { "component": { + "author": "Your Name ", "bom-ref": "regression-issue727", "description": "regression for issue #727", "name": "regression-issue727", diff --git a/tests/_data/snapshots/poetry/plain_regression-issue727_lock20_1.4.xml.bin b/tests/_data/snapshots/poetry/plain_regression-issue727_lock20_1.4.xml.bin index a3966f6a9..373a8df8b 100644 --- a/tests/_data/snapshots/poetry/plain_regression-issue727_lock20_1.4.xml.bin +++ b/tests/_data/snapshots/poetry/plain_regression-issue727_lock20_1.4.xml.bin @@ -41,6 +41,7 @@ + Your Name <you@example.com> regression-issue727 0.1.0 regression for issue #727 diff --git a/tests/_data/snapshots/poetry/plain_regression-issue727_lock20_1.5.json.bin b/tests/_data/snapshots/poetry/plain_regression-issue727_lock20_1.5.json.bin index 71e1dca38..0f78e59ae 100644 --- a/tests/_data/snapshots/poetry/plain_regression-issue727_lock20_1.5.json.bin +++ b/tests/_data/snapshots/poetry/plain_regression-issue727_lock20_1.5.json.bin @@ -1498,6 +1498,7 @@ ], "metadata": { "component": { + "author": "Your Name ", "bom-ref": "regression-issue727", "description": "regression for issue #727", "name": "regression-issue727", diff --git a/tests/_data/snapshots/poetry/plain_regression-issue727_lock20_1.5.xml.bin b/tests/_data/snapshots/poetry/plain_regression-issue727_lock20_1.5.xml.bin index ecedc4d13..bd930a406 100644 --- a/tests/_data/snapshots/poetry/plain_regression-issue727_lock20_1.5.xml.bin +++ b/tests/_data/snapshots/poetry/plain_regression-issue727_lock20_1.5.xml.bin @@ -51,6 +51,7 @@ + Your Name <you@example.com> regression-issue727 0.1.0 regression for issue #727 diff --git a/tests/_data/snapshots/poetry/plain_regression-issue727_lock20_1.6.json.bin b/tests/_data/snapshots/poetry/plain_regression-issue727_lock20_1.6.json.bin index f64a8f91c..2274e9f58 100644 --- a/tests/_data/snapshots/poetry/plain_regression-issue727_lock20_1.6.json.bin +++ b/tests/_data/snapshots/poetry/plain_regression-issue727_lock20_1.6.json.bin @@ -1498,6 +1498,13 @@ ], "metadata": { "component": { + "author": "Your Name ", + "authors": [ + { + "email": "you@example.com", + "name": "Your Name" + } + ], "bom-ref": "regression-issue727", "description": "regression for issue #727", "name": "regression-issue727", diff --git a/tests/_data/snapshots/poetry/plain_regression-issue727_lock20_1.6.xml.bin b/tests/_data/snapshots/poetry/plain_regression-issue727_lock20_1.6.xml.bin index 85de58819..08da7c330 100644 --- a/tests/_data/snapshots/poetry/plain_regression-issue727_lock20_1.6.xml.bin +++ b/tests/_data/snapshots/poetry/plain_regression-issue727_lock20_1.6.xml.bin @@ -51,6 +51,13 @@ + + + Your Name + you@example.com + + + Your Name <you@example.com> regression-issue727 0.1.0 regression for issue #727 diff --git a/tests/_data/snapshots/poetry/plain_regression-issue727_lock20_1.7.json.bin b/tests/_data/snapshots/poetry/plain_regression-issue727_lock20_1.7.json.bin index 55e96381a..6d55e291d 100644 --- a/tests/_data/snapshots/poetry/plain_regression-issue727_lock20_1.7.json.bin +++ b/tests/_data/snapshots/poetry/plain_regression-issue727_lock20_1.7.json.bin @@ -1498,6 +1498,13 @@ ], "metadata": { "component": { + "author": "Your Name ", + "authors": [ + { + "email": "you@example.com", + "name": "Your Name" + } + ], "bom-ref": "regression-issue727", "description": "regression for issue #727", "name": "regression-issue727", diff --git a/tests/_data/snapshots/poetry/plain_regression-issue727_lock20_1.7.xml.bin b/tests/_data/snapshots/poetry/plain_regression-issue727_lock20_1.7.xml.bin index fc9fa4a8d..ca14f062b 100644 --- a/tests/_data/snapshots/poetry/plain_regression-issue727_lock20_1.7.xml.bin +++ b/tests/_data/snapshots/poetry/plain_regression-issue727_lock20_1.7.xml.bin @@ -51,6 +51,13 @@ + + + Your Name + you@example.com + + + Your Name <you@example.com> regression-issue727 0.1.0 regression for issue #727 diff --git a/tests/_data/snapshots/poetry/plain_regression-issue727_lock21_1.2.json.bin b/tests/_data/snapshots/poetry/plain_regression-issue727_lock21_1.2.json.bin index 0c375d480..e87c7d78e 100644 --- a/tests/_data/snapshots/poetry/plain_regression-issue727_lock21_1.2.json.bin +++ b/tests/_data/snapshots/poetry/plain_regression-issue727_lock21_1.2.json.bin @@ -872,6 +872,7 @@ ], "metadata": { "component": { + "author": "Your Name ", "bom-ref": "regression-issue727", "description": "regression for issue #727", "name": "regression-issue727", diff --git a/tests/_data/snapshots/poetry/plain_regression-issue727_lock21_1.2.xml.bin b/tests/_data/snapshots/poetry/plain_regression-issue727_lock21_1.2.xml.bin index 491778db6..005cf297f 100644 --- a/tests/_data/snapshots/poetry/plain_regression-issue727_lock21_1.2.xml.bin +++ b/tests/_data/snapshots/poetry/plain_regression-issue727_lock21_1.2.xml.bin @@ -14,6 +14,7 @@ + Your Name <you@example.com> regression-issue727 0.1.0 regression for issue #727 diff --git a/tests/_data/snapshots/poetry/plain_regression-issue727_lock21_1.3.json.bin b/tests/_data/snapshots/poetry/plain_regression-issue727_lock21_1.3.json.bin index 23d2e8068..10e890d5c 100644 --- a/tests/_data/snapshots/poetry/plain_regression-issue727_lock21_1.3.json.bin +++ b/tests/_data/snapshots/poetry/plain_regression-issue727_lock21_1.3.json.bin @@ -1520,6 +1520,7 @@ ], "metadata": { "component": { + "author": "Your Name ", "bom-ref": "regression-issue727", "description": "regression for issue #727", "name": "regression-issue727", diff --git a/tests/_data/snapshots/poetry/plain_regression-issue727_lock21_1.3.xml.bin b/tests/_data/snapshots/poetry/plain_regression-issue727_lock21_1.3.xml.bin index ed5cc7d2d..f57d5cb6a 100644 --- a/tests/_data/snapshots/poetry/plain_regression-issue727_lock21_1.3.xml.bin +++ b/tests/_data/snapshots/poetry/plain_regression-issue727_lock21_1.3.xml.bin @@ -14,6 +14,7 @@ + Your Name <you@example.com> regression-issue727 0.1.0 regression for issue #727 diff --git a/tests/_data/snapshots/poetry/plain_regression-issue727_lock21_1.4.json.bin b/tests/_data/snapshots/poetry/plain_regression-issue727_lock21_1.4.json.bin index 947b9efbb..054986dc2 100644 --- a/tests/_data/snapshots/poetry/plain_regression-issue727_lock21_1.4.json.bin +++ b/tests/_data/snapshots/poetry/plain_regression-issue727_lock21_1.4.json.bin @@ -1520,6 +1520,7 @@ ], "metadata": { "component": { + "author": "Your Name ", "bom-ref": "regression-issue727", "description": "regression for issue #727", "name": "regression-issue727", diff --git a/tests/_data/snapshots/poetry/plain_regression-issue727_lock21_1.4.xml.bin b/tests/_data/snapshots/poetry/plain_regression-issue727_lock21_1.4.xml.bin index adfa8d013..160cbbbdc 100644 --- a/tests/_data/snapshots/poetry/plain_regression-issue727_lock21_1.4.xml.bin +++ b/tests/_data/snapshots/poetry/plain_regression-issue727_lock21_1.4.xml.bin @@ -41,6 +41,7 @@ + Your Name <you@example.com> regression-issue727 0.1.0 regression for issue #727 diff --git a/tests/_data/snapshots/poetry/plain_regression-issue727_lock21_1.5.json.bin b/tests/_data/snapshots/poetry/plain_regression-issue727_lock21_1.5.json.bin index 755879119..6de9e13a9 100644 --- a/tests/_data/snapshots/poetry/plain_regression-issue727_lock21_1.5.json.bin +++ b/tests/_data/snapshots/poetry/plain_regression-issue727_lock21_1.5.json.bin @@ -1520,6 +1520,7 @@ ], "metadata": { "component": { + "author": "Your Name ", "bom-ref": "regression-issue727", "description": "regression for issue #727", "name": "regression-issue727", diff --git a/tests/_data/snapshots/poetry/plain_regression-issue727_lock21_1.5.xml.bin b/tests/_data/snapshots/poetry/plain_regression-issue727_lock21_1.5.xml.bin index aec877102..ffb1e6010 100644 --- a/tests/_data/snapshots/poetry/plain_regression-issue727_lock21_1.5.xml.bin +++ b/tests/_data/snapshots/poetry/plain_regression-issue727_lock21_1.5.xml.bin @@ -51,6 +51,7 @@ + Your Name <you@example.com> regression-issue727 0.1.0 regression for issue #727 diff --git a/tests/_data/snapshots/poetry/plain_regression-issue727_lock21_1.6.json.bin b/tests/_data/snapshots/poetry/plain_regression-issue727_lock21_1.6.json.bin index 4727fe2f7..548314cfa 100644 --- a/tests/_data/snapshots/poetry/plain_regression-issue727_lock21_1.6.json.bin +++ b/tests/_data/snapshots/poetry/plain_regression-issue727_lock21_1.6.json.bin @@ -1520,6 +1520,13 @@ ], "metadata": { "component": { + "author": "Your Name ", + "authors": [ + { + "email": "you@example.com", + "name": "Your Name" + } + ], "bom-ref": "regression-issue727", "description": "regression for issue #727", "name": "regression-issue727", diff --git a/tests/_data/snapshots/poetry/plain_regression-issue727_lock21_1.6.xml.bin b/tests/_data/snapshots/poetry/plain_regression-issue727_lock21_1.6.xml.bin index abfb2d70a..c9d531ff0 100644 --- a/tests/_data/snapshots/poetry/plain_regression-issue727_lock21_1.6.xml.bin +++ b/tests/_data/snapshots/poetry/plain_regression-issue727_lock21_1.6.xml.bin @@ -51,6 +51,13 @@ + + + Your Name + you@example.com + + + Your Name <you@example.com> regression-issue727 0.1.0 regression for issue #727 diff --git a/tests/_data/snapshots/poetry/plain_regression-issue727_lock21_1.7.json.bin b/tests/_data/snapshots/poetry/plain_regression-issue727_lock21_1.7.json.bin index 96232a691..83bc89677 100644 --- a/tests/_data/snapshots/poetry/plain_regression-issue727_lock21_1.7.json.bin +++ b/tests/_data/snapshots/poetry/plain_regression-issue727_lock21_1.7.json.bin @@ -1520,6 +1520,13 @@ ], "metadata": { "component": { + "author": "Your Name ", + "authors": [ + { + "email": "you@example.com", + "name": "Your Name" + } + ], "bom-ref": "regression-issue727", "description": "regression for issue #727", "name": "regression-issue727", diff --git a/tests/_data/snapshots/poetry/plain_regression-issue727_lock21_1.7.xml.bin b/tests/_data/snapshots/poetry/plain_regression-issue727_lock21_1.7.xml.bin index a95e2b093..44132a144 100644 --- a/tests/_data/snapshots/poetry/plain_regression-issue727_lock21_1.7.xml.bin +++ b/tests/_data/snapshots/poetry/plain_regression-issue727_lock21_1.7.xml.bin @@ -51,6 +51,13 @@ + + + Your Name + you@example.com + + + Your Name <you@example.com> regression-issue727 0.1.0 regression for issue #727 diff --git a/tests/_data/snapshots/poetry/plain_with-extras_lock10_1.2.json.bin b/tests/_data/snapshots/poetry/plain_with-extras_lock10_1.2.json.bin index 28a5934f8..1d254e98e 100644 --- a/tests/_data/snapshots/poetry/plain_with-extras_lock10_1.2.json.bin +++ b/tests/_data/snapshots/poetry/plain_with-extras_lock10_1.2.json.bin @@ -6,6 +6,7 @@ ], "metadata": { "component": { + "author": "Your Name ", "bom-ref": "with-extras", "description": "depenndencies with extras", "name": "with-extras", diff --git a/tests/_data/snapshots/poetry/plain_with-extras_lock10_1.2.xml.bin b/tests/_data/snapshots/poetry/plain_with-extras_lock10_1.2.xml.bin index 467431141..08eb7b939 100644 --- a/tests/_data/snapshots/poetry/plain_with-extras_lock10_1.2.xml.bin +++ b/tests/_data/snapshots/poetry/plain_with-extras_lock10_1.2.xml.bin @@ -14,6 +14,7 @@ + Your Name <you@example.com> with-extras 0.1.0 depenndencies with extras diff --git a/tests/_data/snapshots/poetry/plain_with-extras_lock10_1.3.json.bin b/tests/_data/snapshots/poetry/plain_with-extras_lock10_1.3.json.bin index e138ad38b..0c30653e6 100644 --- a/tests/_data/snapshots/poetry/plain_with-extras_lock10_1.3.json.bin +++ b/tests/_data/snapshots/poetry/plain_with-extras_lock10_1.3.json.bin @@ -6,6 +6,7 @@ ], "metadata": { "component": { + "author": "Your Name ", "bom-ref": "with-extras", "description": "depenndencies with extras", "name": "with-extras", diff --git a/tests/_data/snapshots/poetry/plain_with-extras_lock10_1.3.xml.bin b/tests/_data/snapshots/poetry/plain_with-extras_lock10_1.3.xml.bin index ed3063be1..aede6fc46 100644 --- a/tests/_data/snapshots/poetry/plain_with-extras_lock10_1.3.xml.bin +++ b/tests/_data/snapshots/poetry/plain_with-extras_lock10_1.3.xml.bin @@ -14,6 +14,7 @@ + Your Name <you@example.com> with-extras 0.1.0 depenndencies with extras diff --git a/tests/_data/snapshots/poetry/plain_with-extras_lock10_1.4.json.bin b/tests/_data/snapshots/poetry/plain_with-extras_lock10_1.4.json.bin index 478c3c93b..84ea3c7dd 100644 --- a/tests/_data/snapshots/poetry/plain_with-extras_lock10_1.4.json.bin +++ b/tests/_data/snapshots/poetry/plain_with-extras_lock10_1.4.json.bin @@ -6,6 +6,7 @@ ], "metadata": { "component": { + "author": "Your Name ", "bom-ref": "with-extras", "description": "depenndencies with extras", "name": "with-extras", diff --git a/tests/_data/snapshots/poetry/plain_with-extras_lock10_1.4.xml.bin b/tests/_data/snapshots/poetry/plain_with-extras_lock10_1.4.xml.bin index 5da16d53e..7ef2c7fe0 100644 --- a/tests/_data/snapshots/poetry/plain_with-extras_lock10_1.4.xml.bin +++ b/tests/_data/snapshots/poetry/plain_with-extras_lock10_1.4.xml.bin @@ -41,6 +41,7 @@ + Your Name <you@example.com> with-extras 0.1.0 depenndencies with extras diff --git a/tests/_data/snapshots/poetry/plain_with-extras_lock10_1.5.json.bin b/tests/_data/snapshots/poetry/plain_with-extras_lock10_1.5.json.bin index e718d5573..7dadfbfb6 100644 --- a/tests/_data/snapshots/poetry/plain_with-extras_lock10_1.5.json.bin +++ b/tests/_data/snapshots/poetry/plain_with-extras_lock10_1.5.json.bin @@ -6,6 +6,7 @@ ], "metadata": { "component": { + "author": "Your Name ", "bom-ref": "with-extras", "description": "depenndencies with extras", "name": "with-extras", diff --git a/tests/_data/snapshots/poetry/plain_with-extras_lock10_1.5.xml.bin b/tests/_data/snapshots/poetry/plain_with-extras_lock10_1.5.xml.bin index 79b073d8d..bc1c59e5a 100644 --- a/tests/_data/snapshots/poetry/plain_with-extras_lock10_1.5.xml.bin +++ b/tests/_data/snapshots/poetry/plain_with-extras_lock10_1.5.xml.bin @@ -51,6 +51,7 @@ + Your Name <you@example.com> with-extras 0.1.0 depenndencies with extras diff --git a/tests/_data/snapshots/poetry/plain_with-extras_lock10_1.6.json.bin b/tests/_data/snapshots/poetry/plain_with-extras_lock10_1.6.json.bin index 321225cfd..bc55a29b1 100644 --- a/tests/_data/snapshots/poetry/plain_with-extras_lock10_1.6.json.bin +++ b/tests/_data/snapshots/poetry/plain_with-extras_lock10_1.6.json.bin @@ -6,6 +6,13 @@ ], "metadata": { "component": { + "author": "Your Name ", + "authors": [ + { + "email": "you@example.com", + "name": "Your Name" + } + ], "bom-ref": "with-extras", "description": "depenndencies with extras", "name": "with-extras", diff --git a/tests/_data/snapshots/poetry/plain_with-extras_lock10_1.6.xml.bin b/tests/_data/snapshots/poetry/plain_with-extras_lock10_1.6.xml.bin index 963395595..dd10f2860 100644 --- a/tests/_data/snapshots/poetry/plain_with-extras_lock10_1.6.xml.bin +++ b/tests/_data/snapshots/poetry/plain_with-extras_lock10_1.6.xml.bin @@ -51,6 +51,13 @@ + + + Your Name + you@example.com + + + Your Name <you@example.com> with-extras 0.1.0 depenndencies with extras diff --git a/tests/_data/snapshots/poetry/plain_with-extras_lock10_1.7.json.bin b/tests/_data/snapshots/poetry/plain_with-extras_lock10_1.7.json.bin index 917e14453..d12275f7f 100644 --- a/tests/_data/snapshots/poetry/plain_with-extras_lock10_1.7.json.bin +++ b/tests/_data/snapshots/poetry/plain_with-extras_lock10_1.7.json.bin @@ -6,6 +6,13 @@ ], "metadata": { "component": { + "author": "Your Name ", + "authors": [ + { + "email": "you@example.com", + "name": "Your Name" + } + ], "bom-ref": "with-extras", "description": "depenndencies with extras", "name": "with-extras", diff --git a/tests/_data/snapshots/poetry/plain_with-extras_lock10_1.7.xml.bin b/tests/_data/snapshots/poetry/plain_with-extras_lock10_1.7.xml.bin index ab7839ef3..329a9f344 100644 --- a/tests/_data/snapshots/poetry/plain_with-extras_lock10_1.7.xml.bin +++ b/tests/_data/snapshots/poetry/plain_with-extras_lock10_1.7.xml.bin @@ -51,6 +51,13 @@ + + + Your Name + you@example.com + + + Your Name <you@example.com> with-extras 0.1.0 depenndencies with extras diff --git a/tests/_data/snapshots/poetry/plain_with-extras_lock11_1.2.json.bin b/tests/_data/snapshots/poetry/plain_with-extras_lock11_1.2.json.bin index 28a5934f8..1d254e98e 100644 --- a/tests/_data/snapshots/poetry/plain_with-extras_lock11_1.2.json.bin +++ b/tests/_data/snapshots/poetry/plain_with-extras_lock11_1.2.json.bin @@ -6,6 +6,7 @@ ], "metadata": { "component": { + "author": "Your Name ", "bom-ref": "with-extras", "description": "depenndencies with extras", "name": "with-extras", diff --git a/tests/_data/snapshots/poetry/plain_with-extras_lock11_1.2.xml.bin b/tests/_data/snapshots/poetry/plain_with-extras_lock11_1.2.xml.bin index 467431141..08eb7b939 100644 --- a/tests/_data/snapshots/poetry/plain_with-extras_lock11_1.2.xml.bin +++ b/tests/_data/snapshots/poetry/plain_with-extras_lock11_1.2.xml.bin @@ -14,6 +14,7 @@ + Your Name <you@example.com> with-extras 0.1.0 depenndencies with extras diff --git a/tests/_data/snapshots/poetry/plain_with-extras_lock11_1.3.json.bin b/tests/_data/snapshots/poetry/plain_with-extras_lock11_1.3.json.bin index e138ad38b..0c30653e6 100644 --- a/tests/_data/snapshots/poetry/plain_with-extras_lock11_1.3.json.bin +++ b/tests/_data/snapshots/poetry/plain_with-extras_lock11_1.3.json.bin @@ -6,6 +6,7 @@ ], "metadata": { "component": { + "author": "Your Name ", "bom-ref": "with-extras", "description": "depenndencies with extras", "name": "with-extras", diff --git a/tests/_data/snapshots/poetry/plain_with-extras_lock11_1.3.xml.bin b/tests/_data/snapshots/poetry/plain_with-extras_lock11_1.3.xml.bin index ed3063be1..aede6fc46 100644 --- a/tests/_data/snapshots/poetry/plain_with-extras_lock11_1.3.xml.bin +++ b/tests/_data/snapshots/poetry/plain_with-extras_lock11_1.3.xml.bin @@ -14,6 +14,7 @@ + Your Name <you@example.com> with-extras 0.1.0 depenndencies with extras diff --git a/tests/_data/snapshots/poetry/plain_with-extras_lock11_1.4.json.bin b/tests/_data/snapshots/poetry/plain_with-extras_lock11_1.4.json.bin index 478c3c93b..84ea3c7dd 100644 --- a/tests/_data/snapshots/poetry/plain_with-extras_lock11_1.4.json.bin +++ b/tests/_data/snapshots/poetry/plain_with-extras_lock11_1.4.json.bin @@ -6,6 +6,7 @@ ], "metadata": { "component": { + "author": "Your Name ", "bom-ref": "with-extras", "description": "depenndencies with extras", "name": "with-extras", diff --git a/tests/_data/snapshots/poetry/plain_with-extras_lock11_1.4.xml.bin b/tests/_data/snapshots/poetry/plain_with-extras_lock11_1.4.xml.bin index 5da16d53e..7ef2c7fe0 100644 --- a/tests/_data/snapshots/poetry/plain_with-extras_lock11_1.4.xml.bin +++ b/tests/_data/snapshots/poetry/plain_with-extras_lock11_1.4.xml.bin @@ -41,6 +41,7 @@ + Your Name <you@example.com> with-extras 0.1.0 depenndencies with extras diff --git a/tests/_data/snapshots/poetry/plain_with-extras_lock11_1.5.json.bin b/tests/_data/snapshots/poetry/plain_with-extras_lock11_1.5.json.bin index e718d5573..7dadfbfb6 100644 --- a/tests/_data/snapshots/poetry/plain_with-extras_lock11_1.5.json.bin +++ b/tests/_data/snapshots/poetry/plain_with-extras_lock11_1.5.json.bin @@ -6,6 +6,7 @@ ], "metadata": { "component": { + "author": "Your Name ", "bom-ref": "with-extras", "description": "depenndencies with extras", "name": "with-extras", diff --git a/tests/_data/snapshots/poetry/plain_with-extras_lock11_1.5.xml.bin b/tests/_data/snapshots/poetry/plain_with-extras_lock11_1.5.xml.bin index 79b073d8d..bc1c59e5a 100644 --- a/tests/_data/snapshots/poetry/plain_with-extras_lock11_1.5.xml.bin +++ b/tests/_data/snapshots/poetry/plain_with-extras_lock11_1.5.xml.bin @@ -51,6 +51,7 @@ + Your Name <you@example.com> with-extras 0.1.0 depenndencies with extras diff --git a/tests/_data/snapshots/poetry/plain_with-extras_lock11_1.6.json.bin b/tests/_data/snapshots/poetry/plain_with-extras_lock11_1.6.json.bin index 321225cfd..bc55a29b1 100644 --- a/tests/_data/snapshots/poetry/plain_with-extras_lock11_1.6.json.bin +++ b/tests/_data/snapshots/poetry/plain_with-extras_lock11_1.6.json.bin @@ -6,6 +6,13 @@ ], "metadata": { "component": { + "author": "Your Name ", + "authors": [ + { + "email": "you@example.com", + "name": "Your Name" + } + ], "bom-ref": "with-extras", "description": "depenndencies with extras", "name": "with-extras", diff --git a/tests/_data/snapshots/poetry/plain_with-extras_lock11_1.6.xml.bin b/tests/_data/snapshots/poetry/plain_with-extras_lock11_1.6.xml.bin index 963395595..dd10f2860 100644 --- a/tests/_data/snapshots/poetry/plain_with-extras_lock11_1.6.xml.bin +++ b/tests/_data/snapshots/poetry/plain_with-extras_lock11_1.6.xml.bin @@ -51,6 +51,13 @@ + + + Your Name + you@example.com + + + Your Name <you@example.com> with-extras 0.1.0 depenndencies with extras diff --git a/tests/_data/snapshots/poetry/plain_with-extras_lock11_1.7.json.bin b/tests/_data/snapshots/poetry/plain_with-extras_lock11_1.7.json.bin index 917e14453..d12275f7f 100644 --- a/tests/_data/snapshots/poetry/plain_with-extras_lock11_1.7.json.bin +++ b/tests/_data/snapshots/poetry/plain_with-extras_lock11_1.7.json.bin @@ -6,6 +6,13 @@ ], "metadata": { "component": { + "author": "Your Name ", + "authors": [ + { + "email": "you@example.com", + "name": "Your Name" + } + ], "bom-ref": "with-extras", "description": "depenndencies with extras", "name": "with-extras", diff --git a/tests/_data/snapshots/poetry/plain_with-extras_lock11_1.7.xml.bin b/tests/_data/snapshots/poetry/plain_with-extras_lock11_1.7.xml.bin index ab7839ef3..329a9f344 100644 --- a/tests/_data/snapshots/poetry/plain_with-extras_lock11_1.7.xml.bin +++ b/tests/_data/snapshots/poetry/plain_with-extras_lock11_1.7.xml.bin @@ -51,6 +51,13 @@ + + + Your Name + you@example.com + + + Your Name <you@example.com> with-extras 0.1.0 depenndencies with extras diff --git a/tests/_data/snapshots/poetry/plain_with-extras_lock20_1.2.json.bin b/tests/_data/snapshots/poetry/plain_with-extras_lock20_1.2.json.bin index 28a5934f8..1d254e98e 100644 --- a/tests/_data/snapshots/poetry/plain_with-extras_lock20_1.2.json.bin +++ b/tests/_data/snapshots/poetry/plain_with-extras_lock20_1.2.json.bin @@ -6,6 +6,7 @@ ], "metadata": { "component": { + "author": "Your Name ", "bom-ref": "with-extras", "description": "depenndencies with extras", "name": "with-extras", diff --git a/tests/_data/snapshots/poetry/plain_with-extras_lock20_1.2.xml.bin b/tests/_data/snapshots/poetry/plain_with-extras_lock20_1.2.xml.bin index 467431141..08eb7b939 100644 --- a/tests/_data/snapshots/poetry/plain_with-extras_lock20_1.2.xml.bin +++ b/tests/_data/snapshots/poetry/plain_with-extras_lock20_1.2.xml.bin @@ -14,6 +14,7 @@ + Your Name <you@example.com> with-extras 0.1.0 depenndencies with extras diff --git a/tests/_data/snapshots/poetry/plain_with-extras_lock20_1.3.json.bin b/tests/_data/snapshots/poetry/plain_with-extras_lock20_1.3.json.bin index e138ad38b..0c30653e6 100644 --- a/tests/_data/snapshots/poetry/plain_with-extras_lock20_1.3.json.bin +++ b/tests/_data/snapshots/poetry/plain_with-extras_lock20_1.3.json.bin @@ -6,6 +6,7 @@ ], "metadata": { "component": { + "author": "Your Name ", "bom-ref": "with-extras", "description": "depenndencies with extras", "name": "with-extras", diff --git a/tests/_data/snapshots/poetry/plain_with-extras_lock20_1.3.xml.bin b/tests/_data/snapshots/poetry/plain_with-extras_lock20_1.3.xml.bin index ed3063be1..aede6fc46 100644 --- a/tests/_data/snapshots/poetry/plain_with-extras_lock20_1.3.xml.bin +++ b/tests/_data/snapshots/poetry/plain_with-extras_lock20_1.3.xml.bin @@ -14,6 +14,7 @@ + Your Name <you@example.com> with-extras 0.1.0 depenndencies with extras diff --git a/tests/_data/snapshots/poetry/plain_with-extras_lock20_1.4.json.bin b/tests/_data/snapshots/poetry/plain_with-extras_lock20_1.4.json.bin index 478c3c93b..84ea3c7dd 100644 --- a/tests/_data/snapshots/poetry/plain_with-extras_lock20_1.4.json.bin +++ b/tests/_data/snapshots/poetry/plain_with-extras_lock20_1.4.json.bin @@ -6,6 +6,7 @@ ], "metadata": { "component": { + "author": "Your Name ", "bom-ref": "with-extras", "description": "depenndencies with extras", "name": "with-extras", diff --git a/tests/_data/snapshots/poetry/plain_with-extras_lock20_1.4.xml.bin b/tests/_data/snapshots/poetry/plain_with-extras_lock20_1.4.xml.bin index 5da16d53e..7ef2c7fe0 100644 --- a/tests/_data/snapshots/poetry/plain_with-extras_lock20_1.4.xml.bin +++ b/tests/_data/snapshots/poetry/plain_with-extras_lock20_1.4.xml.bin @@ -41,6 +41,7 @@ + Your Name <you@example.com> with-extras 0.1.0 depenndencies with extras diff --git a/tests/_data/snapshots/poetry/plain_with-extras_lock20_1.5.json.bin b/tests/_data/snapshots/poetry/plain_with-extras_lock20_1.5.json.bin index e718d5573..7dadfbfb6 100644 --- a/tests/_data/snapshots/poetry/plain_with-extras_lock20_1.5.json.bin +++ b/tests/_data/snapshots/poetry/plain_with-extras_lock20_1.5.json.bin @@ -6,6 +6,7 @@ ], "metadata": { "component": { + "author": "Your Name ", "bom-ref": "with-extras", "description": "depenndencies with extras", "name": "with-extras", diff --git a/tests/_data/snapshots/poetry/plain_with-extras_lock20_1.5.xml.bin b/tests/_data/snapshots/poetry/plain_with-extras_lock20_1.5.xml.bin index 79b073d8d..bc1c59e5a 100644 --- a/tests/_data/snapshots/poetry/plain_with-extras_lock20_1.5.xml.bin +++ b/tests/_data/snapshots/poetry/plain_with-extras_lock20_1.5.xml.bin @@ -51,6 +51,7 @@ + Your Name <you@example.com> with-extras 0.1.0 depenndencies with extras diff --git a/tests/_data/snapshots/poetry/plain_with-extras_lock20_1.6.json.bin b/tests/_data/snapshots/poetry/plain_with-extras_lock20_1.6.json.bin index 321225cfd..bc55a29b1 100644 --- a/tests/_data/snapshots/poetry/plain_with-extras_lock20_1.6.json.bin +++ b/tests/_data/snapshots/poetry/plain_with-extras_lock20_1.6.json.bin @@ -6,6 +6,13 @@ ], "metadata": { "component": { + "author": "Your Name ", + "authors": [ + { + "email": "you@example.com", + "name": "Your Name" + } + ], "bom-ref": "with-extras", "description": "depenndencies with extras", "name": "with-extras", diff --git a/tests/_data/snapshots/poetry/plain_with-extras_lock20_1.6.xml.bin b/tests/_data/snapshots/poetry/plain_with-extras_lock20_1.6.xml.bin index 963395595..dd10f2860 100644 --- a/tests/_data/snapshots/poetry/plain_with-extras_lock20_1.6.xml.bin +++ b/tests/_data/snapshots/poetry/plain_with-extras_lock20_1.6.xml.bin @@ -51,6 +51,13 @@ + + + Your Name + you@example.com + + + Your Name <you@example.com> with-extras 0.1.0 depenndencies with extras diff --git a/tests/_data/snapshots/poetry/plain_with-extras_lock20_1.7.json.bin b/tests/_data/snapshots/poetry/plain_with-extras_lock20_1.7.json.bin index 917e14453..d12275f7f 100644 --- a/tests/_data/snapshots/poetry/plain_with-extras_lock20_1.7.json.bin +++ b/tests/_data/snapshots/poetry/plain_with-extras_lock20_1.7.json.bin @@ -6,6 +6,13 @@ ], "metadata": { "component": { + "author": "Your Name ", + "authors": [ + { + "email": "you@example.com", + "name": "Your Name" + } + ], "bom-ref": "with-extras", "description": "depenndencies with extras", "name": "with-extras", diff --git a/tests/_data/snapshots/poetry/plain_with-extras_lock20_1.7.xml.bin b/tests/_data/snapshots/poetry/plain_with-extras_lock20_1.7.xml.bin index ab7839ef3..329a9f344 100644 --- a/tests/_data/snapshots/poetry/plain_with-extras_lock20_1.7.xml.bin +++ b/tests/_data/snapshots/poetry/plain_with-extras_lock20_1.7.xml.bin @@ -51,6 +51,13 @@ + + + Your Name + you@example.com + + + Your Name <you@example.com> with-extras 0.1.0 depenndencies with extras diff --git a/tests/_data/snapshots/poetry/plain_with-extras_lock21_1.2.json.bin b/tests/_data/snapshots/poetry/plain_with-extras_lock21_1.2.json.bin index 28a5934f8..1d254e98e 100644 --- a/tests/_data/snapshots/poetry/plain_with-extras_lock21_1.2.json.bin +++ b/tests/_data/snapshots/poetry/plain_with-extras_lock21_1.2.json.bin @@ -6,6 +6,7 @@ ], "metadata": { "component": { + "author": "Your Name ", "bom-ref": "with-extras", "description": "depenndencies with extras", "name": "with-extras", diff --git a/tests/_data/snapshots/poetry/plain_with-extras_lock21_1.2.xml.bin b/tests/_data/snapshots/poetry/plain_with-extras_lock21_1.2.xml.bin index 467431141..08eb7b939 100644 --- a/tests/_data/snapshots/poetry/plain_with-extras_lock21_1.2.xml.bin +++ b/tests/_data/snapshots/poetry/plain_with-extras_lock21_1.2.xml.bin @@ -14,6 +14,7 @@ + Your Name <you@example.com> with-extras 0.1.0 depenndencies with extras diff --git a/tests/_data/snapshots/poetry/plain_with-extras_lock21_1.3.json.bin b/tests/_data/snapshots/poetry/plain_with-extras_lock21_1.3.json.bin index e138ad38b..0c30653e6 100644 --- a/tests/_data/snapshots/poetry/plain_with-extras_lock21_1.3.json.bin +++ b/tests/_data/snapshots/poetry/plain_with-extras_lock21_1.3.json.bin @@ -6,6 +6,7 @@ ], "metadata": { "component": { + "author": "Your Name ", "bom-ref": "with-extras", "description": "depenndencies with extras", "name": "with-extras", diff --git a/tests/_data/snapshots/poetry/plain_with-extras_lock21_1.3.xml.bin b/tests/_data/snapshots/poetry/plain_with-extras_lock21_1.3.xml.bin index ed3063be1..aede6fc46 100644 --- a/tests/_data/snapshots/poetry/plain_with-extras_lock21_1.3.xml.bin +++ b/tests/_data/snapshots/poetry/plain_with-extras_lock21_1.3.xml.bin @@ -14,6 +14,7 @@ + Your Name <you@example.com> with-extras 0.1.0 depenndencies with extras diff --git a/tests/_data/snapshots/poetry/plain_with-extras_lock21_1.4.json.bin b/tests/_data/snapshots/poetry/plain_with-extras_lock21_1.4.json.bin index 478c3c93b..84ea3c7dd 100644 --- a/tests/_data/snapshots/poetry/plain_with-extras_lock21_1.4.json.bin +++ b/tests/_data/snapshots/poetry/plain_with-extras_lock21_1.4.json.bin @@ -6,6 +6,7 @@ ], "metadata": { "component": { + "author": "Your Name ", "bom-ref": "with-extras", "description": "depenndencies with extras", "name": "with-extras", diff --git a/tests/_data/snapshots/poetry/plain_with-extras_lock21_1.4.xml.bin b/tests/_data/snapshots/poetry/plain_with-extras_lock21_1.4.xml.bin index 5da16d53e..7ef2c7fe0 100644 --- a/tests/_data/snapshots/poetry/plain_with-extras_lock21_1.4.xml.bin +++ b/tests/_data/snapshots/poetry/plain_with-extras_lock21_1.4.xml.bin @@ -41,6 +41,7 @@ + Your Name <you@example.com> with-extras 0.1.0 depenndencies with extras diff --git a/tests/_data/snapshots/poetry/plain_with-extras_lock21_1.5.json.bin b/tests/_data/snapshots/poetry/plain_with-extras_lock21_1.5.json.bin index e718d5573..7dadfbfb6 100644 --- a/tests/_data/snapshots/poetry/plain_with-extras_lock21_1.5.json.bin +++ b/tests/_data/snapshots/poetry/plain_with-extras_lock21_1.5.json.bin @@ -6,6 +6,7 @@ ], "metadata": { "component": { + "author": "Your Name ", "bom-ref": "with-extras", "description": "depenndencies with extras", "name": "with-extras", diff --git a/tests/_data/snapshots/poetry/plain_with-extras_lock21_1.5.xml.bin b/tests/_data/snapshots/poetry/plain_with-extras_lock21_1.5.xml.bin index 79b073d8d..bc1c59e5a 100644 --- a/tests/_data/snapshots/poetry/plain_with-extras_lock21_1.5.xml.bin +++ b/tests/_data/snapshots/poetry/plain_with-extras_lock21_1.5.xml.bin @@ -51,6 +51,7 @@ + Your Name <you@example.com> with-extras 0.1.0 depenndencies with extras diff --git a/tests/_data/snapshots/poetry/plain_with-extras_lock21_1.6.json.bin b/tests/_data/snapshots/poetry/plain_with-extras_lock21_1.6.json.bin index 321225cfd..bc55a29b1 100644 --- a/tests/_data/snapshots/poetry/plain_with-extras_lock21_1.6.json.bin +++ b/tests/_data/snapshots/poetry/plain_with-extras_lock21_1.6.json.bin @@ -6,6 +6,13 @@ ], "metadata": { "component": { + "author": "Your Name ", + "authors": [ + { + "email": "you@example.com", + "name": "Your Name" + } + ], "bom-ref": "with-extras", "description": "depenndencies with extras", "name": "with-extras", diff --git a/tests/_data/snapshots/poetry/plain_with-extras_lock21_1.6.xml.bin b/tests/_data/snapshots/poetry/plain_with-extras_lock21_1.6.xml.bin index 963395595..dd10f2860 100644 --- a/tests/_data/snapshots/poetry/plain_with-extras_lock21_1.6.xml.bin +++ b/tests/_data/snapshots/poetry/plain_with-extras_lock21_1.6.xml.bin @@ -51,6 +51,13 @@ + + + Your Name + you@example.com + + + Your Name <you@example.com> with-extras 0.1.0 depenndencies with extras diff --git a/tests/_data/snapshots/poetry/plain_with-extras_lock21_1.7.json.bin b/tests/_data/snapshots/poetry/plain_with-extras_lock21_1.7.json.bin index 917e14453..d12275f7f 100644 --- a/tests/_data/snapshots/poetry/plain_with-extras_lock21_1.7.json.bin +++ b/tests/_data/snapshots/poetry/plain_with-extras_lock21_1.7.json.bin @@ -6,6 +6,13 @@ ], "metadata": { "component": { + "author": "Your Name ", + "authors": [ + { + "email": "you@example.com", + "name": "Your Name" + } + ], "bom-ref": "with-extras", "description": "depenndencies with extras", "name": "with-extras", diff --git a/tests/_data/snapshots/poetry/plain_with-extras_lock21_1.7.xml.bin b/tests/_data/snapshots/poetry/plain_with-extras_lock21_1.7.xml.bin index ab7839ef3..329a9f344 100644 --- a/tests/_data/snapshots/poetry/plain_with-extras_lock21_1.7.xml.bin +++ b/tests/_data/snapshots/poetry/plain_with-extras_lock21_1.7.xml.bin @@ -51,6 +51,13 @@ + + + Your Name + you@example.com + + + Your Name <you@example.com> with-extras 0.1.0 depenndencies with extras diff --git a/tests/_data/snapshots/poetry/plain_with-optionals-no-extra_lock10_1.2.json.bin b/tests/_data/snapshots/poetry/plain_with-optionals-no-extra_lock10_1.2.json.bin index 6d128c92c..d903c8414 100644 --- a/tests/_data/snapshots/poetry/plain_with-optionals-no-extra_lock10_1.2.json.bin +++ b/tests/_data/snapshots/poetry/plain_with-optionals-no-extra_lock10_1.2.json.bin @@ -6,6 +6,7 @@ ], "metadata": { "component": { + "author": "Your Name ", "bom-ref": "with-optionals-no-extra", "description": "depenndencies with optionlas and no exgtras", "name": "with-optionals-no-extra", diff --git a/tests/_data/snapshots/poetry/plain_with-optionals-no-extra_lock10_1.2.xml.bin b/tests/_data/snapshots/poetry/plain_with-optionals-no-extra_lock10_1.2.xml.bin index 90ee9fbd4..f30da9e5d 100644 --- a/tests/_data/snapshots/poetry/plain_with-optionals-no-extra_lock10_1.2.xml.bin +++ b/tests/_data/snapshots/poetry/plain_with-optionals-no-extra_lock10_1.2.xml.bin @@ -14,6 +14,7 @@ + Your Name <you@example.com> with-optionals-no-extra 0.1.0 depenndencies with optionlas and no exgtras diff --git a/tests/_data/snapshots/poetry/plain_with-optionals-no-extra_lock10_1.3.json.bin b/tests/_data/snapshots/poetry/plain_with-optionals-no-extra_lock10_1.3.json.bin index 307dd9359..74e85ad09 100644 --- a/tests/_data/snapshots/poetry/plain_with-optionals-no-extra_lock10_1.3.json.bin +++ b/tests/_data/snapshots/poetry/plain_with-optionals-no-extra_lock10_1.3.json.bin @@ -6,6 +6,7 @@ ], "metadata": { "component": { + "author": "Your Name ", "bom-ref": "with-optionals-no-extra", "description": "depenndencies with optionlas and no exgtras", "name": "with-optionals-no-extra", diff --git a/tests/_data/snapshots/poetry/plain_with-optionals-no-extra_lock10_1.3.xml.bin b/tests/_data/snapshots/poetry/plain_with-optionals-no-extra_lock10_1.3.xml.bin index c4729cead..a8a89887c 100644 --- a/tests/_data/snapshots/poetry/plain_with-optionals-no-extra_lock10_1.3.xml.bin +++ b/tests/_data/snapshots/poetry/plain_with-optionals-no-extra_lock10_1.3.xml.bin @@ -14,6 +14,7 @@ + Your Name <you@example.com> with-optionals-no-extra 0.1.0 depenndencies with optionlas and no exgtras diff --git a/tests/_data/snapshots/poetry/plain_with-optionals-no-extra_lock10_1.4.json.bin b/tests/_data/snapshots/poetry/plain_with-optionals-no-extra_lock10_1.4.json.bin index 4781e8e6b..a36d628aa 100644 --- a/tests/_data/snapshots/poetry/plain_with-optionals-no-extra_lock10_1.4.json.bin +++ b/tests/_data/snapshots/poetry/plain_with-optionals-no-extra_lock10_1.4.json.bin @@ -6,6 +6,7 @@ ], "metadata": { "component": { + "author": "Your Name ", "bom-ref": "with-optionals-no-extra", "description": "depenndencies with optionlas and no exgtras", "name": "with-optionals-no-extra", diff --git a/tests/_data/snapshots/poetry/plain_with-optionals-no-extra_lock10_1.4.xml.bin b/tests/_data/snapshots/poetry/plain_with-optionals-no-extra_lock10_1.4.xml.bin index 0fda5529a..f0e7f4fc0 100644 --- a/tests/_data/snapshots/poetry/plain_with-optionals-no-extra_lock10_1.4.xml.bin +++ b/tests/_data/snapshots/poetry/plain_with-optionals-no-extra_lock10_1.4.xml.bin @@ -41,6 +41,7 @@ + Your Name <you@example.com> with-optionals-no-extra 0.1.0 depenndencies with optionlas and no exgtras diff --git a/tests/_data/snapshots/poetry/plain_with-optionals-no-extra_lock10_1.5.json.bin b/tests/_data/snapshots/poetry/plain_with-optionals-no-extra_lock10_1.5.json.bin index e123dd16b..8b847576c 100644 --- a/tests/_data/snapshots/poetry/plain_with-optionals-no-extra_lock10_1.5.json.bin +++ b/tests/_data/snapshots/poetry/plain_with-optionals-no-extra_lock10_1.5.json.bin @@ -6,6 +6,7 @@ ], "metadata": { "component": { + "author": "Your Name ", "bom-ref": "with-optionals-no-extra", "description": "depenndencies with optionlas and no exgtras", "name": "with-optionals-no-extra", diff --git a/tests/_data/snapshots/poetry/plain_with-optionals-no-extra_lock10_1.5.xml.bin b/tests/_data/snapshots/poetry/plain_with-optionals-no-extra_lock10_1.5.xml.bin index 85a1378c9..f5ce98014 100644 --- a/tests/_data/snapshots/poetry/plain_with-optionals-no-extra_lock10_1.5.xml.bin +++ b/tests/_data/snapshots/poetry/plain_with-optionals-no-extra_lock10_1.5.xml.bin @@ -51,6 +51,7 @@ + Your Name <you@example.com> with-optionals-no-extra 0.1.0 depenndencies with optionlas and no exgtras diff --git a/tests/_data/snapshots/poetry/plain_with-optionals-no-extra_lock10_1.6.json.bin b/tests/_data/snapshots/poetry/plain_with-optionals-no-extra_lock10_1.6.json.bin index 944883295..c0d161d49 100644 --- a/tests/_data/snapshots/poetry/plain_with-optionals-no-extra_lock10_1.6.json.bin +++ b/tests/_data/snapshots/poetry/plain_with-optionals-no-extra_lock10_1.6.json.bin @@ -6,6 +6,13 @@ ], "metadata": { "component": { + "author": "Your Name ", + "authors": [ + { + "email": "you@example.com", + "name": "Your Name" + } + ], "bom-ref": "with-optionals-no-extra", "description": "depenndencies with optionlas and no exgtras", "name": "with-optionals-no-extra", diff --git a/tests/_data/snapshots/poetry/plain_with-optionals-no-extra_lock10_1.6.xml.bin b/tests/_data/snapshots/poetry/plain_with-optionals-no-extra_lock10_1.6.xml.bin index 7d579425f..4c50f13d3 100644 --- a/tests/_data/snapshots/poetry/plain_with-optionals-no-extra_lock10_1.6.xml.bin +++ b/tests/_data/snapshots/poetry/plain_with-optionals-no-extra_lock10_1.6.xml.bin @@ -51,6 +51,13 @@ + + + Your Name + you@example.com + + + Your Name <you@example.com> with-optionals-no-extra 0.1.0 depenndencies with optionlas and no exgtras diff --git a/tests/_data/snapshots/poetry/plain_with-optionals-no-extra_lock10_1.7.json.bin b/tests/_data/snapshots/poetry/plain_with-optionals-no-extra_lock10_1.7.json.bin index 5da0b1cac..ca6f00ac2 100644 --- a/tests/_data/snapshots/poetry/plain_with-optionals-no-extra_lock10_1.7.json.bin +++ b/tests/_data/snapshots/poetry/plain_with-optionals-no-extra_lock10_1.7.json.bin @@ -6,6 +6,13 @@ ], "metadata": { "component": { + "author": "Your Name ", + "authors": [ + { + "email": "you@example.com", + "name": "Your Name" + } + ], "bom-ref": "with-optionals-no-extra", "description": "depenndencies with optionlas and no exgtras", "name": "with-optionals-no-extra", diff --git a/tests/_data/snapshots/poetry/plain_with-optionals-no-extra_lock10_1.7.xml.bin b/tests/_data/snapshots/poetry/plain_with-optionals-no-extra_lock10_1.7.xml.bin index 04b69db5e..2223088fa 100644 --- a/tests/_data/snapshots/poetry/plain_with-optionals-no-extra_lock10_1.7.xml.bin +++ b/tests/_data/snapshots/poetry/plain_with-optionals-no-extra_lock10_1.7.xml.bin @@ -51,6 +51,13 @@ + + + Your Name + you@example.com + + + Your Name <you@example.com> with-optionals-no-extra 0.1.0 depenndencies with optionlas and no exgtras diff --git a/tests/_data/snapshots/poetry/plain_with-optionals-no-extra_lock11_1.2.json.bin b/tests/_data/snapshots/poetry/plain_with-optionals-no-extra_lock11_1.2.json.bin index 6d128c92c..d903c8414 100644 --- a/tests/_data/snapshots/poetry/plain_with-optionals-no-extra_lock11_1.2.json.bin +++ b/tests/_data/snapshots/poetry/plain_with-optionals-no-extra_lock11_1.2.json.bin @@ -6,6 +6,7 @@ ], "metadata": { "component": { + "author": "Your Name ", "bom-ref": "with-optionals-no-extra", "description": "depenndencies with optionlas and no exgtras", "name": "with-optionals-no-extra", diff --git a/tests/_data/snapshots/poetry/plain_with-optionals-no-extra_lock11_1.2.xml.bin b/tests/_data/snapshots/poetry/plain_with-optionals-no-extra_lock11_1.2.xml.bin index 90ee9fbd4..f30da9e5d 100644 --- a/tests/_data/snapshots/poetry/plain_with-optionals-no-extra_lock11_1.2.xml.bin +++ b/tests/_data/snapshots/poetry/plain_with-optionals-no-extra_lock11_1.2.xml.bin @@ -14,6 +14,7 @@ + Your Name <you@example.com> with-optionals-no-extra 0.1.0 depenndencies with optionlas and no exgtras diff --git a/tests/_data/snapshots/poetry/plain_with-optionals-no-extra_lock11_1.3.json.bin b/tests/_data/snapshots/poetry/plain_with-optionals-no-extra_lock11_1.3.json.bin index 307dd9359..74e85ad09 100644 --- a/tests/_data/snapshots/poetry/plain_with-optionals-no-extra_lock11_1.3.json.bin +++ b/tests/_data/snapshots/poetry/plain_with-optionals-no-extra_lock11_1.3.json.bin @@ -6,6 +6,7 @@ ], "metadata": { "component": { + "author": "Your Name ", "bom-ref": "with-optionals-no-extra", "description": "depenndencies with optionlas and no exgtras", "name": "with-optionals-no-extra", diff --git a/tests/_data/snapshots/poetry/plain_with-optionals-no-extra_lock11_1.3.xml.bin b/tests/_data/snapshots/poetry/plain_with-optionals-no-extra_lock11_1.3.xml.bin index c4729cead..a8a89887c 100644 --- a/tests/_data/snapshots/poetry/plain_with-optionals-no-extra_lock11_1.3.xml.bin +++ b/tests/_data/snapshots/poetry/plain_with-optionals-no-extra_lock11_1.3.xml.bin @@ -14,6 +14,7 @@ + Your Name <you@example.com> with-optionals-no-extra 0.1.0 depenndencies with optionlas and no exgtras diff --git a/tests/_data/snapshots/poetry/plain_with-optionals-no-extra_lock11_1.4.json.bin b/tests/_data/snapshots/poetry/plain_with-optionals-no-extra_lock11_1.4.json.bin index 4781e8e6b..a36d628aa 100644 --- a/tests/_data/snapshots/poetry/plain_with-optionals-no-extra_lock11_1.4.json.bin +++ b/tests/_data/snapshots/poetry/plain_with-optionals-no-extra_lock11_1.4.json.bin @@ -6,6 +6,7 @@ ], "metadata": { "component": { + "author": "Your Name ", "bom-ref": "with-optionals-no-extra", "description": "depenndencies with optionlas and no exgtras", "name": "with-optionals-no-extra", diff --git a/tests/_data/snapshots/poetry/plain_with-optionals-no-extra_lock11_1.4.xml.bin b/tests/_data/snapshots/poetry/plain_with-optionals-no-extra_lock11_1.4.xml.bin index 0fda5529a..f0e7f4fc0 100644 --- a/tests/_data/snapshots/poetry/plain_with-optionals-no-extra_lock11_1.4.xml.bin +++ b/tests/_data/snapshots/poetry/plain_with-optionals-no-extra_lock11_1.4.xml.bin @@ -41,6 +41,7 @@ + Your Name <you@example.com> with-optionals-no-extra 0.1.0 depenndencies with optionlas and no exgtras diff --git a/tests/_data/snapshots/poetry/plain_with-optionals-no-extra_lock11_1.5.json.bin b/tests/_data/snapshots/poetry/plain_with-optionals-no-extra_lock11_1.5.json.bin index e123dd16b..8b847576c 100644 --- a/tests/_data/snapshots/poetry/plain_with-optionals-no-extra_lock11_1.5.json.bin +++ b/tests/_data/snapshots/poetry/plain_with-optionals-no-extra_lock11_1.5.json.bin @@ -6,6 +6,7 @@ ], "metadata": { "component": { + "author": "Your Name ", "bom-ref": "with-optionals-no-extra", "description": "depenndencies with optionlas and no exgtras", "name": "with-optionals-no-extra", diff --git a/tests/_data/snapshots/poetry/plain_with-optionals-no-extra_lock11_1.5.xml.bin b/tests/_data/snapshots/poetry/plain_with-optionals-no-extra_lock11_1.5.xml.bin index 85a1378c9..f5ce98014 100644 --- a/tests/_data/snapshots/poetry/plain_with-optionals-no-extra_lock11_1.5.xml.bin +++ b/tests/_data/snapshots/poetry/plain_with-optionals-no-extra_lock11_1.5.xml.bin @@ -51,6 +51,7 @@ + Your Name <you@example.com> with-optionals-no-extra 0.1.0 depenndencies with optionlas and no exgtras diff --git a/tests/_data/snapshots/poetry/plain_with-optionals-no-extra_lock11_1.6.json.bin b/tests/_data/snapshots/poetry/plain_with-optionals-no-extra_lock11_1.6.json.bin index 944883295..c0d161d49 100644 --- a/tests/_data/snapshots/poetry/plain_with-optionals-no-extra_lock11_1.6.json.bin +++ b/tests/_data/snapshots/poetry/plain_with-optionals-no-extra_lock11_1.6.json.bin @@ -6,6 +6,13 @@ ], "metadata": { "component": { + "author": "Your Name ", + "authors": [ + { + "email": "you@example.com", + "name": "Your Name" + } + ], "bom-ref": "with-optionals-no-extra", "description": "depenndencies with optionlas and no exgtras", "name": "with-optionals-no-extra", diff --git a/tests/_data/snapshots/poetry/plain_with-optionals-no-extra_lock11_1.6.xml.bin b/tests/_data/snapshots/poetry/plain_with-optionals-no-extra_lock11_1.6.xml.bin index 7d579425f..4c50f13d3 100644 --- a/tests/_data/snapshots/poetry/plain_with-optionals-no-extra_lock11_1.6.xml.bin +++ b/tests/_data/snapshots/poetry/plain_with-optionals-no-extra_lock11_1.6.xml.bin @@ -51,6 +51,13 @@ + + + Your Name + you@example.com + + + Your Name <you@example.com> with-optionals-no-extra 0.1.0 depenndencies with optionlas and no exgtras diff --git a/tests/_data/snapshots/poetry/plain_with-optionals-no-extra_lock11_1.7.json.bin b/tests/_data/snapshots/poetry/plain_with-optionals-no-extra_lock11_1.7.json.bin index 5da0b1cac..ca6f00ac2 100644 --- a/tests/_data/snapshots/poetry/plain_with-optionals-no-extra_lock11_1.7.json.bin +++ b/tests/_data/snapshots/poetry/plain_with-optionals-no-extra_lock11_1.7.json.bin @@ -6,6 +6,13 @@ ], "metadata": { "component": { + "author": "Your Name ", + "authors": [ + { + "email": "you@example.com", + "name": "Your Name" + } + ], "bom-ref": "with-optionals-no-extra", "description": "depenndencies with optionlas and no exgtras", "name": "with-optionals-no-extra", diff --git a/tests/_data/snapshots/poetry/plain_with-optionals-no-extra_lock11_1.7.xml.bin b/tests/_data/snapshots/poetry/plain_with-optionals-no-extra_lock11_1.7.xml.bin index 04b69db5e..2223088fa 100644 --- a/tests/_data/snapshots/poetry/plain_with-optionals-no-extra_lock11_1.7.xml.bin +++ b/tests/_data/snapshots/poetry/plain_with-optionals-no-extra_lock11_1.7.xml.bin @@ -51,6 +51,13 @@ + + + Your Name + you@example.com + + + Your Name <you@example.com> with-optionals-no-extra 0.1.0 depenndencies with optionlas and no exgtras diff --git a/tests/_data/snapshots/poetry/plain_with-optionals-no-extra_lock20_1.2.json.bin b/tests/_data/snapshots/poetry/plain_with-optionals-no-extra_lock20_1.2.json.bin index 6d128c92c..d903c8414 100644 --- a/tests/_data/snapshots/poetry/plain_with-optionals-no-extra_lock20_1.2.json.bin +++ b/tests/_data/snapshots/poetry/plain_with-optionals-no-extra_lock20_1.2.json.bin @@ -6,6 +6,7 @@ ], "metadata": { "component": { + "author": "Your Name ", "bom-ref": "with-optionals-no-extra", "description": "depenndencies with optionlas and no exgtras", "name": "with-optionals-no-extra", diff --git a/tests/_data/snapshots/poetry/plain_with-optionals-no-extra_lock20_1.2.xml.bin b/tests/_data/snapshots/poetry/plain_with-optionals-no-extra_lock20_1.2.xml.bin index 90ee9fbd4..f30da9e5d 100644 --- a/tests/_data/snapshots/poetry/plain_with-optionals-no-extra_lock20_1.2.xml.bin +++ b/tests/_data/snapshots/poetry/plain_with-optionals-no-extra_lock20_1.2.xml.bin @@ -14,6 +14,7 @@ + Your Name <you@example.com> with-optionals-no-extra 0.1.0 depenndencies with optionlas and no exgtras diff --git a/tests/_data/snapshots/poetry/plain_with-optionals-no-extra_lock20_1.3.json.bin b/tests/_data/snapshots/poetry/plain_with-optionals-no-extra_lock20_1.3.json.bin index 307dd9359..74e85ad09 100644 --- a/tests/_data/snapshots/poetry/plain_with-optionals-no-extra_lock20_1.3.json.bin +++ b/tests/_data/snapshots/poetry/plain_with-optionals-no-extra_lock20_1.3.json.bin @@ -6,6 +6,7 @@ ], "metadata": { "component": { + "author": "Your Name ", "bom-ref": "with-optionals-no-extra", "description": "depenndencies with optionlas and no exgtras", "name": "with-optionals-no-extra", diff --git a/tests/_data/snapshots/poetry/plain_with-optionals-no-extra_lock20_1.3.xml.bin b/tests/_data/snapshots/poetry/plain_with-optionals-no-extra_lock20_1.3.xml.bin index c4729cead..a8a89887c 100644 --- a/tests/_data/snapshots/poetry/plain_with-optionals-no-extra_lock20_1.3.xml.bin +++ b/tests/_data/snapshots/poetry/plain_with-optionals-no-extra_lock20_1.3.xml.bin @@ -14,6 +14,7 @@ + Your Name <you@example.com> with-optionals-no-extra 0.1.0 depenndencies with optionlas and no exgtras diff --git a/tests/_data/snapshots/poetry/plain_with-optionals-no-extra_lock20_1.4.json.bin b/tests/_data/snapshots/poetry/plain_with-optionals-no-extra_lock20_1.4.json.bin index 4781e8e6b..a36d628aa 100644 --- a/tests/_data/snapshots/poetry/plain_with-optionals-no-extra_lock20_1.4.json.bin +++ b/tests/_data/snapshots/poetry/plain_with-optionals-no-extra_lock20_1.4.json.bin @@ -6,6 +6,7 @@ ], "metadata": { "component": { + "author": "Your Name ", "bom-ref": "with-optionals-no-extra", "description": "depenndencies with optionlas and no exgtras", "name": "with-optionals-no-extra", diff --git a/tests/_data/snapshots/poetry/plain_with-optionals-no-extra_lock20_1.4.xml.bin b/tests/_data/snapshots/poetry/plain_with-optionals-no-extra_lock20_1.4.xml.bin index 0fda5529a..f0e7f4fc0 100644 --- a/tests/_data/snapshots/poetry/plain_with-optionals-no-extra_lock20_1.4.xml.bin +++ b/tests/_data/snapshots/poetry/plain_with-optionals-no-extra_lock20_1.4.xml.bin @@ -41,6 +41,7 @@ + Your Name <you@example.com> with-optionals-no-extra 0.1.0 depenndencies with optionlas and no exgtras diff --git a/tests/_data/snapshots/poetry/plain_with-optionals-no-extra_lock20_1.5.json.bin b/tests/_data/snapshots/poetry/plain_with-optionals-no-extra_lock20_1.5.json.bin index e123dd16b..8b847576c 100644 --- a/tests/_data/snapshots/poetry/plain_with-optionals-no-extra_lock20_1.5.json.bin +++ b/tests/_data/snapshots/poetry/plain_with-optionals-no-extra_lock20_1.5.json.bin @@ -6,6 +6,7 @@ ], "metadata": { "component": { + "author": "Your Name ", "bom-ref": "with-optionals-no-extra", "description": "depenndencies with optionlas and no exgtras", "name": "with-optionals-no-extra", diff --git a/tests/_data/snapshots/poetry/plain_with-optionals-no-extra_lock20_1.5.xml.bin b/tests/_data/snapshots/poetry/plain_with-optionals-no-extra_lock20_1.5.xml.bin index 85a1378c9..f5ce98014 100644 --- a/tests/_data/snapshots/poetry/plain_with-optionals-no-extra_lock20_1.5.xml.bin +++ b/tests/_data/snapshots/poetry/plain_with-optionals-no-extra_lock20_1.5.xml.bin @@ -51,6 +51,7 @@ + Your Name <you@example.com> with-optionals-no-extra 0.1.0 depenndencies with optionlas and no exgtras diff --git a/tests/_data/snapshots/poetry/plain_with-optionals-no-extra_lock20_1.6.json.bin b/tests/_data/snapshots/poetry/plain_with-optionals-no-extra_lock20_1.6.json.bin index 944883295..c0d161d49 100644 --- a/tests/_data/snapshots/poetry/plain_with-optionals-no-extra_lock20_1.6.json.bin +++ b/tests/_data/snapshots/poetry/plain_with-optionals-no-extra_lock20_1.6.json.bin @@ -6,6 +6,13 @@ ], "metadata": { "component": { + "author": "Your Name ", + "authors": [ + { + "email": "you@example.com", + "name": "Your Name" + } + ], "bom-ref": "with-optionals-no-extra", "description": "depenndencies with optionlas and no exgtras", "name": "with-optionals-no-extra", diff --git a/tests/_data/snapshots/poetry/plain_with-optionals-no-extra_lock20_1.6.xml.bin b/tests/_data/snapshots/poetry/plain_with-optionals-no-extra_lock20_1.6.xml.bin index 7d579425f..4c50f13d3 100644 --- a/tests/_data/snapshots/poetry/plain_with-optionals-no-extra_lock20_1.6.xml.bin +++ b/tests/_data/snapshots/poetry/plain_with-optionals-no-extra_lock20_1.6.xml.bin @@ -51,6 +51,13 @@ + + + Your Name + you@example.com + + + Your Name <you@example.com> with-optionals-no-extra 0.1.0 depenndencies with optionlas and no exgtras diff --git a/tests/_data/snapshots/poetry/plain_with-optionals-no-extra_lock20_1.7.json.bin b/tests/_data/snapshots/poetry/plain_with-optionals-no-extra_lock20_1.7.json.bin index 5da0b1cac..ca6f00ac2 100644 --- a/tests/_data/snapshots/poetry/plain_with-optionals-no-extra_lock20_1.7.json.bin +++ b/tests/_data/snapshots/poetry/plain_with-optionals-no-extra_lock20_1.7.json.bin @@ -6,6 +6,13 @@ ], "metadata": { "component": { + "author": "Your Name ", + "authors": [ + { + "email": "you@example.com", + "name": "Your Name" + } + ], "bom-ref": "with-optionals-no-extra", "description": "depenndencies with optionlas and no exgtras", "name": "with-optionals-no-extra", diff --git a/tests/_data/snapshots/poetry/plain_with-optionals-no-extra_lock20_1.7.xml.bin b/tests/_data/snapshots/poetry/plain_with-optionals-no-extra_lock20_1.7.xml.bin index 04b69db5e..2223088fa 100644 --- a/tests/_data/snapshots/poetry/plain_with-optionals-no-extra_lock20_1.7.xml.bin +++ b/tests/_data/snapshots/poetry/plain_with-optionals-no-extra_lock20_1.7.xml.bin @@ -51,6 +51,13 @@ + + + Your Name + you@example.com + + + Your Name <you@example.com> with-optionals-no-extra 0.1.0 depenndencies with optionlas and no exgtras diff --git a/tests/_data/snapshots/poetry/plain_with-optionals-no-extra_lock21_1.2.json.bin b/tests/_data/snapshots/poetry/plain_with-optionals-no-extra_lock21_1.2.json.bin index 6d128c92c..d903c8414 100644 --- a/tests/_data/snapshots/poetry/plain_with-optionals-no-extra_lock21_1.2.json.bin +++ b/tests/_data/snapshots/poetry/plain_with-optionals-no-extra_lock21_1.2.json.bin @@ -6,6 +6,7 @@ ], "metadata": { "component": { + "author": "Your Name ", "bom-ref": "with-optionals-no-extra", "description": "depenndencies with optionlas and no exgtras", "name": "with-optionals-no-extra", diff --git a/tests/_data/snapshots/poetry/plain_with-optionals-no-extra_lock21_1.2.xml.bin b/tests/_data/snapshots/poetry/plain_with-optionals-no-extra_lock21_1.2.xml.bin index 90ee9fbd4..f30da9e5d 100644 --- a/tests/_data/snapshots/poetry/plain_with-optionals-no-extra_lock21_1.2.xml.bin +++ b/tests/_data/snapshots/poetry/plain_with-optionals-no-extra_lock21_1.2.xml.bin @@ -14,6 +14,7 @@ + Your Name <you@example.com> with-optionals-no-extra 0.1.0 depenndencies with optionlas and no exgtras diff --git a/tests/_data/snapshots/poetry/plain_with-optionals-no-extra_lock21_1.3.json.bin b/tests/_data/snapshots/poetry/plain_with-optionals-no-extra_lock21_1.3.json.bin index 307dd9359..74e85ad09 100644 --- a/tests/_data/snapshots/poetry/plain_with-optionals-no-extra_lock21_1.3.json.bin +++ b/tests/_data/snapshots/poetry/plain_with-optionals-no-extra_lock21_1.3.json.bin @@ -6,6 +6,7 @@ ], "metadata": { "component": { + "author": "Your Name ", "bom-ref": "with-optionals-no-extra", "description": "depenndencies with optionlas and no exgtras", "name": "with-optionals-no-extra", diff --git a/tests/_data/snapshots/poetry/plain_with-optionals-no-extra_lock21_1.3.xml.bin b/tests/_data/snapshots/poetry/plain_with-optionals-no-extra_lock21_1.3.xml.bin index c4729cead..a8a89887c 100644 --- a/tests/_data/snapshots/poetry/plain_with-optionals-no-extra_lock21_1.3.xml.bin +++ b/tests/_data/snapshots/poetry/plain_with-optionals-no-extra_lock21_1.3.xml.bin @@ -14,6 +14,7 @@ + Your Name <you@example.com> with-optionals-no-extra 0.1.0 depenndencies with optionlas and no exgtras diff --git a/tests/_data/snapshots/poetry/plain_with-optionals-no-extra_lock21_1.4.json.bin b/tests/_data/snapshots/poetry/plain_with-optionals-no-extra_lock21_1.4.json.bin index 4781e8e6b..a36d628aa 100644 --- a/tests/_data/snapshots/poetry/plain_with-optionals-no-extra_lock21_1.4.json.bin +++ b/tests/_data/snapshots/poetry/plain_with-optionals-no-extra_lock21_1.4.json.bin @@ -6,6 +6,7 @@ ], "metadata": { "component": { + "author": "Your Name ", "bom-ref": "with-optionals-no-extra", "description": "depenndencies with optionlas and no exgtras", "name": "with-optionals-no-extra", diff --git a/tests/_data/snapshots/poetry/plain_with-optionals-no-extra_lock21_1.4.xml.bin b/tests/_data/snapshots/poetry/plain_with-optionals-no-extra_lock21_1.4.xml.bin index 0fda5529a..f0e7f4fc0 100644 --- a/tests/_data/snapshots/poetry/plain_with-optionals-no-extra_lock21_1.4.xml.bin +++ b/tests/_data/snapshots/poetry/plain_with-optionals-no-extra_lock21_1.4.xml.bin @@ -41,6 +41,7 @@ + Your Name <you@example.com> with-optionals-no-extra 0.1.0 depenndencies with optionlas and no exgtras diff --git a/tests/_data/snapshots/poetry/plain_with-optionals-no-extra_lock21_1.5.json.bin b/tests/_data/snapshots/poetry/plain_with-optionals-no-extra_lock21_1.5.json.bin index e123dd16b..8b847576c 100644 --- a/tests/_data/snapshots/poetry/plain_with-optionals-no-extra_lock21_1.5.json.bin +++ b/tests/_data/snapshots/poetry/plain_with-optionals-no-extra_lock21_1.5.json.bin @@ -6,6 +6,7 @@ ], "metadata": { "component": { + "author": "Your Name ", "bom-ref": "with-optionals-no-extra", "description": "depenndencies with optionlas and no exgtras", "name": "with-optionals-no-extra", diff --git a/tests/_data/snapshots/poetry/plain_with-optionals-no-extra_lock21_1.5.xml.bin b/tests/_data/snapshots/poetry/plain_with-optionals-no-extra_lock21_1.5.xml.bin index 85a1378c9..f5ce98014 100644 --- a/tests/_data/snapshots/poetry/plain_with-optionals-no-extra_lock21_1.5.xml.bin +++ b/tests/_data/snapshots/poetry/plain_with-optionals-no-extra_lock21_1.5.xml.bin @@ -51,6 +51,7 @@ + Your Name <you@example.com> with-optionals-no-extra 0.1.0 depenndencies with optionlas and no exgtras diff --git a/tests/_data/snapshots/poetry/plain_with-optionals-no-extra_lock21_1.6.json.bin b/tests/_data/snapshots/poetry/plain_with-optionals-no-extra_lock21_1.6.json.bin index 944883295..c0d161d49 100644 --- a/tests/_data/snapshots/poetry/plain_with-optionals-no-extra_lock21_1.6.json.bin +++ b/tests/_data/snapshots/poetry/plain_with-optionals-no-extra_lock21_1.6.json.bin @@ -6,6 +6,13 @@ ], "metadata": { "component": { + "author": "Your Name ", + "authors": [ + { + "email": "you@example.com", + "name": "Your Name" + } + ], "bom-ref": "with-optionals-no-extra", "description": "depenndencies with optionlas and no exgtras", "name": "with-optionals-no-extra", diff --git a/tests/_data/snapshots/poetry/plain_with-optionals-no-extra_lock21_1.6.xml.bin b/tests/_data/snapshots/poetry/plain_with-optionals-no-extra_lock21_1.6.xml.bin index 7d579425f..4c50f13d3 100644 --- a/tests/_data/snapshots/poetry/plain_with-optionals-no-extra_lock21_1.6.xml.bin +++ b/tests/_data/snapshots/poetry/plain_with-optionals-no-extra_lock21_1.6.xml.bin @@ -51,6 +51,13 @@ + + + Your Name + you@example.com + + + Your Name <you@example.com> with-optionals-no-extra 0.1.0 depenndencies with optionlas and no exgtras diff --git a/tests/_data/snapshots/poetry/plain_with-optionals-no-extra_lock21_1.7.json.bin b/tests/_data/snapshots/poetry/plain_with-optionals-no-extra_lock21_1.7.json.bin index 5da0b1cac..ca6f00ac2 100644 --- a/tests/_data/snapshots/poetry/plain_with-optionals-no-extra_lock21_1.7.json.bin +++ b/tests/_data/snapshots/poetry/plain_with-optionals-no-extra_lock21_1.7.json.bin @@ -6,6 +6,13 @@ ], "metadata": { "component": { + "author": "Your Name ", + "authors": [ + { + "email": "you@example.com", + "name": "Your Name" + } + ], "bom-ref": "with-optionals-no-extra", "description": "depenndencies with optionlas and no exgtras", "name": "with-optionals-no-extra", diff --git a/tests/_data/snapshots/poetry/plain_with-optionals-no-extra_lock21_1.7.xml.bin b/tests/_data/snapshots/poetry/plain_with-optionals-no-extra_lock21_1.7.xml.bin index 04b69db5e..2223088fa 100644 --- a/tests/_data/snapshots/poetry/plain_with-optionals-no-extra_lock21_1.7.xml.bin +++ b/tests/_data/snapshots/poetry/plain_with-optionals-no-extra_lock21_1.7.xml.bin @@ -51,6 +51,13 @@ + + + Your Name + you@example.com + + + Your Name <you@example.com> with-optionals-no-extra 0.1.0 depenndencies with optionlas and no exgtras diff --git a/tests/_data/snapshots/poetry/plain_with-urls_lock10_1.2.json.bin b/tests/_data/snapshots/poetry/plain_with-urls_lock10_1.2.json.bin index 669de22da..b989f7ba6 100644 --- a/tests/_data/snapshots/poetry/plain_with-urls_lock10_1.2.json.bin +++ b/tests/_data/snapshots/poetry/plain_with-urls_lock10_1.2.json.bin @@ -91,6 +91,7 @@ ], "metadata": { "component": { + "author": "Your Name ", "bom-ref": "with-urls", "description": "packages from direct urls", "name": "with-urls", diff --git a/tests/_data/snapshots/poetry/plain_with-urls_lock10_1.2.xml.bin b/tests/_data/snapshots/poetry/plain_with-urls_lock10_1.2.xml.bin index 2b1a7c233..db43661e4 100644 --- a/tests/_data/snapshots/poetry/plain_with-urls_lock10_1.2.xml.bin +++ b/tests/_data/snapshots/poetry/plain_with-urls_lock10_1.2.xml.bin @@ -14,6 +14,7 @@ + Your Name <you@example.com> with-urls 0.1.0 packages from direct urls diff --git a/tests/_data/snapshots/poetry/plain_with-urls_lock10_1.3.json.bin b/tests/_data/snapshots/poetry/plain_with-urls_lock10_1.3.json.bin index 97966bb0b..30bb09db2 100644 --- a/tests/_data/snapshots/poetry/plain_with-urls_lock10_1.3.json.bin +++ b/tests/_data/snapshots/poetry/plain_with-urls_lock10_1.3.json.bin @@ -123,6 +123,7 @@ ], "metadata": { "component": { + "author": "Your Name ", "bom-ref": "with-urls", "description": "packages from direct urls", "name": "with-urls", diff --git a/tests/_data/snapshots/poetry/plain_with-urls_lock10_1.3.xml.bin b/tests/_data/snapshots/poetry/plain_with-urls_lock10_1.3.xml.bin index e38dbfd83..75caa8404 100644 --- a/tests/_data/snapshots/poetry/plain_with-urls_lock10_1.3.xml.bin +++ b/tests/_data/snapshots/poetry/plain_with-urls_lock10_1.3.xml.bin @@ -14,6 +14,7 @@ + Your Name <you@example.com> with-urls 0.1.0 packages from direct urls diff --git a/tests/_data/snapshots/poetry/plain_with-urls_lock10_1.4.json.bin b/tests/_data/snapshots/poetry/plain_with-urls_lock10_1.4.json.bin index 9d2ce80e5..9019418e4 100644 --- a/tests/_data/snapshots/poetry/plain_with-urls_lock10_1.4.json.bin +++ b/tests/_data/snapshots/poetry/plain_with-urls_lock10_1.4.json.bin @@ -123,6 +123,7 @@ ], "metadata": { "component": { + "author": "Your Name ", "bom-ref": "with-urls", "description": "packages from direct urls", "name": "with-urls", diff --git a/tests/_data/snapshots/poetry/plain_with-urls_lock10_1.4.xml.bin b/tests/_data/snapshots/poetry/plain_with-urls_lock10_1.4.xml.bin index 74ba1744a..eee6045eb 100644 --- a/tests/_data/snapshots/poetry/plain_with-urls_lock10_1.4.xml.bin +++ b/tests/_data/snapshots/poetry/plain_with-urls_lock10_1.4.xml.bin @@ -41,6 +41,7 @@ + Your Name <you@example.com> with-urls 0.1.0 packages from direct urls diff --git a/tests/_data/snapshots/poetry/plain_with-urls_lock10_1.5.json.bin b/tests/_data/snapshots/poetry/plain_with-urls_lock10_1.5.json.bin index d934082db..f745a3dfb 100644 --- a/tests/_data/snapshots/poetry/plain_with-urls_lock10_1.5.json.bin +++ b/tests/_data/snapshots/poetry/plain_with-urls_lock10_1.5.json.bin @@ -123,6 +123,7 @@ ], "metadata": { "component": { + "author": "Your Name ", "bom-ref": "with-urls", "description": "packages from direct urls", "name": "with-urls", diff --git a/tests/_data/snapshots/poetry/plain_with-urls_lock10_1.5.xml.bin b/tests/_data/snapshots/poetry/plain_with-urls_lock10_1.5.xml.bin index 106cbb660..6a3d7c9d9 100644 --- a/tests/_data/snapshots/poetry/plain_with-urls_lock10_1.5.xml.bin +++ b/tests/_data/snapshots/poetry/plain_with-urls_lock10_1.5.xml.bin @@ -51,6 +51,7 @@ + Your Name <you@example.com> with-urls 0.1.0 packages from direct urls diff --git a/tests/_data/snapshots/poetry/plain_with-urls_lock10_1.6.json.bin b/tests/_data/snapshots/poetry/plain_with-urls_lock10_1.6.json.bin index f3baef7b1..a1996fe21 100644 --- a/tests/_data/snapshots/poetry/plain_with-urls_lock10_1.6.json.bin +++ b/tests/_data/snapshots/poetry/plain_with-urls_lock10_1.6.json.bin @@ -123,6 +123,13 @@ ], "metadata": { "component": { + "author": "Your Name ", + "authors": [ + { + "email": "you@example.com", + "name": "Your Name" + } + ], "bom-ref": "with-urls", "description": "packages from direct urls", "name": "with-urls", diff --git a/tests/_data/snapshots/poetry/plain_with-urls_lock10_1.6.xml.bin b/tests/_data/snapshots/poetry/plain_with-urls_lock10_1.6.xml.bin index 9143bd0aa..20d4bb621 100644 --- a/tests/_data/snapshots/poetry/plain_with-urls_lock10_1.6.xml.bin +++ b/tests/_data/snapshots/poetry/plain_with-urls_lock10_1.6.xml.bin @@ -51,6 +51,13 @@ + + + Your Name + you@example.com + + + Your Name <you@example.com> with-urls 0.1.0 packages from direct urls diff --git a/tests/_data/snapshots/poetry/plain_with-urls_lock10_1.7.json.bin b/tests/_data/snapshots/poetry/plain_with-urls_lock10_1.7.json.bin index f86b97991..fab3ed2fc 100644 --- a/tests/_data/snapshots/poetry/plain_with-urls_lock10_1.7.json.bin +++ b/tests/_data/snapshots/poetry/plain_with-urls_lock10_1.7.json.bin @@ -123,6 +123,13 @@ ], "metadata": { "component": { + "author": "Your Name ", + "authors": [ + { + "email": "you@example.com", + "name": "Your Name" + } + ], "bom-ref": "with-urls", "description": "packages from direct urls", "name": "with-urls", diff --git a/tests/_data/snapshots/poetry/plain_with-urls_lock10_1.7.xml.bin b/tests/_data/snapshots/poetry/plain_with-urls_lock10_1.7.xml.bin index aa0fba5bb..8180925d6 100644 --- a/tests/_data/snapshots/poetry/plain_with-urls_lock10_1.7.xml.bin +++ b/tests/_data/snapshots/poetry/plain_with-urls_lock10_1.7.xml.bin @@ -51,6 +51,13 @@ + + + Your Name + you@example.com + + + Your Name <you@example.com> with-urls 0.1.0 packages from direct urls diff --git a/tests/_data/snapshots/poetry/plain_with-urls_lock11_1.2.json.bin b/tests/_data/snapshots/poetry/plain_with-urls_lock11_1.2.json.bin index 669de22da..b989f7ba6 100644 --- a/tests/_data/snapshots/poetry/plain_with-urls_lock11_1.2.json.bin +++ b/tests/_data/snapshots/poetry/plain_with-urls_lock11_1.2.json.bin @@ -91,6 +91,7 @@ ], "metadata": { "component": { + "author": "Your Name ", "bom-ref": "with-urls", "description": "packages from direct urls", "name": "with-urls", diff --git a/tests/_data/snapshots/poetry/plain_with-urls_lock11_1.2.xml.bin b/tests/_data/snapshots/poetry/plain_with-urls_lock11_1.2.xml.bin index 2b1a7c233..db43661e4 100644 --- a/tests/_data/snapshots/poetry/plain_with-urls_lock11_1.2.xml.bin +++ b/tests/_data/snapshots/poetry/plain_with-urls_lock11_1.2.xml.bin @@ -14,6 +14,7 @@ + Your Name <you@example.com> with-urls 0.1.0 packages from direct urls diff --git a/tests/_data/snapshots/poetry/plain_with-urls_lock11_1.3.json.bin b/tests/_data/snapshots/poetry/plain_with-urls_lock11_1.3.json.bin index 5e315c2d4..834a0bd94 100644 --- a/tests/_data/snapshots/poetry/plain_with-urls_lock11_1.3.json.bin +++ b/tests/_data/snapshots/poetry/plain_with-urls_lock11_1.3.json.bin @@ -131,6 +131,7 @@ ], "metadata": { "component": { + "author": "Your Name ", "bom-ref": "with-urls", "description": "packages from direct urls", "name": "with-urls", diff --git a/tests/_data/snapshots/poetry/plain_with-urls_lock11_1.3.xml.bin b/tests/_data/snapshots/poetry/plain_with-urls_lock11_1.3.xml.bin index 001715c1a..2d3d12225 100644 --- a/tests/_data/snapshots/poetry/plain_with-urls_lock11_1.3.xml.bin +++ b/tests/_data/snapshots/poetry/plain_with-urls_lock11_1.3.xml.bin @@ -14,6 +14,7 @@ + Your Name <you@example.com> with-urls 0.1.0 packages from direct urls diff --git a/tests/_data/snapshots/poetry/plain_with-urls_lock11_1.4.json.bin b/tests/_data/snapshots/poetry/plain_with-urls_lock11_1.4.json.bin index 43b48a264..3df9193ff 100644 --- a/tests/_data/snapshots/poetry/plain_with-urls_lock11_1.4.json.bin +++ b/tests/_data/snapshots/poetry/plain_with-urls_lock11_1.4.json.bin @@ -131,6 +131,7 @@ ], "metadata": { "component": { + "author": "Your Name ", "bom-ref": "with-urls", "description": "packages from direct urls", "name": "with-urls", diff --git a/tests/_data/snapshots/poetry/plain_with-urls_lock11_1.4.xml.bin b/tests/_data/snapshots/poetry/plain_with-urls_lock11_1.4.xml.bin index ed9a5f1f3..c01f9598b 100644 --- a/tests/_data/snapshots/poetry/plain_with-urls_lock11_1.4.xml.bin +++ b/tests/_data/snapshots/poetry/plain_with-urls_lock11_1.4.xml.bin @@ -41,6 +41,7 @@ + Your Name <you@example.com> with-urls 0.1.0 packages from direct urls diff --git a/tests/_data/snapshots/poetry/plain_with-urls_lock11_1.5.json.bin b/tests/_data/snapshots/poetry/plain_with-urls_lock11_1.5.json.bin index 1c944ea84..ed79cb08c 100644 --- a/tests/_data/snapshots/poetry/plain_with-urls_lock11_1.5.json.bin +++ b/tests/_data/snapshots/poetry/plain_with-urls_lock11_1.5.json.bin @@ -131,6 +131,7 @@ ], "metadata": { "component": { + "author": "Your Name ", "bom-ref": "with-urls", "description": "packages from direct urls", "name": "with-urls", diff --git a/tests/_data/snapshots/poetry/plain_with-urls_lock11_1.5.xml.bin b/tests/_data/snapshots/poetry/plain_with-urls_lock11_1.5.xml.bin index a4fcebb39..7a3de1677 100644 --- a/tests/_data/snapshots/poetry/plain_with-urls_lock11_1.5.xml.bin +++ b/tests/_data/snapshots/poetry/plain_with-urls_lock11_1.5.xml.bin @@ -51,6 +51,7 @@ + Your Name <you@example.com> with-urls 0.1.0 packages from direct urls diff --git a/tests/_data/snapshots/poetry/plain_with-urls_lock11_1.6.json.bin b/tests/_data/snapshots/poetry/plain_with-urls_lock11_1.6.json.bin index f26af3cc9..8a3764d18 100644 --- a/tests/_data/snapshots/poetry/plain_with-urls_lock11_1.6.json.bin +++ b/tests/_data/snapshots/poetry/plain_with-urls_lock11_1.6.json.bin @@ -131,6 +131,13 @@ ], "metadata": { "component": { + "author": "Your Name ", + "authors": [ + { + "email": "you@example.com", + "name": "Your Name" + } + ], "bom-ref": "with-urls", "description": "packages from direct urls", "name": "with-urls", diff --git a/tests/_data/snapshots/poetry/plain_with-urls_lock11_1.6.xml.bin b/tests/_data/snapshots/poetry/plain_with-urls_lock11_1.6.xml.bin index 9eb7043d4..4c6f9e7eb 100644 --- a/tests/_data/snapshots/poetry/plain_with-urls_lock11_1.6.xml.bin +++ b/tests/_data/snapshots/poetry/plain_with-urls_lock11_1.6.xml.bin @@ -51,6 +51,13 @@ + + + Your Name + you@example.com + + + Your Name <you@example.com> with-urls 0.1.0 packages from direct urls diff --git a/tests/_data/snapshots/poetry/plain_with-urls_lock11_1.7.json.bin b/tests/_data/snapshots/poetry/plain_with-urls_lock11_1.7.json.bin index 952cc64fe..a11e51bc5 100644 --- a/tests/_data/snapshots/poetry/plain_with-urls_lock11_1.7.json.bin +++ b/tests/_data/snapshots/poetry/plain_with-urls_lock11_1.7.json.bin @@ -131,6 +131,13 @@ ], "metadata": { "component": { + "author": "Your Name ", + "authors": [ + { + "email": "you@example.com", + "name": "Your Name" + } + ], "bom-ref": "with-urls", "description": "packages from direct urls", "name": "with-urls", diff --git a/tests/_data/snapshots/poetry/plain_with-urls_lock11_1.7.xml.bin b/tests/_data/snapshots/poetry/plain_with-urls_lock11_1.7.xml.bin index fcd35690d..ec94aebc9 100644 --- a/tests/_data/snapshots/poetry/plain_with-urls_lock11_1.7.xml.bin +++ b/tests/_data/snapshots/poetry/plain_with-urls_lock11_1.7.xml.bin @@ -51,6 +51,13 @@ + + + Your Name + you@example.com + + + Your Name <you@example.com> with-urls 0.1.0 packages from direct urls diff --git a/tests/_data/snapshots/poetry/plain_with-urls_lock20_1.2.json.bin b/tests/_data/snapshots/poetry/plain_with-urls_lock20_1.2.json.bin index 669de22da..b989f7ba6 100644 --- a/tests/_data/snapshots/poetry/plain_with-urls_lock20_1.2.json.bin +++ b/tests/_data/snapshots/poetry/plain_with-urls_lock20_1.2.json.bin @@ -91,6 +91,7 @@ ], "metadata": { "component": { + "author": "Your Name ", "bom-ref": "with-urls", "description": "packages from direct urls", "name": "with-urls", diff --git a/tests/_data/snapshots/poetry/plain_with-urls_lock20_1.2.xml.bin b/tests/_data/snapshots/poetry/plain_with-urls_lock20_1.2.xml.bin index 2b1a7c233..db43661e4 100644 --- a/tests/_data/snapshots/poetry/plain_with-urls_lock20_1.2.xml.bin +++ b/tests/_data/snapshots/poetry/plain_with-urls_lock20_1.2.xml.bin @@ -14,6 +14,7 @@ + Your Name <you@example.com> with-urls 0.1.0 packages from direct urls diff --git a/tests/_data/snapshots/poetry/plain_with-urls_lock20_1.3.json.bin b/tests/_data/snapshots/poetry/plain_with-urls_lock20_1.3.json.bin index 03d5fdf2d..6ef22736d 100644 --- a/tests/_data/snapshots/poetry/plain_with-urls_lock20_1.3.json.bin +++ b/tests/_data/snapshots/poetry/plain_with-urls_lock20_1.3.json.bin @@ -143,6 +143,7 @@ ], "metadata": { "component": { + "author": "Your Name ", "bom-ref": "with-urls", "description": "packages from direct urls", "name": "with-urls", diff --git a/tests/_data/snapshots/poetry/plain_with-urls_lock20_1.3.xml.bin b/tests/_data/snapshots/poetry/plain_with-urls_lock20_1.3.xml.bin index 129152f4d..7f6372547 100644 --- a/tests/_data/snapshots/poetry/plain_with-urls_lock20_1.3.xml.bin +++ b/tests/_data/snapshots/poetry/plain_with-urls_lock20_1.3.xml.bin @@ -14,6 +14,7 @@ + Your Name <you@example.com> with-urls 0.1.0 packages from direct urls diff --git a/tests/_data/snapshots/poetry/plain_with-urls_lock20_1.4.json.bin b/tests/_data/snapshots/poetry/plain_with-urls_lock20_1.4.json.bin index 3d16f4190..e31b86ca6 100644 --- a/tests/_data/snapshots/poetry/plain_with-urls_lock20_1.4.json.bin +++ b/tests/_data/snapshots/poetry/plain_with-urls_lock20_1.4.json.bin @@ -143,6 +143,7 @@ ], "metadata": { "component": { + "author": "Your Name ", "bom-ref": "with-urls", "description": "packages from direct urls", "name": "with-urls", diff --git a/tests/_data/snapshots/poetry/plain_with-urls_lock20_1.4.xml.bin b/tests/_data/snapshots/poetry/plain_with-urls_lock20_1.4.xml.bin index 8cfca3e1f..058076057 100644 --- a/tests/_data/snapshots/poetry/plain_with-urls_lock20_1.4.xml.bin +++ b/tests/_data/snapshots/poetry/plain_with-urls_lock20_1.4.xml.bin @@ -41,6 +41,7 @@ + Your Name <you@example.com> with-urls 0.1.0 packages from direct urls diff --git a/tests/_data/snapshots/poetry/plain_with-urls_lock20_1.5.json.bin b/tests/_data/snapshots/poetry/plain_with-urls_lock20_1.5.json.bin index 4e88c4cc0..8a8d5894a 100644 --- a/tests/_data/snapshots/poetry/plain_with-urls_lock20_1.5.json.bin +++ b/tests/_data/snapshots/poetry/plain_with-urls_lock20_1.5.json.bin @@ -143,6 +143,7 @@ ], "metadata": { "component": { + "author": "Your Name ", "bom-ref": "with-urls", "description": "packages from direct urls", "name": "with-urls", diff --git a/tests/_data/snapshots/poetry/plain_with-urls_lock20_1.5.xml.bin b/tests/_data/snapshots/poetry/plain_with-urls_lock20_1.5.xml.bin index 8776895bc..c6e2a8a07 100644 --- a/tests/_data/snapshots/poetry/plain_with-urls_lock20_1.5.xml.bin +++ b/tests/_data/snapshots/poetry/plain_with-urls_lock20_1.5.xml.bin @@ -51,6 +51,7 @@ + Your Name <you@example.com> with-urls 0.1.0 packages from direct urls diff --git a/tests/_data/snapshots/poetry/plain_with-urls_lock20_1.6.json.bin b/tests/_data/snapshots/poetry/plain_with-urls_lock20_1.6.json.bin index 1da5b18d2..5cabd6298 100644 --- a/tests/_data/snapshots/poetry/plain_with-urls_lock20_1.6.json.bin +++ b/tests/_data/snapshots/poetry/plain_with-urls_lock20_1.6.json.bin @@ -143,6 +143,13 @@ ], "metadata": { "component": { + "author": "Your Name ", + "authors": [ + { + "email": "you@example.com", + "name": "Your Name" + } + ], "bom-ref": "with-urls", "description": "packages from direct urls", "name": "with-urls", diff --git a/tests/_data/snapshots/poetry/plain_with-urls_lock20_1.6.xml.bin b/tests/_data/snapshots/poetry/plain_with-urls_lock20_1.6.xml.bin index e45ff8e11..8ad3970e9 100644 --- a/tests/_data/snapshots/poetry/plain_with-urls_lock20_1.6.xml.bin +++ b/tests/_data/snapshots/poetry/plain_with-urls_lock20_1.6.xml.bin @@ -51,6 +51,13 @@ + + + Your Name + you@example.com + + + Your Name <you@example.com> with-urls 0.1.0 packages from direct urls diff --git a/tests/_data/snapshots/poetry/plain_with-urls_lock20_1.7.json.bin b/tests/_data/snapshots/poetry/plain_with-urls_lock20_1.7.json.bin index b1a2240d2..ea550efc2 100644 --- a/tests/_data/snapshots/poetry/plain_with-urls_lock20_1.7.json.bin +++ b/tests/_data/snapshots/poetry/plain_with-urls_lock20_1.7.json.bin @@ -143,6 +143,13 @@ ], "metadata": { "component": { + "author": "Your Name ", + "authors": [ + { + "email": "you@example.com", + "name": "Your Name" + } + ], "bom-ref": "with-urls", "description": "packages from direct urls", "name": "with-urls", diff --git a/tests/_data/snapshots/poetry/plain_with-urls_lock20_1.7.xml.bin b/tests/_data/snapshots/poetry/plain_with-urls_lock20_1.7.xml.bin index 24fe52054..9ebe9ee5d 100644 --- a/tests/_data/snapshots/poetry/plain_with-urls_lock20_1.7.xml.bin +++ b/tests/_data/snapshots/poetry/plain_with-urls_lock20_1.7.xml.bin @@ -51,6 +51,13 @@ + + + Your Name + you@example.com + + + Your Name <you@example.com> with-urls 0.1.0 packages from direct urls diff --git a/tests/_data/snapshots/poetry/plain_with-urls_lock21_1.2.json.bin b/tests/_data/snapshots/poetry/plain_with-urls_lock21_1.2.json.bin index 7ba2d0c01..19dbf9ec6 100644 --- a/tests/_data/snapshots/poetry/plain_with-urls_lock21_1.2.json.bin +++ b/tests/_data/snapshots/poetry/plain_with-urls_lock21_1.2.json.bin @@ -90,6 +90,7 @@ ], "metadata": { "component": { + "author": "Your Name ", "bom-ref": "with-urls", "description": "packages from direct urls", "name": "with-urls", diff --git a/tests/_data/snapshots/poetry/plain_with-urls_lock21_1.2.xml.bin b/tests/_data/snapshots/poetry/plain_with-urls_lock21_1.2.xml.bin index d90efc8c3..b6ed98f59 100644 --- a/tests/_data/snapshots/poetry/plain_with-urls_lock21_1.2.xml.bin +++ b/tests/_data/snapshots/poetry/plain_with-urls_lock21_1.2.xml.bin @@ -14,6 +14,7 @@ + Your Name <you@example.com> with-urls 0.1.0 packages from direct urls diff --git a/tests/_data/snapshots/poetry/plain_with-urls_lock21_1.3.json.bin b/tests/_data/snapshots/poetry/plain_with-urls_lock21_1.3.json.bin index c764813f8..566a9ac51 100644 --- a/tests/_data/snapshots/poetry/plain_with-urls_lock21_1.3.json.bin +++ b/tests/_data/snapshots/poetry/plain_with-urls_lock21_1.3.json.bin @@ -142,6 +142,7 @@ ], "metadata": { "component": { + "author": "Your Name ", "bom-ref": "with-urls", "description": "packages from direct urls", "name": "with-urls", diff --git a/tests/_data/snapshots/poetry/plain_with-urls_lock21_1.3.xml.bin b/tests/_data/snapshots/poetry/plain_with-urls_lock21_1.3.xml.bin index 4b56c0531..eebcd7dbb 100644 --- a/tests/_data/snapshots/poetry/plain_with-urls_lock21_1.3.xml.bin +++ b/tests/_data/snapshots/poetry/plain_with-urls_lock21_1.3.xml.bin @@ -14,6 +14,7 @@ + Your Name <you@example.com> with-urls 0.1.0 packages from direct urls diff --git a/tests/_data/snapshots/poetry/plain_with-urls_lock21_1.4.json.bin b/tests/_data/snapshots/poetry/plain_with-urls_lock21_1.4.json.bin index cdb834459..6dcccd4cc 100644 --- a/tests/_data/snapshots/poetry/plain_with-urls_lock21_1.4.json.bin +++ b/tests/_data/snapshots/poetry/plain_with-urls_lock21_1.4.json.bin @@ -142,6 +142,7 @@ ], "metadata": { "component": { + "author": "Your Name ", "bom-ref": "with-urls", "description": "packages from direct urls", "name": "with-urls", diff --git a/tests/_data/snapshots/poetry/plain_with-urls_lock21_1.4.xml.bin b/tests/_data/snapshots/poetry/plain_with-urls_lock21_1.4.xml.bin index 7b47129c8..3f5e9abab 100644 --- a/tests/_data/snapshots/poetry/plain_with-urls_lock21_1.4.xml.bin +++ b/tests/_data/snapshots/poetry/plain_with-urls_lock21_1.4.xml.bin @@ -41,6 +41,7 @@ + Your Name <you@example.com> with-urls 0.1.0 packages from direct urls diff --git a/tests/_data/snapshots/poetry/plain_with-urls_lock21_1.5.json.bin b/tests/_data/snapshots/poetry/plain_with-urls_lock21_1.5.json.bin index a5b78ab6a..07ac07ca6 100644 --- a/tests/_data/snapshots/poetry/plain_with-urls_lock21_1.5.json.bin +++ b/tests/_data/snapshots/poetry/plain_with-urls_lock21_1.5.json.bin @@ -142,6 +142,7 @@ ], "metadata": { "component": { + "author": "Your Name ", "bom-ref": "with-urls", "description": "packages from direct urls", "name": "with-urls", diff --git a/tests/_data/snapshots/poetry/plain_with-urls_lock21_1.5.xml.bin b/tests/_data/snapshots/poetry/plain_with-urls_lock21_1.5.xml.bin index 3efbafb86..4905e8819 100644 --- a/tests/_data/snapshots/poetry/plain_with-urls_lock21_1.5.xml.bin +++ b/tests/_data/snapshots/poetry/plain_with-urls_lock21_1.5.xml.bin @@ -51,6 +51,7 @@ + Your Name <you@example.com> with-urls 0.1.0 packages from direct urls diff --git a/tests/_data/snapshots/poetry/plain_with-urls_lock21_1.6.json.bin b/tests/_data/snapshots/poetry/plain_with-urls_lock21_1.6.json.bin index d94b40e1c..fb09927ed 100644 --- a/tests/_data/snapshots/poetry/plain_with-urls_lock21_1.6.json.bin +++ b/tests/_data/snapshots/poetry/plain_with-urls_lock21_1.6.json.bin @@ -142,6 +142,13 @@ ], "metadata": { "component": { + "author": "Your Name ", + "authors": [ + { + "email": "you@example.com", + "name": "Your Name" + } + ], "bom-ref": "with-urls", "description": "packages from direct urls", "name": "with-urls", diff --git a/tests/_data/snapshots/poetry/plain_with-urls_lock21_1.6.xml.bin b/tests/_data/snapshots/poetry/plain_with-urls_lock21_1.6.xml.bin index f3be900b3..e027142e7 100644 --- a/tests/_data/snapshots/poetry/plain_with-urls_lock21_1.6.xml.bin +++ b/tests/_data/snapshots/poetry/plain_with-urls_lock21_1.6.xml.bin @@ -51,6 +51,13 @@ + + + Your Name + you@example.com + + + Your Name <you@example.com> with-urls 0.1.0 packages from direct urls diff --git a/tests/_data/snapshots/poetry/plain_with-urls_lock21_1.7.json.bin b/tests/_data/snapshots/poetry/plain_with-urls_lock21_1.7.json.bin index a06e5f3d6..53eefa621 100644 --- a/tests/_data/snapshots/poetry/plain_with-urls_lock21_1.7.json.bin +++ b/tests/_data/snapshots/poetry/plain_with-urls_lock21_1.7.json.bin @@ -142,6 +142,13 @@ ], "metadata": { "component": { + "author": "Your Name ", + "authors": [ + { + "email": "you@example.com", + "name": "Your Name" + } + ], "bom-ref": "with-urls", "description": "packages from direct urls", "name": "with-urls", diff --git a/tests/_data/snapshots/poetry/plain_with-urls_lock21_1.7.xml.bin b/tests/_data/snapshots/poetry/plain_with-urls_lock21_1.7.xml.bin index 34656ba35..a70460ed9 100644 --- a/tests/_data/snapshots/poetry/plain_with-urls_lock21_1.7.xml.bin +++ b/tests/_data/snapshots/poetry/plain_with-urls_lock21_1.7.xml.bin @@ -51,6 +51,13 @@ + + + Your Name + you@example.com + + + Your Name <you@example.com> with-urls 0.1.0 packages from direct urls diff --git a/tests/_data/snapshots/poetry/some-extras_with-extras_lock10_1.2.json.bin b/tests/_data/snapshots/poetry/some-extras_with-extras_lock10_1.2.json.bin index c2db24985..1ba844547 100644 --- a/tests/_data/snapshots/poetry/some-extras_with-extras_lock10_1.2.json.bin +++ b/tests/_data/snapshots/poetry/some-extras_with-extras_lock10_1.2.json.bin @@ -107,6 +107,7 @@ ], "metadata": { "component": { + "author": "Your Name ", "bom-ref": "with-extras", "description": "depenndencies with extras", "name": "with-extras", diff --git a/tests/_data/snapshots/poetry/some-extras_with-extras_lock10_1.2.xml.bin b/tests/_data/snapshots/poetry/some-extras_with-extras_lock10_1.2.xml.bin index eff295a06..c84653edf 100644 --- a/tests/_data/snapshots/poetry/some-extras_with-extras_lock10_1.2.xml.bin +++ b/tests/_data/snapshots/poetry/some-extras_with-extras_lock10_1.2.xml.bin @@ -14,6 +14,7 @@ + Your Name <you@example.com> with-extras 0.1.0 depenndencies with extras diff --git a/tests/_data/snapshots/poetry/some-extras_with-extras_lock10_1.3.json.bin b/tests/_data/snapshots/poetry/some-extras_with-extras_lock10_1.3.json.bin index 54f94da41..72bdc4b05 100644 --- a/tests/_data/snapshots/poetry/some-extras_with-extras_lock10_1.3.json.bin +++ b/tests/_data/snapshots/poetry/some-extras_with-extras_lock10_1.3.json.bin @@ -157,6 +157,7 @@ ], "metadata": { "component": { + "author": "Your Name ", "bom-ref": "with-extras", "description": "depenndencies with extras", "name": "with-extras", diff --git a/tests/_data/snapshots/poetry/some-extras_with-extras_lock10_1.3.xml.bin b/tests/_data/snapshots/poetry/some-extras_with-extras_lock10_1.3.xml.bin index a04719f0f..e557b3124 100644 --- a/tests/_data/snapshots/poetry/some-extras_with-extras_lock10_1.3.xml.bin +++ b/tests/_data/snapshots/poetry/some-extras_with-extras_lock10_1.3.xml.bin @@ -14,6 +14,7 @@ + Your Name <you@example.com> with-extras 0.1.0 depenndencies with extras diff --git a/tests/_data/snapshots/poetry/some-extras_with-extras_lock10_1.4.json.bin b/tests/_data/snapshots/poetry/some-extras_with-extras_lock10_1.4.json.bin index 7fa736b4d..4594f9d47 100644 --- a/tests/_data/snapshots/poetry/some-extras_with-extras_lock10_1.4.json.bin +++ b/tests/_data/snapshots/poetry/some-extras_with-extras_lock10_1.4.json.bin @@ -157,6 +157,7 @@ ], "metadata": { "component": { + "author": "Your Name ", "bom-ref": "with-extras", "description": "depenndencies with extras", "name": "with-extras", diff --git a/tests/_data/snapshots/poetry/some-extras_with-extras_lock10_1.4.xml.bin b/tests/_data/snapshots/poetry/some-extras_with-extras_lock10_1.4.xml.bin index b638525ff..04036567c 100644 --- a/tests/_data/snapshots/poetry/some-extras_with-extras_lock10_1.4.xml.bin +++ b/tests/_data/snapshots/poetry/some-extras_with-extras_lock10_1.4.xml.bin @@ -41,6 +41,7 @@ + Your Name <you@example.com> with-extras 0.1.0 depenndencies with extras diff --git a/tests/_data/snapshots/poetry/some-extras_with-extras_lock10_1.5.json.bin b/tests/_data/snapshots/poetry/some-extras_with-extras_lock10_1.5.json.bin index 898ac21f8..db48a2eb6 100644 --- a/tests/_data/snapshots/poetry/some-extras_with-extras_lock10_1.5.json.bin +++ b/tests/_data/snapshots/poetry/some-extras_with-extras_lock10_1.5.json.bin @@ -157,6 +157,7 @@ ], "metadata": { "component": { + "author": "Your Name ", "bom-ref": "with-extras", "description": "depenndencies with extras", "name": "with-extras", diff --git a/tests/_data/snapshots/poetry/some-extras_with-extras_lock10_1.5.xml.bin b/tests/_data/snapshots/poetry/some-extras_with-extras_lock10_1.5.xml.bin index b547c1d7d..36116fdca 100644 --- a/tests/_data/snapshots/poetry/some-extras_with-extras_lock10_1.5.xml.bin +++ b/tests/_data/snapshots/poetry/some-extras_with-extras_lock10_1.5.xml.bin @@ -51,6 +51,7 @@ + Your Name <you@example.com> with-extras 0.1.0 depenndencies with extras diff --git a/tests/_data/snapshots/poetry/some-extras_with-extras_lock10_1.6.json.bin b/tests/_data/snapshots/poetry/some-extras_with-extras_lock10_1.6.json.bin index bcc162194..4a7510262 100644 --- a/tests/_data/snapshots/poetry/some-extras_with-extras_lock10_1.6.json.bin +++ b/tests/_data/snapshots/poetry/some-extras_with-extras_lock10_1.6.json.bin @@ -157,6 +157,13 @@ ], "metadata": { "component": { + "author": "Your Name ", + "authors": [ + { + "email": "you@example.com", + "name": "Your Name" + } + ], "bom-ref": "with-extras", "description": "depenndencies with extras", "name": "with-extras", diff --git a/tests/_data/snapshots/poetry/some-extras_with-extras_lock10_1.6.xml.bin b/tests/_data/snapshots/poetry/some-extras_with-extras_lock10_1.6.xml.bin index 377b639ac..bd919f66e 100644 --- a/tests/_data/snapshots/poetry/some-extras_with-extras_lock10_1.6.xml.bin +++ b/tests/_data/snapshots/poetry/some-extras_with-extras_lock10_1.6.xml.bin @@ -51,6 +51,13 @@ + + + Your Name + you@example.com + + + Your Name <you@example.com> with-extras 0.1.0 depenndencies with extras diff --git a/tests/_data/snapshots/poetry/some-extras_with-extras_lock10_1.7.json.bin b/tests/_data/snapshots/poetry/some-extras_with-extras_lock10_1.7.json.bin index 10de7a1ec..75d3bf508 100644 --- a/tests/_data/snapshots/poetry/some-extras_with-extras_lock10_1.7.json.bin +++ b/tests/_data/snapshots/poetry/some-extras_with-extras_lock10_1.7.json.bin @@ -157,6 +157,13 @@ ], "metadata": { "component": { + "author": "Your Name ", + "authors": [ + { + "email": "you@example.com", + "name": "Your Name" + } + ], "bom-ref": "with-extras", "description": "depenndencies with extras", "name": "with-extras", diff --git a/tests/_data/snapshots/poetry/some-extras_with-extras_lock10_1.7.xml.bin b/tests/_data/snapshots/poetry/some-extras_with-extras_lock10_1.7.xml.bin index 123e65624..d90258325 100644 --- a/tests/_data/snapshots/poetry/some-extras_with-extras_lock10_1.7.xml.bin +++ b/tests/_data/snapshots/poetry/some-extras_with-extras_lock10_1.7.xml.bin @@ -51,6 +51,13 @@ + + + Your Name + you@example.com + + + Your Name <you@example.com> with-extras 0.1.0 depenndencies with extras diff --git a/tests/_data/snapshots/poetry/some-extras_with-extras_lock11_1.2.json.bin b/tests/_data/snapshots/poetry/some-extras_with-extras_lock11_1.2.json.bin index 19e531c64..6925c7a23 100644 --- a/tests/_data/snapshots/poetry/some-extras_with-extras_lock11_1.2.json.bin +++ b/tests/_data/snapshots/poetry/some-extras_with-extras_lock11_1.2.json.bin @@ -1217,6 +1217,7 @@ ], "metadata": { "component": { + "author": "Your Name ", "bom-ref": "with-extras", "description": "depenndencies with extras", "name": "with-extras", diff --git a/tests/_data/snapshots/poetry/some-extras_with-extras_lock11_1.2.xml.bin b/tests/_data/snapshots/poetry/some-extras_with-extras_lock11_1.2.xml.bin index 9df4ecf73..4af808e44 100644 --- a/tests/_data/snapshots/poetry/some-extras_with-extras_lock11_1.2.xml.bin +++ b/tests/_data/snapshots/poetry/some-extras_with-extras_lock11_1.2.xml.bin @@ -14,6 +14,7 @@ + Your Name <you@example.com> with-extras 0.1.0 depenndencies with extras diff --git a/tests/_data/snapshots/poetry/some-extras_with-extras_lock11_1.3.json.bin b/tests/_data/snapshots/poetry/some-extras_with-extras_lock11_1.3.json.bin index 8141f5d80..2c03429b3 100644 --- a/tests/_data/snapshots/poetry/some-extras_with-extras_lock11_1.3.json.bin +++ b/tests/_data/snapshots/poetry/some-extras_with-extras_lock11_1.3.json.bin @@ -2321,6 +2321,7 @@ ], "metadata": { "component": { + "author": "Your Name ", "bom-ref": "with-extras", "description": "depenndencies with extras", "name": "with-extras", diff --git a/tests/_data/snapshots/poetry/some-extras_with-extras_lock11_1.3.xml.bin b/tests/_data/snapshots/poetry/some-extras_with-extras_lock11_1.3.xml.bin index 7f3cb2195..2cf6f7827 100644 --- a/tests/_data/snapshots/poetry/some-extras_with-extras_lock11_1.3.xml.bin +++ b/tests/_data/snapshots/poetry/some-extras_with-extras_lock11_1.3.xml.bin @@ -14,6 +14,7 @@ + Your Name <you@example.com> with-extras 0.1.0 depenndencies with extras diff --git a/tests/_data/snapshots/poetry/some-extras_with-extras_lock11_1.4.json.bin b/tests/_data/snapshots/poetry/some-extras_with-extras_lock11_1.4.json.bin index c4d8e6dd8..9ea5e9a9c 100644 --- a/tests/_data/snapshots/poetry/some-extras_with-extras_lock11_1.4.json.bin +++ b/tests/_data/snapshots/poetry/some-extras_with-extras_lock11_1.4.json.bin @@ -2321,6 +2321,7 @@ ], "metadata": { "component": { + "author": "Your Name ", "bom-ref": "with-extras", "description": "depenndencies with extras", "name": "with-extras", diff --git a/tests/_data/snapshots/poetry/some-extras_with-extras_lock11_1.4.xml.bin b/tests/_data/snapshots/poetry/some-extras_with-extras_lock11_1.4.xml.bin index a31f49b32..cf6d0607b 100644 --- a/tests/_data/snapshots/poetry/some-extras_with-extras_lock11_1.4.xml.bin +++ b/tests/_data/snapshots/poetry/some-extras_with-extras_lock11_1.4.xml.bin @@ -41,6 +41,7 @@ + Your Name <you@example.com> with-extras 0.1.0 depenndencies with extras diff --git a/tests/_data/snapshots/poetry/some-extras_with-extras_lock11_1.5.json.bin b/tests/_data/snapshots/poetry/some-extras_with-extras_lock11_1.5.json.bin index 46c4daf5b..96e468ad2 100644 --- a/tests/_data/snapshots/poetry/some-extras_with-extras_lock11_1.5.json.bin +++ b/tests/_data/snapshots/poetry/some-extras_with-extras_lock11_1.5.json.bin @@ -2321,6 +2321,7 @@ ], "metadata": { "component": { + "author": "Your Name ", "bom-ref": "with-extras", "description": "depenndencies with extras", "name": "with-extras", diff --git a/tests/_data/snapshots/poetry/some-extras_with-extras_lock11_1.5.xml.bin b/tests/_data/snapshots/poetry/some-extras_with-extras_lock11_1.5.xml.bin index e74257f31..684082bb9 100644 --- a/tests/_data/snapshots/poetry/some-extras_with-extras_lock11_1.5.xml.bin +++ b/tests/_data/snapshots/poetry/some-extras_with-extras_lock11_1.5.xml.bin @@ -51,6 +51,7 @@ + Your Name <you@example.com> with-extras 0.1.0 depenndencies with extras diff --git a/tests/_data/snapshots/poetry/some-extras_with-extras_lock11_1.6.json.bin b/tests/_data/snapshots/poetry/some-extras_with-extras_lock11_1.6.json.bin index a564cb714..f0066aecc 100644 --- a/tests/_data/snapshots/poetry/some-extras_with-extras_lock11_1.6.json.bin +++ b/tests/_data/snapshots/poetry/some-extras_with-extras_lock11_1.6.json.bin @@ -2321,6 +2321,13 @@ ], "metadata": { "component": { + "author": "Your Name ", + "authors": [ + { + "email": "you@example.com", + "name": "Your Name" + } + ], "bom-ref": "with-extras", "description": "depenndencies with extras", "name": "with-extras", diff --git a/tests/_data/snapshots/poetry/some-extras_with-extras_lock11_1.6.xml.bin b/tests/_data/snapshots/poetry/some-extras_with-extras_lock11_1.6.xml.bin index 35f33ea4b..2a6c797ed 100644 --- a/tests/_data/snapshots/poetry/some-extras_with-extras_lock11_1.6.xml.bin +++ b/tests/_data/snapshots/poetry/some-extras_with-extras_lock11_1.6.xml.bin @@ -51,6 +51,13 @@ + + + Your Name + you@example.com + + + Your Name <you@example.com> with-extras 0.1.0 depenndencies with extras diff --git a/tests/_data/snapshots/poetry/some-extras_with-extras_lock11_1.7.json.bin b/tests/_data/snapshots/poetry/some-extras_with-extras_lock11_1.7.json.bin index 3f225b3b2..2cb5d5f40 100644 --- a/tests/_data/snapshots/poetry/some-extras_with-extras_lock11_1.7.json.bin +++ b/tests/_data/snapshots/poetry/some-extras_with-extras_lock11_1.7.json.bin @@ -2321,6 +2321,13 @@ ], "metadata": { "component": { + "author": "Your Name ", + "authors": [ + { + "email": "you@example.com", + "name": "Your Name" + } + ], "bom-ref": "with-extras", "description": "depenndencies with extras", "name": "with-extras", diff --git a/tests/_data/snapshots/poetry/some-extras_with-extras_lock11_1.7.xml.bin b/tests/_data/snapshots/poetry/some-extras_with-extras_lock11_1.7.xml.bin index 07fd58370..6c20a2eb8 100644 --- a/tests/_data/snapshots/poetry/some-extras_with-extras_lock11_1.7.xml.bin +++ b/tests/_data/snapshots/poetry/some-extras_with-extras_lock11_1.7.xml.bin @@ -51,6 +51,13 @@ + + + Your Name + you@example.com + + + Your Name <you@example.com> with-extras 0.1.0 depenndencies with extras diff --git a/tests/_data/snapshots/poetry/some-extras_with-extras_lock20_1.2.json.bin b/tests/_data/snapshots/poetry/some-extras_with-extras_lock20_1.2.json.bin index 0732df651..a6a0689c8 100644 --- a/tests/_data/snapshots/poetry/some-extras_with-extras_lock20_1.2.json.bin +++ b/tests/_data/snapshots/poetry/some-extras_with-extras_lock20_1.2.json.bin @@ -1672,6 +1672,7 @@ ], "metadata": { "component": { + "author": "Your Name ", "bom-ref": "with-extras", "description": "depenndencies with extras", "name": "with-extras", diff --git a/tests/_data/snapshots/poetry/some-extras_with-extras_lock20_1.2.xml.bin b/tests/_data/snapshots/poetry/some-extras_with-extras_lock20_1.2.xml.bin index 58d2a6968..c7e329c67 100644 --- a/tests/_data/snapshots/poetry/some-extras_with-extras_lock20_1.2.xml.bin +++ b/tests/_data/snapshots/poetry/some-extras_with-extras_lock20_1.2.xml.bin @@ -14,6 +14,7 @@ + Your Name <you@example.com> with-extras 0.1.0 depenndencies with extras diff --git a/tests/_data/snapshots/poetry/some-extras_with-extras_lock20_1.3.json.bin b/tests/_data/snapshots/poetry/some-extras_with-extras_lock20_1.3.json.bin index 065fe09cd..91b4b1f01 100644 --- a/tests/_data/snapshots/poetry/some-extras_with-extras_lock20_1.3.json.bin +++ b/tests/_data/snapshots/poetry/some-extras_with-extras_lock20_1.3.json.bin @@ -3150,6 +3150,7 @@ ], "metadata": { "component": { + "author": "Your Name ", "bom-ref": "with-extras", "description": "depenndencies with extras", "name": "with-extras", diff --git a/tests/_data/snapshots/poetry/some-extras_with-extras_lock20_1.3.xml.bin b/tests/_data/snapshots/poetry/some-extras_with-extras_lock20_1.3.xml.bin index 7cab6f773..a9d6e8d3e 100644 --- a/tests/_data/snapshots/poetry/some-extras_with-extras_lock20_1.3.xml.bin +++ b/tests/_data/snapshots/poetry/some-extras_with-extras_lock20_1.3.xml.bin @@ -14,6 +14,7 @@ + Your Name <you@example.com> with-extras 0.1.0 depenndencies with extras diff --git a/tests/_data/snapshots/poetry/some-extras_with-extras_lock20_1.4.json.bin b/tests/_data/snapshots/poetry/some-extras_with-extras_lock20_1.4.json.bin index 58d3ca223..72c111f51 100644 --- a/tests/_data/snapshots/poetry/some-extras_with-extras_lock20_1.4.json.bin +++ b/tests/_data/snapshots/poetry/some-extras_with-extras_lock20_1.4.json.bin @@ -3150,6 +3150,7 @@ ], "metadata": { "component": { + "author": "Your Name ", "bom-ref": "with-extras", "description": "depenndencies with extras", "name": "with-extras", diff --git a/tests/_data/snapshots/poetry/some-extras_with-extras_lock20_1.4.xml.bin b/tests/_data/snapshots/poetry/some-extras_with-extras_lock20_1.4.xml.bin index c719ad2a2..103f8ec1e 100644 --- a/tests/_data/snapshots/poetry/some-extras_with-extras_lock20_1.4.xml.bin +++ b/tests/_data/snapshots/poetry/some-extras_with-extras_lock20_1.4.xml.bin @@ -41,6 +41,7 @@ + Your Name <you@example.com> with-extras 0.1.0 depenndencies with extras diff --git a/tests/_data/snapshots/poetry/some-extras_with-extras_lock20_1.5.json.bin b/tests/_data/snapshots/poetry/some-extras_with-extras_lock20_1.5.json.bin index f1c1d97bd..1429e6042 100644 --- a/tests/_data/snapshots/poetry/some-extras_with-extras_lock20_1.5.json.bin +++ b/tests/_data/snapshots/poetry/some-extras_with-extras_lock20_1.5.json.bin @@ -3150,6 +3150,7 @@ ], "metadata": { "component": { + "author": "Your Name ", "bom-ref": "with-extras", "description": "depenndencies with extras", "name": "with-extras", diff --git a/tests/_data/snapshots/poetry/some-extras_with-extras_lock20_1.5.xml.bin b/tests/_data/snapshots/poetry/some-extras_with-extras_lock20_1.5.xml.bin index 0a78625b5..4176da75c 100644 --- a/tests/_data/snapshots/poetry/some-extras_with-extras_lock20_1.5.xml.bin +++ b/tests/_data/snapshots/poetry/some-extras_with-extras_lock20_1.5.xml.bin @@ -51,6 +51,7 @@ + Your Name <you@example.com> with-extras 0.1.0 depenndencies with extras diff --git a/tests/_data/snapshots/poetry/some-extras_with-extras_lock20_1.6.json.bin b/tests/_data/snapshots/poetry/some-extras_with-extras_lock20_1.6.json.bin index 88c23d185..29eda5ff7 100644 --- a/tests/_data/snapshots/poetry/some-extras_with-extras_lock20_1.6.json.bin +++ b/tests/_data/snapshots/poetry/some-extras_with-extras_lock20_1.6.json.bin @@ -3150,6 +3150,13 @@ ], "metadata": { "component": { + "author": "Your Name ", + "authors": [ + { + "email": "you@example.com", + "name": "Your Name" + } + ], "bom-ref": "with-extras", "description": "depenndencies with extras", "name": "with-extras", diff --git a/tests/_data/snapshots/poetry/some-extras_with-extras_lock20_1.6.xml.bin b/tests/_data/snapshots/poetry/some-extras_with-extras_lock20_1.6.xml.bin index df469de79..614e5c0e3 100644 --- a/tests/_data/snapshots/poetry/some-extras_with-extras_lock20_1.6.xml.bin +++ b/tests/_data/snapshots/poetry/some-extras_with-extras_lock20_1.6.xml.bin @@ -51,6 +51,13 @@ + + + Your Name + you@example.com + + + Your Name <you@example.com> with-extras 0.1.0 depenndencies with extras diff --git a/tests/_data/snapshots/poetry/some-extras_with-extras_lock20_1.7.json.bin b/tests/_data/snapshots/poetry/some-extras_with-extras_lock20_1.7.json.bin index d3167c999..1e48ab2c9 100644 --- a/tests/_data/snapshots/poetry/some-extras_with-extras_lock20_1.7.json.bin +++ b/tests/_data/snapshots/poetry/some-extras_with-extras_lock20_1.7.json.bin @@ -3150,6 +3150,13 @@ ], "metadata": { "component": { + "author": "Your Name ", + "authors": [ + { + "email": "you@example.com", + "name": "Your Name" + } + ], "bom-ref": "with-extras", "description": "depenndencies with extras", "name": "with-extras", diff --git a/tests/_data/snapshots/poetry/some-extras_with-extras_lock20_1.7.xml.bin b/tests/_data/snapshots/poetry/some-extras_with-extras_lock20_1.7.xml.bin index 081f5b672..5d8fd4303 100644 --- a/tests/_data/snapshots/poetry/some-extras_with-extras_lock20_1.7.xml.bin +++ b/tests/_data/snapshots/poetry/some-extras_with-extras_lock20_1.7.xml.bin @@ -51,6 +51,13 @@ + + + Your Name + you@example.com + + + Your Name <you@example.com> with-extras 0.1.0 depenndencies with extras diff --git a/tests/_data/snapshots/poetry/some-extras_with-extras_lock21_1.2.json.bin b/tests/_data/snapshots/poetry/some-extras_with-extras_lock21_1.2.json.bin index 31f1e2d6a..0dfc544b9 100644 --- a/tests/_data/snapshots/poetry/some-extras_with-extras_lock21_1.2.json.bin +++ b/tests/_data/snapshots/poetry/some-extras_with-extras_lock21_1.2.json.bin @@ -1697,6 +1697,7 @@ ], "metadata": { "component": { + "author": "Your Name ", "bom-ref": "with-extras", "description": "depenndencies with extras", "name": "with-extras", diff --git a/tests/_data/snapshots/poetry/some-extras_with-extras_lock21_1.2.xml.bin b/tests/_data/snapshots/poetry/some-extras_with-extras_lock21_1.2.xml.bin index 74e22587a..d7acfbdca 100644 --- a/tests/_data/snapshots/poetry/some-extras_with-extras_lock21_1.2.xml.bin +++ b/tests/_data/snapshots/poetry/some-extras_with-extras_lock21_1.2.xml.bin @@ -14,6 +14,7 @@ + Your Name <you@example.com> with-extras 0.1.0 depenndencies with extras diff --git a/tests/_data/snapshots/poetry/some-extras_with-extras_lock21_1.3.json.bin b/tests/_data/snapshots/poetry/some-extras_with-extras_lock21_1.3.json.bin index 869a67273..c216dd250 100644 --- a/tests/_data/snapshots/poetry/some-extras_with-extras_lock21_1.3.json.bin +++ b/tests/_data/snapshots/poetry/some-extras_with-extras_lock21_1.3.json.bin @@ -3205,6 +3205,7 @@ ], "metadata": { "component": { + "author": "Your Name ", "bom-ref": "with-extras", "description": "depenndencies with extras", "name": "with-extras", diff --git a/tests/_data/snapshots/poetry/some-extras_with-extras_lock21_1.3.xml.bin b/tests/_data/snapshots/poetry/some-extras_with-extras_lock21_1.3.xml.bin index 76aa884f3..49753bee8 100644 --- a/tests/_data/snapshots/poetry/some-extras_with-extras_lock21_1.3.xml.bin +++ b/tests/_data/snapshots/poetry/some-extras_with-extras_lock21_1.3.xml.bin @@ -14,6 +14,7 @@ + Your Name <you@example.com> with-extras 0.1.0 depenndencies with extras diff --git a/tests/_data/snapshots/poetry/some-extras_with-extras_lock21_1.4.json.bin b/tests/_data/snapshots/poetry/some-extras_with-extras_lock21_1.4.json.bin index 3112137d9..29a77c63d 100644 --- a/tests/_data/snapshots/poetry/some-extras_with-extras_lock21_1.4.json.bin +++ b/tests/_data/snapshots/poetry/some-extras_with-extras_lock21_1.4.json.bin @@ -3205,6 +3205,7 @@ ], "metadata": { "component": { + "author": "Your Name ", "bom-ref": "with-extras", "description": "depenndencies with extras", "name": "with-extras", diff --git a/tests/_data/snapshots/poetry/some-extras_with-extras_lock21_1.4.xml.bin b/tests/_data/snapshots/poetry/some-extras_with-extras_lock21_1.4.xml.bin index 702f4123a..82f99f174 100644 --- a/tests/_data/snapshots/poetry/some-extras_with-extras_lock21_1.4.xml.bin +++ b/tests/_data/snapshots/poetry/some-extras_with-extras_lock21_1.4.xml.bin @@ -41,6 +41,7 @@ + Your Name <you@example.com> with-extras 0.1.0 depenndencies with extras diff --git a/tests/_data/snapshots/poetry/some-extras_with-extras_lock21_1.5.json.bin b/tests/_data/snapshots/poetry/some-extras_with-extras_lock21_1.5.json.bin index ec4d794ae..15de94f85 100644 --- a/tests/_data/snapshots/poetry/some-extras_with-extras_lock21_1.5.json.bin +++ b/tests/_data/snapshots/poetry/some-extras_with-extras_lock21_1.5.json.bin @@ -3205,6 +3205,7 @@ ], "metadata": { "component": { + "author": "Your Name ", "bom-ref": "with-extras", "description": "depenndencies with extras", "name": "with-extras", diff --git a/tests/_data/snapshots/poetry/some-extras_with-extras_lock21_1.5.xml.bin b/tests/_data/snapshots/poetry/some-extras_with-extras_lock21_1.5.xml.bin index 4c9af547b..64a966c60 100644 --- a/tests/_data/snapshots/poetry/some-extras_with-extras_lock21_1.5.xml.bin +++ b/tests/_data/snapshots/poetry/some-extras_with-extras_lock21_1.5.xml.bin @@ -51,6 +51,7 @@ + Your Name <you@example.com> with-extras 0.1.0 depenndencies with extras diff --git a/tests/_data/snapshots/poetry/some-extras_with-extras_lock21_1.6.json.bin b/tests/_data/snapshots/poetry/some-extras_with-extras_lock21_1.6.json.bin index bdf01feb4..af555a474 100644 --- a/tests/_data/snapshots/poetry/some-extras_with-extras_lock21_1.6.json.bin +++ b/tests/_data/snapshots/poetry/some-extras_with-extras_lock21_1.6.json.bin @@ -3205,6 +3205,13 @@ ], "metadata": { "component": { + "author": "Your Name ", + "authors": [ + { + "email": "you@example.com", + "name": "Your Name" + } + ], "bom-ref": "with-extras", "description": "depenndencies with extras", "name": "with-extras", diff --git a/tests/_data/snapshots/poetry/some-extras_with-extras_lock21_1.6.xml.bin b/tests/_data/snapshots/poetry/some-extras_with-extras_lock21_1.6.xml.bin index 94b87f226..23fd80c90 100644 --- a/tests/_data/snapshots/poetry/some-extras_with-extras_lock21_1.6.xml.bin +++ b/tests/_data/snapshots/poetry/some-extras_with-extras_lock21_1.6.xml.bin @@ -51,6 +51,13 @@ + + + Your Name + you@example.com + + + Your Name <you@example.com> with-extras 0.1.0 depenndencies with extras diff --git a/tests/_data/snapshots/poetry/some-extras_with-extras_lock21_1.7.json.bin b/tests/_data/snapshots/poetry/some-extras_with-extras_lock21_1.7.json.bin index debfc651d..4920d4ef1 100644 --- a/tests/_data/snapshots/poetry/some-extras_with-extras_lock21_1.7.json.bin +++ b/tests/_data/snapshots/poetry/some-extras_with-extras_lock21_1.7.json.bin @@ -3205,6 +3205,13 @@ ], "metadata": { "component": { + "author": "Your Name ", + "authors": [ + { + "email": "you@example.com", + "name": "Your Name" + } + ], "bom-ref": "with-extras", "description": "depenndencies with extras", "name": "with-extras", diff --git a/tests/_data/snapshots/poetry/some-extras_with-extras_lock21_1.7.xml.bin b/tests/_data/snapshots/poetry/some-extras_with-extras_lock21_1.7.xml.bin index 9e489deac..823af286f 100644 --- a/tests/_data/snapshots/poetry/some-extras_with-extras_lock21_1.7.xml.bin +++ b/tests/_data/snapshots/poetry/some-extras_with-extras_lock21_1.7.xml.bin @@ -51,6 +51,13 @@ + + + Your Name + you@example.com + + + Your Name <you@example.com> with-extras 0.1.0 depenndencies with extras diff --git a/tests/_data/snapshots/poetry/some-groups_group-deps_lock11_1.2.json.bin b/tests/_data/snapshots/poetry/some-groups_group-deps_lock11_1.2.json.bin index 7694c3c8d..455cb2861 100644 --- a/tests/_data/snapshots/poetry/some-groups_group-deps_lock11_1.2.json.bin +++ b/tests/_data/snapshots/poetry/some-groups_group-deps_lock11_1.2.json.bin @@ -184,6 +184,7 @@ ], "metadata": { "component": { + "author": "Your Name ", "bom-ref": "group-deps", "description": "dependencies organized in groups", "name": "group-deps", diff --git a/tests/_data/snapshots/poetry/some-groups_group-deps_lock11_1.2.xml.bin b/tests/_data/snapshots/poetry/some-groups_group-deps_lock11_1.2.xml.bin index 28b4bec2e..92187555b 100644 --- a/tests/_data/snapshots/poetry/some-groups_group-deps_lock11_1.2.xml.bin +++ b/tests/_data/snapshots/poetry/some-groups_group-deps_lock11_1.2.xml.bin @@ -14,6 +14,7 @@ + Your Name <you@example.com> group-deps 0.1.0 dependencies organized in groups diff --git a/tests/_data/snapshots/poetry/some-groups_group-deps_lock11_1.3.json.bin b/tests/_data/snapshots/poetry/some-groups_group-deps_lock11_1.3.json.bin index 307124efa..3c6e71ed0 100644 --- a/tests/_data/snapshots/poetry/some-groups_group-deps_lock11_1.3.json.bin +++ b/tests/_data/snapshots/poetry/some-groups_group-deps_lock11_1.3.json.bin @@ -318,6 +318,7 @@ ], "metadata": { "component": { + "author": "Your Name ", "bom-ref": "group-deps", "description": "dependencies organized in groups", "name": "group-deps", diff --git a/tests/_data/snapshots/poetry/some-groups_group-deps_lock11_1.3.xml.bin b/tests/_data/snapshots/poetry/some-groups_group-deps_lock11_1.3.xml.bin index da19190bb..20f97ca4b 100644 --- a/tests/_data/snapshots/poetry/some-groups_group-deps_lock11_1.3.xml.bin +++ b/tests/_data/snapshots/poetry/some-groups_group-deps_lock11_1.3.xml.bin @@ -14,6 +14,7 @@ + Your Name <you@example.com> group-deps 0.1.0 dependencies organized in groups diff --git a/tests/_data/snapshots/poetry/some-groups_group-deps_lock11_1.4.json.bin b/tests/_data/snapshots/poetry/some-groups_group-deps_lock11_1.4.json.bin index 42a86fba0..163656d46 100644 --- a/tests/_data/snapshots/poetry/some-groups_group-deps_lock11_1.4.json.bin +++ b/tests/_data/snapshots/poetry/some-groups_group-deps_lock11_1.4.json.bin @@ -318,6 +318,7 @@ ], "metadata": { "component": { + "author": "Your Name ", "bom-ref": "group-deps", "description": "dependencies organized in groups", "name": "group-deps", diff --git a/tests/_data/snapshots/poetry/some-groups_group-deps_lock11_1.4.xml.bin b/tests/_data/snapshots/poetry/some-groups_group-deps_lock11_1.4.xml.bin index 120e01472..8192ff7f0 100644 --- a/tests/_data/snapshots/poetry/some-groups_group-deps_lock11_1.4.xml.bin +++ b/tests/_data/snapshots/poetry/some-groups_group-deps_lock11_1.4.xml.bin @@ -41,6 +41,7 @@ + Your Name <you@example.com> group-deps 0.1.0 dependencies organized in groups diff --git a/tests/_data/snapshots/poetry/some-groups_group-deps_lock11_1.5.json.bin b/tests/_data/snapshots/poetry/some-groups_group-deps_lock11_1.5.json.bin index d2ca2f0c3..5ad8fc916 100644 --- a/tests/_data/snapshots/poetry/some-groups_group-deps_lock11_1.5.json.bin +++ b/tests/_data/snapshots/poetry/some-groups_group-deps_lock11_1.5.json.bin @@ -318,6 +318,7 @@ ], "metadata": { "component": { + "author": "Your Name ", "bom-ref": "group-deps", "description": "dependencies organized in groups", "name": "group-deps", diff --git a/tests/_data/snapshots/poetry/some-groups_group-deps_lock11_1.5.xml.bin b/tests/_data/snapshots/poetry/some-groups_group-deps_lock11_1.5.xml.bin index 4ccfc9b16..a3b7aff88 100644 --- a/tests/_data/snapshots/poetry/some-groups_group-deps_lock11_1.5.xml.bin +++ b/tests/_data/snapshots/poetry/some-groups_group-deps_lock11_1.5.xml.bin @@ -51,6 +51,7 @@ + Your Name <you@example.com> group-deps 0.1.0 dependencies organized in groups diff --git a/tests/_data/snapshots/poetry/some-groups_group-deps_lock11_1.6.json.bin b/tests/_data/snapshots/poetry/some-groups_group-deps_lock11_1.6.json.bin index a1fc15f9d..ea1836c1c 100644 --- a/tests/_data/snapshots/poetry/some-groups_group-deps_lock11_1.6.json.bin +++ b/tests/_data/snapshots/poetry/some-groups_group-deps_lock11_1.6.json.bin @@ -318,6 +318,13 @@ ], "metadata": { "component": { + "author": "Your Name ", + "authors": [ + { + "email": "you@example.com", + "name": "Your Name" + } + ], "bom-ref": "group-deps", "description": "dependencies organized in groups", "name": "group-deps", diff --git a/tests/_data/snapshots/poetry/some-groups_group-deps_lock11_1.6.xml.bin b/tests/_data/snapshots/poetry/some-groups_group-deps_lock11_1.6.xml.bin index ef8f44387..56612a1e0 100644 --- a/tests/_data/snapshots/poetry/some-groups_group-deps_lock11_1.6.xml.bin +++ b/tests/_data/snapshots/poetry/some-groups_group-deps_lock11_1.6.xml.bin @@ -51,6 +51,13 @@ + + + Your Name + you@example.com + + + Your Name <you@example.com> group-deps 0.1.0 dependencies organized in groups diff --git a/tests/_data/snapshots/poetry/some-groups_group-deps_lock11_1.7.json.bin b/tests/_data/snapshots/poetry/some-groups_group-deps_lock11_1.7.json.bin index 028109b90..54a53d6f2 100644 --- a/tests/_data/snapshots/poetry/some-groups_group-deps_lock11_1.7.json.bin +++ b/tests/_data/snapshots/poetry/some-groups_group-deps_lock11_1.7.json.bin @@ -318,6 +318,13 @@ ], "metadata": { "component": { + "author": "Your Name ", + "authors": [ + { + "email": "you@example.com", + "name": "Your Name" + } + ], "bom-ref": "group-deps", "description": "dependencies organized in groups", "name": "group-deps", diff --git a/tests/_data/snapshots/poetry/some-groups_group-deps_lock11_1.7.xml.bin b/tests/_data/snapshots/poetry/some-groups_group-deps_lock11_1.7.xml.bin index 847af4a37..cf73645b7 100644 --- a/tests/_data/snapshots/poetry/some-groups_group-deps_lock11_1.7.xml.bin +++ b/tests/_data/snapshots/poetry/some-groups_group-deps_lock11_1.7.xml.bin @@ -51,6 +51,13 @@ + + + Your Name + you@example.com + + + Your Name <you@example.com> group-deps 0.1.0 dependencies organized in groups diff --git a/tests/_data/snapshots/poetry/some-groups_group-deps_lock20_1.2.json.bin b/tests/_data/snapshots/poetry/some-groups_group-deps_lock20_1.2.json.bin index 7694c3c8d..455cb2861 100644 --- a/tests/_data/snapshots/poetry/some-groups_group-deps_lock20_1.2.json.bin +++ b/tests/_data/snapshots/poetry/some-groups_group-deps_lock20_1.2.json.bin @@ -184,6 +184,7 @@ ], "metadata": { "component": { + "author": "Your Name ", "bom-ref": "group-deps", "description": "dependencies organized in groups", "name": "group-deps", diff --git a/tests/_data/snapshots/poetry/some-groups_group-deps_lock20_1.2.xml.bin b/tests/_data/snapshots/poetry/some-groups_group-deps_lock20_1.2.xml.bin index 28b4bec2e..92187555b 100644 --- a/tests/_data/snapshots/poetry/some-groups_group-deps_lock20_1.2.xml.bin +++ b/tests/_data/snapshots/poetry/some-groups_group-deps_lock20_1.2.xml.bin @@ -14,6 +14,7 @@ + Your Name <you@example.com> group-deps 0.1.0 dependencies organized in groups diff --git a/tests/_data/snapshots/poetry/some-groups_group-deps_lock20_1.3.json.bin b/tests/_data/snapshots/poetry/some-groups_group-deps_lock20_1.3.json.bin index 3dc95cadd..a2012d7d3 100644 --- a/tests/_data/snapshots/poetry/some-groups_group-deps_lock20_1.3.json.bin +++ b/tests/_data/snapshots/poetry/some-groups_group-deps_lock20_1.3.json.bin @@ -286,6 +286,7 @@ ], "metadata": { "component": { + "author": "Your Name ", "bom-ref": "group-deps", "description": "dependencies organized in groups", "name": "group-deps", diff --git a/tests/_data/snapshots/poetry/some-groups_group-deps_lock20_1.3.xml.bin b/tests/_data/snapshots/poetry/some-groups_group-deps_lock20_1.3.xml.bin index 22d958e76..1cda96510 100644 --- a/tests/_data/snapshots/poetry/some-groups_group-deps_lock20_1.3.xml.bin +++ b/tests/_data/snapshots/poetry/some-groups_group-deps_lock20_1.3.xml.bin @@ -14,6 +14,7 @@ + Your Name <you@example.com> group-deps 0.1.0 dependencies organized in groups diff --git a/tests/_data/snapshots/poetry/some-groups_group-deps_lock20_1.4.json.bin b/tests/_data/snapshots/poetry/some-groups_group-deps_lock20_1.4.json.bin index f7ee71cf4..6e7d7be33 100644 --- a/tests/_data/snapshots/poetry/some-groups_group-deps_lock20_1.4.json.bin +++ b/tests/_data/snapshots/poetry/some-groups_group-deps_lock20_1.4.json.bin @@ -286,6 +286,7 @@ ], "metadata": { "component": { + "author": "Your Name ", "bom-ref": "group-deps", "description": "dependencies organized in groups", "name": "group-deps", diff --git a/tests/_data/snapshots/poetry/some-groups_group-deps_lock20_1.4.xml.bin b/tests/_data/snapshots/poetry/some-groups_group-deps_lock20_1.4.xml.bin index 7e6f78d7b..2b99d6a68 100644 --- a/tests/_data/snapshots/poetry/some-groups_group-deps_lock20_1.4.xml.bin +++ b/tests/_data/snapshots/poetry/some-groups_group-deps_lock20_1.4.xml.bin @@ -41,6 +41,7 @@ + Your Name <you@example.com> group-deps 0.1.0 dependencies organized in groups diff --git a/tests/_data/snapshots/poetry/some-groups_group-deps_lock20_1.5.json.bin b/tests/_data/snapshots/poetry/some-groups_group-deps_lock20_1.5.json.bin index 15f4baf79..79a16f062 100644 --- a/tests/_data/snapshots/poetry/some-groups_group-deps_lock20_1.5.json.bin +++ b/tests/_data/snapshots/poetry/some-groups_group-deps_lock20_1.5.json.bin @@ -286,6 +286,7 @@ ], "metadata": { "component": { + "author": "Your Name ", "bom-ref": "group-deps", "description": "dependencies organized in groups", "name": "group-deps", diff --git a/tests/_data/snapshots/poetry/some-groups_group-deps_lock20_1.5.xml.bin b/tests/_data/snapshots/poetry/some-groups_group-deps_lock20_1.5.xml.bin index e9adb2978..dfaa254bd 100644 --- a/tests/_data/snapshots/poetry/some-groups_group-deps_lock20_1.5.xml.bin +++ b/tests/_data/snapshots/poetry/some-groups_group-deps_lock20_1.5.xml.bin @@ -51,6 +51,7 @@ + Your Name <you@example.com> group-deps 0.1.0 dependencies organized in groups diff --git a/tests/_data/snapshots/poetry/some-groups_group-deps_lock20_1.6.json.bin b/tests/_data/snapshots/poetry/some-groups_group-deps_lock20_1.6.json.bin index c080b22f3..a803400a0 100644 --- a/tests/_data/snapshots/poetry/some-groups_group-deps_lock20_1.6.json.bin +++ b/tests/_data/snapshots/poetry/some-groups_group-deps_lock20_1.6.json.bin @@ -286,6 +286,13 @@ ], "metadata": { "component": { + "author": "Your Name ", + "authors": [ + { + "email": "you@example.com", + "name": "Your Name" + } + ], "bom-ref": "group-deps", "description": "dependencies organized in groups", "name": "group-deps", diff --git a/tests/_data/snapshots/poetry/some-groups_group-deps_lock20_1.6.xml.bin b/tests/_data/snapshots/poetry/some-groups_group-deps_lock20_1.6.xml.bin index 889071070..f2941265d 100644 --- a/tests/_data/snapshots/poetry/some-groups_group-deps_lock20_1.6.xml.bin +++ b/tests/_data/snapshots/poetry/some-groups_group-deps_lock20_1.6.xml.bin @@ -51,6 +51,13 @@ + + + Your Name + you@example.com + + + Your Name <you@example.com> group-deps 0.1.0 dependencies organized in groups diff --git a/tests/_data/snapshots/poetry/some-groups_group-deps_lock20_1.7.json.bin b/tests/_data/snapshots/poetry/some-groups_group-deps_lock20_1.7.json.bin index 48104b85d..a66874bbf 100644 --- a/tests/_data/snapshots/poetry/some-groups_group-deps_lock20_1.7.json.bin +++ b/tests/_data/snapshots/poetry/some-groups_group-deps_lock20_1.7.json.bin @@ -286,6 +286,13 @@ ], "metadata": { "component": { + "author": "Your Name ", + "authors": [ + { + "email": "you@example.com", + "name": "Your Name" + } + ], "bom-ref": "group-deps", "description": "dependencies organized in groups", "name": "group-deps", diff --git a/tests/_data/snapshots/poetry/some-groups_group-deps_lock20_1.7.xml.bin b/tests/_data/snapshots/poetry/some-groups_group-deps_lock20_1.7.xml.bin index ac4ce1561..722f455a3 100644 --- a/tests/_data/snapshots/poetry/some-groups_group-deps_lock20_1.7.xml.bin +++ b/tests/_data/snapshots/poetry/some-groups_group-deps_lock20_1.7.xml.bin @@ -51,6 +51,13 @@ + + + Your Name + you@example.com + + + Your Name <you@example.com> group-deps 0.1.0 dependencies organized in groups diff --git a/tests/_data/snapshots/poetry/some-groups_group-deps_lock21_1.2.json.bin b/tests/_data/snapshots/poetry/some-groups_group-deps_lock21_1.2.json.bin index b20f88f61..08cce0548 100644 --- a/tests/_data/snapshots/poetry/some-groups_group-deps_lock21_1.2.json.bin +++ b/tests/_data/snapshots/poetry/some-groups_group-deps_lock21_1.2.json.bin @@ -184,6 +184,7 @@ ], "metadata": { "component": { + "author": "Your Name ", "bom-ref": "group-deps", "description": "dependencies organized in groups", "name": "group-deps", diff --git a/tests/_data/snapshots/poetry/some-groups_group-deps_lock21_1.2.xml.bin b/tests/_data/snapshots/poetry/some-groups_group-deps_lock21_1.2.xml.bin index 4ef127c21..7796d3567 100644 --- a/tests/_data/snapshots/poetry/some-groups_group-deps_lock21_1.2.xml.bin +++ b/tests/_data/snapshots/poetry/some-groups_group-deps_lock21_1.2.xml.bin @@ -14,6 +14,7 @@ + Your Name <you@example.com> group-deps 0.1.0 dependencies organized in groups diff --git a/tests/_data/snapshots/poetry/some-groups_group-deps_lock21_1.3.json.bin b/tests/_data/snapshots/poetry/some-groups_group-deps_lock21_1.3.json.bin index 1c580a62d..2d8c0baab 100644 --- a/tests/_data/snapshots/poetry/some-groups_group-deps_lock21_1.3.json.bin +++ b/tests/_data/snapshots/poetry/some-groups_group-deps_lock21_1.3.json.bin @@ -286,6 +286,7 @@ ], "metadata": { "component": { + "author": "Your Name ", "bom-ref": "group-deps", "description": "dependencies organized in groups", "name": "group-deps", diff --git a/tests/_data/snapshots/poetry/some-groups_group-deps_lock21_1.3.xml.bin b/tests/_data/snapshots/poetry/some-groups_group-deps_lock21_1.3.xml.bin index 9cd0c95a4..4bea922b1 100644 --- a/tests/_data/snapshots/poetry/some-groups_group-deps_lock21_1.3.xml.bin +++ b/tests/_data/snapshots/poetry/some-groups_group-deps_lock21_1.3.xml.bin @@ -14,6 +14,7 @@ + Your Name <you@example.com> group-deps 0.1.0 dependencies organized in groups diff --git a/tests/_data/snapshots/poetry/some-groups_group-deps_lock21_1.4.json.bin b/tests/_data/snapshots/poetry/some-groups_group-deps_lock21_1.4.json.bin index beacafb86..e52336189 100644 --- a/tests/_data/snapshots/poetry/some-groups_group-deps_lock21_1.4.json.bin +++ b/tests/_data/snapshots/poetry/some-groups_group-deps_lock21_1.4.json.bin @@ -286,6 +286,7 @@ ], "metadata": { "component": { + "author": "Your Name ", "bom-ref": "group-deps", "description": "dependencies organized in groups", "name": "group-deps", diff --git a/tests/_data/snapshots/poetry/some-groups_group-deps_lock21_1.4.xml.bin b/tests/_data/snapshots/poetry/some-groups_group-deps_lock21_1.4.xml.bin index 2e1837c0b..b4f0dd6ba 100644 --- a/tests/_data/snapshots/poetry/some-groups_group-deps_lock21_1.4.xml.bin +++ b/tests/_data/snapshots/poetry/some-groups_group-deps_lock21_1.4.xml.bin @@ -41,6 +41,7 @@ + Your Name <you@example.com> group-deps 0.1.0 dependencies organized in groups diff --git a/tests/_data/snapshots/poetry/some-groups_group-deps_lock21_1.5.json.bin b/tests/_data/snapshots/poetry/some-groups_group-deps_lock21_1.5.json.bin index 50a32a457..06e8e528a 100644 --- a/tests/_data/snapshots/poetry/some-groups_group-deps_lock21_1.5.json.bin +++ b/tests/_data/snapshots/poetry/some-groups_group-deps_lock21_1.5.json.bin @@ -286,6 +286,7 @@ ], "metadata": { "component": { + "author": "Your Name ", "bom-ref": "group-deps", "description": "dependencies organized in groups", "name": "group-deps", diff --git a/tests/_data/snapshots/poetry/some-groups_group-deps_lock21_1.5.xml.bin b/tests/_data/snapshots/poetry/some-groups_group-deps_lock21_1.5.xml.bin index 86f732376..50ea617a6 100644 --- a/tests/_data/snapshots/poetry/some-groups_group-deps_lock21_1.5.xml.bin +++ b/tests/_data/snapshots/poetry/some-groups_group-deps_lock21_1.5.xml.bin @@ -51,6 +51,7 @@ + Your Name <you@example.com> group-deps 0.1.0 dependencies organized in groups diff --git a/tests/_data/snapshots/poetry/some-groups_group-deps_lock21_1.6.json.bin b/tests/_data/snapshots/poetry/some-groups_group-deps_lock21_1.6.json.bin index 45b4e4a43..209ea2c29 100644 --- a/tests/_data/snapshots/poetry/some-groups_group-deps_lock21_1.6.json.bin +++ b/tests/_data/snapshots/poetry/some-groups_group-deps_lock21_1.6.json.bin @@ -286,6 +286,13 @@ ], "metadata": { "component": { + "author": "Your Name ", + "authors": [ + { + "email": "you@example.com", + "name": "Your Name" + } + ], "bom-ref": "group-deps", "description": "dependencies organized in groups", "name": "group-deps", diff --git a/tests/_data/snapshots/poetry/some-groups_group-deps_lock21_1.6.xml.bin b/tests/_data/snapshots/poetry/some-groups_group-deps_lock21_1.6.xml.bin index 69fe92b23..183bab2b9 100644 --- a/tests/_data/snapshots/poetry/some-groups_group-deps_lock21_1.6.xml.bin +++ b/tests/_data/snapshots/poetry/some-groups_group-deps_lock21_1.6.xml.bin @@ -51,6 +51,13 @@ + + + Your Name + you@example.com + + + Your Name <you@example.com> group-deps 0.1.0 dependencies organized in groups diff --git a/tests/_data/snapshots/poetry/some-groups_group-deps_lock21_1.7.json.bin b/tests/_data/snapshots/poetry/some-groups_group-deps_lock21_1.7.json.bin index 73fb6090f..28e25d454 100644 --- a/tests/_data/snapshots/poetry/some-groups_group-deps_lock21_1.7.json.bin +++ b/tests/_data/snapshots/poetry/some-groups_group-deps_lock21_1.7.json.bin @@ -286,6 +286,13 @@ ], "metadata": { "component": { + "author": "Your Name ", + "authors": [ + { + "email": "you@example.com", + "name": "Your Name" + } + ], "bom-ref": "group-deps", "description": "dependencies organized in groups", "name": "group-deps", diff --git a/tests/_data/snapshots/poetry/some-groups_group-deps_lock21_1.7.xml.bin b/tests/_data/snapshots/poetry/some-groups_group-deps_lock21_1.7.xml.bin index dc70b17cc..3b75ca13b 100644 --- a/tests/_data/snapshots/poetry/some-groups_group-deps_lock21_1.7.xml.bin +++ b/tests/_data/snapshots/poetry/some-groups_group-deps_lock21_1.7.xml.bin @@ -51,6 +51,13 @@ + + + Your Name + you@example.com + + + Your Name <you@example.com> group-deps 0.1.0 dependencies organized in groups diff --git a/tests/_data/snapshots/requirements/file_frozen_1.6.json.bin b/tests/_data/snapshots/requirements/file_frozen_1.6.json.bin index 20c5e7264..f4d9b72d6 100644 --- a/tests/_data/snapshots/requirements/file_frozen_1.6.json.bin +++ b/tests/_data/snapshots/requirements/file_frozen_1.6.json.bin @@ -54,6 +54,15 @@ ], "metadata": { "component": { + "authors": [ + { + "name": "My Name" + }, + { + "email": "you@example.com", + "name": "Your Name" + } + ], "bom-ref": "root-component", "description": "some `reuqirements.txt` a root-component with all metadata", "evidence": { diff --git a/tests/_data/snapshots/requirements/file_frozen_1.6.xml.bin b/tests/_data/snapshots/requirements/file_frozen_1.6.xml.bin index 8d4f94378..d2d1b349b 100644 --- a/tests/_data/snapshots/requirements/file_frozen_1.6.xml.bin +++ b/tests/_data/snapshots/requirements/file_frozen_1.6.xml.bin @@ -51,6 +51,15 @@ + + + My Name + + + Your Name + you@example.com + + testing-requirements-txt 0.1.0 some `reuqirements.txt` a root-component with all metadata diff --git a/tests/_data/snapshots/requirements/file_frozen_1.7.json.bin b/tests/_data/snapshots/requirements/file_frozen_1.7.json.bin index a584e4664..7fa4ab342 100644 --- a/tests/_data/snapshots/requirements/file_frozen_1.7.json.bin +++ b/tests/_data/snapshots/requirements/file_frozen_1.7.json.bin @@ -54,6 +54,15 @@ ], "metadata": { "component": { + "authors": [ + { + "name": "My Name" + }, + { + "email": "you@example.com", + "name": "Your Name" + } + ], "bom-ref": "root-component", "description": "some `reuqirements.txt` a root-component with all metadata", "evidence": { diff --git a/tests/_data/snapshots/requirements/file_frozen_1.7.xml.bin b/tests/_data/snapshots/requirements/file_frozen_1.7.xml.bin index 775287597..ea34e595b 100644 --- a/tests/_data/snapshots/requirements/file_frozen_1.7.xml.bin +++ b/tests/_data/snapshots/requirements/file_frozen_1.7.xml.bin @@ -51,6 +51,15 @@ + + + My Name + + + Your Name + you@example.com + + testing-requirements-txt 0.1.0 some `reuqirements.txt` a root-component with all metadata diff --git a/tests/_data/snapshots/requirements/file_local_1.6.json.bin b/tests/_data/snapshots/requirements/file_local_1.6.json.bin index 8a126c541..a6f12f025 100644 --- a/tests/_data/snapshots/requirements/file_local_1.6.json.bin +++ b/tests/_data/snapshots/requirements/file_local_1.6.json.bin @@ -111,6 +111,15 @@ ], "metadata": { "component": { + "authors": [ + { + "name": "My Name" + }, + { + "email": "you@example.com", + "name": "Your Name" + } + ], "bom-ref": "root-component", "description": "some `reuqirements.txt` a root-component with all metadata", "evidence": { diff --git a/tests/_data/snapshots/requirements/file_local_1.6.xml.bin b/tests/_data/snapshots/requirements/file_local_1.6.xml.bin index fb4fbf822..e367de078 100644 --- a/tests/_data/snapshots/requirements/file_local_1.6.xml.bin +++ b/tests/_data/snapshots/requirements/file_local_1.6.xml.bin @@ -51,6 +51,15 @@ + + + My Name + + + Your Name + you@example.com + + testing-requirements-txt 0.1.0 some `reuqirements.txt` a root-component with all metadata diff --git a/tests/_data/snapshots/requirements/file_local_1.7.json.bin b/tests/_data/snapshots/requirements/file_local_1.7.json.bin index d32c5a461..e31d2c5cd 100644 --- a/tests/_data/snapshots/requirements/file_local_1.7.json.bin +++ b/tests/_data/snapshots/requirements/file_local_1.7.json.bin @@ -111,6 +111,15 @@ ], "metadata": { "component": { + "authors": [ + { + "name": "My Name" + }, + { + "email": "you@example.com", + "name": "Your Name" + } + ], "bom-ref": "root-component", "description": "some `reuqirements.txt` a root-component with all metadata", "evidence": { diff --git a/tests/_data/snapshots/requirements/file_local_1.7.xml.bin b/tests/_data/snapshots/requirements/file_local_1.7.xml.bin index 2316bd7b6..3f5c7f43e 100644 --- a/tests/_data/snapshots/requirements/file_local_1.7.xml.bin +++ b/tests/_data/snapshots/requirements/file_local_1.7.xml.bin @@ -51,6 +51,15 @@ + + + My Name + + + Your Name + you@example.com + + testing-requirements-txt 0.1.0 some `reuqirements.txt` a root-component with all metadata diff --git a/tests/_data/snapshots/requirements/file_nested_1.6.json.bin b/tests/_data/snapshots/requirements/file_nested_1.6.json.bin index 20c5e7264..f4d9b72d6 100644 --- a/tests/_data/snapshots/requirements/file_nested_1.6.json.bin +++ b/tests/_data/snapshots/requirements/file_nested_1.6.json.bin @@ -54,6 +54,15 @@ ], "metadata": { "component": { + "authors": [ + { + "name": "My Name" + }, + { + "email": "you@example.com", + "name": "Your Name" + } + ], "bom-ref": "root-component", "description": "some `reuqirements.txt` a root-component with all metadata", "evidence": { diff --git a/tests/_data/snapshots/requirements/file_nested_1.6.xml.bin b/tests/_data/snapshots/requirements/file_nested_1.6.xml.bin index 8d4f94378..d2d1b349b 100644 --- a/tests/_data/snapshots/requirements/file_nested_1.6.xml.bin +++ b/tests/_data/snapshots/requirements/file_nested_1.6.xml.bin @@ -51,6 +51,15 @@ + + + My Name + + + Your Name + you@example.com + + testing-requirements-txt 0.1.0 some `reuqirements.txt` a root-component with all metadata diff --git a/tests/_data/snapshots/requirements/file_nested_1.7.json.bin b/tests/_data/snapshots/requirements/file_nested_1.7.json.bin index a584e4664..7fa4ab342 100644 --- a/tests/_data/snapshots/requirements/file_nested_1.7.json.bin +++ b/tests/_data/snapshots/requirements/file_nested_1.7.json.bin @@ -54,6 +54,15 @@ ], "metadata": { "component": { + "authors": [ + { + "name": "My Name" + }, + { + "email": "you@example.com", + "name": "Your Name" + } + ], "bom-ref": "root-component", "description": "some `reuqirements.txt` a root-component with all metadata", "evidence": { diff --git a/tests/_data/snapshots/requirements/file_nested_1.7.xml.bin b/tests/_data/snapshots/requirements/file_nested_1.7.xml.bin index 775287597..ea34e595b 100644 --- a/tests/_data/snapshots/requirements/file_nested_1.7.xml.bin +++ b/tests/_data/snapshots/requirements/file_nested_1.7.xml.bin @@ -51,6 +51,15 @@ + + + My Name + + + Your Name + you@example.com + + testing-requirements-txt 0.1.0 some `reuqirements.txt` a root-component with all metadata diff --git a/tests/_data/snapshots/requirements/file_private-packages_1.6.json.bin b/tests/_data/snapshots/requirements/file_private-packages_1.6.json.bin index 60f5d7892..eea07dd48 100644 --- a/tests/_data/snapshots/requirements/file_private-packages_1.6.json.bin +++ b/tests/_data/snapshots/requirements/file_private-packages_1.6.json.bin @@ -53,6 +53,15 @@ ], "metadata": { "component": { + "authors": [ + { + "name": "My Name" + }, + { + "email": "you@example.com", + "name": "Your Name" + } + ], "bom-ref": "root-component", "description": "some `reuqirements.txt` a root-component with all metadata", "evidence": { diff --git a/tests/_data/snapshots/requirements/file_private-packages_1.6.xml.bin b/tests/_data/snapshots/requirements/file_private-packages_1.6.xml.bin index 1fe4a4298..cd6d42c02 100644 --- a/tests/_data/snapshots/requirements/file_private-packages_1.6.xml.bin +++ b/tests/_data/snapshots/requirements/file_private-packages_1.6.xml.bin @@ -51,6 +51,15 @@ + + + My Name + + + Your Name + you@example.com + + testing-requirements-txt 0.1.0 some `reuqirements.txt` a root-component with all metadata diff --git a/tests/_data/snapshots/requirements/file_private-packages_1.7.json.bin b/tests/_data/snapshots/requirements/file_private-packages_1.7.json.bin index 5ffed1b84..70d76a124 100644 --- a/tests/_data/snapshots/requirements/file_private-packages_1.7.json.bin +++ b/tests/_data/snapshots/requirements/file_private-packages_1.7.json.bin @@ -53,6 +53,15 @@ ], "metadata": { "component": { + "authors": [ + { + "name": "My Name" + }, + { + "email": "you@example.com", + "name": "Your Name" + } + ], "bom-ref": "root-component", "description": "some `reuqirements.txt` a root-component with all metadata", "evidence": { diff --git a/tests/_data/snapshots/requirements/file_private-packages_1.7.xml.bin b/tests/_data/snapshots/requirements/file_private-packages_1.7.xml.bin index 97c047a9c..3961c9350 100644 --- a/tests/_data/snapshots/requirements/file_private-packages_1.7.xml.bin +++ b/tests/_data/snapshots/requirements/file_private-packages_1.7.xml.bin @@ -51,6 +51,15 @@ + + + My Name + + + Your Name + you@example.com + + testing-requirements-txt 0.1.0 some `reuqirements.txt` a root-component with all metadata diff --git a/tests/_data/snapshots/requirements/file_with-comments_1.6.json.bin b/tests/_data/snapshots/requirements/file_with-comments_1.6.json.bin index 244683328..9c38fdd91 100644 --- a/tests/_data/snapshots/requirements/file_with-comments_1.6.json.bin +++ b/tests/_data/snapshots/requirements/file_with-comments_1.6.json.bin @@ -98,6 +98,15 @@ ], "metadata": { "component": { + "authors": [ + { + "name": "My Name" + }, + { + "email": "you@example.com", + "name": "Your Name" + } + ], "bom-ref": "root-component", "description": "some `reuqirements.txt` a root-component with all metadata", "evidence": { diff --git a/tests/_data/snapshots/requirements/file_with-comments_1.6.xml.bin b/tests/_data/snapshots/requirements/file_with-comments_1.6.xml.bin index e3acfeadc..7a60674a2 100644 --- a/tests/_data/snapshots/requirements/file_with-comments_1.6.xml.bin +++ b/tests/_data/snapshots/requirements/file_with-comments_1.6.xml.bin @@ -51,6 +51,15 @@ + + + My Name + + + Your Name + you@example.com + + testing-requirements-txt 0.1.0 some `reuqirements.txt` a root-component with all metadata diff --git a/tests/_data/snapshots/requirements/file_with-comments_1.7.json.bin b/tests/_data/snapshots/requirements/file_with-comments_1.7.json.bin index aaaaf4b4b..ecc4eee15 100644 --- a/tests/_data/snapshots/requirements/file_with-comments_1.7.json.bin +++ b/tests/_data/snapshots/requirements/file_with-comments_1.7.json.bin @@ -98,6 +98,15 @@ ], "metadata": { "component": { + "authors": [ + { + "name": "My Name" + }, + { + "email": "you@example.com", + "name": "Your Name" + } + ], "bom-ref": "root-component", "description": "some `reuqirements.txt` a root-component with all metadata", "evidence": { diff --git a/tests/_data/snapshots/requirements/file_with-comments_1.7.xml.bin b/tests/_data/snapshots/requirements/file_with-comments_1.7.xml.bin index 12936e331..6e9a31e6c 100644 --- a/tests/_data/snapshots/requirements/file_with-comments_1.7.xml.bin +++ b/tests/_data/snapshots/requirements/file_with-comments_1.7.xml.bin @@ -51,6 +51,15 @@ + + + My Name + + + Your Name + you@example.com + + testing-requirements-txt 0.1.0 some `reuqirements.txt` a root-component with all metadata diff --git a/tests/_data/snapshots/requirements/file_with-extras_1.6.json.bin b/tests/_data/snapshots/requirements/file_with-extras_1.6.json.bin index 0d1b6cf58..d05c141f9 100644 --- a/tests/_data/snapshots/requirements/file_with-extras_1.6.json.bin +++ b/tests/_data/snapshots/requirements/file_with-extras_1.6.json.bin @@ -36,6 +36,15 @@ ], "metadata": { "component": { + "authors": [ + { + "name": "My Name" + }, + { + "email": "you@example.com", + "name": "Your Name" + } + ], "bom-ref": "root-component", "description": "some `reuqirements.txt` a root-component with all metadata", "evidence": { diff --git a/tests/_data/snapshots/requirements/file_with-extras_1.6.xml.bin b/tests/_data/snapshots/requirements/file_with-extras_1.6.xml.bin index c6e07e06e..a5937835c 100644 --- a/tests/_data/snapshots/requirements/file_with-extras_1.6.xml.bin +++ b/tests/_data/snapshots/requirements/file_with-extras_1.6.xml.bin @@ -51,6 +51,15 @@ + + + My Name + + + Your Name + you@example.com + + testing-requirements-txt 0.1.0 some `reuqirements.txt` a root-component with all metadata diff --git a/tests/_data/snapshots/requirements/file_with-extras_1.7.json.bin b/tests/_data/snapshots/requirements/file_with-extras_1.7.json.bin index 34f409c84..4c257a47b 100644 --- a/tests/_data/snapshots/requirements/file_with-extras_1.7.json.bin +++ b/tests/_data/snapshots/requirements/file_with-extras_1.7.json.bin @@ -36,6 +36,15 @@ ], "metadata": { "component": { + "authors": [ + { + "name": "My Name" + }, + { + "email": "you@example.com", + "name": "Your Name" + } + ], "bom-ref": "root-component", "description": "some `reuqirements.txt` a root-component with all metadata", "evidence": { diff --git a/tests/_data/snapshots/requirements/file_with-extras_1.7.xml.bin b/tests/_data/snapshots/requirements/file_with-extras_1.7.xml.bin index d57a56b47..80ab5dcb0 100644 --- a/tests/_data/snapshots/requirements/file_with-extras_1.7.xml.bin +++ b/tests/_data/snapshots/requirements/file_with-extras_1.7.xml.bin @@ -51,6 +51,15 @@ + + + My Name + + + Your Name + you@example.com + + testing-requirements-txt 0.1.0 some `reuqirements.txt` a root-component with all metadata diff --git a/tests/_data/snapshots/requirements/file_with-hashes_1.6.json.bin b/tests/_data/snapshots/requirements/file_with-hashes_1.6.json.bin index fbc277874..dc771b741 100644 --- a/tests/_data/snapshots/requirements/file_with-hashes_1.6.json.bin +++ b/tests/_data/snapshots/requirements/file_with-hashes_1.6.json.bin @@ -137,6 +137,15 @@ ], "metadata": { "component": { + "authors": [ + { + "name": "My Name" + }, + { + "email": "you@example.com", + "name": "Your Name" + } + ], "bom-ref": "root-component", "description": "some `reuqirements.txt` a root-component with all metadata", "evidence": { diff --git a/tests/_data/snapshots/requirements/file_with-hashes_1.6.xml.bin b/tests/_data/snapshots/requirements/file_with-hashes_1.6.xml.bin index b05c949ff..6f4f325d8 100644 --- a/tests/_data/snapshots/requirements/file_with-hashes_1.6.xml.bin +++ b/tests/_data/snapshots/requirements/file_with-hashes_1.6.xml.bin @@ -51,6 +51,15 @@ + + + My Name + + + Your Name + you@example.com + + testing-requirements-txt 0.1.0 some `reuqirements.txt` a root-component with all metadata diff --git a/tests/_data/snapshots/requirements/file_with-hashes_1.7.json.bin b/tests/_data/snapshots/requirements/file_with-hashes_1.7.json.bin index c6f8277cd..0d7e92520 100644 --- a/tests/_data/snapshots/requirements/file_with-hashes_1.7.json.bin +++ b/tests/_data/snapshots/requirements/file_with-hashes_1.7.json.bin @@ -137,6 +137,15 @@ ], "metadata": { "component": { + "authors": [ + { + "name": "My Name" + }, + { + "email": "you@example.com", + "name": "Your Name" + } + ], "bom-ref": "root-component", "description": "some `reuqirements.txt` a root-component with all metadata", "evidence": { diff --git a/tests/_data/snapshots/requirements/file_with-hashes_1.7.xml.bin b/tests/_data/snapshots/requirements/file_with-hashes_1.7.xml.bin index 426d569c7..23cf711c9 100644 --- a/tests/_data/snapshots/requirements/file_with-hashes_1.7.xml.bin +++ b/tests/_data/snapshots/requirements/file_with-hashes_1.7.xml.bin @@ -51,6 +51,15 @@ + + + My Name + + + Your Name + you@example.com + + testing-requirements-txt 0.1.0 some `reuqirements.txt` a root-component with all metadata diff --git a/tests/_data/snapshots/requirements/file_with-urls_1.6.json.bin b/tests/_data/snapshots/requirements/file_with-urls_1.6.json.bin index 7752aa68d..e9d5f66e5 100644 --- a/tests/_data/snapshots/requirements/file_with-urls_1.6.json.bin +++ b/tests/_data/snapshots/requirements/file_with-urls_1.6.json.bin @@ -144,6 +144,15 @@ ], "metadata": { "component": { + "authors": [ + { + "name": "My Name" + }, + { + "email": "you@example.com", + "name": "Your Name" + } + ], "bom-ref": "root-component", "description": "some `reuqirements.txt` a root-component with all metadata", "evidence": { diff --git a/tests/_data/snapshots/requirements/file_with-urls_1.6.xml.bin b/tests/_data/snapshots/requirements/file_with-urls_1.6.xml.bin index 83ad54fe7..70df97c50 100644 --- a/tests/_data/snapshots/requirements/file_with-urls_1.6.xml.bin +++ b/tests/_data/snapshots/requirements/file_with-urls_1.6.xml.bin @@ -51,6 +51,15 @@ + + + My Name + + + Your Name + you@example.com + + testing-requirements-txt 0.1.0 some `reuqirements.txt` a root-component with all metadata diff --git a/tests/_data/snapshots/requirements/file_with-urls_1.7.json.bin b/tests/_data/snapshots/requirements/file_with-urls_1.7.json.bin index 3272dd0d7..883f23ff8 100644 --- a/tests/_data/snapshots/requirements/file_with-urls_1.7.json.bin +++ b/tests/_data/snapshots/requirements/file_with-urls_1.7.json.bin @@ -144,6 +144,15 @@ ], "metadata": { "component": { + "authors": [ + { + "name": "My Name" + }, + { + "email": "you@example.com", + "name": "Your Name" + } + ], "bom-ref": "root-component", "description": "some `reuqirements.txt` a root-component with all metadata", "evidence": { diff --git a/tests/_data/snapshots/requirements/file_with-urls_1.7.xml.bin b/tests/_data/snapshots/requirements/file_with-urls_1.7.xml.bin index 854e83412..b7cf52297 100644 --- a/tests/_data/snapshots/requirements/file_with-urls_1.7.xml.bin +++ b/tests/_data/snapshots/requirements/file_with-urls_1.7.xml.bin @@ -51,6 +51,15 @@ + + + My Name + + + Your Name + you@example.com + + testing-requirements-txt 0.1.0 some `reuqirements.txt` a root-component with all metadata diff --git a/tests/_data/snapshots/requirements/file_without-pinned-versions_1.6.json.bin b/tests/_data/snapshots/requirements/file_without-pinned-versions_1.6.json.bin index ee2d7ebc5..a54fd43d3 100644 --- a/tests/_data/snapshots/requirements/file_without-pinned-versions_1.6.json.bin +++ b/tests/_data/snapshots/requirements/file_without-pinned-versions_1.6.json.bin @@ -59,6 +59,15 @@ ], "metadata": { "component": { + "authors": [ + { + "name": "My Name" + }, + { + "email": "you@example.com", + "name": "Your Name" + } + ], "bom-ref": "root-component", "description": "some `reuqirements.txt` a root-component with all metadata", "evidence": { diff --git a/tests/_data/snapshots/requirements/file_without-pinned-versions_1.6.xml.bin b/tests/_data/snapshots/requirements/file_without-pinned-versions_1.6.xml.bin index 7c2e39e23..6caedf2e0 100644 --- a/tests/_data/snapshots/requirements/file_without-pinned-versions_1.6.xml.bin +++ b/tests/_data/snapshots/requirements/file_without-pinned-versions_1.6.xml.bin @@ -51,6 +51,15 @@ + + + My Name + + + Your Name + you@example.com + + testing-requirements-txt 0.1.0 some `reuqirements.txt` a root-component with all metadata diff --git a/tests/_data/snapshots/requirements/file_without-pinned-versions_1.7.json.bin b/tests/_data/snapshots/requirements/file_without-pinned-versions_1.7.json.bin index 3b030d68a..7ecca83bb 100644 --- a/tests/_data/snapshots/requirements/file_without-pinned-versions_1.7.json.bin +++ b/tests/_data/snapshots/requirements/file_without-pinned-versions_1.7.json.bin @@ -59,6 +59,15 @@ ], "metadata": { "component": { + "authors": [ + { + "name": "My Name" + }, + { + "email": "you@example.com", + "name": "Your Name" + } + ], "bom-ref": "root-component", "description": "some `reuqirements.txt` a root-component with all metadata", "evidence": { diff --git a/tests/_data/snapshots/requirements/file_without-pinned-versions_1.7.xml.bin b/tests/_data/snapshots/requirements/file_without-pinned-versions_1.7.xml.bin index b4525b658..715b18a2a 100644 --- a/tests/_data/snapshots/requirements/file_without-pinned-versions_1.7.xml.bin +++ b/tests/_data/snapshots/requirements/file_without-pinned-versions_1.7.xml.bin @@ -51,6 +51,15 @@ + + + My Name + + + Your Name + you@example.com + + testing-requirements-txt 0.1.0 some `reuqirements.txt` a root-component with all metadata diff --git a/tests/_data/snapshots/requirements/index_auth_frozen_1.6.json.bin b/tests/_data/snapshots/requirements/index_auth_frozen_1.6.json.bin index 042855929..d34c0c06e 100644 --- a/tests/_data/snapshots/requirements/index_auth_frozen_1.6.json.bin +++ b/tests/_data/snapshots/requirements/index_auth_frozen_1.6.json.bin @@ -94,6 +94,15 @@ ], "metadata": { "component": { + "authors": [ + { + "name": "My Name" + }, + { + "email": "you@example.com", + "name": "Your Name" + } + ], "bom-ref": "root-component", "description": "some `reuqirements.txt` a root-component with all metadata", "evidence": { diff --git a/tests/_data/snapshots/requirements/index_auth_frozen_1.6.xml.bin b/tests/_data/snapshots/requirements/index_auth_frozen_1.6.xml.bin index e49a84ec7..83c29eec1 100644 --- a/tests/_data/snapshots/requirements/index_auth_frozen_1.6.xml.bin +++ b/tests/_data/snapshots/requirements/index_auth_frozen_1.6.xml.bin @@ -51,6 +51,15 @@ + + + My Name + + + Your Name + you@example.com + + testing-requirements-txt 0.1.0 some `reuqirements.txt` a root-component with all metadata diff --git a/tests/_data/snapshots/requirements/index_auth_frozen_1.7.json.bin b/tests/_data/snapshots/requirements/index_auth_frozen_1.7.json.bin index 0e59997be..c68f92921 100644 --- a/tests/_data/snapshots/requirements/index_auth_frozen_1.7.json.bin +++ b/tests/_data/snapshots/requirements/index_auth_frozen_1.7.json.bin @@ -94,6 +94,15 @@ ], "metadata": { "component": { + "authors": [ + { + "name": "My Name" + }, + { + "email": "you@example.com", + "name": "Your Name" + } + ], "bom-ref": "root-component", "description": "some `reuqirements.txt` a root-component with all metadata", "evidence": { diff --git a/tests/_data/snapshots/requirements/index_auth_frozen_1.7.xml.bin b/tests/_data/snapshots/requirements/index_auth_frozen_1.7.xml.bin index 3401c4c45..26e2c112f 100644 --- a/tests/_data/snapshots/requirements/index_auth_frozen_1.7.xml.bin +++ b/tests/_data/snapshots/requirements/index_auth_frozen_1.7.xml.bin @@ -51,6 +51,15 @@ + + + My Name + + + Your Name + you@example.com + + testing-requirements-txt 0.1.0 some `reuqirements.txt` a root-component with all metadata diff --git a/tests/integration/test_utils_contact.py b/tests/integration/test_utils_contact.py new file mode 100644 index 000000000..716c4f9aa --- /dev/null +++ b/tests/integration/test_utils_contact.py @@ -0,0 +1,83 @@ +# This file is part of CycloneDX Python +# +# Licensed under the Apache License, Version 2.0 (the "License"); +# you may not use this file except in compliance with the License. +# You may obtain a copy of the License at +# +# http://www.apache.org/licenses/LICENSE-2.0 +# +# Unless required by applicable law or agreed to in writing, software +# distributed under the License is distributed on an "AS IS" BASIS, +# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. +# See the License for the specific language governing permissions and +# limitations under the License. +# +# SPDX-License-Identifier: Apache-2.0 +# Copyright (c) OWASP Foundation. All Rights Reserved. + +from collections.abc import Generator +from unittest import TestCase + +from cyclonedx.model.contact import OrganizationalContact +from ddt import ddt, named_data + +from cyclonedx_py._internal.utils.contact import contacts2author, person_string2contact + + +@ddt() +class TestPersonString2Contact(TestCase): + + @named_data( + ('name_and_email', 'Jane Doe ', 'Jane Doe', 'jane@example.com'), + ('name_and_email_extra_whitespace', ' Jane Doe ', 'Jane Doe', 'jane@example.com'), + ('name_only', 'Jane Doe', 'Jane Doe', None), + ('name_only_multiple_words', 'Jane van der Doe', 'Jane van der Doe', None), + ('email_only', '', None, 'jane@example.com'), + ('email_only_no_angle_brackets_is_a_name', 'jane@example.com', 'jane@example.com', None), + ) + def test_valid(self, value: str, expected_name: str, expected_email: str) -> None: + contact = person_string2contact(value) + self.assertIsInstance(contact, OrganizationalContact) + self.assertEqual(contact.name, expected_name) + self.assertEqual(contact.email, expected_email) + + @named_data( + ('empty_string', ''), + ('whitespace_only', ' '), + ('empty_angle_brackets', '<>'), + ('whitespace_and_empty_angle_brackets', ' <> '), + ) + def test_none_for_empty_input(self, value: str) -> None: + self.assertIsNone(person_string2contact(value)) + + +@ddt() +class TestContacts2Author(TestCase): + + def test_empty_iterable_is_none(self) -> None: + self.assertIsNone(contacts2author(())) + + def test_multiple_contacts_is_none(self) -> None: + # there is no agreed-upon way to fold multiple authors into one legacy string - + # see https://github.com/CycloneDX/specification/issues/335 + contacts = ( + OrganizationalContact(name='Jane Doe', email='jane@example.com'), + OrganizationalContact(name='John Roe', email='john@example.com'), + ) + self.assertIsNone(contacts2author(contacts)) + + @named_data( + ('name_and_email', OrganizationalContact(name='Jane Doe', email='jane@example.com'), + 'Jane Doe '), + ('name_only', OrganizationalContact(name='Jane Doe'), 'Jane Doe'), + ('email_only', OrganizationalContact(email='jane@example.com'), 'jane@example.com'), + ) + def test_single_contact(self, contact: OrganizationalContact, expected: str) -> None: + self.assertEqual(contacts2author((contact,)), expected) + + def test_single_contact_generator_is_consumed_correctly(self) -> None: + # `contacts2author()` must work with a one-shot generator, not just a sequence + def gen() -> Generator[OrganizationalContact, None, None]: + yield OrganizationalContact(name='Jane Doe', email='jane@example.com') + + self.assertEqual(contacts2author(gen()), 'Jane Doe ') diff --git a/tests/integration/test_utils_packaging.py b/tests/integration/test_utils_packaging.py new file mode 100644 index 000000000..655228435 --- /dev/null +++ b/tests/integration/test_utils_packaging.py @@ -0,0 +1,128 @@ +# This file is part of CycloneDX Python +# +# Licensed under the Apache License, Version 2.0 (the "License"); +# you may not use this file except in compliance with the License. +# You may obtain a copy of the License at +# +# http://www.apache.org/licenses/LICENSE-2.0 +# +# Unless required by applicable law or agreed to in writing, software +# distributed under the License is distributed on an "AS IS" BASIS, +# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. +# See the License for the specific language governing permissions and +# limitations under the License. +# +# SPDX-License-Identifier: Apache-2.0 +# Copyright (c) OWASP Foundation. All Rights Reserved. + +from email.message import Message +from typing import Optional +from unittest import TestCase + +from ddt import ddt, named_data + +from cyclonedx_py._internal.utils.packaging import metadata2authors + + +def _make_metadata(author: Optional[str] = None, author_email: Optional[str] = None) -> Message: + metadata = Message() + if author is not None: + metadata['Author'] = author + if author_email is not None: + metadata['Author-email'] = author_email + return metadata + + +@ddt() +class TestMetadata2Authors(TestCase): + + def test_neither_field_present(self) -> None: + metadata = _make_metadata() + self.assertEqual(list(metadata2authors(metadata)), []) + + def test_author_only(self) -> None: + metadata = _make_metadata(author='Jane Doe') + authors = list(metadata2authors(metadata)) + self.assertEqual(len(authors), 1) + self.assertEqual(authors[0].name, 'Jane Doe') + self.assertIsNone(authors[0].email) + + def test_author_email_only_single_address(self) -> None: + metadata = _make_metadata(author_email='jane@example.com') + authors = list(metadata2authors(metadata)) + self.assertEqual(len(authors), 1) + self.assertIsNone(authors[0].name) + self.assertEqual(authors[0].email, 'jane@example.com') + + def test_author_email_with_display_name(self) -> None: + # the display name is encoded in the address itself here, `Author` is unused/absent + metadata = _make_metadata(author_email='Jane Doe ') + authors = list(metadata2authors(metadata)) + self.assertEqual(len(authors), 1) + self.assertEqual(authors[0].name, 'Jane Doe') + self.assertEqual(authors[0].email, 'jane@example.com') + + def test_author_and_bare_email_are_combined_into_one_contact(self) -> None: + # the classic split-across-two-fields case: `Author` carries the name, + # `Author-email` carries a single address with no display name of its own. + metadata = _make_metadata(author='Jane Doe', author_email='jane@example.com') + authors = list(metadata2authors(metadata)) + self.assertEqual(len(authors), 1) + self.assertEqual(authors[0].name, 'Jane Doe') + self.assertEqual(authors[0].email, 'jane@example.com') + + def test_author_ignored_when_author_email_already_has_a_display_name(self) -> None: + # combining would silently discard/override one of the two names - refuse to guess. + metadata = _make_metadata(author='Jane Doe', author_email='Someone Else ') + authors = list(metadata2authors(metadata)) + self.assertEqual(len(authors), 1) + self.assertEqual(authors[0].name, 'Someone Else') + self.assertEqual(authors[0].email, 'jane@example.com') + + def test_author_ignored_when_it_already_looks_like_an_email(self) -> None: + # `Author` itself already contains `<...>`/`@` - it is not a "bare name" to combine. + metadata = _make_metadata(author='Jane Doe ', author_email='jane@example.com') + authors = list(metadata2authors(metadata)) + self.assertEqual(len(authors), 1) + self.assertIsNone(authors[0].name) + self.assertEqual(authors[0].email, 'jane@example.com') + + def test_multiple_addresses_are_independent_contacts_author_ignored(self) -> None: + metadata = _make_metadata( + author='Jane Doe, John Roe', + author_email='Jane Doe , John Roe ', + ) + authors = list(metadata2authors(metadata)) + self.assertEqual(len(authors), 2) + self.assertEqual( + [(a.name, a.email) for a in authors], + [('Jane Doe', 'jane@example.com'), ('John Roe', 'john@example.com')], + ) + + def test_multiple_addresses_no_display_names(self) -> None: + metadata = _make_metadata(author_email='jane@example.com, john@example.com') + authors = list(metadata2authors(metadata)) + self.assertEqual(len(authors), 2) + self.assertEqual([a.email for a in authors], ['jane@example.com', 'john@example.com']) + + @named_data( + ('bare_name_no_at_sign', 'Jane Doe'), + ('multiple_bare_names', 'Jane Doe, John Roe'), + ) + def test_author_email_that_is_not_actually_an_email_is_discarded(self, bad_value: str) -> None: + # `email.utils.getaddresses()` mis-splits a bare name on whitespace and would + # otherwise silently emit a corrupted "address" (e.g. only the last word) - + # entries without an `@` must be dropped rather than trusted. + metadata = _make_metadata(author_email=bad_value) + self.assertEqual(list(metadata2authors(metadata)), []) + + def test_author_used_as_fallback_when_author_email_is_garbage(self) -> None: + metadata = _make_metadata(author='Jane Doe', author_email='not-an-email-address') + # the garbage `Author-email` yields zero valid addresses, so the "combine" path + # never triggers (needs exactly one) - and there is no fallback to `Author` + # once `Author-email` was present at all, by design (see function docstring). + self.assertEqual(list(metadata2authors(metadata)), []) + + def test_empty_string_fields_are_treated_as_absent(self) -> None: + metadata = _make_metadata(author='', author_email='') + self.assertEqual(list(metadata2authors(metadata)), []) diff --git a/tests/integration/test_utils_pep621.py b/tests/integration/test_utils_pep621.py index 604dcde3c..c3de11fd2 100644 --- a/tests/integration/test_utils_pep621.py +++ b/tests/integration/test_utils_pep621.py @@ -22,10 +22,11 @@ from cyclonedx.factory.license import LicenseFactory from cyclonedx.model import Encoding +from cyclonedx.model.component import ComponentType from cyclonedx.model.license import DisjunctiveLicense, LicenseAcknowledgement from ddt import ddt, named_data -from cyclonedx_py._internal.utils.pep621 import project2licenses +from cyclonedx_py._internal.utils.pep621 import project2authors, project2component, project2licenses @ddt() @@ -96,3 +97,103 @@ def test_project2licenses_license_non_dict(self, license: any) -> None: with TemporaryDirectory() as tmpdir: licenses = list(project2licenses(project, lfac, True, fpath=join(tmpdir, 'pyproject.toml'))) self.assertEqual(len(licenses), 0) + + # region project2authors + + def test_project2authors_missing_key(self) -> None: + project = {'name': 'testpkg'} + self.assertEqual(list(project2authors(project)), []) + + def test_project2authors_empty_list(self) -> None: + project = {'name': 'testpkg', 'authors': []} + self.assertEqual(list(project2authors(project)), []) + + def test_project2authors_name_and_email(self) -> None: + project = {'name': 'testpkg', 'authors': [{'name': 'Jane Doe', 'email': 'jane@example.com'}]} + authors = list(project2authors(project)) + self.assertEqual(len(authors), 1) + self.assertEqual(authors[0].name, 'Jane Doe') + self.assertEqual(authors[0].email, 'jane@example.com') + + def test_project2authors_name_only(self) -> None: + project = {'name': 'testpkg', 'authors': [{'name': 'Jane Doe'}]} + authors = list(project2authors(project)) + self.assertEqual(len(authors), 1) + self.assertEqual(authors[0].name, 'Jane Doe') + self.assertIsNone(authors[0].email) + + def test_project2authors_email_only(self) -> None: + project = {'name': 'testpkg', 'authors': [{'email': 'jane@example.com'}]} + authors = list(project2authors(project)) + self.assertEqual(len(authors), 1) + self.assertIsNone(authors[0].name) + self.assertEqual(authors[0].email, 'jane@example.com') + + def test_project2authors_empty_dict_is_skipped(self) -> None: + # per spec, at least one of `name`/`email` must be given - + # but be defensive about a malformed entry with neither. + project = {'name': 'testpkg', 'authors': [{}]} + self.assertEqual(list(project2authors(project)), []) + + def test_project2authors_string_entry_not_per_spec_but_tolerated(self) -> None: + # PEP 621 requires authors to be tables, not strings -- but real-world + # pyproject.toml files sometimes use Poetry's "Name " string + # convention here regardless (see tests/_data/infiles/pipenv/no-deps). + # Must not crash on it. + project = {'name': 'testpkg', 'authors': ['Jane Doe ', 'John Roe']} + authors = list(project2authors(project)) + self.assertEqual(len(authors), 2) + self.assertEqual(authors[0].name, 'Jane Doe') + self.assertEqual(authors[0].email, 'jane@example.com') + self.assertEqual(authors[1].name, 'John Roe') + self.assertIsNone(authors[1].email) + + def test_project2authors_multiple(self) -> None: + project = {'name': 'testpkg', 'authors': [ + {'name': 'Jane Doe', 'email': 'jane@example.com'}, + {'name': 'John Roe'}, + ]} + authors = list(project2authors(project)) + self.assertEqual(len(authors), 2) + self.assertEqual([a.name for a in authors], ['Jane Doe', 'John Roe']) + + # endregion project2authors + + # region project2component -- authors wiring + + def test_project2component_authors_populated(self) -> None: + project = {'name': 'testpkg', 'authors': [{'name': 'Jane Doe', 'email': 'jane@example.com'}]} + component = project2component(project, ctype=ComponentType.LIBRARY) + self.assertEqual(len(component.authors), 1) + self.assertEqual(next(iter(component.authors)).name, 'Jane Doe') + # exactly one author -> the legacy singular field is populated too + self.assertEqual(component.author, 'Jane Doe ') + + def test_project2component_authors_multiple_no_singular_author(self) -> None: + project = {'name': 'testpkg', 'authors': [ + {'name': 'Jane Doe'}, + {'name': 'John Roe'}, + ]} + component = project2component(project, ctype=ComponentType.LIBRARY) + self.assertEqual(len(component.authors), 2) + # ambiguous how to join more than one into the legacy singular field -> left unset + self.assertIsNone(component.author) + + def test_project2component_authors_missing(self) -> None: + project = {'name': 'testpkg'} + component = project2component(project, ctype=ComponentType.LIBRARY) + self.assertEqual(len(component.authors), 0) + self.assertIsNone(component.author) + + def test_project2component_authors_dynamic_is_not_read(self) -> None: + # per PEP 621, a field listed in `dynamic` MUST NOT be read from the static pyproject.toml + project = { + 'name': 'testpkg', + 'dynamic': ['authors'], + 'authors': [{'name': 'Jane Doe'}], + } + component = project2component(project, ctype=ComponentType.LIBRARY) + self.assertEqual(len(component.authors), 0) + self.assertIsNone(component.author) + + # endregion project2component -- authors wiring diff --git a/tests/integration/test_utils_poetry.py b/tests/integration/test_utils_poetry.py new file mode 100644 index 000000000..bde07dc0a --- /dev/null +++ b/tests/integration/test_utils_poetry.py @@ -0,0 +1,89 @@ +# This file is part of CycloneDX Python +# +# Licensed under the Apache License, Version 2.0 (the "License"); +# you may not use this file except in compliance with the License. +# You may obtain a copy of the License at +# +# http://www.apache.org/licenses/LICENSE-2.0 +# +# Unless required by applicable law or agreed to in writing, software +# distributed under the License is distributed on an "AS IS" BASIS, +# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. +# See the License for the specific language governing permissions and +# limitations under the License. +# +# SPDX-License-Identifier: Apache-2.0 +# Copyright (c) OWASP Foundation. All Rights Reserved. + +from unittest import TestCase + +from cyclonedx.model.component import ComponentType +from ddt import ddt, named_data + +from cyclonedx_py._internal.utils.poetry import poetry2authors, poetry2component + + +@ddt() +class TestUtilsPoetry(TestCase): + + # region poetry2authors + + def test_poetry2authors_missing_key(self) -> None: + poetry = {'name': 'testpkg'} + self.assertEqual(list(poetry2authors(poetry)), []) + + def test_poetry2authors_empty_list(self) -> None: + poetry = {'name': 'testpkg', 'authors': []} + self.assertEqual(list(poetry2authors(poetry)), []) + + @named_data( + ('name_and_email', 'Jane Doe ', 'Jane Doe', 'jane@example.com'), + ('name_only', 'Jane Doe', 'Jane Doe', None), + ('email_only', '', None, 'jane@example.com'), + ) + def test_poetry2authors_single(self, value: str, expected_name: str, expected_email: str) -> None: + poetry = {'name': 'testpkg', 'authors': [value]} + authors = list(poetry2authors(poetry)) + self.assertEqual(len(authors), 1) + self.assertEqual(authors[0].name, expected_name) + self.assertEqual(authors[0].email, expected_email) + + def test_poetry2authors_multiple(self) -> None: + poetry = {'name': 'testpkg', 'authors': [ + 'Jane Doe ', + 'John Roe ', + ]} + authors = list(poetry2authors(poetry)) + self.assertEqual(len(authors), 2) + self.assertEqual([a.name for a in authors], ['Jane Doe', 'John Roe']) + + def test_poetry2authors_blank_entry_is_skipped(self) -> None: + poetry = {'name': 'testpkg', 'authors': ['Jane Doe', ' ']} + authors = list(poetry2authors(poetry)) + self.assertEqual(len(authors), 1) + self.assertEqual(authors[0].name, 'Jane Doe') + + # endregion poetry2authors + + # region poetry2component -- authors wiring + + def test_poetry2component_authors_populated(self) -> None: + poetry = {'name': 'testpkg', 'authors': ['Jane Doe ']} + component = poetry2component(poetry, ctype=ComponentType.LIBRARY) + self.assertEqual(len(component.authors), 1) + self.assertEqual(next(iter(component.authors)).name, 'Jane Doe') + self.assertEqual(component.author, 'Jane Doe ') + + def test_poetry2component_authors_multiple_no_singular_author(self) -> None: + poetry = {'name': 'testpkg', 'authors': ['Jane Doe', 'John Roe']} + component = poetry2component(poetry, ctype=ComponentType.LIBRARY) + self.assertEqual(len(component.authors), 2) + self.assertIsNone(component.author) + + def test_poetry2component_authors_missing(self) -> None: + poetry = {'name': 'testpkg'} + component = poetry2component(poetry, ctype=ComponentType.LIBRARY) + self.assertEqual(len(component.authors), 0) + self.assertIsNone(component.author) + + # endregion poetry2component -- authors wiring From f16e853a61de857e5243de71b80523807ce5cc1d Mon Sep 17 00:00:00 2001 From: Semyon Andreev Date: Fri, 4 Sep 2026 12:34:56 +0300 Subject: [PATCH 2/2] Add tests + defensive fixes for malformed author data found while testing Additional test coverage for the component.authors feature (#1096/#648), found by systematically probing edge cases of the three author sources: - contact.py: `_PERSON_STRING_MATCHER.match()` returning None was marked `# pragma: nocover -- the pattern matches any string, including the empty one`, but that comment is incorrect -- multiple `<...>` fragments, an unbalanced bracket, or trailing text after a closing `>` all make the whole match fail (verified live). Removed the stale pragma, documented why the branch is reachable, and added 5 new test cases exercising it (test_none_for_unparseable_shape). - pep621.py: `project2authors()` already tolerates a not-per-spec *string* entry in `authors` (see test_project2authors_string_entry_not_per_spec_ but_tolerated), but a non-dict, non-string entry -- e.g. `authors = [123]`, valid TOML, invalid PEP 621 -- crashed with AttributeError on `author.get(...)`. Verified live before fixing. Now skipped, consistent with the function's own existing "be lenient, don't crash" intent for the string case; 3 new test cases. - poetry.py: same class of bug in `poetry2authors()` -- a non-string entry crashed with TypeError from `re.match()` inside `person_string2contact()`. Same fix, same reasoning; 3 new test cases. metadata2authors() in packaging.py was also checked for a similar gap but already has thorough dedicated coverage matching its own documented rules (9 existing tests); no gap found there. 68/68 tests pass across the 4 affected test modules (11 new cases added). flake8 and mypy clean on all changed files. Co-Authored-By: Claude Sonnet 5 Claude-Session: https://claude.ai/code/session_015xJ8pA9rPpAjVATkZCzCS2 Signed-off-by: Semyon Andreev --- cyclonedx_py/_internal/utils/contact.py | 8 +++++++- cyclonedx_py/_internal/utils/pep621.py | 5 +++++ cyclonedx_py/_internal/utils/poetry.py | 5 +++++ tests/integration/test_utils_contact.py | 13 +++++++++++++ tests/integration/test_utils_pep621.py | 14 ++++++++++++++ tests/integration/test_utils_poetry.py | 15 +++++++++++++++ 6 files changed, 59 insertions(+), 1 deletion(-) diff --git a/cyclonedx_py/_internal/utils/contact.py b/cyclonedx_py/_internal/utils/contact.py index 96e577697..3b5a2126e 100644 --- a/cyclonedx_py/_internal/utils/contact.py +++ b/cyclonedx_py/_internal/utils/contact.py @@ -46,7 +46,13 @@ def person_string2contact(value: str) -> Optional[OrganizationalContact]: Returns `None` if `value` carries no usable name or email at all. """ m = _PERSON_STRING_MATCHER.match(value) - if m is None: # pragma: nocover -- the pattern matches any string, including the empty one + if m is None: + # Reachable: the pattern requires the whole string to be a bare name, a bare + # ``, or exactly one of each in that order - anything with more than + # one `<...>` fragment, an unbalanced bracket, or trailing text after a + # closing `>` does not match at all (see test_multiple_angle_bracket_fragments + # and friends). Real-world pyproject.toml/Poetry authors data occasionally has + # this shape; treat it the same as "no usable name or email" rather than crash. return None name = m.group('name') or None email = m.group('email') or None diff --git a/cyclonedx_py/_internal/utils/pep621.py b/cyclonedx_py/_internal/utils/pep621.py index 513579be0..3f64bc4b3 100644 --- a/cyclonedx_py/_internal/utils/pep621.py +++ b/cyclonedx_py/_internal/utils/pep621.py @@ -128,6 +128,11 @@ def project2authors(project: dict[str, Any]) -> Generator['OrganizationalContact if contact is not None: yield contact continue + if not isinstance(author, dict): + # Not per spec at all -- e.g. `authors = [123]` -- TOML happily allows it, + # PEP 621 does not. There is nothing name/email-shaped to extract; skip it + # rather than crash on `author.get(...)`. + continue name = author.get('name') or None email = author.get('email') or None if name is not None or email is not None: diff --git a/cyclonedx_py/_internal/utils/poetry.py b/cyclonedx_py/_internal/utils/poetry.py index 06c17b764..873946124 100644 --- a/cyclonedx_py/_internal/utils/poetry.py +++ b/cyclonedx_py/_internal/utils/poetry.py @@ -67,6 +67,11 @@ def poetry2extrefs(poetry: dict[str, Any]) -> Generator['ExternalReference', Non def poetry2authors(poetry: dict[str, Any]) -> Generator['OrganizationalContact', None, None]: # see https://python-poetry.org/docs/pyproject/#authors for author in poetry.get('authors', ()): + if not isinstance(author, str): + # Not per spec -- Poetry's `authors` is a list of "Name " strings -- + # but e.g. `authors = [123]` is valid TOML. `person_string2contact()` + # requires a string; skip anything else rather than crash. + continue contact = person_string2contact(author) if contact is not None: yield contact diff --git a/tests/integration/test_utils_contact.py b/tests/integration/test_utils_contact.py index 716c4f9aa..387ed45e6 100644 --- a/tests/integration/test_utils_contact.py +++ b/tests/integration/test_utils_contact.py @@ -50,6 +50,19 @@ def test_valid(self, value: str, expected_name: str, expected_email: str) -> Non def test_none_for_empty_input(self, value: str) -> None: self.assertIsNone(person_string2contact(value)) + @named_data( + # These do not match `_PERSON_STRING_MATCHER` at all (as opposed to matching + # and yielding an empty name/email) - regression coverage for the `m is None` + # branch, which real-world messy author strings can and do reach. + ('multiple_angle_bracket_fragments', 'Jane Doe '), + ('trailing_text_after_closing_bracket', 'Jane Doe (Acme Inc.)'), + ('two_email_fragments', 'Jane Doe '), + ('unbalanced_opening_bracket', 'Jane Doe >'), + ) + def test_none_for_unparseable_shape(self, value: str) -> None: + self.assertIsNone(person_string2contact(value)) + @ddt() class TestContacts2Author(TestCase): diff --git a/tests/integration/test_utils_pep621.py b/tests/integration/test_utils_pep621.py index c3de11fd2..0da4135b2 100644 --- a/tests/integration/test_utils_pep621.py +++ b/tests/integration/test_utils_pep621.py @@ -157,6 +157,20 @@ def test_project2authors_multiple(self) -> None: self.assertEqual(len(authors), 2) self.assertEqual([a.name for a in authors], ['Jane Doe', 'John Roe']) + @named_data( + ('int_entry', 123), + ('none_entry', None), + ('list_entry', []), + ) + def test_project2authors_non_dict_non_str_entry_is_skipped(self, bad_entry: any) -> None: + # Not per spec at all -- e.g. `authors = [123]` -- but valid TOML, so it + # reaches this function regardless. Must be skipped, not crash on + # `author.get(...)` (regression: this used to raise AttributeError). + project = {'name': 'testpkg', 'authors': [bad_entry, {'name': 'Jane Doe'}]} + authors = list(project2authors(project)) + self.assertEqual(len(authors), 1) + self.assertEqual(authors[0].name, 'Jane Doe') + # endregion project2authors # region project2component -- authors wiring diff --git a/tests/integration/test_utils_poetry.py b/tests/integration/test_utils_poetry.py index bde07dc0a..4747bd81e 100644 --- a/tests/integration/test_utils_poetry.py +++ b/tests/integration/test_utils_poetry.py @@ -63,6 +63,21 @@ def test_poetry2authors_blank_entry_is_skipped(self) -> None: self.assertEqual(len(authors), 1) self.assertEqual(authors[0].name, 'Jane Doe') + @named_data( + ('int_entry', 123), + ('none_entry', None), + ('list_entry', []), + ) + def test_poetry2authors_non_string_entry_is_skipped(self, bad_entry: any) -> None: + # Poetry's `authors` is documented as a list of "Name " strings, but + # e.g. `authors = [123]` is valid TOML regardless. `person_string2contact()` + # requires a string; must be skipped, not crash (regression: this used to + # raise TypeError from `re.match()`). + poetry = {'name': 'testpkg', 'authors': [bad_entry, 'Jane Doe']} + authors = list(poetry2authors(poetry)) + self.assertEqual(len(authors), 1) + self.assertEqual(authors[0].name, 'Jane Doe') + # endregion poetry2authors # region poetry2component -- authors wiring