forked from barryclark/jekyll-now
-
Notifications
You must be signed in to change notification settings - Fork 20
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
c897237
commit 7fa1794
Showing
1 changed file
with
44 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,44 @@ | ||
--- | ||
published: true | ||
layout: post | ||
title: "Calamares 3.3.4 released" | ||
excerpt_separator: <!--more--> | ||
--- | ||
|
||
In this release, process jobmodules -- a particular kind of module | ||
recognizable by `type: job` and `interface: process` in the descriptor | ||
file -- undergo a large change to resemble *shellprocess* more. | ||
|
||
Users of process jobmodules are encouraged to double-check the Functionality | ||
of those modules in this release. | ||
|
||
This release contains contributions from (alphabetically by first name): | ||
- Adriaan de Groot | ||
- Victor Fuentes | ||
|
||
## Core ## | ||
- Process jobs (a job type provided by Calamares core) now share more | ||
code with *contextualprocess* and *shellprocess* jobs. The execution | ||
mechanism is the same, and always invokes the shell, whether the command | ||
runs in the host or in the target system. It is no longer necessary to | ||
add `/bin/sh` in the *command* key -- this is always present. | ||
|
||
## Modules ## | ||
- *contextualprocess* and *shellprocess* can now set environment variables | ||
as part of the configuration. See *shellprocess* documentation for details. | ||
This is optional, and does not do anything that could not already be done | ||
by putting `export VAR=value ;` in front of the command before. | ||
- *partition* fixed a bug with an uninitialized variable. (thanks Victor) | ||
- *shellprocess* (and therefore also *contextualprocess* and process | ||
jobmodules) now substitutes `${LANG}` in commands with the language | ||
selected in the user-interface of Calamares. | ||
|
||
|
||
## Feedback ## | ||
|
||
If you experience an issue with Calamares, please tell us all about it | ||
on the [**Calamares issue tracker**][1]. For a full change list, see | ||
the full list of [issues closed][2] within the current generation (which is many releases). | ||
|
||
[1]: https://github.com/calamares/calamares/issues | ||
[2]: https://github.com/calamares/calamares/milestone/83 |