Skip to content

Latest commit

 

History

History
62 lines (37 loc) · 2.98 KB

v6.0.md

File metadata and controls

62 lines (37 loc) · 2.98 KB

v6.0

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 ?.

Breaking Changes

None

Deprecation Warnings

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>, eg command <err> <!out> parameters... | next-command ...

  • 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

Features

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)

Bug Fixes

  • which and whereis autocompletions were Linux specific. Now they're enabled for all platforms

  • grep and egrep aliases were Linux specific. Now they're enabled for all POSIX platforms

  • zero length environment variables are no longer being reported as null by is-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 Thanks

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

See Also

  • Contributing: Guide to contributing to Murex
  • autocomplete: Set definitions for tab-completion in the command line
  • config: Query or define Murex runtime settings
  • export: Define an environmental variable and set it's value
  • is-null: Checks if a variable is null or undefined
  • runtime: Returns runtime information on the internal state of Murex

This document was generated from gen/changelog/v6.0_doc.yaml.