Skip to content

Commit

Permalink
Release 0.16.0
Browse files Browse the repository at this point in the history
[noissue]
  • Loading branch information
mdellweg committed Nov 10, 2022
1 parent c11f57b commit fafaf90
Show file tree
Hide file tree
Showing 21 changed files with 57 additions and 25 deletions.
2 changes: 1 addition & 1 deletion .bumpversion.cfg
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
[bumpversion]
current_version = 0.16.0.dev
current_version = 0.16.0
commit = False
tag = False
parse = (?P<major>\d+)\.(?P<minor>\d+)\.(?P<patch>\d+)(\.(?P<release>[a-z]+))?
Expand Down
1 change: 0 additions & 1 deletion CHANGES/227.bugfix

This file was deleted.

1 change: 0 additions & 1 deletion CHANGES/227.feature

This file was deleted.

1 change: 0 additions & 1 deletion CHANGES/274.feature

This file was deleted.

1 change: 0 additions & 1 deletion CHANGES/385.feature

This file was deleted.

2 changes: 0 additions & 2 deletions CHANGES/459.feature

This file was deleted.

1 change: 0 additions & 1 deletion CHANGES/462.feature

This file was deleted.

2 changes: 0 additions & 2 deletions CHANGES/466.bugfix

This file was deleted.

2 changes: 0 additions & 2 deletions CHANGES/534.feature

This file was deleted.

1 change: 0 additions & 1 deletion CHANGES/542.feature

This file was deleted.

1 change: 0 additions & 1 deletion CHANGES/543.feature

This file was deleted.

1 change: 0 additions & 1 deletion CHANGES/545.bugfix

This file was deleted.

1 change: 0 additions & 1 deletion CHANGES/561.bugfix

This file was deleted.

1 change: 0 additions & 1 deletion CHANGES/568.feature

This file was deleted.

1 change: 0 additions & 1 deletion CHANGES/569.misc

This file was deleted.

1 change: 0 additions & 1 deletion CHANGES/572.bugfix

This file was deleted.

3 changes: 0 additions & 3 deletions CHANGES/574.bugfix

This file was deleted.

1 change: 0 additions & 1 deletion CHANGES/589.misc

This file was deleted.

54 changes: 54 additions & 0 deletions docs/CHANGES.md
Original file line number Diff line number Diff line change
Expand Up @@ -10,6 +10,60 @@

[//]: # (towncrier release notes start)

## 0.16.0 (2022-11-10)



### Features

- Added `--max-retries` option to remotes.
[#227](https://github.com/pulp/pulp-cli/issues/227)
- Added the ability to set labels directly on create and update.
[#274](https://github.com/pulp/pulp-cli/issues/274)
- Added the `--repository` parameter to some upload commands.
[#385](https://github.com/pulp/pulp-cli/issues/385)
- Introduced the option `--wait` for the `pulp task-group show` command.
By using this option, details of the task group will be shown only after waiting for all related tasks to finish.
[#459](https://github.com/pulp/pulp-cli/issues/459)
- Added `--optimize` and `--sync-options` to the `rpm repository sync` subcommand.
[#462](https://github.com/pulp/pulp-cli/issues/462)
- Added `pulp debug openapi schema` and `pulp debug openapi schema-names` to investigate reusable schemas in the api.
Renamed the original `pulp debug openapi schema` command to `pulp debug openapi spec`.
[#534](https://github.com/pulp/pulp-cli/issues/534)
- Added support for adjusting list output: `--ordering`, `--field`, `--exclude-field`.
[#542](https://github.com/pulp/pulp-cli/issues/542)
- Added task filtering options.
[#543](https://github.com/pulp/pulp-cli/issues/543)
- Added `--cid` option and started reusing a recieved correlation id in all requests made by the same command.
[#568](https://github.com/pulp/pulp-cli/issues/568)


### Bugfixes

- Allowed remote timeout and rate limiting parameters to be nulled by passing `""`.
[#227](https://github.com/pulp/pulp-cli/issues/227)
- The `openapi` layer now handles all instances of `requests.RequestException`.
This will help to give a better error message for e.g. missing schema in the `--base-url` parameter.
[#466](https://github.com/pulp/pulp-cli/issues/466)
- Fixed an error raised when specifying no HREF value for some of the commands.
[#545](https://github.com/pulp/pulp-cli/issues/545)
- Fixed an assertion error when canceling tasks by state.
[#561](https://github.com/pulp/pulp-cli/issues/561)
- Fixed ``KeyError: 'missing_field'`` error when required fields are not supplied.
[#572](https://github.com/pulp/pulp-cli/issues/572)
- Correctly identified base_path as required when creating a Distribution.

(affected rpm, file, and python distribution create)
[#574](https://github.com/pulp/pulp-cli/issues/574)


### Misc

- [#569](https://github.com/pulp/pulp-cli/issues/569), [#589](https://github.com/pulp/pulp-cli/issues/589)


---


## 0.15.0 (2022-07-20)

Expand Down
2 changes: 1 addition & 1 deletion pulpcore/cli/common/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@
from pulpcore.cli.common.generic import PulpCLIContext, pulp_group
from pulpcore.cli.common.i18n import get_translation

__version__ = "0.16.0.dev"
__version__ = "0.16.0"

translation = get_translation(__name__)
_ = translation.gettext
Expand Down
2 changes: 1 addition & 1 deletion setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -34,7 +34,7 @@
author="Pulp Team",
author_email="pulp-list@redhat.com",
url="https://github.com/pulp/pulp-cli",
version="0.16.0.dev",
version="0.16.0",
packages=plugin_packages + extra_packages,
package_data={"": ["py.typed", "locale/*/LC_MESSAGES/*.mo"]},
python_requires=">=3.6",
Expand Down

0 comments on commit fafaf90

Please sign in to comment.