2021-01-11 08:29:17 +00:00
|
|
|
<?xml version="1.0"?>
|
|
|
|
|
<services>
|
2023-10-18 03:48:57 +00:00
|
|
|
<service name="obs_scm" mode="manual">
|
2021-01-11 08:29:17 +00:00
|
|
|
<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>
|
2021-01-29 05:33:13 +00:00
|
|
|
<param name="versionformat">@PARENT_TAG@</param>
|
2026-01-20 23:04:51 +00:00
|
|
|
<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>
|
2021-01-11 08:29:17 +00:00
|
|
|
<param name="changesauthor">dead_mozay@opensuse.org</param>
|
|
|
|
|
</service>
|
2023-10-18 03:48:57 +00:00
|
|
|
<service mode="manual" name="set_version"/>
|
2021-01-11 08:29:17 +00:00
|
|
|
<service name="tar" mode="buildtime"/>
|
|
|
|
|
<service name="recompress" mode="buildtime">
|
|
|
|
|
<param name="compression">xz</param>
|
|
|
|
|
<param name="file">*.tar</param>
|
|
|
|
|
</service>
|
2023-10-18 03:48:57 +00:00
|
|
|
<service name="cargo_vendor" mode="manual">
|
2021-01-11 08:29:17 +00:00
|
|
|
<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>
|
2021-01-11 08:29:17 +00:00
|
|
|
</service>
|
2023-10-18 03:48:57 +00:00
|
|
|
<service name="cargo_audit" mode="manual">
|
Accepting request 986961 from home:Dead_Mozay
- Update to version 0.65.0:
* Better support for binary data:
- New operators bit-and, bit-or, bit-xor, as well as
renamed bit-shl and bit-shr. These correspond to bitwise and,
or, exclusive or, shift left, and shift right.
- A new encode command as well as binary support for hash.
- Improved binary support for skip and take.
* Nu-check:
- Starting with this release, Nushell now provides a
nu-check command which can do a check over a source file
for potential parsing and typechecking errors.
* Unification continues:
- In this release, db and mysql support has simplified,
bringing it closer to the already existing dataframe support.
* Additional new commands:
- You can now use the port command to find the next available port.
OBS-URL: https://build.opensuse.org/request/show/986961
OBS-URL: https://build.opensuse.org/package/show/shells/nushell?expand=0&rev=18
2022-07-06 06:33:37 +00:00
|
|
|
<param name="srcdir">nushell</param>
|
|
|
|
|
</service>
|
2021-01-11 08:29:17 +00:00
|
|
|
</services>
|