Files
nushell/_service

27 lines
967 B
Plaintext
Raw Permalink Normal View History

<?xml version="1.0"?>
<services>
Accepting request 1118397 from home:Dead_Mozay - Update to version 0.86.0: * Bug fixes: - Fix exponential parser time on sequence of [[[[. - Fix tilde-expansion for multi-byte unicode chars. - Improve select row perf for large N. - Prevent cubic time on nested parentheses. - fix public boolean switches in the standard library. - std dt datetime-diff: fix uninitialized field ref when borrowing. - Fix default argument value type checking. - fix magenta_reverse and friends. - nu-table: Fix failing test (relied on termwidth assumptions). - Fix editor config for reedline and config nu/env. - Fix Default Prompt Tilde Insertion Logic. - fix windows default prompt slash direction. - fix: complete paths surrounded by quotes or backticks. - ucp: Change error when directory is specified but not recursive. - nu-explore: Try to fix a truncation issue in expand view. - Fix wrong parsing of signatures in predecl scan. - Fix parsing of signature inp/out types in predecls. - fix labelled error from shell error. - Fix registry query flag validation. - Fix clippy in registry_query.rs. - fix clippy. - Fix output types of math commands to be narrower. - nu-table: Use config color scheme in kv tables and table -e. - fix: only escape path containing numbers if they can be valid floating points. - evaluate $nu during --ide-check. - allow early return outside of main. - Preserve relative paths for local files. - glob with ../ prefix now works;. - Add support for HTTP proxy in network commands. * Enhancing the documentation. * Improving the completions in the REPL. * The type system. * Unified command definitions. * Some news with the standard library. * Nushell now supports the keyboard enhancement protocol from Kitty with the work of @Abdillah in #10540. This feature is off by default but can be turned on in config.nu with the $env.use_kitty_protocol config option. * New commands. * Changes to existing commands. * Deprecated commands: - random int in favor of random integer. - the $nothing built-in variable in favor of the null. - to xml --pretty {int} in favor of to xml --indent {int}. * Removed commands: - random decimal in favor of random float. - into decimal in favor of into float. * Breaking changes: - differentiating between --x and --x: bool. - Use heck for string casing (again) - remove into decimal. - remove random decimal. - Remove cd w/ abbreviations. - Rename: change the SyntaxShape of -c flag from list to record. * Full changelog: - https://www.nushell.sh/blog/2023-10-17-nushell_0_86.html OBS-URL: https://build.opensuse.org/request/show/1118397 OBS-URL: https://build.opensuse.org/package/show/shells/nushell?expand=0&rev=44
2023-10-18 03:48:57 +00:00
<service name="obs_scm" mode="manual">
<param name="filename">nushell</param>
<param name="url">https://github.com/nushell/nushell.git</param>
<param name="scm">git</param>
<param name="version">git-master</param>
<param name="versionformat">@PARENT_TAG@</param>
<param name="revision">0.110.0</param>
Accepting request 982744 from home:Dead_Mozay - Update to version 0.64.0: * Add --values flag to sort record by values, by default, sort record by keys, and sort not change shape, and path join support multi path, and fix arg parse, and While starting nu, force PWD to be current working directory, and handle SIGQUIT, and add as record tag to transfer result to record, and print warning message if meet non utf-8 path, and fix argument type, and expand env for path, and make ls works better with glob, and base64 command more friendly, and make cp can copy folders contains dangling symbolic link, and make sure no duplicate column exists during eval and merge. * Pin reedline v0.7.0 for the nushell v0.64.0 release, and Address lints from clippy for beta/nightly, and Use search terms in the help menu search, and Update nu-ansi-term to remove Deref impl, and Improve internal documentation of save command, and Update reedline, and Clarify error message for let in pipeline, and Update reedline: Support more bindings in vi mode, and Improve test coverage of command examples, and Add search terms for describe, and Unpin reedline for regular development. * Bool type for binary operations, and each while command, and filesize conversion, and expression to literal, and Remove dfr from dataframe commands, and input and output types, and Lazy dataframes. * Add option to sort-by naturally, and Attempts to add // math operator, and add search terms to alias, and Improves help str substring, and Attempts to add a command that checks if nushell is running with admin priveleges, and Make range require its positional argument, and Small typo fix in signature.rs, and prevent panic with let alone in pipeline, and Add '-o'/--output flag to fetch to download to file, and Add search terms to error make. * Add NU config to allow user be able to turn off external completion, and Support completion for alias and sub-command, and Fix cp bug. * More verbose error handling, and make to text work more intuitively, and add case_sensitive_completions config option. * Add $nu.scope.engine_state, and Fix wrong path help message, and Shorten the links of parser keywords help msgs, and Add 'overlay new' command. * feat: add search terms to category of strings. * SQLite History MVP with timestamp, duration, working directory, exit status metadata. * Added loginshell config file. * fix[table]: Panic when passthru small number of table -w., and feat[table]: Allow specific table width with -w, like command grid. * Minor fixes to shell integation in repl., and Improve table output of 'to html'. * Add completions for nu. * Add search terms for all?, any?, length, and keybindings. * feat: add search terms to random & typo fix. * Fix drop nth bug OBS-URL: https://build.opensuse.org/request/show/982744 OBS-URL: https://build.opensuse.org/package/show/shells/nushell?expand=0&rev=17
2022-06-15 09:11:56 +00:00
<param name="changesgenerate">disable</param>
<param name="changesauthor">dead_mozay@opensuse.org</param>
</service>
Accepting request 1118397 from home:Dead_Mozay - Update to version 0.86.0: * Bug fixes: - Fix exponential parser time on sequence of [[[[. - Fix tilde-expansion for multi-byte unicode chars. - Improve select row perf for large N. - Prevent cubic time on nested parentheses. - fix public boolean switches in the standard library. - std dt datetime-diff: fix uninitialized field ref when borrowing. - Fix default argument value type checking. - fix magenta_reverse and friends. - nu-table: Fix failing test (relied on termwidth assumptions). - Fix editor config for reedline and config nu/env. - Fix Default Prompt Tilde Insertion Logic. - fix windows default prompt slash direction. - fix: complete paths surrounded by quotes or backticks. - ucp: Change error when directory is specified but not recursive. - nu-explore: Try to fix a truncation issue in expand view. - Fix wrong parsing of signatures in predecl scan. - Fix parsing of signature inp/out types in predecls. - fix labelled error from shell error. - Fix registry query flag validation. - Fix clippy in registry_query.rs. - fix clippy. - Fix output types of math commands to be narrower. - nu-table: Use config color scheme in kv tables and table -e. - fix: only escape path containing numbers if they can be valid floating points. - evaluate $nu during --ide-check. - allow early return outside of main. - Preserve relative paths for local files. - glob with ../ prefix now works;. - Add support for HTTP proxy in network commands. * Enhancing the documentation. * Improving the completions in the REPL. * The type system. * Unified command definitions. * Some news with the standard library. * Nushell now supports the keyboard enhancement protocol from Kitty with the work of @Abdillah in #10540. This feature is off by default but can be turned on in config.nu with the $env.use_kitty_protocol config option. * New commands. * Changes to existing commands. * Deprecated commands: - random int in favor of random integer. - the $nothing built-in variable in favor of the null. - to xml --pretty {int} in favor of to xml --indent {int}. * Removed commands: - random decimal in favor of random float. - into decimal in favor of into float. * Breaking changes: - differentiating between --x and --x: bool. - Use heck for string casing (again) - remove into decimal. - remove random decimal. - Remove cd w/ abbreviations. - Rename: change the SyntaxShape of -c flag from list to record. * Full changelog: - https://www.nushell.sh/blog/2023-10-17-nushell_0_86.html OBS-URL: https://build.opensuse.org/request/show/1118397 OBS-URL: https://build.opensuse.org/package/show/shells/nushell?expand=0&rev=44
2023-10-18 03:48:57 +00:00
<service mode="manual" name="set_version"/>
<service name="tar" mode="buildtime"/>
<service name="recompress" mode="buildtime">
<param name="compression">xz</param>
<param name="file">*.tar</param>
</service>
Accepting request 1118397 from home:Dead_Mozay - Update to version 0.86.0: * Bug fixes: - Fix exponential parser time on sequence of [[[[. - Fix tilde-expansion for multi-byte unicode chars. - Improve select row perf for large N. - Prevent cubic time on nested parentheses. - fix public boolean switches in the standard library. - std dt datetime-diff: fix uninitialized field ref when borrowing. - Fix default argument value type checking. - fix magenta_reverse and friends. - nu-table: Fix failing test (relied on termwidth assumptions). - Fix editor config for reedline and config nu/env. - Fix Default Prompt Tilde Insertion Logic. - fix windows default prompt slash direction. - fix: complete paths surrounded by quotes or backticks. - ucp: Change error when directory is specified but not recursive. - nu-explore: Try to fix a truncation issue in expand view. - Fix wrong parsing of signatures in predecl scan. - Fix parsing of signature inp/out types in predecls. - fix labelled error from shell error. - Fix registry query flag validation. - Fix clippy in registry_query.rs. - fix clippy. - Fix output types of math commands to be narrower. - nu-table: Use config color scheme in kv tables and table -e. - fix: only escape path containing numbers if they can be valid floating points. - evaluate $nu during --ide-check. - allow early return outside of main. - Preserve relative paths for local files. - glob with ../ prefix now works;. - Add support for HTTP proxy in network commands. * Enhancing the documentation. * Improving the completions in the REPL. * The type system. * Unified command definitions. * Some news with the standard library. * Nushell now supports the keyboard enhancement protocol from Kitty with the work of @Abdillah in #10540. This feature is off by default but can be turned on in config.nu with the $env.use_kitty_protocol config option. * New commands. * Changes to existing commands. * Deprecated commands: - random int in favor of random integer. - the $nothing built-in variable in favor of the null. - to xml --pretty {int} in favor of to xml --indent {int}. * Removed commands: - random decimal in favor of random float. - into decimal in favor of into float. * Breaking changes: - differentiating between --x and --x: bool. - Use heck for string casing (again) - remove into decimal. - remove random decimal. - Remove cd w/ abbreviations. - Rename: change the SyntaxShape of -c flag from list to record. * Full changelog: - https://www.nushell.sh/blog/2023-10-17-nushell_0_86.html OBS-URL: https://build.opensuse.org/request/show/1118397 OBS-URL: https://build.opensuse.org/package/show/shells/nushell?expand=0&rev=44
2023-10-18 03:48:57 +00:00
<service name="cargo_vendor" mode="manual">
<param name="srcdir">nushell</param>
Accepting request 1067092 from home:uncomfyhalomacro:branches:shells - 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/request/show/1067092 OBS-URL: https://build.opensuse.org/package/show/shells/nushell?expand=0&rev=31
2023-02-22 06:53:50 +00:00
<param name="compression">zst</param>
</service>
Accepting request 1118397 from home:Dead_Mozay - Update to version 0.86.0: * Bug fixes: - Fix exponential parser time on sequence of [[[[. - Fix tilde-expansion for multi-byte unicode chars. - Improve select row perf for large N. - Prevent cubic time on nested parentheses. - fix public boolean switches in the standard library. - std dt datetime-diff: fix uninitialized field ref when borrowing. - Fix default argument value type checking. - fix magenta_reverse and friends. - nu-table: Fix failing test (relied on termwidth assumptions). - Fix editor config for reedline and config nu/env. - Fix Default Prompt Tilde Insertion Logic. - fix windows default prompt slash direction. - fix: complete paths surrounded by quotes or backticks. - ucp: Change error when directory is specified but not recursive. - nu-explore: Try to fix a truncation issue in expand view. - Fix wrong parsing of signatures in predecl scan. - Fix parsing of signature inp/out types in predecls. - fix labelled error from shell error. - Fix registry query flag validation. - Fix clippy in registry_query.rs. - fix clippy. - Fix output types of math commands to be narrower. - nu-table: Use config color scheme in kv tables and table -e. - fix: only escape path containing numbers if they can be valid floating points. - evaluate $nu during --ide-check. - allow early return outside of main. - Preserve relative paths for local files. - glob with ../ prefix now works;. - Add support for HTTP proxy in network commands. * Enhancing the documentation. * Improving the completions in the REPL. * The type system. * Unified command definitions. * Some news with the standard library. * Nushell now supports the keyboard enhancement protocol from Kitty with the work of @Abdillah in #10540. This feature is off by default but can be turned on in config.nu with the $env.use_kitty_protocol config option. * New commands. * Changes to existing commands. * Deprecated commands: - random int in favor of random integer. - the $nothing built-in variable in favor of the null. - to xml --pretty {int} in favor of to xml --indent {int}. * Removed commands: - random decimal in favor of random float. - into decimal in favor of into float. * Breaking changes: - differentiating between --x and --x: bool. - Use heck for string casing (again) - remove into decimal. - remove random decimal. - Remove cd w/ abbreviations. - Rename: change the SyntaxShape of -c flag from list to record. * Full changelog: - https://www.nushell.sh/blog/2023-10-17-nushell_0_86.html OBS-URL: https://build.opensuse.org/request/show/1118397 OBS-URL: https://build.opensuse.org/package/show/shells/nushell?expand=0&rev=44
2023-10-18 03:48:57 +00:00
<service name="cargo_audit" mode="manual">
<param name="srcdir">nushell</param>
</service>
</services>