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/2025-07-30-nushell_0_106_1.md
+6-6Lines changed: 6 additions & 6 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -20,8 +20,8 @@ As part of this release, we also publish a set of optional [plugins](https://www
20
20
21
21
-[_Changes_](#changes-toc)
22
22
-[_Bug fixes and other changes_](#bug-fixes-and-other-changes-toc)
23
-
-[_Fixed regression in the bare string interpolation [#16235]_](#fixed-regression-in-the-bare-string-interpolation-16235-toc)
24
-
-[_Fixed flag handling of `get` in the const version [#16268]_](#fixed-flag-handling-of-get-in-the-const-version-16268-toc)
23
+
-[_Fixed regression in the bare string interpolation_](#fixed-regression-in-the-bare-string-interpolation-toc)
24
+
-[_Fixed flag handling of `get` in the const version_](#fixed-flag-handling-of-get-in-the-const-version-toc)
25
25
-[_Fix for builds on NetBSD and FreeBSD_](#fix-for-builds-on-netbsd-and-freebsd-toc)
26
26
-[_Fixed warnings for plugin builds_](#fixed-warnings-for-plugin-builds-toc)
27
27
-[_Full changelog_](#full-changelog-toc)
@@ -30,20 +30,20 @@ As part of this release, we also publish a set of optional [plugins](https://www
30
30
31
31
## Bug fixes and other changes [[toc](#table-of-contents)]
32
32
33
-
### Fixed regression in the bare string interpolation [#16235][[toc](#table-of-contents)]
33
+
### Fixed regression in the bare string interpolation [[toc](#table-of-contents)]
34
34
35
35
While fixing another parser bug in 0.106.0 we accidentally introduced a [regression which restricted certain forms of direct string interpolation using parenthesized expressions with bare words](https://www.nushell.sh/blog/2025-07-23-nushell_0_106_0.html#regression-bare-word-interpolation-on-both-sides-does-not-work-toc).
36
-
Thanks to a fix by [@Bahex] the following form of string interpolation again works without issue:
36
+
Thanks to [#16235] by [@Bahex] the following form of string interpolation again works without issue:
37
37
38
38
```nushell
39
39
let x = 123
40
40
($x)/foo/($x)
41
41
# => 123/foo/123
42
42
```
43
43
44
-
### Fixed flag handling of `get` in the const version [#16268][[toc](#table-of-contents)]
44
+
### Fixed flag handling of `get` in the const version [[toc](#table-of-contents)]
45
45
46
-
The recent change to [`get` to rename `--ignore-errors` to `--optional`](https://www.nushell.sh/blog/2025-07-23-nushell_0_106_0.html#ignore-errors-i-renamed-to-optional-o-toc) was incorrectly handled if the command was used in a `const` context. This has been fixed with this release.
46
+
The recent change to [`get` to rename `--ignore-errors` to `--optional`](https://www.nushell.sh/blog/2025-07-23-nushell_0_106_0.html#ignore-errors-i-renamed-to-optional-o-toc) was incorrectly handled if the command was used in a `const` context. This has been fixed with this release thanks to [#16268] by [@Bahex].
47
47
48
48
### Fix for builds on NetBSD and FreeBSD [[toc](#table-of-contents)]
0 commit comments