Breaking Changes
This release includes two changes, which will break current behavior.
dockerTarget renamed
In previous version of native-packager an undocumented setting dockerTarget was exposed.
This was renamed dockerAlias and the typed changed from String to DockerAlias. The
default value is
dockerAlias := DockerAlias(
registryHost = dockerRepository.value,
username = None,
name = packageName.value,
tag = Some(version.value)
)See #854 for all details
Rescope rpm settings
All settings prefixed with rpm were moved out of the Rpm scope. This means that you should
remove the in Rpm configuration scope for settings and tasks prefixed with rpm. For example:
// before
rpmBrpJavaRepackJars in Rpm := false
// after
rpmBrpJavaRepackJars := falseSee #826
Commits and the issues they fixed since v1.2.0-M3
| Issue(s) | Commit | Message |
|---|---|---|
| #860 | 4e83b83 | FIX #855 Syntax Error on RPM Uninstall (#860) |
| #789 | d474fd7 | Fix scoping in RPM plugin for #789 (#826) * Fix scoping in RPM plugin for #789 |
Pull requests since v1.2.0-M3
| Pull Request(s) | Commit | Message |
|---|---|---|
| #860 | e5cd694 | FIX #855 Syntax Error on RPM Uninstall |
| #854 | 2da2601 | Adding 'dockerBuild{Command, Options}' and renaming 'dockerTag' |
| #826 | d474fd7 | Fix scoping in RPM plugin for #789 |
A big thank you to all the contributors!
| # | Author |
|---|---|
| 1 | Tristan Blease |
| 1 | Mathias Kub |
| 1 | Nepomuk Seiler |