Skip to content

Commit 4602bc9

Browse files
committed
Fix TOC links
1 parent 284e854 commit 4602bc9

File tree

1 file changed

+6
-6
lines changed

1 file changed

+6
-6
lines changed

blog/2025-07-30-nushell_0_106_1.md

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -20,8 +20,8 @@ As part of this release, we also publish a set of optional [plugins](https://www
2020

2121
- [_Changes_](#changes-toc)
2222
- [_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)
2525
- [_Fix for builds on NetBSD and FreeBSD_](#fix-for-builds-on-netbsd-and-freebsd-toc)
2626
- [_Fixed warnings for plugin builds_](#fixed-warnings-for-plugin-builds-toc)
2727
- [_Full changelog_](#full-changelog-toc)
@@ -30,20 +30,20 @@ As part of this release, we also publish a set of optional [plugins](https://www
3030

3131
## Bug fixes and other changes [[toc](#table-of-contents)]
3232

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)]
3434

3535
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:
3737

3838
```nushell
3939
let x = 123
4040
($x)/foo/($x)
4141
# => 123/foo/123
4242
```
4343

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)]
4545

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].
4747

4848
### Fix for builds on NetBSD and FreeBSD [[toc](#table-of-contents)]
4949

0 commit comments

Comments
 (0)