Skip to content

Commit 866fcc8

Browse files
authored
# Release 0.15.0 (#795)
## 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>
1 parent 1cbb4b9 commit 866fcc8

File tree

6 files changed

+10
-6
lines changed

6 files changed

+10
-6
lines changed

docs/source/deprecation.md

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -15,6 +15,10 @@ such information, see [Deprecated functionality in the el7toel8 repository](el7t
1515

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

18+
- nothing yet...
19+
20+
## current upstream development <span style="font-size:0.5em; font-weight:normal">(till Mar 2023)</span>
21+
1822
- Reporting primitives
1923
- **`leapp.reporting.Flags`** - The `Flags` report primitive has been deprecated in favor of the more general `Groups` one.
2024
- **`leapp.reporting.Tags`** - The `Tags` report primitive has been deprecated in favor of the more general `Groups` one.

leapp/__init__.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
from leapp.utils.workarounds import apply_workarounds
22

3-
VERSION = "0.14.0"
3+
VERSION = "0.15.0"
44
FULL_VERSION = VERSION
55

66
apply_workarounds()

leapp/reporting/__init__.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -161,7 +161,7 @@ def __init__(self, value=None):
161161

162162

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

174174

175175
@deprecated(
176-
since='2022-09-01',
176+
since='2022-08-23',
177177
message=(
178178
'The primitive is deprecated as Tags and Flags have been joined into the Groups primitive.'
179179
'Please use Groups for report message typing instead.'

man/leapp.1

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
.TH LEAPP "1" "2022-03-17" "leapp 0.14.0" "User Commands"
1+
.TH LEAPP "1" "2022-08-23" "leapp 0.15.0" "User Commands"
22

33
.SH NAME
44
leapp \- command line interface for upgrades between major OS versions

man/snactor.1

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
.TH SNACTOR "1" "2022-03-17" "snactor 0.14.0" "User Commands"
1+
.TH SNACTOR "1" "2022-08-23" "snactor 0.15.0" "User Commands"
22

33
.SH NAME
44
snactor \- development and repository management tool for leapp

packaging/leapp.spec

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -42,7 +42,7 @@
4242
%endif
4343

4444
Name: leapp
45-
Version: 0.14.0
45+
Version: 0.15.0
4646
Release: 1%{?dist}
4747
Summary: OS & Application modernization framework
4848

0 commit comments

Comments
 (0)