500745b603
Accepting request 1336697 from devel:tools:scm
...
OBS-URL: https://build.opensuse.org/request/show/1336697
OBS-URL: https://build.opensuse.org/package/show/openSUSE:Factory/jujutsu?expand=0&rev=32
2026-03-05 16:30:14 +00:00
61d1db506b
update to 0.39.0
...
OBS-URL: https://build.opensuse.org/package/show/devel:tools:scm/jujutsu?expand=0&rev=68
2026-03-05 08:52:07 +00:00
7827012333
Accepting request 1332153 from devel:tools:scm
...
OBS-URL: https://build.opensuse.org/request/show/1332153
OBS-URL: https://build.opensuse.org/package/show/openSUSE:Factory/jujutsu?expand=0&rev=31
2026-02-10 20:12:30 +00:00
1fa5410e97
Accepting request 1332149 from home:ojkastl_buildservice:Branch_devel_tools_scm
...
do not update cargo dependencies in cargo_vendor, as this causes three tests to fail
OBS-URL: https://build.opensuse.org/request/show/1332149
OBS-URL: https://build.opensuse.org/package/show/devel:tools:scm/jujutsu?expand=0&rev=66
2026-02-10 06:09:11 +00:00
c7e523b265
Accepting request 1331545 from devel:tools:scm
...
OBS-URL: https://build.opensuse.org/request/show/1331545
OBS-URL: https://build.opensuse.org/package/show/openSUSE:Factory/jujutsu?expand=0&rev=30
2026-02-06 18:10:17 +00:00
49b48c44b7
Accepting request 1331544 from home:ojkastl_buildservice:Branch_devel_tools_scm
...
update to 0.38.0
OBS-URL: https://build.opensuse.org/request/show/1331544
OBS-URL: https://build.opensuse.org/package/show/devel:tools:scm/jujutsu?expand=0&rev=64
2026-02-06 09:06:29 +00:00
8bc172c1fd
Accepting request 1326725 from devel:tools:scm
...
OBS-URL: https://build.opensuse.org/request/show/1326725
OBS-URL: https://build.opensuse.org/package/show/openSUSE:Factory/jujutsu?expand=0&rev=29
2026-01-13 20:25:29 +00:00
24541d9582
Accepting request 1326724 from home:ojkastl_buildservice:Branch_devel_tools_scm
...
update to 0.37.0
OBS-URL: https://build.opensuse.org/request/show/1326724
OBS-URL: https://build.opensuse.org/package/show/devel:tools:scm/jujutsu?expand=0&rev=62
2026-01-12 09:11:57 +00:00
03b0c9bd92
Accepting request 1321822 from devel:tools:scm
...
update to 0.36.0
OBS-URL: https://build.opensuse.org/request/show/1321822
OBS-URL: https://build.opensuse.org/package/show/openSUSE:Factory/jujutsu?expand=0&rev=28
2025-12-10 14:33:19 +00:00
c4b56d2e87
Accepting request 1321821 from home:ojkastl_buildservice:Branch_devel_tools_scm
...
BuildRequire cargo >= 1.89
OBS-URL: https://build.opensuse.org/request/show/1321821
OBS-URL: https://build.opensuse.org/package/show/devel:tools:scm/jujutsu?expand=0&rev=60
2025-12-09 16:41:33 +00:00
af9a5e0ad9
Accepting request 1321195 from home:mcepl
...
- update to 0.36.0:
* Release highlights
- The documentation has moved from
https://jj-vcs.github.io/jj/ to https://docs.jj-vcs.dev/ .
- Fixed race condition that could cause divergent operations
when running concurrent jj commands in colocated
repositories.
- jj now ignores $PAGER set in the environment and uses `less
-FRX` on most platforms (:builtin on Windows).
* Breaking changes
- In filesets or path patterns, glob matching is enabled by
default.
- In the following commands, string pattern arguments are now
parsed the same way they are in revsets and can be combined
with logical operators: jj bookmark
delete/forget/list/move, jj tag delete/list, jj git
clone/fetch/push
- In the following commands, unmatched bookmark/tag names is
no longer an error. A warning will be printed instead: jj
bookmark delete/forget/move/track/untrack, jj tag delete,
jj git clone/push
- The default string pattern syntax in revsets will be
changed to glob: in a future release. You can opt in to the
new default by setting ui.revsets-use-glob-by-default=true.
- Sub-repos are no longer tracked. Any directory containing
.jj or .git is ignored. Note that Git submodules are
unaffected by this.
* Deprecations
- The --destination/-d arguments for jj rebase, jj split, jj
revert, etc. were renamed to --onto/-o.
- jj describe --edit is deprecated in favor of --editor.
- The config options git.auto-local-bookmark and
git.push-new-bookmarks are deprecated in favor of
remotes.<name>.auto-track-bookmarks. [remotes.origin]
auto-track-bookmarks = "glob:*"
- The flag --allow-new on jj git push is deprecated. In order
to push new bookmarks, please track them with jj bookmark
track.
* New features
- jj commit, jj describe, jj squash, and jj split now accept
--editor, which ensures an editor will be opened with the
commit description even if one was provided via
--message/-m.
- All jj commands show a warning when the provided fileset
expression doesn't match any files.
- Added files() template function to DiffStats. This supports
per-file stats like lines_added() and lines_removed()
- Added join() template function. This is different from
separate() in that it adds a separator between all
arguments, even if empty.
- RepoPath template type now has a absolute() -> String
method that returns the absolute path as a string.
- Added format_path(path) template that controls how file
paths are printed with jj file list.
- New built-in revset aliases visible() and hidden().
- Unquoted * is now allowed in revsets. bookmarks(glob:foo*)
no longer needs quoting.
- jj prev/next --no-edit now generates an error if the
working-copy has some children.
- A new config option remotes.<name>.auto-track-bookmarks can
be set to a string pattern. New bookmarks matching it will
be automatically tracked for the specified remote.
- jj log now supports a --count flag to print the number of
commits instead of displaying them.
* Fixed bugs
- jj fix now prints a warning if a tool failed to run on
a file.
- Shell completion now works with non‑normalized paths,
fixing the previous panic and allowing prefixes containing
. or .. to be completed correctly.
- Shell completion now always uses forward slashes to
complete paths, even on Windows. This renders completion
results viable when using jj in Git Bash.
- Unexpected keyword arguments now return a parse failure for
the coalesce() and concat() templating functions.
- Nushell completion script documentation add -f option, to
keep it up to date.
- Ensured that with Git submodules, remnants of your
submodules do not show up in the working copy after running
jj new.
OBS-URL: https://build.opensuse.org/request/show/1321195
OBS-URL: https://build.opensuse.org/package/show/devel:tools:scm/jujutsu?expand=0&rev=59
2025-12-09 16:16:10 +00:00
29792ec543
Accepting request 1315944 from devel:tools:scm
...
OBS-URL: https://build.opensuse.org/request/show/1315944
OBS-URL: https://build.opensuse.org/package/show/openSUSE:Factory/jujutsu?expand=0&rev=27
2025-11-06 17:14:56 +00:00
cb001b7dfc
Accepting request 1315942 from home:ojkastl_buildservice:Branch_devel_tools_scm
...
update to 0.35.0
OBS-URL: https://build.opensuse.org/request/show/1315942
OBS-URL: https://build.opensuse.org/package/show/devel:tools:scm/jujutsu?expand=0&rev=57
2025-11-06 07:27:04 +00:00
624ac9d791
Accepting request 1308546 from devel:tools:scm
...
OBS-URL: https://build.opensuse.org/request/show/1308546
OBS-URL: https://build.opensuse.org/package/show/openSUSE:Factory/jujutsu?expand=0&rev=26
2025-10-02 17:21:16 +00:00
8127be1282
Accepting request 1308538 from home:ojkastl_buildservice:Branch_devel_tools_scm
...
update to 0.34.0
OBS-URL: https://build.opensuse.org/request/show/1308538
OBS-URL: https://build.opensuse.org/package/show/devel:tools:scm/jujutsu?expand=0&rev=55
2025-10-02 08:42:59 +00:00
17f08cd921
Accepting request 1305661 from devel:tools:scm
...
OBS-URL: https://build.opensuse.org/request/show/1305661
OBS-URL: https://build.opensuse.org/package/show/openSUSE:Factory/jujutsu?expand=0&rev=25
2025-09-18 19:10:56 +00:00
401b915a18
Accepting request 1305658 from home:ojkastl_buildservice:Branch_devel_tools_scm
...
update to 0.33.0
OBS-URL: https://build.opensuse.org/request/show/1305658
OBS-URL: https://build.opensuse.org/package/show/devel:tools:scm/jujutsu?expand=0&rev=53
2025-09-18 06:50:23 +00:00
80b99ff907
Accepting request 1298057 from devel:tools:scm
...
OBS-URL: https://build.opensuse.org/request/show/1298057
OBS-URL: https://build.opensuse.org/package/show/openSUSE:Factory/jujutsu?expand=0&rev=24
2025-08-07 14:49:19 +00:00
91c7c1807c
Accepting request 1298056 from home:ojkastl_buildservice:Branch_devel_tools_scm
...
update to 0.32.0
OBS-URL: https://build.opensuse.org/request/show/1298056
OBS-URL: https://build.opensuse.org/package/show/devel:tools:scm/jujutsu?expand=0&rev=51
2025-08-07 05:50:30 +00:00
a34f5658c5
Accepting request 1290077 from devel:tools:scm
...
OBS-URL: https://build.opensuse.org/request/show/1290077
OBS-URL: https://build.opensuse.org/package/show/openSUSE:Factory/jujutsu?expand=0&rev=23
2025-07-06 15:06:02 +00:00
1de41448e5
Accepting request 1290074 from home:ojkastl_buildservice:Branch_devel_tools_scm
...
update to 0.31.0
OBS-URL: https://build.opensuse.org/request/show/1290074
OBS-URL: https://build.opensuse.org/package/show/devel:tools:scm/jujutsu?expand=0&rev=49
2025-07-03 05:18:24 +00:00
17186dc60b
Accepting request 1283588 from devel:tools:scm
...
OBS-URL: https://build.opensuse.org/request/show/1283588
OBS-URL: https://build.opensuse.org/package/show/openSUSE:Factory/jujutsu?expand=0&rev=22
2025-06-06 20:44:13 +00:00
7aafb4f18c
Accepting request 1283585 from home:ojkastl_buildservice:Branch_devel_tools_scm
...
exclude armv7l that fails due to out of memory
OBS-URL: https://build.opensuse.org/request/show/1283585
OBS-URL: https://build.opensuse.org/package/show/devel:tools:scm/jujutsu?expand=0&rev=47
2025-06-06 09:04:32 +00:00
83eafdff72
Accepting request 1283556 from home:ojkastl_buildservice:Branch_devel_tools_scm
...
update to 0.30.0
OBS-URL: https://build.opensuse.org/request/show/1283556
OBS-URL: https://build.opensuse.org/package/show/devel:tools:scm/jujutsu?expand=0&rev=46
2025-06-06 07:53:47 +00:00
0ff625ab1a
Accepting request 1275358 from devel:tools:scm
...
OBS-URL: https://build.opensuse.org/request/show/1275358
OBS-URL: https://build.opensuse.org/package/show/openSUSE:Factory/jujutsu?expand=0&rev=21
2025-05-08 16:22:39 +00:00
76f4f87262
Accepting request 1275357 from home:ojkastl_buildservice:Branch_devel_tools_scm
...
update to 0.29.0
OBS-URL: https://build.opensuse.org/request/show/1275357
OBS-URL: https://build.opensuse.org/package/show/devel:tools:scm/jujutsu?expand=0&rev=44
2025-05-07 19:55:36 +00:00
c9543a729c
Accepting request 1268021 from devel:tools:scm
...
OBS-URL: https://build.opensuse.org/request/show/1268021
OBS-URL: https://build.opensuse.org/package/show/openSUSE:Factory/jujutsu?expand=0&rev=20
2025-04-10 19:58:23 +00:00
93b347f535
Accepting request 1268015 from home:ojkastl_buildservice:Branch_devel_tools_scm
...
update to 0.28.2 (contains security fix for GHSA-794x-2rpg-rfgr)
OBS-URL: https://build.opensuse.org/request/show/1268015
OBS-URL: https://build.opensuse.org/package/show/devel:tools:scm/jujutsu?expand=0&rev=42
2025-04-09 05:17:27 +00:00
a2703c3147
Accepting request 1250556 from devel:tools:scm
...
OBS-URL: https://build.opensuse.org/request/show/1250556
OBS-URL: https://build.opensuse.org/package/show/openSUSE:Factory/jujutsu?expand=0&rev=19
2025-03-06 13:49:16 +00:00
77ce4a871d
Accepting request 1250555 from home:ojkastl_buildservice:Branch_devel_tools_scm
...
update to 0.27.0
OBS-URL: https://build.opensuse.org/request/show/1250555
OBS-URL: https://build.opensuse.org/package/show/devel:tools:scm/jujutsu?expand=0&rev=40
2025-03-06 06:55:21 +00:00
ec03ab404e
Accepting request 1244224 from devel:tools:scm
...
OBS-URL: https://build.opensuse.org/request/show/1244224
OBS-URL: https://build.opensuse.org/package/show/openSUSE:Factory/jujutsu?expand=0&rev=18
2025-02-09 19:01:06 +00:00
2f74864978
Accepting request 1244223 from home:ojkastl_buildservice:Branch_devel_tools_scm
...
update to 0.26.0
OBS-URL: https://build.opensuse.org/request/show/1244223
OBS-URL: https://build.opensuse.org/package/show/devel:tools:scm/jujutsu?expand=0&rev=38
2025-02-07 17:46:35 +00:00
c70a3fe9df
Accepting request 1234556 from devel:tools:scm
...
OBS-URL: https://build.opensuse.org/request/show/1234556
OBS-URL: https://build.opensuse.org/package/show/openSUSE:Factory/jujutsu?expand=0&rev=17
2025-01-02 18:23:38 +00:00
8618fcae26
Accepting request 1234546 from home:ojkastl_buildservice:Branch_devel_tools_scm
...
update to 0.25.0
OBS-URL: https://build.opensuse.org/request/show/1234546
OBS-URL: https://build.opensuse.org/package/show/devel:tools:scm/jujutsu?expand=0&rev=36
2025-01-02 12:22:23 +00:00
42e164d9ff
Accepting request 1231916 from devel:tools:scm
...
OBS-URL: https://build.opensuse.org/request/show/1231916
OBS-URL: https://build.opensuse.org/package/show/openSUSE:Factory/jujutsu?expand=0&rev=16
2024-12-18 19:11:04 +00:00
b8bcd7b603
Accepting request 1231915 from home:ojkastl_buildservice:Branch_devel_tools_scm
...
add completion subpackages for bash, fish and zsh
OBS-URL: https://build.opensuse.org/request/show/1231915
OBS-URL: https://build.opensuse.org/package/show/devel:tools:scm/jujutsu?expand=0&rev=34
2024-12-18 15:16:22 +00:00
5978a801ee
Accepting request 1228452 from devel:tools:scm
...
OBS-URL: https://build.opensuse.org/request/show/1228452
OBS-URL: https://build.opensuse.org/package/show/openSUSE:Factory/jujutsu?expand=0&rev=15
2024-12-05 16:09:30 +00:00
cf0f5b1bff
Accepting request 1228446 from home:ojkastl_buildservice:Branch_devel_tools_scm
...
update to 0.24.0
OBS-URL: https://build.opensuse.org/request/show/1228446
OBS-URL: https://build.opensuse.org/package/show/devel:tools:scm/jujutsu?expand=0&rev=32
2024-12-05 06:22:53 +00:00
a81e566234
Accepting request 1223680 from devel:tools:scm
...
OBS-URL: https://build.opensuse.org/request/show/1223680
OBS-URL: https://build.opensuse.org/package/show/openSUSE:Factory/jujutsu?expand=0&rev=14
2024-11-12 18:24:13 +00:00
ed7b6f5501
Accepting request 1223679 from home:ojkastl_buildservice:Branch_devel_tools_scm
...
add boo#1230082 to changelog
OBS-URL: https://build.opensuse.org/request/show/1223679
OBS-URL: https://build.opensuse.org/package/show/devel:tools:scm/jujutsu?expand=0&rev=30
2024-11-12 13:13:04 +00:00
54dbd332ef
Accepting request 1223671 from home:ojkastl_buildservice:Branch_devel_tools_scm
...
update to 0.23.0
OBS-URL: https://build.opensuse.org/request/show/1223671
OBS-URL: https://build.opensuse.org/package/show/devel:tools:scm/jujutsu?expand=0&rev=29
2024-11-12 12:57:27 +00:00
567a7243b6
Accepting request 1205699 from devel:tools:scm
...
OBS-URL: https://build.opensuse.org/request/show/1205699
OBS-URL: https://build.opensuse.org/package/show/openSUSE:Factory/jujutsu?expand=0&rev=13
2024-10-07 19:49:15 +00:00
cde0a76b9b
Accepting request 1205697 from home:ojkastl_buildservice:Branch_devel_tools_scm
...
update to 0.22.0
OBS-URL: https://build.opensuse.org/request/show/1205697
OBS-URL: https://build.opensuse.org/package/show/devel:tools:scm/jujutsu?expand=0&rev=27
2024-10-04 13:03:28 +00:00
07fb4184aa
Accepting request 1199788 from devel:tools:scm
...
OBS-URL: https://build.opensuse.org/request/show/1199788
OBS-URL: https://build.opensuse.org/package/show/openSUSE:Factory/jujutsu?expand=0&rev=12
2024-09-10 19:13:48 +00:00
d707d28a01
Accepting request 1199783 from home:ojkastl_buildservice:Branch_devel_tools_scm
...
update to 0.21.0
OBS-URL: https://build.opensuse.org/request/show/1199783
OBS-URL: https://build.opensuse.org/package/show/devel:tools:scm/jujutsu?expand=0&rev=25
2024-09-10 05:44:51 +00:00
9b0c6c0949
Accepting request 1192502 from devel:tools:scm
...
OBS-URL: https://build.opensuse.org/request/show/1192502
OBS-URL: https://build.opensuse.org/package/show/openSUSE:Factory/jujutsu?expand=0&rev=11
2024-08-08 08:58:49 +00:00
053c475b02
Accepting request 1192501 from home:ojkastl_buildservice:Branch_devel_tools_scm
...
update to 0.20.0
OBS-URL: https://build.opensuse.org/request/show/1192501
OBS-URL: https://build.opensuse.org/package/show/devel:tools:scm/jujutsu?expand=0&rev=23
2024-08-08 05:59:49 +00:00
2554c11ff8
Accepting request 1190197 from devel:tools:scm
...
OBS-URL: https://build.opensuse.org/request/show/1190197
OBS-URL: https://build.opensuse.org/package/show/openSUSE:Factory/jujutsu?expand=0&rev=10
2024-07-29 19:52:56 +00:00
a9c6d50f59
Accepting request 1190196 from home:ojkastl_buildservice:Branch_devel_tools_scm
...
update to 0.19.0
OBS-URL: https://build.opensuse.org/request/show/1190196
OBS-URL: https://build.opensuse.org/package/show/devel:tools:scm/jujutsu?expand=0&rev=21
2024-07-29 09:45:16 +00:00
e072f9fd51
Accepting request 1179395 from devel:tools:scm
...
OBS-URL: https://build.opensuse.org/request/show/1179395
OBS-URL: https://build.opensuse.org/package/show/openSUSE:Factory/jujutsu?expand=0&rev=9
2024-06-09 18:22:25 +00:00