Skip to content

Commit e878e69

Browse files
committed
Converts new graph view to another app
1 parent fa763c1 commit e878e69

26 files changed

+481
-104
lines changed

ThirdPartyNotices.txt

Lines changed: 61 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -29,11 +29,13 @@ This project incorporates components from the projects listed below.
2929
24. node-fetch version 2.7.0 (https://github.com/bitinn/node-fetch)
3030
25. os-browserify version 0.3.0 (https://github.com/CoderPuppy/os-browserify)
3131
26. path-browserify version 1.0.1 (https://github.com/browserify/path-browserify)
32-
27. react-dom version 19.0.0 (https://github.com/facebook/react)
33-
28. react version 19.0.0 (https://github.com/facebook/react)
34-
29. signal-utils version 0.21.1 (https://github.com/proposal-signals/signal-utils)
35-
30. slug version 10.0.0 (https://github.com/Trott/slug)
36-
31. sortablejs version 1.15.0 (https://github.com/SortableJS/Sortable)
32+
27. react-dom version 16.14.0 (https://github.com/facebook/react)
33+
28. react-dom version 19.0.0 (https://github.com/facebook/react)
34+
29. react version 16.14.0 (https://github.com/facebook/react)
35+
30. react version 19.0.0 (https://github.com/facebook/react)
36+
31. signal-utils version 0.21.1 (https://github.com/proposal-signals/signal-utils)
37+
32. slug version 10.0.0 (https://github.com/Trott/slug)
38+
33. sortablejs version 1.15.0 (https://github.com/SortableJS/Sortable)
3739

3840
%% @gk-nzaytsev/fast-string-truncated-width NOTICES AND INFORMATION BEGIN HERE
3941
=========================================
@@ -2260,6 +2262,33 @@ END OF path-browserify NOTICES AND INFORMATION
22602262
=========================================
22612263
MIT License
22622264

2265+
Copyright (c) Facebook, Inc. and its affiliates.
2266+
2267+
Permission is hereby granted, free of charge, to any person obtaining a copy
2268+
of this software and associated documentation files (the "Software"), to deal
2269+
in the Software without restriction, including without limitation the rights
2270+
to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
2271+
copies of the Software, and to permit persons to whom the Software is
2272+
furnished to do so, subject to the following conditions:
2273+
2274+
The above copyright notice and this permission notice shall be included in all
2275+
copies or substantial portions of the Software.
2276+
2277+
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
2278+
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
2279+
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
2280+
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
2281+
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
2282+
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
2283+
SOFTWARE.
2284+
2285+
=========================================
2286+
END OF react-dom NOTICES AND INFORMATION
2287+
2288+
%% react-dom NOTICES AND INFORMATION BEGIN HERE
2289+
=========================================
2290+
MIT License
2291+
22632292
Copyright (c) Meta Platforms, Inc. and affiliates.
22642293

22652294
Permission is hereby granted, free of charge, to any person obtaining a copy
@@ -2287,6 +2316,33 @@ END OF react-dom NOTICES AND INFORMATION
22872316
=========================================
22882317
MIT License
22892318

2319+
Copyright (c) Facebook, Inc. and its affiliates.
2320+
2321+
Permission is hereby granted, free of charge, to any person obtaining a copy
2322+
of this software and associated documentation files (the "Software"), to deal
2323+
in the Software without restriction, including without limitation the rights
2324+
to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
2325+
copies of the Software, and to permit persons to whom the Software is
2326+
furnished to do so, subject to the following conditions:
2327+
2328+
The above copyright notice and this permission notice shall be included in all
2329+
copies or substantial portions of the Software.
2330+
2331+
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
2332+
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
2333+
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
2334+
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
2335+
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
2336+
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
2337+
SOFTWARE.
2338+
2339+
=========================================
2340+
END OF react NOTICES AND INFORMATION
2341+
2342+
%% react NOTICES AND INFORMATION BEGIN HERE
2343+
=========================================
2344+
MIT License
2345+
22902346
Copyright (c) Meta Platforms, Inc. and affiliates.
22912347

22922348
Permission is hereby granted, free of charge, to any person obtaining a copy

docs/telemetry-events.md

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -919,6 +919,7 @@ or
919919
'context.config.dateStyle': 'absolute' | 'relative',
920920
'context.config.defaultItemLimit': number,
921921
'context.config.dimMergeCommits': boolean,
922+
'context.config.experimental.renderer.enabled': boolean,
922923
'context.config.highlightRowsOnRefHover': boolean,
923924
'context.config.issues.enabled': boolean,
924925
'context.config.layout': 'editor' | 'panel',

package.json

Lines changed: 20 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -1057,6 +1057,16 @@
10571057
"scope": "window",
10581058
"order": 300
10591059
},
1060+
"gitlens.graph.experimental.renderer.enabled": {
1061+
"type": "boolean",
1062+
"default": false,
1063+
"markdownDescription": "(Experimental) Specifies whether to use the new renderer for the _Commit Graph_",
1064+
"scope": "window",
1065+
"order": 301,
1066+
"tags": [
1067+
"experimental"
1068+
]
1069+
},
10601070
"gitlens.graph.branchesVisibility": {
10611071
"type": "string",
10621072
"enum": [
@@ -20311,7 +20321,8 @@
2031120321
"vscode:prepublish": "pnpm run bundle"
2031220322
},
2031320323
"dependencies": {
20314-
"@gitkraken/gitkraken-components": "11.0.0-vnext.3",
20324+
"@gitkraken/gitkraken-components": "10.7.0",
20325+
"@gitkraken/gitkraken-components-next": "npm:@gitkraken/[email protected]",
2031520326
"@gitkraken/provider-apis": "0.26.2",
2031620327
"@gitkraken/shared-web-components": "0.1.1-rc.15",
2031720328
"@gk-nzaytsev/fast-string-truncated-width": "1.1.0",
@@ -20339,8 +20350,10 @@
2033920350
"node-fetch": "2.7.0",
2034020351
"os-browserify": "0.3.0",
2034120352
"path-browserify": "1.0.1",
20342-
"react": "19.0.0",
20343-
"react-dom": "19.0.0",
20353+
"react": "16.14.0",
20354+
"react-dom": "16.14.0",
20355+
"react-next": "npm:[email protected]",
20356+
"react-dom-next": "npm:[email protected]",
2034420357
"signal-utils": "0.21.1",
2034520358
"slug": "10.0.0",
2034620359
"sortablejs": "1.15.0"
@@ -20353,8 +20366,10 @@
2035320366
"@twbs/fantasticon": "3.0.0",
2035420367
"@types/mocha": "10.0.10",
2035520368
"@types/node": "20.14.15",
20356-
"@types/react": "19.0.6",
20357-
"@types/react-dom": "19.0.3",
20369+
"@types/react": "17.0.83",
20370+
"@types/react-next": "npm:@types/[email protected]",
20371+
"@types/react-dom": "17.0.25",
20372+
"@types/react-dom-next": "npm:@types/[email protected]",
2035820373
"@types/sinon": "17.0.4",
2035920374
"@types/slug": "5.0.9",
2036020375
"@types/sortablejs": "1.15.8",

0 commit comments

Comments
 (0)