Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

v6.2 #823

Merged
merged 34 commits into from
Jul 19, 2024
Merged

v6.2 #823

merged 34 commits into from
Jul 19, 2024

Conversation

lmorg
Copy link
Owner

@lmorg lmorg commented Jul 2, 2024

v6.2

Bug fix release

Breaking Changes

None

Deprecation Warnings

Please read out compatibility commitment to understand how features are deprecated.

  • the ? pipe is 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 .... It will be officially removed in v7.0

  • the = and let builtins are deprecated and will be removed in v7.0. They've been marked as deprecated in the documentation for several versions 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). 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.

  • preview: progress bar to show how far through the preview document

  • docs: more improvements to documentation

Bug Fixes

  • caching: suppress cache.db connect message when in debug mode (issue #825)

  • murex-package: package errors should be ignored in murex-package list (issue #826 docs)

  • export: exporting a non-existing variable would cause a crash (issue #824)

  • murex-docs: integrations docs were missing from compiled executable (read more)

  • integrations: ChatGPT preview instructions were incorrect (read more)

  • core: crash handler was always disabled due to incorrectly flipping a boolean

  • expr: when run as a statement, only the first parameter was used (issue #827 docs)

Special Thanks

Thank yous for this release goes to everyone in the discussions group for raising bug reports and their design discussions.

You rock!

@lmorg lmorg linked an issue Jul 6, 2024 that may be closed by this pull request
Copy link

codecov bot commented Jul 6, 2024

Codecov Report

Attention: Patch coverage is 10.00000% with 45 lines in your changes missing coverage. Please review.

Project coverage is 42.36%. Comparing base (f116497) to head (2208615).
Report is 67 commits behind head on master.

Files Patch % Lines
utils/readline/preview.go 0.00% 20 Missing ⚠️
lang/parameters/tokens.go 0.00% 7 Missing ⚠️
utils/readline/timer.go 0.00% 7 Missing ⚠️
builtins/core/typemgmt/variables.go 0.00% 5 Missing ⚠️
utils/cache/cachedb/cachedb.go 0.00% 3 Missing ⚠️
builtins/core/modules/cmd.go 0.00% 1 Missing ⚠️
utils/cache/cache.go 0.00% 1 Missing ⚠️
utils/crash/handler.go 0.00% 1 Missing ⚠️
Additional details and impacted files
@@            Coverage Diff             @@
##           master     #823       /-   ##
==========================================
  Coverage   42.20%   42.36%    0.15%     
==========================================
  Files         541      543        2     
  Lines       36495    36693      198     
==========================================
  Hits        15403    15545      142     
- Misses      19802    19837       35     
- Partials     1290     1311       21     

☔ View full report in Codecov by Sentry.
📢 Have feedback on the report? Share it here.

@lmorg lmorg linked an issue Jul 7, 2024 that may be closed by this pull request
lang/expressions/exp00_generics.go Dismissed Show resolved Hide resolved
lang/expressions/exp00_generics.go Dismissed Show resolved Hide resolved
@lmorg lmorg linked an issue Jul 14, 2024 that may be closed by this pull request
lang/expressions/parse_expression.go Dismissed Show resolved Hide resolved
@lmorg lmorg linked an issue Jul 15, 2024 that may be closed by this pull request
@lmorg lmorg merged commit a18cb26 into master Jul 19, 2024
10 checks passed
Copy link

sonarcloud bot commented Jul 19, 2024

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment