Skip to content

Commit

Permalink
# Release 0.15.0 (#795)
Browse files Browse the repository at this point in the history
## Packaging
-  bumped leapp-framework to 3.1 (#677)

## Framework

### Fixes
- Fixed a problem where passing environment variables to an executed child process modified the environment variables of the parent process (​​#784)
- Ignore invalid FQDNs (#790)

### Enhancements
- Deprecate `reporting.(Tags|Flags)`, replaced by `reporting.Groups` (#677, #781, #788)
- Introduce `is_inhibitor` function (#677)
- Introduce a `Blob` model field (#789)
- Introduce new report JSON schema v1.2.0 (default: 1.1.0) (#677)

## Leapp (tool)

### Fixes
- Handle missing CLI commands gracefully (#785)
- Requires to be executed by root only (#775)

Signed-off-by: Petr Stodulka <pstodulk@redhat.com>

Signed-off-by: Petr Stodulka <pstodulk@redhat.com>
  • Loading branch information
pirat89 committed Aug 23, 2022
1 parent 1cbb4b9 commit 866fcc8
Show file tree
Hide file tree
Showing 6 changed files with 10 additions and 6 deletions.
4 changes: 4 additions & 0 deletions docs/source/deprecation.md
Expand Up @@ -15,6 +15,10 @@ such information, see [Deprecated functionality in the el7toel8 repository](el7t

## current upstream development <span style="font-size:0.5em; font-weight:normal">(till the next release + 6months)</span>

- nothing yet...

## current upstream development <span style="font-size:0.5em; font-weight:normal">(till Mar 2023)</span>

- Reporting primitives
- **`leapp.reporting.Flags`** - The `Flags` report primitive has been deprecated in favor of the more general `Groups` one.
- **`leapp.reporting.Tags`** - The `Tags` report primitive has been deprecated in favor of the more general `Groups` one.
Expand Down
2 changes: 1 addition & 1 deletion leapp/__init__.py
@@ -1,6 +1,6 @@
from leapp.utils.workarounds import apply_workarounds

VERSION = "0.14.0"
VERSION = "0.15.0"
FULL_VERSION = VERSION

apply_workarounds()
4 changes: 2 additions & 2 deletions leapp/reporting/__init__.py
Expand Up @@ -161,7 +161,7 @@ def __init__(self, value=None):


@deprecated(
since='2022-09-01',
since='2022-08-23',
message=(
'The primitive is deprecated as Tags and Flags have been joined into the Groups primitive.'
'Please use Groups for report message typing instead.'
Expand All @@ -173,7 +173,7 @@ def __init__(self, *args, **kwargs):


@deprecated(
since='2022-09-01',
since='2022-08-23',
message=(
'The primitive is deprecated as Tags and Flags have been joined into the Groups primitive.'
'Please use Groups for report message typing instead.'
Expand Down
2 changes: 1 addition & 1 deletion man/leapp.1
@@ -1,4 +1,4 @@
.TH LEAPP "1" "2022-03-17" "leapp 0.14.0" "User Commands"
.TH LEAPP "1" "2022-08-23" "leapp 0.15.0" "User Commands"

.SH NAME
leapp \- command line interface for upgrades between major OS versions
Expand Down
2 changes: 1 addition & 1 deletion man/snactor.1
@@ -1,4 +1,4 @@
.TH SNACTOR "1" "2022-03-17" "snactor 0.14.0" "User Commands"
.TH SNACTOR "1" "2022-08-23" "snactor 0.15.0" "User Commands"

.SH NAME
snactor \- development and repository management tool for leapp
Expand Down
2 changes: 1 addition & 1 deletion packaging/leapp.spec
Expand Up @@ -42,7 +42,7 @@
%endif

Name: leapp
Version: 0.14.0
Version: 0.15.0
Release: 1%{?dist}
Summary: OS & Application modernization framework

Expand Down

0 comments on commit 866fcc8

Please sign in to comment.