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
- Introduced flag `--time-zone` to `polars as-datetime`
917
917
- Introduced flag `--time-unit` to `polars as-datetime`
918
918
919
-
### Allow saving `CustomValue`s ([#16692])
920
-
> TODO(release-notes): Move this into plugin authors section.
921
-
922
-
`CustomValue` now supports a `save` method. Implementors can use it to make their values savable to disk.
923
-
924
-
### Add `run pr` and `download pr` to `toolkit` ([#16770])
925
-
The toolkit in the Nushell repository can now download and run PRs by downloading artifacts from CI runs. It can be run like this:
926
-
```nushell
927
-
use toolkit
928
-
toolkit run pr <number>
929
-
```
930
-
931
919
### Additional changes
932
920
933
921
* The `which` command now lists all commands (internal and external) when no argument is passed to it ([#16551])
@@ -1079,6 +1067,21 @@ This was due to a miscompilation bug, which is now fixed.
1079
1067
1080
1068
# Notes for plugin developers
1081
1069
1070
+
### Allow saving `CustomValue`s ([#16692])
1071
+
`CustomValue` now supports a `save` method. Implementors can use it to make their values savable to disk.
1072
+
1073
+
### Add `run pr` and `download pr` to `toolkit` ([#16770])
1074
+
The toolkit in the Nushell repository can now download and run PRs by downloading artifacts from CI runs. It can be run like this:
1075
+
```nushell
1076
+
use toolkit
1077
+
toolkit run pr <number>
1078
+
```
1079
+
1080
+
### Pass optional and casing to follow path methods for `CustomValue` ([#16736])
1081
+
Plugin authors that use `CustomValue` can now access the `optional` and `casing` fields in their `follow_path_int` and `follow_path_string` methods to add behavior for optional access or case sensitivity.
1082
+
1083
+
This is a breaking change for the plugin signature so it needs an update. Simply ignoring these fields may be a valid solution.
1084
+
1082
1085
# Hall of fame
1083
1086
1084
1087
Thanks to all the contributors below for helping us solve issues, improve documentation, refactor code, and more! :pray:
0 commit comments