Skip to content

Commit

Permalink
Small changes in the changelog.md
Browse files Browse the repository at this point in the history
  • Loading branch information
jenia81 committed Nov 15, 2023
1 parent 7967c39 commit c1835db
Show file tree
Hide file tree
Showing 2 changed files with 16 additions and 10 deletions.
20 changes: 13 additions & 7 deletions changelog.md
Original file line number Diff line number Diff line change
@@ -1,17 +1,23 @@
# Changelog

## 2.6.0
- Add support for external signing tool
- The feature enables to use an external signing tool for signing the manifest
- Add new CLI options `--signing-tool` and `--signing-key-id` to `manifest-dev-tool init` command.
- Add new configuration options `signing-tool` and `signing-key-id` that are used by `manifest-tool create` command.
- Add support for an external signing tool
- The feature enables to use of an external signing tool for signing the manifest.
- Add a new CLI option `--signing-tool` to the `manifest-dev-tool init` command.
- The `--key` CLI option of the `manifest-dev-tool init` command can receive an identifier private key
or a private key file name that will be used to sign the manifest with the external signing tool provided.
- Add a new configuration option `signing-tool` that is used by the `manifest-tool create` command.
- The `--key` CLI option of the `manifest-tool create` or `manifest-tool create-v1` command can receive
an identifier private key or a private key file name that will be used to sign the manifest with
the external signing tool provided.
- Update `requests` to `2.31.0`.
- Update `cryptography` to `41.0.4`.
- Add support for Python 3.11 (super inits, imports with try, `tox` additions etc.).
- `dev-requirements`
- Update `pytest` to latest `7.4.2`.
- Update `dev-requirements`:
- Update `pytest` to the latest `7.4.2`.
- Update `pylint` to `2.17.7` (`3.0.2` does not support older versions of Python).
- Remove `--force` cli option that was deprecated already.
- Remove the `--force` CLI option that was deprecated already.
- Add support for the Python 3.11 version.

## 2.5.1
- Fix the minimal required Python version to 3.7.
Expand Down
6 changes: 3 additions & 3 deletions tests/mtool/test_create.py
Original file line number Diff line number Diff line change
Expand Up @@ -389,7 +389,7 @@ def test_cli_external_signing(
happy_day_data,
manifest_version,
UpdateType.DELTA,
extrenal_signing=True,
external_signing=True,
)

expected_message = r"^Running {} {} {} (.+?) to sign manifest.".format(
Expand Down Expand Up @@ -419,7 +419,7 @@ def test_cli_combined(


def cli_test_common(
happy_day_data, manifest_version, update_type, extrenal_signing=False
happy_day_data, manifest_version, update_type, external_signing=False
):
tmp_cfg = happy_day_data["tmp_path"] / "input.yaml"
output_manifest = happy_day_data["tmp_path"] / "foo.bin"
Expand All @@ -444,7 +444,7 @@ def cli_test_common(
},
}

if extrenal_signing:
if external_signing:
signing_tool = happy_day_data["signing_tool"].as_posix()
data["signing-tool"] = signing_tool

Expand Down

0 comments on commit c1835db

Please sign in to comment.