- Add constraints. Make 12GB of physical memory.
- Update to version 0.76.0:
* Fix PATH vs Path for command completions
* New debugging commands
- ast
- debug
- explain
* BREAKING CHANGES:
- load-env can not accidentally set $env.PWD anymore
- The --numbered flag to enumerate entries has been removed from each, par-each,
each while, and reduce. Use the enumerate command added in 0.75 instead.
- Plugin system: nu_plugin::Plugin::signature has changed from
fn signature(&self) -> Vec<Signature> to fn signature(&self) -> Vec<PluginSignature>
to support examples on plugin commands. Plugin authors have to update
the relative structure to apply these changes. Normally you just need to
perform a global search/replace from Signature to PluginSignature,
then rebuild and run with the latest nushell version.
- benchmark renamed to timeit.
- dataframe commands renamed with a prefix of dfr
- view-source renamed to view source
- Plugin commands can now include examples, which necessitated a change to
the plugin signature, which causes all plugins to need to be recompiled for use
- from ini, from vcf, from ics, from eml commands are moved to
plugin called nu_plugin_formats to reduce the number of commands in nushell
core, you need to install and register the plugin manually to use these command
- str lpad and str rpad have been superceeded by fill in order to provide alignment
- http get -t,--timeout parameter is now -m,--max-time.
- Filesystem commands now print to stderr when using --verbose flag
- The parse command will now create 0 indexed columns instead of 1 indexed
- Use zstd compression for vendored tarball
This SR is to address redundant changelog
OBS-URL: https://build.opensuse.org/package/show/shells/nushell?expand=0&rev=31
2023-02-22 06:53:50 +00:00
|
|
|
<?xml version="1.0"?>
|
|
|
|
<constraints>
|
|
|
|
<hardware>
|
|
|
|
<physicalmemory>
|
|
|
|
<size unit="G">12</size>
|
|
|
|
</physicalmemory>
|
|
|
|
</hardware>
|
|
|
|
</constraints>
|