github.com/lmorg/murex@v0.0.0-20240217211045-e081c89cd4ef/docs/changelog/v6.0.md (about) 1 # v6.0 2 3 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 `?`. 4 5 ## Breaking Changes 6 7 None 8 9 ## Deprecation Warnings 10 11 Please read out [compatibility commitment](https://murex.rocks/compatibility.html) to understand how features are deprecated. 12 13 * the `?` pipe will be deprecated to make way for a the ternary operator. You can achieve the same result with `<err> <!out>`, eg `command <err> <!out> parameters... | next-command ...` 14 15 * the `=` and `let` 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 `=` and `let` command names from your expressions 16 17 ## Features 18 19 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](https://murex.rocks/compatibility.html). 20 21 * new integrations for the experimental `mxtty` terminal emulator ([Github repo](https://github.com/lmorg/mxtty)) 22 23 ## Bug Fixes 24 25 * `which` and `whereis` autocompletions were Linux specific. Now they're enabled for all platforms 26 27 * `grep` and `egrep` aliases were Linux specific. Now they're enabled for all POSIX platforms 28 29 * zero length environment variables are no longer being reported as `null` by `is-null` ([issue #786](https://github.com/lmorg/murex/issues/786)) 30 31 * fixed edge case where a zero length string could generate a panic when normalising paths ([issue #789](https://github.com/lmorg/murex/issues/789)) 32 33 * suppress sqlite3 cache error message. The error doesn't impact the operation of Murex, it just spooks users ([issue #788](https://github.com/lmorg/murex/issues/788)) 34 35 ## Special Thanks 36 37 Special thank yous for this release goes to everyone in the discussions group for raising bug reports and their design discussions. 38 39 You rock! 40 41 <hr> 42 43 Published: 17.02.2024 at 20:47 44 45 ## See Also 46 47 * [Contributing](../Murex/CONTRIBUTING.md): 48 Guide to contributing to Murex 49 * [`autocomplete`](../commands/autocomplete.md): 50 Set definitions for tab-completion in the command line 51 * [`config`](../commands/config.md): 52 Query or define Murex runtime settings 53 * [`export`](../commands/export.md): 54 Define an environmental variable and set it's value 55 * [`is-null`](../commands/is-null.md): 56 Checks if a variable is null or undefined 57 * [`runtime`](../commands/runtime.md): 58 Returns runtime information on the internal state of Murex 59 60 <hr/> 61 62 This document was generated from [gen/changelog/v6.0_doc.yaml](https://github.com/lmorg/murex/blob/master/gen/changelog/v6.0_doc.yaml).