# Nushell core team meeting 2024-09-18 ## Attendees - Darren - Piepmatz - NotTheDr01ds - Yash - Antoine - Michael - Sophia - Ian - Devyn - Rose ## Agenda - [x] Does the release need a patch? [13868](https://github.com/nushell/nushell/issues/13868) - [x] Potential fix [13870](https://github.com/nushell/nushell/pull/13870) - [x] [13303](https://github.com/nushell/nushell/issues/13303) ndots expansion and go lang. - [ ] [13858](https://github.com/nushell/nushell/issues/13858) What should be the mime type for nushell scripts? - [x] ## Discussed Topics ### Ian's PR for exit_code. Lots of conversation about capturing errors for each element of the pipeline. Maybe leave it like it is and just make it default to false when not set. Plan is to wait a day or 2 to get more feedback but fix the `try` bug. And to update the release notes to draw people's attention to what to do if you don't want these errors show. ### ndots ndots functionality for go `./...`. Current thinking is to special case the `./...` and if it begins with `./` pass it through as a string without expanding. otherwise, for things like `ls .../<tab>` expansion would happen. options * remove ndots entirely * leave what we have now * special case `./...` <-- leaning toward this option * use extern related: [#13303](https://github.com/nushell/nushell/issues/13303) ### mime-types - someone submitted [a PR a year ago]( https://gitlab.freedesktop.org/xdg/shared-mime-info/-/merge_requests/231/diffs) - application/x-nuscript - text/x-nushell (PR to rename from text/x-nu) - application/x-nuon [(#13859)](https://github.com/nushell/nushell/pull/13859) ## Issues > :bulb: the issues which [needs-core-team-attention](https://github.com/nushell/nushell/labels/needs-core-team-attention) > :bulb: **Note** > to list all the PRs currently [opened in `nushell/nushell`](https://github.com/nushell/nushell/pulls): > ```nu > gh pr list --json url,number,author,title > | from json > | each {|i| > $"- [($i.number)]\(($i.url)\) ($i.title) \(@($i.author.login)\)" > } > | reverse > | to text > ```