Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

BREAKING CHANGE: replaced concept of default schema version with latest supported #171 #173

Merged
merged 1 commit into from
Feb 16, 2022
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions cyclonedx/output/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -50,7 +50,7 @@ def to_version(self) -> str:
return f'{self.value[1]}.{self.value[5]}'


DEFAULT_SCHEMA_VERSION = SchemaVersion.V1_4
LATEST_SUPPORTED_SCHEMA_VERSION = SchemaVersion.V1_4


class BaseOutput(ABC):
Expand Down Expand Up @@ -105,7 +105,7 @@ def output_to_file(self, filename: str, allow_overwrite: bool = False) -> None:


def get_instance(bom: Bom, output_format: OutputFormat = OutputFormat.XML,
schema_version: SchemaVersion = DEFAULT_SCHEMA_VERSION) -> BaseOutput:
schema_version: SchemaVersion = LATEST_SUPPORTED_SCHEMA_VERSION) -> BaseOutput:
"""
Helper method to quickly get the correct output class/formatter.

Expand Down
6 changes: 3 additions & 3 deletions docs/outputting.rst
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@ We provide two helper methods:
* Output to string (for you to do with as you require)
* Output directly to a filename you provide

The default output will be in XML at Schema Version 1.4.
By default output will be in XML at latest supported schema version - see :py:mod:`cyclonedx.output.LATEST_SUPPORTED_SCHEMA_VERSION`.

Supported CycloneDX Schema Versions
-----------------------------------
Expand All @@ -34,12 +34,12 @@ This library supports the following schema versions:
* 1.1 (XML) - `(note, 1.1 schema version has no support for JSON)`
* 1.2 (XML, JSON)
* 1.3 (XML, JSON)
* 1.4 (XML, JSON)
* 1.4 (XML, JSON) - the latest supported schema version

Outputting to JSON
------------------

The below example relies on the default schema version being 1.4, but sets the output format to JSON. Output is returned
The below example relies on the latest schema version, but sets the output format to JSON. Output is returned
as a ``str``.

.. code-block:: python
Expand Down