diff --git a/cyclonedx_py/_internal/environment.py b/cyclonedx_py/_internal/environment.py index b0eb7f9e..f3b44ebf 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 00000000..3b5a2126 --- /dev/null +++ b/cyclonedx_py/_internal/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. + +""" +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: + # 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 + 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 0b51003e..a6b9d15e 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 add8ab8c..3f64bc4b 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,41 @@ 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 + 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: + 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 78adbb90..87394612 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,29 @@ 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', ()): + 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 + + 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 cc39ad90..68969486 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 47c3717e..2f2a42f1 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 0e06fe0f..5f5e9559 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 810d605f..0c4d6e7b 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 60174815..54024469 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 6a3abd68..725393ec 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 2ed6f486..3abcdb31 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 97b92c3b..6386e313 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 6eae686a..b9f3aa5c 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 d8d21b5f..35cb57c8 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 0eb85847..3da27344 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 c0dc85a8..9ac7badf 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 960672b5..93c5a5ee 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 80557388..e803fbf7 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 d25b9660..a12475ff 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 0de97df8..8a03be4f 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 a225a280..7aca17ad 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 a1961673..4f9fefe3 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 524ad20b..b1c3246c 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 9a6cc0b2..a94132df 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 036cd650..3c6ab4fd 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 545b4868..1bc4539d 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 5a0fb10b..ce1ee713 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 51adc4aa..7c88e6cd 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 2b716f80..27416742 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 27360cf0..e5483a11 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 6f676206..37ae0d02 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 d7eae268..3a8c2e47 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 48f79b1b..f54d9d57 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 1aebcf54..fe2134cf 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 7034e743..53def30b 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 7498dda1..51a0c66e 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 f58bf3e5..6fa4953d 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 b9df9aad..318d2842 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 2f075318..f1c4ea24 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 2597a674..83e2a899 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 e95da34c..97485413 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 17cdfb63..693fd7a8 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 14186830..b7a867d1 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 300f9547..b3b542b7 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 428fa0f0..f6cf17f5 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 7b4ea79e..50307492 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 960672b5..93c5a5ee 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 80557388..e803fbf7 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 d25b9660..a12475ff 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 0de97df8..8a03be4f 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 158b2c1a..e7885388 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 572abc4b..c583b475 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 c26b1b1a..2b285f2c 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 40869c9c..931ba211 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 a45c23cd..09fcb6cd 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 0d8f2050..dc8ce157 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 0c97a4c3..997be3c6 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 300a4ad1..aa3bf365 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 fed43de2..b3e41f15 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 7b177c25..329cf597 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 c3017b19..a50a9219 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 5259a2f8..5aebb3c3 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 5e94e2fe..e96d3867 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 0056693e..d66dec48 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 3ef59267..6d634ac5 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 43600114..20667cbc 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 43066d72..c7cc5a46 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 3ebce4d2..b2ed7206 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 9a6a4b5d..e5c90483 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 ddf9a215..03fd8ab1 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 4b568d83..8e98c858 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 d424f99b..a58741bd 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 7f9aa86c..1ebc6110 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 05aa795f..489cb016 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 82473f83..9eeba030 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 7d5bf77d..817b2a58 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 6beaf6bd..83b63459 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 a40d5044..ab75b1d8 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 fbcb783c..08be7bdf 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 63066be0..19b53608 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 5238f3b7..b66f0fb2 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 05bedf4c..ea70f3d5 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 9f2d7a68..94ee7163 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 6348a72c..d87dd50f 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 2ce3b734..144b4ddf 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 d4455ca3..d2797bb6 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 1daa1df7..881af5e0 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 38fbb0ae..2ef82969 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 3dcfe9e4..b47d5514 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 f912f2ea..3d4ee73c 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 ee68ef5d..765a2f8e 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 577005cd..10f098a5 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 99d9fb3a..1f0f8909 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 0116bc0b..7ebb766c 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 d0c4a6c8..4410889d 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 90cf0f8d..df899c10 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 a846feb1..e4ff84b7 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 f17b9d47..e18bbcd3 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 e59540e3..90259ede 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 9f5b73f0..ff4a918a 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 db7c61f1..2fed629c 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 a6c23702..58cdc7b6 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 e4590fe0..6b9d9e6e 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 391fe83d..e6ceb9da 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 9fa3e6de..07780734 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 28f188d4..bf9febbf 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 f2b229d1..db897cf4 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 233c258e..f752e442 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 7c7ee448..c91bf873 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 d0b49668..06fa2e41 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 e59540e3..90259ede 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 9f5b73f0..ff4a918a 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 db7c61f1..2fed629c 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 a6c23702..58cdc7b6 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 e4590fe0..6b9d9e6e 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 391fe83d..e6ceb9da 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 9fa3e6de..07780734 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 28f188d4..bf9febbf 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 f2b229d1..db897cf4 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 233c258e..f752e442 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 7c7ee448..c91bf873 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 d0b49668..06fa2e41 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 e59540e3..90259ede 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 9f5b73f0..ff4a918a 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 db7c61f1..2fed629c 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 a6c23702..58cdc7b6 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 e4590fe0..6b9d9e6e 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 391fe83d..e6ceb9da 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 9fa3e6de..07780734 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 28f188d4..bf9febbf 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 f2b229d1..db897cf4 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 233c258e..f752e442 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 7c7ee448..c91bf873 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 d0b49668..06fa2e41 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 50fee0bc..bd7a2de0 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 7a80e02f..13c75917 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 6a77b2e0..ee28438f 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 8c9b71ad..6e3b4e77 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 b5a99a86..7204edd8 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 7b611a8e..3f2303f3 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 7a204597..67c048c6 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 ab14d8f2..48bf0393 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 8cfeb8f5..1747f848 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 7a4d153b..2342a72a 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 cca0c008..f09f28c5 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 8ff4c08a..47194593 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 50fee0bc..bd7a2de0 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 7a80e02f..13c75917 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 6a77b2e0..ee28438f 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 8c9b71ad..6e3b4e77 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 b5a99a86..7204edd8 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 7b611a8e..3f2303f3 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 7a204597..67c048c6 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 ab14d8f2..48bf0393 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 8cfeb8f5..1747f848 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 7a4d153b..2342a72a 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 cca0c008..f09f28c5 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 8ff4c08a..47194593 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 50fee0bc..bd7a2de0 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 7a80e02f..13c75917 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 c17d28f7..875db43c 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 e4720af3..710a4505 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 6164d30b..8f324568 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 7ec5eef3..5efbecc8 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 f9bc5f4a..5ac3d992 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 7a5a6a60..a1f2e204 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 56acd04a..29f44169 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 1f93a6f2..0a79d86b 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 5f960b5d..227babfb 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 afd03d5d..4b5224d0 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 6692fe29..7550b450 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 0e8a1f66..2b9446c4 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 07cad649..1680f3ca 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 25ff75bd..1429c559 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 8940b8b0..866ff1e3 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 36550664..ff4362db 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 981e76d0..0f1bba4c 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 4f689cae..fe651e57 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 ab30b70e..b9c7f455 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 8e4b3504..9916e69c 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 73dc2279..2bd9cd68 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 7ebc24df..8a691e2b 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 154eba67..2592e48f 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 35e2d231..3da0bc50 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 f8ca0dbd..250d8b82 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 cdab0c1d..01d51afb 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 17e82028..af137957 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 8b176a15..034dd683 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 f4105a06..f95b0a15 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 619d8391..8ae69505 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 741bd705..6952f030 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 340de539..142df7dd 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 280214ab..ef7c0e51 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 15849398..3cbd4a1c 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 154eba67..2592e48f 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 35e2d231..3da0bc50 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 305ac5e8..8db9ba6d 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 8cd13681..b1231d2c 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 ba42a6e6..c35fccb9 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 eb2e36e3..ee18fe13 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 1358a454..f70d6375 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 412db209..bb7a5125 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 16d4e021..627b677c 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 552ba089..8b4af1df 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 c70c85c5..4cd2a431 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 c14b1398..faa24fc8 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 9c9b8e58..b841cc49 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 3ea6e3e0..9d4a557e 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 2b3810ad..f4a48af5 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 0f7060e1..3ec7c9f5 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 d8f2ea1a..ca7bdbcf 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 3923f072..d58ce00c 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 72ffe81a..b78bfb08 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 a8d74330..974d2d66 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 4f7fdf4d..67d42a35 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 1a104d36..5658caa9 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 87ecc07b..20429d2c 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 a3e46006..17cfc9d9 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 97a2754c..e9c5acba 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 6373011d..6c9c166a 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 9bd91cd5..b9fc3be9 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 a08ba139..ab77ddd1 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 630bd68f..c60e9a8f 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 b510e44f..883dbaad 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 19a9d06d..6d67eba5 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 b667a314..402aa93c 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 ea6bc536..48e62dbb 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 a6489f57..73ba4c8c 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 e49ce6f1..a6fc4270 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 f60276c1..cb84f5be 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 97a2754c..e9c5acba 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 6373011d..6c9c166a 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 af7357be..046def94 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 f4d82adc..405aa84d 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 1933d8c6..abb47bc4 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 055a6b8c..32abf606 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 77dbe89b..9e312844 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 37362470..b602cfff 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 a4bf9fdb..7d8d5360 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 523c70ff..a6ba509d 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 c95ee304..c32ca89c 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 eeb5c7ad..968e2036 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 522e9f37..d0b7695b 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 f50b3fb0..5b80046d 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 398d9401..a0c72c76 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 01a87c20..0e3de7fa 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 2ea7fb53..6585da15 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 109162d9..40ea97c3 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 3827480d..85df6973 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 0e34f17b..3862b82c 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 9af28292..46345499 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 a9022269..0ce60158 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 83a716fc..a32a9833 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 8610fa1f..164123b9 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 0c36a746..24b47925 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 aa7532f0..c4e4bd1d 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 6b2ca4aa..f2ac6f1c 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 31d890fe..ae6b490e 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 a23a22f8..fe6bab72 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 25e2e4ec..0c4b5ebd 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 b6a05a49..41dd90da 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 1c5946c9..88d5698e 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 39be65d0..b0c68452 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 ef4b4bd5..3d628b80 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 c8ebe8ce..47f81e6d 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 1f8f400e..2092c1b4 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 4c53765a..7627afed 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 623da37b..9b5f0995 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 7563e5e6..0f21fa9a 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 0448bfd7..dcacdccd 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 b21c4ff8..c229d89f 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 277fdbf2..7c6d3e87 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 1cf0f94f..4b987cb3 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 e9fc3765..56ffa778 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 1bf97254..fc0545fc 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 43a84fd7..8913da9f 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 c55c40f1..c7e4e737 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 668afc69..b047f59b 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 4c53765a..7627afed 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 623da37b..9b5f0995 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 7563e5e6..0f21fa9a 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 0448bfd7..dcacdccd 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 b21c4ff8..c229d89f 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 277fdbf2..7c6d3e87 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 1cf0f94f..4b987cb3 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 e9fc3765..56ffa778 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 1bf97254..fc0545fc 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 43a84fd7..8913da9f 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 c55c40f1..c7e4e737 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 668afc69..b047f59b 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 4c53765a..7627afed 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 623da37b..9b5f0995 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 b77cfd29..4c952eab 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 9d8c5327..8a537f5a 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 96eaf785..e3538efa 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 41377af1..55e5b5d1 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 3093ddc1..ffbe9ec0 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 112f1e71..26edfc7b 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 c67e8d9b..23b25f35 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 1858b799..d300ad08 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 f40eaf8e..90853bcd 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 0d3f3077..b0e00752 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 d1c7c243..fe13b45e 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 158bef4c..0194d120 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 fddba02f..06ba24c0 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 22238b8b..633a593d 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 a92a4ba0..d738c335 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 803d9a51..eb92f80e 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 32fa6dd6..bba41611 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 fd8a667a..7a450991 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 6a0a7fc1..ec48bde1 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 14d95bb0..ade64789 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 b4e3ec47..073fde61 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 ed5f9b67..bce4d500 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 d1c7c243..fe13b45e 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 158bef4c..0194d120 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 fddba02f..06ba24c0 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 22238b8b..633a593d 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 a92a4ba0..d738c335 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 803d9a51..eb92f80e 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 32fa6dd6..bba41611 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 fd8a667a..7a450991 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 6a0a7fc1..ec48bde1 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 14d95bb0..ade64789 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 b4e3ec47..073fde61 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 ed5f9b67..bce4d500 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 d1c7c243..fe13b45e 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 158bef4c..0194d120 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 7200d54b..0ad00a83 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 fa306358..26ab1c50 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 94723c59..17b4812c 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 2f3e5d14..289aeafd 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 4c32f56b..94d9455c 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 719cbfb1..28020e7c 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 dfcdb105..cc8e2a75 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 7306ef5d..a1b1b942 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 b5d8b6e2..74834ed5 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 4d0869f9..701e7c76 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 36d4e47d..b30dbec3 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 f93348f8..ea0b4818 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 58230668..11076766 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 f37c203f..22b7b7bb 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 75830b09..feee9284 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 b01a3a56..186abc3e 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 0c8fe007..4a298d48 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 bbf30935..95b983bb 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 0e35f51c..aad6a533 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 f2f35114..11d2cd06 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 6beab097..4c862ca8 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 a9043465..b90cf481 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 fb40a62f..bcab1f4b 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 43cd81a8..7c321407 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 dcc11156..f4341d09 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 0f7eaf8f..6af00761 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 85c2ceb8..033a4fc6 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 a66f74b3..264b2121 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 80d2c1b7..a9a6c273 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 5574aa4d..c05fb332 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 3085ede0..4f20df71 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 fa6ce779..843aca09 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 9a232c86..f6ffb271 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 d34057de..599d7bcd 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 fc41cb22..efebdae5 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 97c7a261..1490ec6f 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 f1e54d62..007d47b9 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 39afe22d..d79a7897 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 17366c39..7cc7d908 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 6284cbe1..ad9d84ee 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 4fdc1f28..7ae31933 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 d9b61656..976aad6e 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 6a320088..1ccf45e5 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 9c316ad3..20b5ec50 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 536473cc..985fc524 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 b9e67230..aa795643 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 565c492d..c5611f0e 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 395e6919..8cb3ee42 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 3eaecbff..ddd3e0d4 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 20955a0f..9e24a6cc 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 1b830d51..f446e843 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 2b3dc396..ca1b97c7 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 3c147ea1..d31d52d0 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 1b1fcf2a..71017541 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 4fee4b9f..a456f060 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 46e91ee8..614bd537 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 a27cf74e..3fe63fdd 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 14eab313..379d41c0 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 f1aa9c05..c1bab585 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 73ec5ee2..bc95f421 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 2ad65147..a07ea367 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 1e6455d0..e2ebfd4d 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 f1aa9c05..c1bab585 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 73ec5ee2..bc95f421 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 2ad65147..a07ea367 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 1e6455d0..e2ebfd4d 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 3a07742e..a4304519 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 4b52acf8..e40422e2 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 ef79ab2e..f13821f6 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 cb58a3f1..16778fae 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 5c1037cf..7d48340b 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 0a2f473a..46db81b0 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 8235ea2d..56276562 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 d4b197ca..02ff9354 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 6e2cec25..c862d05e 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 e0fc121b..bef0f167 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 0a18ce1a..4bfaac8a 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 14ce589b..f26d9f4a 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 b6eb6a26..8bac4677 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 ac18ca14..3b040cf7 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 a456e88b..22ff37e9 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 1fc918cb..40ee0e38 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 206e5964..ea7e3218 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 c56a154e..c643e500 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 ab670f36..0e5fa01d 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 1e9ee261..a032c9c4 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 67bcffea..cbe514c8 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 52dc5852..76520fbf 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 3547ef2d..f20fe76b 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 669bbce9..d9dd10e1 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 da687e13..937edf67 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 84b8b783..3e866e18 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 c19eacbc..35f94ae4 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 ce9f530b..8fd47827 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 e214b14f..d579cab3 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 8dd6d0b6..77bb8237 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 09319219..99729567 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 0049cbf3..cb6c79d6 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 c2ec6c18..3bd6e706 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 3fe9cf26..cdc5c714 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 a3b2c5ab..0506f86d 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 12891b5e..efc949e8 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 658c3f0f..c30840f0 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 fda8b6e4..2e4480be 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 a9f5274a..b7edd03c 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 5ebb8217..53a50ddb 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 2f601341..ccdda743 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 65636e31..69724581 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 49da60f8..5f99faf5 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 3d1a757e..8939c400 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 532bbcab..f93ff216 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 51a4a7fd..45da6362 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 3425c065..c781bfe8 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 6278542d..006115e1 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 658c3f0f..c30840f0 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 fda8b6e4..2e4480be 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 a9f5274a..b7edd03c 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 5ebb8217..53a50ddb 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 2f601341..ccdda743 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 65636e31..69724581 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 49da60f8..5f99faf5 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 3d1a757e..8939c400 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 532bbcab..f93ff216 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 51a4a7fd..45da6362 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 3425c065..c781bfe8 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 6278542d..006115e1 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 e84ffde5..4d79c632 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 a264a91f..01769cd0 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 375a37a0..468629f1 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 353cb5a1..ab96410c 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 6b5c5ddc..50b31f2d 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 aedc3142..b7eac73c 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 4b38da2b..7db21b9c 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 adb5065b..2035ed19 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 b9405deb..043ee509 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 fbf02f82..589bb53f 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 93fc1ab7..156f62c7 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 86bde989..d25cb231 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 723a4853..869a9cae 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 bb2a4088..2fc9d392 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 36b2c6d1..88e42cdf 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 2ad5ad88..e714b195 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 a09836f0..4962cfd1 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 8db89478..4b667729 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 3169b175..9614445f 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 5d7a280f..d178a716 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 b0fa1b74..8692cdb6 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 f95ef9bc..d9620ac4 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 c540f178..1d02e27f 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 963b53f0..e5d926ff 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 e280b9b1..6d9b19b4 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 d3bb2827..6200c2bf 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 210ee6d3..e6d668af 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 1dfdbe2a..5d86c40a 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 a3d18d6d..cb7f1ac2 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 32691e21..57961159 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 6a4bcaa9..de644eda 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 1d1eb1e5..1582647c 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 e5f89831..dfe1fe79 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 e3d5c7a9..7beddf7b 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 cff0f661..0baa502e 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 f9020c02..3835c1e7 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 e280b9b1..6d9b19b4 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 d3bb2827..6200c2bf 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 210ee6d3..e6d668af 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 1dfdbe2a..5d86c40a 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 a3d18d6d..cb7f1ac2 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 32691e21..57961159 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 6a4bcaa9..de644eda 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 1d1eb1e5..1582647c 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 e5f89831..dfe1fe79 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 e3d5c7a9..7beddf7b 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 cff0f661..0baa502e 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 f9020c02..3835c1e7 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 9d80ea5a..4d90ae01 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 30d33957..9a33c65d 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 bf6254da..d71f99e1 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 ea47bef3..822eeb55 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 0a8f53a3..e85738d1 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 d7149087..3eb364ca 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 017148c3..c35d7985 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 1a5ebf4b..ee94e80b 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 49fc27a5..6fea0316 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 a7fd12c4..bd98ad6a 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 ebac7f66..25b135a7 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 7bd1f3b9..2b8c0aa9 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 532e4a3a..8d0b849f 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 dde1d86e..d9e3a648 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 0355e2c9..0bad8638 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 5c176476..25683819 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 9146c969..22be49d0 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 dd4ba120..d6bfe817 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 940ecba4..f24a1cc3 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 ed1ddc60..53dc60fb 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 d93f52cc..55b24d69 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 2efde045..ecfa4618 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 88d4f131..87b99143 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 e2254c36..caa879a8 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 b550ca48..db7875fd 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 ad133319..62ab48cc 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 7f75bbda..8fbe3b1c 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 4920f0f8..1b919e20 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 c7a1f21c..c1c17480 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 fd782f13..49ece6b0 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 3a4c5d1a..3cf3530c 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 0f583e34..f2a0d824 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 cbd211ad..0eeb4923 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 4b24be09..29363d3f 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 38cef98d..67f900d6 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 48849583..02831879 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 21846397..69e233f6 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 e49b1a58..f85ed57c 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 66ef0208..2375e1b2 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 548e3685..6c164aa6 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 1714c7f0..91020238 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 53b9a50d..5a825156 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 0b0f2e88..fbf50391 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 152d1d87..870576db 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 54453ec0..60337a8b 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 b8dc6982..15121970 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 79e918cf..12516ac6 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 f04d4b6b..b847724b 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 3273c1fb..c34910f9 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 7ada3b86..ddf86415 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 b7fa8c23..22820c3d 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 d33c00eb..c2c20cc4 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 dcfa8822..a4be8c1b 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 a3966f6a..373a8df8 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 71e1dca3..0f78e59a 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 ecedc4d1..bd930a40 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 f64a8f91..2274e9f5 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 85de5881..08da7c33 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 55e96381..6d55e291 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 fc9fa4a8..ca14f062 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 0c375d48..e87c7d78 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 491778db..005cf297 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 23d2e806..10e890d5 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 ed5cc7d2..f57d5cb6 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 947b9efb..054986dc 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 adfa8d01..160cbbbd 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 75587911..6de9e13a 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 aec87710..ffb1e601 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 4727fe2f..548314cf 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 abfb2d70..c9d531ff 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 96232a69..83bc8967 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 a95e2b09..44132a14 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 28a5934f..1d254e98 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 46743114..08eb7b93 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 e138ad38..0c30653e 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 ed3063be..aede6fc4 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 478c3c93..84ea3c7d 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 5da16d53..7ef2c7fe 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 e718d557..7dadfbfb 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 79b073d8..bc1c59e5 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 321225cf..bc55a29b 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 96339559..dd10f286 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 917e1445..d12275f7 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 ab7839ef..329a9f34 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 28a5934f..1d254e98 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 46743114..08eb7b93 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 e138ad38..0c30653e 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 ed3063be..aede6fc4 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 478c3c93..84ea3c7d 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 5da16d53..7ef2c7fe 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 e718d557..7dadfbfb 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 79b073d8..bc1c59e5 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 321225cf..bc55a29b 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 96339559..dd10f286 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 917e1445..d12275f7 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 ab7839ef..329a9f34 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 28a5934f..1d254e98 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 46743114..08eb7b93 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 e138ad38..0c30653e 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 ed3063be..aede6fc4 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 478c3c93..84ea3c7d 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 5da16d53..7ef2c7fe 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 e718d557..7dadfbfb 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 79b073d8..bc1c59e5 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 321225cf..bc55a29b 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 96339559..dd10f286 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 917e1445..d12275f7 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 ab7839ef..329a9f34 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 28a5934f..1d254e98 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 46743114..08eb7b93 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 e138ad38..0c30653e 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 ed3063be..aede6fc4 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 478c3c93..84ea3c7d 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 5da16d53..7ef2c7fe 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 e718d557..7dadfbfb 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 79b073d8..bc1c59e5 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 321225cf..bc55a29b 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 96339559..dd10f286 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 917e1445..d12275f7 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 ab7839ef..329a9f34 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 6d128c92..d903c841 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 90ee9fbd..f30da9e5 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 307dd935..74e85ad0 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 c4729cea..a8a89887 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 4781e8e6..a36d628a 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 0fda5529..f0e7f4fc 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 e123dd16..8b847576 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 85a1378c..f5ce9801 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 94488329..c0d161d4 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 7d579425..4c50f13d 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 5da0b1ca..ca6f00ac 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 04b69db5..2223088f 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 6d128c92..d903c841 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 90ee9fbd..f30da9e5 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 307dd935..74e85ad0 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 c4729cea..a8a89887 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 4781e8e6..a36d628a 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 0fda5529..f0e7f4fc 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 e123dd16..8b847576 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 85a1378c..f5ce9801 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 94488329..c0d161d4 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 7d579425..4c50f13d 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 5da0b1ca..ca6f00ac 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 04b69db5..2223088f 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 6d128c92..d903c841 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 90ee9fbd..f30da9e5 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 307dd935..74e85ad0 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 c4729cea..a8a89887 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 4781e8e6..a36d628a 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 0fda5529..f0e7f4fc 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 e123dd16..8b847576 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 85a1378c..f5ce9801 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 94488329..c0d161d4 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 7d579425..4c50f13d 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 5da0b1ca..ca6f00ac 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 04b69db5..2223088f 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 6d128c92..d903c841 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 90ee9fbd..f30da9e5 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 307dd935..74e85ad0 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 c4729cea..a8a89887 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 4781e8e6..a36d628a 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 0fda5529..f0e7f4fc 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 e123dd16..8b847576 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 85a1378c..f5ce9801 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 94488329..c0d161d4 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 7d579425..4c50f13d 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 5da0b1ca..ca6f00ac 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 04b69db5..2223088f 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 669de22d..b989f7ba 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 2b1a7c23..db43661e 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 97966bb0..30bb09db 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 e38dbfd8..75caa840 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 9d2ce80e..9019418e 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 74ba1744..eee6045e 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 d934082d..f745a3df 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 106cbb66..6a3d7c9d 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 f3baef7b..a1996fe2 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 9143bd0a..20d4bb62 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 f86b9799..fab3ed2f 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 aa0fba5b..8180925d 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 669de22d..b989f7ba 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 2b1a7c23..db43661e 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 5e315c2d..834a0bd9 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 001715c1..2d3d1222 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 43b48a26..3df9193f 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 ed9a5f1f..c01f9598 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 1c944ea8..ed79cb08 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 a4fcebb3..7a3de167 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 f26af3cc..8a3764d1 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 9eb7043d..4c6f9e7e 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 952cc64f..a11e51bc 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 fcd35690..ec94aebc 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 669de22d..b989f7ba 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 2b1a7c23..db43661e 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 03d5fdf2..6ef22736 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 129152f4..7f637254 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 3d16f419..e31b86ca 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 8cfca3e1..05807605 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 4e88c4cc..8a8d5894 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 8776895b..c6e2a8a0 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 1da5b18d..5cabd629 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 e45ff8e1..8ad3970e 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 b1a2240d..ea550efc 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 24fe5205..9ebe9ee5 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 7ba2d0c0..19dbf9ec 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 d90efc8c..b6ed98f5 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 c764813f..566a9ac5 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 4b56c053..eebcd7db 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 cdb83445..6dcccd4c 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 7b47129c..3f5e9aba 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 a5b78ab6..07ac07ca 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 3efbafb8..4905e881 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 d94b40e1..fb09927e 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 f3be900b..e027142e 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 a06e5f3d..53eefa62 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 34656ba3..a70460ed 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 c2db2498..1ba84454 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 eff295a0..c84653ed 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 54f94da4..72bdc4b0 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 a04719f0..e557b312 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 7fa736b4..4594f9d4 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 b638525f..04036567 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 898ac21f..db48a2eb 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 b547c1d7..36116fdc 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 bcc16219..4a751026 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 377b639a..bd919f66 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 10de7a1e..75d3bf50 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 123e6562..d9025832 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 19e531c6..6925c7a2 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 9df4ecf7..4af808e4 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 8141f5d8..2c03429b 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 7f3cb219..2cf6f782 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 c4d8e6dd..9ea5e9a9 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 a31f49b3..cf6d0607 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 46c4daf5..96e468ad 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 e74257f3..684082bb 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 a564cb71..f0066aec 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 35f33ea4..2a6c797e 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 3f225b3b..2cb5d5f4 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 07fd5837..6c20a2eb 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 0732df65..a6a0689c 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 58d2a696..c7e329c6 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 065fe09c..91b4b1f0 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 7cab6f77..a9d6e8d3 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 58d3ca22..72c111f5 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 c719ad2a..103f8ec1 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 f1c1d97b..1429e604 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 0a78625b..4176da75 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 88c23d18..29eda5ff 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 df469de7..614e5c0e 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 d3167c99..1e48ab2c 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 081f5b67..5d8fd430 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 31f1e2d6..0dfc544b 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 74e22587..d7acfbdc 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 869a6727..c216dd25 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 76aa884f..49753bee 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 3112137d..29a77c63 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 702f4123..82f99f17 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 ec4d794a..15de94f8 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 4c9af547..64a966c6 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 bdf01feb..af555a47 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 94b87f22..23fd80c9 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 debfc651..4920d4ef 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 9e489dea..823af286 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 7694c3c8..455cb286 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 28b4bec2..92187555 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 307124ef..3c6e71ed 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 da19190b..20f97ca4 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 42a86fba..163656d4 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 120e0147..8192ff7f 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 d2ca2f0c..5ad8fc91 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 4ccfc9b1..a3b7aff8 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 a1fc15f9..ea1836c1 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 ef8f4438..56612a1e 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 028109b9..54a53d6f 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 847af4a3..cf73645b 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 7694c3c8..455cb286 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 28b4bec2..92187555 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 3dc95cad..a2012d7d 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 22d958e7..1cda9651 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 f7ee71cf..6e7d7be3 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 7e6f78d7..2b99d6a6 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 15f4baf7..79a16f06 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 e9adb297..dfaa254b 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 c080b22f..a803400a 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 88907107..f2941265 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 48104b85..a66874bb 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 ac4ce156..722f455a 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 b20f88f6..08cce054 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 4ef127c2..7796d356 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 1c580a62..2d8c0baa 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 9cd0c95a..4bea922b 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 beacafb8..e5233618 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 2e1837c0..b4f0dd6b 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 50a32a45..06e8e528 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 86f73237..50ea617a 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 45b4e4a4..209ea2c2 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 69fe92b2..183bab2b 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 73fb6090..28e25d45 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 dc70b17c..3b75ca13 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 20c5e726..f4d9b72d 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 8d4f9437..d2d1b349 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 a584e466..7fa4ab34 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 77528759..ea34e595 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 8a126c54..a6f12f02 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 fb4fbf82..e367de07 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 d32c5a46..e31d2c5c 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 2316bd7b..3f5c7f43 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 20c5e726..f4d9b72d 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 8d4f9437..d2d1b349 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 a584e466..7fa4ab34 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 77528759..ea34e595 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 60f5d789..eea07dd4 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 1fe4a429..cd6d42c0 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 5ffed1b8..70d76a12 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 97c047a9..3961c935 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 24468332..9c38fdd9 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 e3acfead..7a60674a 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 aaaaf4b4..ecc4eee1 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 12936e33..6e9a31e6 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 0d1b6cf5..d05c141f 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 c6e07e06..a5937835 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 34f409c8..4c257a47 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 d57a56b4..80ab5dcb 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 fbc27787..dc771b74 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 b05c949f..6f4f325d 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 c6f8277c..0d7e9252 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 426d569c..23cf711c 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 7752aa68..e9d5f66e 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 83ad54fe..70df97c5 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 3272dd0d..883f23ff 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 854e8341..b7cf5229 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 ee2d7ebc..a54fd43d 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 7c2e39e2..6caedf2e 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 3b030d68..7ecca83b 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 b4525b65..715b18a2 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 04285592..d34c0c06 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 e49a84ec..83c29eec 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 0e59997b..c68f9292 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 3401c4c4..26e2c112 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 00000000..387ed45e --- /dev/null +++ b/tests/integration/test_utils_contact.py @@ -0,0 +1,96 @@ +# 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)) + + @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): + + 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 00000000..65522843 --- /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 604dcde3..0da4135b 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,117 @@ 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']) + + @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 + + 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 00000000..4747bd81 --- /dev/null +++ b/tests/integration/test_utils_poetry.py @@ -0,0 +1,104 @@ +# 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') + + @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 + + 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