You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: blog/2024-05-28-nushell_0_94_0.md
+5-1Lines changed: 5 additions & 1 deletion
Original file line number
Diff line number
Diff line change
@@ -264,6 +264,7 @@ See a full overview of the [breaking changes](#breaking-changes)
264
264
265
265
To support streaming output, `parse` now operates/matches on a single line at a time **only if provided with the streaming output of an external command, file, or raw byte stream**.
266
266
For example, these snippets will try to match each line separately:
The old behavior was to collect all of the output the external command or byte stream and then run the regex across the whole string. To mimic this behavior, you can use the `collect` command or store the output in a variable:
In this case, the regex is run separately over each string value in the stream. With the proper regex flags, the regex is able to match across multiple lines within the same string value.
289
293
290
294
Note that `parse` may see more breaking changes in the next release to simplify these behaviors.
@@ -439,7 +443,7 @@ The `--collect-lazyrecords` flag has been removed from `describe`, since lazy re
439
443
440
444
#### List of environment variables support in `with-env`[[toc](#table-of-content)]
441
445
442
-
This release removes support for the list of environment variable form of `with-env` that was [deprecated](http://localhost:8080/blog/2024-04-30-nushell_0_93_0.html#with-env-toc) in the previous release. Going forward, only the record form is supported.
446
+
This release removes support for the list of environment variable form of `with-env` that was [deprecated](https://www.nushell.sh/blog/2024-04-30-nushell_0_93_0.html#with-env-toc) in the previous release. Going forward, only the record form is supported.
443
447
444
448
## For plugin developers [[toc](#table-of-content)]
0 commit comments