Despite this being a new major version release, it is a vary minor update. Aside from a handful of bugfixes, the most significant change is notice of deprecation for =
, let
, and ?
.
None
Please read out compatibility commitment to understand how features are deprecated.
-
the
?
pipe will be deprecated to make way for a the ternary operator. You can achieve the same result with<err> <!out>
, egcommand <err> <!out> parameters... | next-command ...
-
the
=
andlet
builtins are now officially deprecated. They've been marked as deprecated in the documentation for a couple of years but you'll now receive a deprecation warning when using them. This warning will not impact any functions that call them (they bypass the STDOUT and STDERR pipes and write directly to your TTY) but it is still recommended that you update any existing code not to use it. The change is very simple, Murex supported expressions as first class primitives, so you can simply drop the=
andlet
command names from your expressions
Features marked as EXPERIMENTAL are provided without assurances of future breaking changes. All other features are considered stable as part of Murex's compatibility commitment.
- new integrations for the experimental
mxtty
terminal emulator (Github repo)
-
which
andwhereis
autocompletions were Linux specific. Now they're enabled for all platforms -
grep
andegrep
aliases were Linux specific. Now they're enabled for all POSIX platforms -
zero length environment variables are no longer being reported as
null
byis-null
(issue #786) -
fixed edge case where a zero length string could generate a panic when normalising paths (issue #789)
-
suppress sqlite3 cache error message. The error doesn't impact the operation of Murex, it just spooks users (issue #788)
Special thank yous for this release goes to everyone in the discussions group for raising bug reports and their design discussions.
You rock!
Published: 17.02.2024 at 20:47
- Contributing: Guide to contributing to Murex
autocomplete
: Set definitions for tab-completion in the command lineconfig
: Query or define Murex runtime settingsexport
: Define an environmental variable and set it's valueis-null
: Checks if a variable is null or undefinedruntime
: Returns runtime information on the internal state of Murex
This document was generated from gen/changelog/v6.0_doc.yaml.