-
Notifications
You must be signed in to change notification settings - Fork 70
Expand file tree
/
Copy pathindex.yaml
More file actions
13703 lines (13703 loc) · 464 KB
/
index.yaml
File metadata and controls
13703 lines (13703 loc) · 464 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
apiVersion: v1
entries:
neo4j:
- apiVersion: v1
appVersion: 2026.02.3
created: "2026-03-23T12:50:38.624805187Z"
description: Neo4j is the world's leading graph database
digest: 54f1940be8058ac6f1a1543a19474882b8ef7475b112d1bb8e649eb3294b7816
home: https://www.neo4j.com
icon: http://info.neo4j.com/rs/773-GON-065/images/neo4j_logo.png
keywords:
- graph
- database
- cypher
maintainers:
- email: bledi.feshti@neotechnology.com
name: bfeshti
- email: rigert.alekaj@neo4j.com
name: Rigert Alekaj
name: neo4j
sources:
- https://github.com/neo4j/neo4j
- https://github.com/neo4j/docker-neo4j
urls:
- https://github.com/neo4j/helm-charts/releases/download/2026.2.3/neo4j-2026.2.3.tgz
version: 2026.2.3
- apiVersion: v1
appVersion: 2026.02.2
created: "2026-03-13T10:22:24.13181885Z"
description: Neo4j is the world's leading graph database
digest: e48aadc5c4cf9002c52e9624a8696c0d0d2ac4a2602d3bdb2463db28b44a4517
home: https://www.neo4j.com
icon: http://info.neo4j.com/rs/773-GON-065/images/neo4j_logo.png
keywords:
- graph
- database
- cypher
maintainers:
- email: bledi.feshti@neotechnology.com
name: bfeshti
- email: rigert.alekaj@neo4j.com
name: Rigert Alekaj
name: neo4j
sources:
- https://github.com/neo4j/neo4j
- https://github.com/neo4j/docker-neo4j
urls:
- https://github.com/neo4j/helm-charts/releases/download/2026.2.2/neo4j-2026.2.2.tgz
version: 2026.2.2
- apiVersion: v1
appVersion: 2026.01.4
created: "2026-02-11T16:17:06.985845077Z"
description: Neo4j is the world's leading graph database
digest: 57834a8c4180e5a68b1fc64e97e5577686bd22f3e7c869751bc6196d9f5084c4
home: https://www.neo4j.com
icon: http://info.neo4j.com/rs/773-GON-065/images/neo4j_logo.png
keywords:
- graph
- database
- cypher
maintainers:
- email: bledi.feshti@neotechnology.com
name: bfeshti
- email: rigert.alekaj@neo4j.com
name: Rigert Alekaj
name: neo4j
sources:
- https://github.com/neo4j/neo4j
- https://github.com/neo4j/docker-neo4j
urls:
- https://github.com/neo4j/helm-charts/releases/download/2026.1.4/neo4j-2026.1.4.tgz
version: 2026.1.4
- apiVersion: v1
appVersion: 2026.01.3
created: "2026-02-05T16:08:17.71193773Z"
description: Neo4j is the world's leading graph database
digest: 51521e4faa58315bfe232950eb729780326a60f375eec195e77a01970cd74def
home: https://www.neo4j.com
icon: http://info.neo4j.com/rs/773-GON-065/images/neo4j_logo.png
keywords:
- graph
- database
- cypher
maintainers:
- email: bledi.feshti@neotechnology.com
name: bfeshti
- email: rigert.alekaj@neo4j.com
name: Rigert Alekaj
name: neo4j
sources:
- https://github.com/neo4j/neo4j
- https://github.com/neo4j/docker-neo4j
urls:
- https://github.com/neo4j/helm-charts/releases/download/2026.1.3/neo4j-2026.1.3.tgz
version: 2026.1.3
- apiVersion: v1
appVersion: 2026.01.3
created: "2026-02-10T08:54:05.367177296Z"
description: Neo4j is the world's leading graph database
digest: a3c02b3c7481ceb77b43d2a3b1bd7ce6f217acfea2fc3fdb87d091353ad45977
home: https://www.neo4j.com
icon: http://info.neo4j.com/rs/773-GON-065/images/neo4j_logo.png
keywords:
- graph
- database
- cypher
maintainers:
- email: bledi.feshti@neotechnology.com
name: bfeshti
- email: rigert.alekaj@neo4j.com
name: Rigert Alekaj
name: neo4j
sources:
- https://github.com/neo4j/neo4j
- https://github.com/neo4j/docker-neo4j
urls:
- https://github.com/neo4j/helm-charts/releases/download/2026.1.3-1/neo4j-2026.1.3-1.tgz
version: 2026.1.3-1
- apiVersion: v1
appVersion: 2025.12.1
created: "2026-01-21T09:13:21.507497615Z"
description: Neo4j is the world's leading graph database
digest: 450bb476284a7de56357a3edf6d88be000460b51a32a679f33c280d58f41f62d
home: https://www.neo4j.com
icon: http://info.neo4j.com/rs/773-GON-065/images/neo4j_logo.png
keywords:
- graph
- database
- cypher
maintainers:
- email: bledi.feshti@neotechnology.com
name: bfeshti
- email: rigert.alekaj@neo4j.com
name: Rigert Alekaj
name: neo4j
sources:
- https://github.com/neo4j/neo4j
- https://github.com/neo4j/docker-neo4j
urls:
- https://github.com/neo4j/helm-charts/releases/download/2025.12.1/neo4j-2025.12.1.tgz
version: 2025.12.1
- apiVersion: v1
appVersion: 2025.11.2
created: "2026-01-09T08:30:03.621040686Z"
description: Neo4j is the world's leading graph database
digest: 2350afe738e04fc1adf074a97c517f2219a7240d5ec9ec709fb7be34f0711c0f
home: https://www.neo4j.com
icon: http://info.neo4j.com/rs/773-GON-065/images/neo4j_logo.png
keywords:
- graph
- database
- cypher
maintainers:
- email: bledi.feshti@neotechnology.com
name: bfeshti
- email: rigert.alekaj@neo4j.com
name: Rigert Alekaj
name: neo4j
sources:
- https://github.com/neo4j/neo4j
- https://github.com/neo4j/docker-neo4j
urls:
- https://github.com/neo4j/helm-charts/releases/download/2025.11.2/neo4j-2025.11.2.tgz
version: 2025.11.2
- apiVersion: v1
appVersion: 2025.10.1
created: "2025-11-03T09:17:47.418435634Z"
description: Neo4j is the world's leading graph database
digest: 1b484738bb231b23edbae468e0ff0bfff99f3926d6bc63f4add76d2ec79061fb
home: https://www.neo4j.com
icon: http://info.neo4j.com/rs/773-GON-065/images/neo4j_logo.png
keywords:
- graph
- database
- cypher
maintainers:
- email: bledi.feshti@neotechnology.com
name: bfeshti
- email: rigert.alekaj@neo4j.com
name: Rigert Alekaj
name: neo4j
sources:
- https://github.com/neo4j/neo4j
- https://github.com/neo4j/docker-neo4j
urls:
- https://github.com/neo4j/helm-charts/releases/download/2025.10.1/neo4j-2025.10.1.tgz
version: 2025.10.1
- apiVersion: v1
appVersion: 2025.10.1
created: "2025-12-01T08:12:47.557518336Z"
description: Neo4j is the world's leading graph database
digest: 2bb6839ac295a4a9621282814770e1f2e495eb35f1270aea54d1dc4f0cadda09
home: https://www.neo4j.com
icon: http://info.neo4j.com/rs/773-GON-065/images/neo4j_logo.png
keywords:
- graph
- database
- cypher
maintainers:
- email: bledi.feshti@neotechnology.com
name: bfeshti
- email: rigert.alekaj@neo4j.com
name: Rigert Alekaj
name: neo4j
sources:
- https://github.com/neo4j/neo4j
- https://github.com/neo4j/docker-neo4j
urls:
- https://github.com/neo4j/helm-charts/releases/download/2025.10.1-4/neo4j-2025.10.1-4.tgz
version: 2025.10.1-4
- apiVersion: v1
appVersion: 2025.10.1
created: "2025-11-25T08:19:06.819210867Z"
description: Neo4j is the world's leading graph database
digest: e67df34d39f3944df1c9f0414623c6c067feb55ddd1395b6a4de88221fdda41d
home: https://www.neo4j.com
icon: http://info.neo4j.com/rs/773-GON-065/images/neo4j_logo.png
keywords:
- graph
- database
- cypher
maintainers:
- email: bledi.feshti@neotechnology.com
name: bfeshti
- email: rigert.alekaj@neo4j.com
name: Rigert Alekaj
name: neo4j
sources:
- https://github.com/neo4j/neo4j
- https://github.com/neo4j/docker-neo4j
urls:
- https://github.com/neo4j/helm-charts/releases/download/2025.10.1-3/neo4j-2025.10.1-3.tgz
version: 2025.10.1-3
- apiVersion: v1
appVersion: 2025.10.1
created: "2025-11-19T20:15:53.128201839Z"
description: Neo4j is the world's leading graph database
digest: 0a00bc752c11c4537991cf29a7d53858c84f42a9b267647447368aa8548f1546
home: https://www.neo4j.com
icon: http://info.neo4j.com/rs/773-GON-065/images/neo4j_logo.png
keywords:
- graph
- database
- cypher
maintainers:
- email: bledi.feshti@neotechnology.com
name: bfeshti
- email: rigert.alekaj@neo4j.com
name: Rigert Alekaj
name: neo4j
sources:
- https://github.com/neo4j/neo4j
- https://github.com/neo4j/docker-neo4j
urls:
- https://github.com/neo4j/helm-charts/releases/download/2025.10.1-2/neo4j-2025.10.1-2.tgz
version: 2025.10.1-2
- apiVersion: v1
appVersion: 2025.10.1
created: "2025-11-13T11:18:10.078582505Z"
description: Neo4j is the world's leading graph database
digest: 79a71caa6b8cafd2f243226cd93b783ca893339feec1123378c9f7852ea8fb58
home: https://www.neo4j.com
icon: http://info.neo4j.com/rs/773-GON-065/images/neo4j_logo.png
keywords:
- graph
- database
- cypher
maintainers:
- email: bledi.feshti@neotechnology.com
name: bfeshti
- email: rigert.alekaj@neo4j.com
name: Rigert Alekaj
name: neo4j
sources:
- https://github.com/neo4j/neo4j
- https://github.com/neo4j/docker-neo4j
urls:
- https://github.com/neo4j/helm-charts/releases/download/2025.10.1-1/neo4j-2025.10.1-1.tgz
version: 2025.10.1-1
- apiVersion: v1
appVersion: 2025.09.0
created: "2025-09-30T17:46:02.816481335Z"
description: Neo4j is the world's leading graph database
digest: ab6e30f3d399f40572bd999639e4e83b4b518b230c04422a361480e6231ce9ac
home: https://www.neo4j.com
icon: http://info.neo4j.com/rs/773-GON-065/images/neo4j_logo.png
keywords:
- graph
- database
- cypher
maintainers:
- email: bledi.feshti@neotechnology.com
name: bfeshti
- email: rigert.alekaj@neo4j.com
name: Rigert Alekaj
name: neo4j
sources:
- https://github.com/neo4j/neo4j
- https://github.com/neo4j/docker-neo4j
urls:
- https://github.com/neo4j/helm-charts/releases/download/2025.9.0/neo4j-2025.9.0.tgz
version: 2025.9.0
- apiVersion: v1
appVersion: 2025.08.0
created: "2025-09-15T09:18:45.9308684Z"
description: Neo4j is the world's leading graph database
digest: d46b3ffb972c1c7eccd23fcfc3633724293b8dfa708e06a39157bf25d7d963c6
home: https://www.neo4j.com
icon: http://info.neo4j.com/rs/773-GON-065/images/neo4j_logo.png
keywords:
- graph
- database
- cypher
maintainers:
- email: bledi.feshti@neotechnology.com
name: bfeshti
- email: rigert.alekaj@neo4j.com
name: Rigert Alekaj
name: neo4j
sources:
- https://github.com/neo4j/neo4j
- https://github.com/neo4j/docker-neo4j
urls:
- https://github.com/neo4j/helm-charts/releases/download/2025.8.0/neo4j-2025.8.0.tgz
version: 2025.8.0
- apiVersion: v1
appVersion: 2025.07.1
created: "2025-08-22T14:18:48.395046427Z"
description: Neo4j is the world's leading graph database
digest: 12517038f952f9a1379adf10c7f3e5abae25d3077612b8535e3b173690502325
home: https://www.neo4j.com
icon: http://info.neo4j.com/rs/773-GON-065/images/neo4j_logo.png
keywords:
- graph
- database
- cypher
maintainers:
- email: bledi.feshti@neotechnology.com
name: bfeshti
- email: rigert.alekaj@neo4j.com
name: Rigert Alekaj
name: neo4j
sources:
- https://github.com/neo4j/neo4j
- https://github.com/neo4j/docker-neo4j
urls:
- https://github.com/neo4j/helm-charts/releases/download/2025.7.2/neo4j-2025.7.2.tgz
version: 2025.7.2
- apiVersion: v1
appVersion: 2025.07.1
created: "2025-08-06T10:13:16.827045374Z"
description: Neo4j is the world's leading graph database
digest: 36e0a74d12aafd7eeb8054a5d665e22fb599af0155ba9eef3e879e3527c0f1b2
home: https://www.neo4j.com
icon: http://info.neo4j.com/rs/773-GON-065/images/neo4j_logo.png
keywords:
- graph
- database
- cypher
maintainers:
- email: bledi.feshti@neotechnology.com
name: bfeshti
- email: rigert.alekaj@neo4j.com
name: Rigert Alekaj
name: neo4j
sources:
- https://github.com/neo4j/neo4j
- https://github.com/neo4j/docker-neo4j
urls:
- https://github.com/neo4j/helm-charts/releases/download/2025.7.1/neo4j-2025.7.1.tgz
version: 2025.7.1
- apiVersion: v1
appVersion: 2025.06.2
created: "2025-07-15T07:14:44.995687444Z"
description: Neo4j is the world's leading graph database
digest: a601523f2b9e014357cc0eca785cb2a7e78d65e32d76a5224fa432dd66b6e246
home: https://www.neo4j.com
icon: http://info.neo4j.com/rs/773-GON-065/images/neo4j_logo.png
keywords:
- graph
- database
- cypher
maintainers:
- email: bledi.feshti@neotechnology.com
name: bfeshti
- email: rigert.alekaj@neo4j.com
name: Rigert Alekaj
name: neo4j
sources:
- https://github.com/neo4j/neo4j
- https://github.com/neo4j/docker-neo4j
urls:
- https://github.com/neo4j/helm-charts/releases/download/2025.6.2/neo4j-2025.6.2.tgz
version: 2025.6.2
- apiVersion: v1
appVersion: 2025.06.0
created: "2025-07-08T21:38:30.787599376Z"
description: Neo4j is the world's leading graph database
digest: 982863ffcd06d620ff628b0f71db453a0391e68a02c8ea51b87977128c01e022
home: https://www.neo4j.com
icon: http://info.neo4j.com/rs/773-GON-065/images/neo4j_logo.png
keywords:
- graph
- database
- cypher
maintainers:
- email: bledi.feshti@neotechnology.com
name: bfeshti
- email: rigert.alekaj@neo4j.com
name: Rigert Alekaj
name: neo4j
sources:
- https://github.com/neo4j/neo4j
- https://github.com/neo4j/docker-neo4j
urls:
- https://github.com/neo4j/helm-charts/releases/download/2025.6.0/neo4j-2025.6.0.tgz
version: 2025.6.0
- apiVersion: v1
appVersion: 2025.05.0
created: "2025-06-10T13:40:32.641886482Z"
description: Neo4j is the world's leading graph database
digest: b610c0c2f699dff40ee3681a5c69d39e9e7b3a7144d77e068d82cdd07a9b33d7
home: https://www.neo4j.com
icon: http://info.neo4j.com/rs/773-GON-065/images/neo4j_logo.png
keywords:
- graph
- database
- cypher
maintainers:
- email: bledi.feshti@neotechnology.com
name: bfeshti
- email: rigert.alekaj@neo4j.com
name: Rigert Alekaj
name: neo4j
sources:
- https://github.com/neo4j/neo4j
- https://github.com/neo4j/docker-neo4j
urls:
- https://github.com/neo4j/helm-charts/releases/download/2025.5.0/neo4j-2025.5.0.tgz
version: 2025.5.0
- apiVersion: v1
appVersion: 2025.04.0
created: "2025-05-06T12:24:22.680172492Z"
description: Neo4j is the world's leading graph database
digest: 11b2a86114894fbac23c0866e90e7ac10b2dcaec0d69f34396e400e9121e5f59
home: https://www.neo4j.com
icon: http://info.neo4j.com/rs/773-GON-065/images/neo4j_logo.png
keywords:
- graph
- database
- cypher
maintainers:
- email: bledi.feshti@neotechnology.com
name: bfeshti
- email: rigert.alekaj@neo4j.com
name: Rigert Alekaj
name: neo4j
sources:
- https://github.com/neo4j/neo4j
- https://github.com/neo4j/docker-neo4j
urls:
- https://github.com/neo4j/helm-charts/releases/download/2025.4.0/neo4j-2025.4.0.tgz
version: 2025.4.0
- apiVersion: v1
appVersion: 2025.03.0
created: "2025-03-28T10:13:06.266133915Z"
description: Neo4j is the world's leading graph database
digest: b03a783e09ccb3bc630677e7d6361ceaa52d2658f84cc44ed4f129160dcf5d5b
home: https://www.neo4j.com
icon: http://info.neo4j.com/rs/773-GON-065/images/neo4j_logo.png
keywords:
- graph
- database
- cypher
maintainers:
- email: bledi.feshti@neotechnology.com
name: bfeshti
- email: rigert.alekaj@neo4j.com
name: Rigert Alekaj
name: neo4j
sources:
- https://github.com/neo4j/neo4j
- https://github.com/neo4j/docker-neo4j
urls:
- https://github.com/neo4j/helm-charts/releases/download/2025.3.0/neo4j-2025.3.0.tgz
version: 2025.3.0
- apiVersion: v1
appVersion: 2025.02.0
created: "2025-03-03T16:24:53.683124098Z"
description: Neo4j is the world's leading graph database
digest: ead6569f5b4abd5580661aa15b0ae5a1409f3fa24ad2f3e86436b5daed04f403
home: https://www.neo4j.com
icon: http://info.neo4j.com/rs/773-GON-065/images/neo4j_logo.png
keywords:
- graph
- database
- cypher
maintainers:
- email: bledi.feshti@neotechnology.com
name: bfeshti
name: neo4j
sources:
- https://github.com/neo4j/neo4j
- https://github.com/neo4j/docker-neo4j
urls:
- https://github.com/neo4j/helm-charts/releases/download/2025.2.0/neo4j-2025.2.0.tgz
version: 2025.2.0
- apiVersion: v1
appVersion: 5.26.23
created: "2026-03-23T12:04:58.458544174Z"
description: Neo4j is the world's leading graph database
digest: fe3e979c0dd7a33243c7d86636f5fa0c7b9a42ce007730079a5540bd9e91ed9e
home: https://www.neo4j.com
icon: http://info.neo4j.com/rs/773-GON-065/images/neo4j_logo.png
keywords:
- graph
- database
- cypher
maintainers:
- email: bledi.feshti@neotechnology.com
name: bfeshti
- email: rigert.alekaj@neo4j.com
name: Rigert Alekaj
name: neo4j
sources:
- https://github.com/neo4j/neo4j
- https://github.com/neo4j/docker-neo4j
urls:
- https://github.com/neo4j/helm-charts/releases/download/5.26.23/neo4j-5.26.23.tgz
version: 5.26.23
- apiVersion: v1
appVersion: 5.26.22
created: "2026-03-13T14:42:35.184585378Z"
description: Neo4j is the world's leading graph database
digest: 31c3ead73190f4b2bbdf0a9dcfd62283fe5a9034e81ac8c193e2e14dce5c92df
home: https://www.neo4j.com
icon: http://info.neo4j.com/rs/773-GON-065/images/neo4j_logo.png
keywords:
- graph
- database
- cypher
maintainers:
- email: bledi.feshti@neotechnology.com
name: bfeshti
- email: rigert.alekaj@neo4j.com
name: Rigert Alekaj
name: neo4j
sources:
- https://github.com/neo4j/neo4j
- https://github.com/neo4j/docker-neo4j
urls:
- https://github.com/neo4j/helm-charts/releases/download/5.26.22/neo4j-5.26.22.tgz
version: 5.26.22
- apiVersion: v1
appVersion: 5.26.21
created: "2026-02-05T20:26:51.854317497Z"
description: Neo4j is the world's leading graph database
digest: e442b8bd787d10cd173fcc4197b0f0b5ef3298033094eaa39ae6886f8240dec6
home: https://www.neo4j.com
icon: http://info.neo4j.com/rs/773-GON-065/images/neo4j_logo.png
keywords:
- graph
- database
- cypher
maintainers:
- email: bledi.feshti@neotechnology.com
name: bfeshti
- email: rigert.alekaj@neo4j.com
name: Rigert Alekaj
name: neo4j
sources:
- https://github.com/neo4j/neo4j
- https://github.com/neo4j/docker-neo4j
urls:
- https://github.com/neo4j/helm-charts/releases/download/5.26.21/neo4j-5.26.21.tgz
version: 5.26.21
- apiVersion: v1
appVersion: 5.26.19
created: "2026-01-09T08:15:05.396120141Z"
description: Neo4j is the world's leading graph database
digest: 1a09f6b6128c68d40e561de23d8d47b0504f6ced5b3c6c0322edbb9894f1ff70
home: https://www.neo4j.com
icon: http://info.neo4j.com/rs/773-GON-065/images/neo4j_logo.png
keywords:
- graph
- database
- cypher
maintainers:
- email: bledi.feshti@neotechnology.com
name: bfeshti
- email: rigert.alekaj@neo4j.com
name: Rigert Alekaj
name: neo4j
sources:
- https://github.com/neo4j/neo4j
- https://github.com/neo4j/docker-neo4j
urls:
- https://github.com/neo4j/helm-charts/releases/download/5.26.19/neo4j-5.26.19.tgz
version: 5.26.19
- apiVersion: v1
appVersion: 5.26.18
created: "2025-12-08T09:13:12.853833778Z"
description: Neo4j is the world's leading graph database
digest: ac65600ca103dc715fb066238676a5c3bdc8ae9e2306e98cfb7bda4ac9a6954f
home: https://www.neo4j.com
icon: http://info.neo4j.com/rs/773-GON-065/images/neo4j_logo.png
keywords:
- graph
- database
- cypher
maintainers:
- email: bledi.feshti@neotechnology.com
name: bfeshti
- email: rigert.alekaj@neo4j.com
name: Rigert Alekaj
name: neo4j
sources:
- https://github.com/neo4j/neo4j
- https://github.com/neo4j/docker-neo4j
urls:
- https://github.com/neo4j/helm-charts/releases/download/5.26.18/neo4j-5.26.18.tgz
version: 5.26.18
- apiVersion: v1
appVersion: 5.26.17
created: "2025-11-24T12:59:02.996872866Z"
description: Neo4j is the world's leading graph database
digest: 25e28a0fc71bfa1bd03ad8c45f1b6c1adc95792ee6729dc6d90368a82ffb0914
home: https://www.neo4j.com
icon: http://info.neo4j.com/rs/773-GON-065/images/neo4j_logo.png
keywords:
- graph
- database
- cypher
maintainers:
- email: bledi.feshti@neotechnology.com
name: bfeshti
- email: rigert.alekaj@neo4j.com
name: Rigert Alekaj
name: neo4j
sources:
- https://github.com/neo4j/neo4j
- https://github.com/neo4j/docker-neo4j
urls:
- https://github.com/neo4j/helm-charts/releases/download/5.26.17/neo4j-5.26.17.tgz
version: 5.26.17
- apiVersion: v1
appVersion: 5.26.16
created: "2025-11-06T12:41:41.455697957Z"
description: Neo4j is the world's leading graph database
digest: c3892c8b2cbd8c6d3b65e1f6cb4c52f1d9ab562ef4032fc00419bd40aba537c2
home: https://www.neo4j.com
icon: http://info.neo4j.com/rs/773-GON-065/images/neo4j_logo.png
keywords:
- graph
- database
- cypher
maintainers:
- email: bledi.feshti@neotechnology.com
name: bfeshti
- email: rigert.alekaj@neo4j.com
name: Rigert Alekaj
name: neo4j
sources:
- https://github.com/neo4j/neo4j
- https://github.com/neo4j/docker-neo4j
urls:
- https://github.com/neo4j/helm-charts/releases/download/5.26.16/neo4j-5.26.16.tgz
version: 5.26.16
- apiVersion: v1
appVersion: 5.26.15
created: "2025-11-03T09:45:38.558732789Z"
description: Neo4j is the world's leading graph database
digest: 1150800a6d446a582760cfc441fe57296c0b405a6246585978d3e24eb96bde3f
home: https://www.neo4j.com
icon: http://info.neo4j.com/rs/773-GON-065/images/neo4j_logo.png
keywords:
- graph
- database
- cypher
maintainers:
- email: bledi.feshti@neotechnology.com
name: bfeshti
- email: rigert.alekaj@neo4j.com
name: Rigert Alekaj
name: neo4j
sources:
- https://github.com/neo4j/neo4j
- https://github.com/neo4j/docker-neo4j
urls:
- https://github.com/neo4j/helm-charts/releases/download/5.26.15/neo4j-5.26.15.tgz
version: 5.26.15
- apiVersion: v1
appVersion: 5.26.14
created: "2025-10-21T07:04:46.027050262Z"
description: Neo4j is the world's leading graph database
digest: b7cb42871ac9623a64026e3453811aa1db3477cfbbba3fc06a7a10d498c8f9d1
home: https://www.neo4j.com
icon: http://info.neo4j.com/rs/773-GON-065/images/neo4j_logo.png
keywords:
- graph
- database
- cypher
maintainers:
- email: bledi.feshti@neotechnology.com
name: bfeshti
- email: rigert.alekaj@neo4j.com
name: Rigert Alekaj
name: neo4j
sources:
- https://github.com/neo4j/neo4j
- https://github.com/neo4j/docker-neo4j
urls:
- https://github.com/neo4j/helm-charts/releases/download/5.26.14/neo4j-5.26.14.tgz
version: 5.26.14
- apiVersion: v1
appVersion: 5.26.13
created: "2025-10-15T15:53:56.647542296Z"
description: Neo4j is the world's leading graph database
digest: f2f073781a663b83ce1d232f2bd852e2e94fcabdcc46540c5ea9ba205b1fe5df
home: https://www.neo4j.com
icon: http://info.neo4j.com/rs/773-GON-065/images/neo4j_logo.png
keywords:
- graph
- database
- cypher
maintainers:
- email: bledi.feshti@neotechnology.com
name: bfeshti
- email: rigert.alekaj@neo4j.com
name: Rigert Alekaj
name: neo4j
sources:
- https://github.com/neo4j/neo4j
- https://github.com/neo4j/docker-neo4j
urls:
- https://github.com/neo4j/helm-charts/releases/download/5.26.13/neo4j-5.26.13.tgz
version: 5.26.13
- apiVersion: v1
appVersion: 5.26.11
created: "2025-08-28T08:06:23.864160524Z"
description: Neo4j is the world's leading graph database
digest: b57bddf471166af63a3e7f7731b51c9fbf46b1205d4cf09250e2740e21656551
home: https://www.neo4j.com
icon: http://info.neo4j.com/rs/773-GON-065/images/neo4j_logo.png
keywords:
- graph
- database
- cypher
maintainers:
- email: bledi.feshti@neotechnology.com
name: bfeshti
- email: rigert.alekaj@neo4j.com
name: Rigert Alekaj
name: neo4j
sources:
- https://github.com/neo4j/neo4j
- https://github.com/neo4j/docker-neo4j
urls:
- https://github.com/neo4j/helm-charts/releases/download/5.26.12/neo4j-5.26.12.tgz
version: 5.26.12
- apiVersion: v1
appVersion: 5.26.10
created: "2025-08-27T14:27:56.738965072Z"
description: Neo4j is the world's leading graph database
digest: 1cad1ee7b9f7ca7d402d4bdb56fb016bb6205e3ad0fadb3f187e8a124182136b
home: https://www.neo4j.com
icon: http://info.neo4j.com/rs/773-GON-065/images/neo4j_logo.png
keywords:
- graph
- database
- cypher
maintainers:
- email: bledi.feshti@neotechnology.com
name: bfeshti
- email: rigert.alekaj@neo4j.com
name: Rigert Alekaj
name: neo4j
sources:
- https://github.com/neo4j/neo4j
- https://github.com/neo4j/docker-neo4j
urls:
- https://github.com/neo4j/helm-charts/releases/download/5.26.11/neo4j-5.26.11.tgz
version: 5.26.11
- apiVersion: v1
appVersion: 5.26.10
created: "2025-08-05T08:35:45.14069708Z"
description: Neo4j is the world's leading graph database
digest: 72ea5373f06b122386b97f170a402293ebc6b6e27bdd69b718219c41cde56e87
home: https://www.neo4j.com
icon: http://info.neo4j.com/rs/773-GON-065/images/neo4j_logo.png
keywords:
- graph
- database
- cypher
maintainers:
- email: bledi.feshti@neotechnology.com
name: bfeshti
- email: rigert.alekaj@neo4j.com
name: Rigert Alekaj
name: neo4j
sources:
- https://github.com/neo4j/neo4j
- https://github.com/neo4j/docker-neo4j
urls:
- https://github.com/neo4j/helm-charts/releases/download/5.26.10/neo4j-5.26.10.tgz
version: 5.26.10
- apiVersion: v1
appVersion: 5.26.9
created: "2025-07-15T18:32:21.108722167Z"
description: Neo4j is the world's leading graph database
digest: ded751f4dd21620343114918cd51be40ac1d0cd6ebbc3e027b21f5cc0fd0bc23
home: https://www.neo4j.com
icon: http://info.neo4j.com/rs/773-GON-065/images/neo4j_logo.png
keywords:
- graph
- database
- cypher
maintainers:
- email: bledi.feshti@neotechnology.com
name: bfeshti
- email: rigert.alekaj@neo4j.com
name: Rigert Alekaj
name: neo4j
sources:
- https://github.com/neo4j/neo4j
- https://github.com/neo4j/docker-neo4j
urls:
- https://github.com/neo4j/helm-charts/releases/download/5.26.9/neo4j-5.26.9.tgz
version: 5.26.9
- apiVersion: v1
appVersion: 5.26.8
created: "2025-06-10T15:52:47.769076604Z"
description: Neo4j is the world's leading graph database
digest: 297871b3a5cb5ebbe42bd9cb9120511e8fae776276fee711b0520c4230411b89
home: https://www.neo4j.com
icon: http://info.neo4j.com/rs/773-GON-065/images/neo4j_logo.png
keywords:
- graph
- database
- cypher
maintainers:
- email: bledi.feshti@neotechnology.com
name: bfeshti
- email: rigert.alekaj@neo4j.com
name: Rigert Alekaj
name: neo4j
sources:
- https://github.com/neo4j/neo4j
- https://github.com/neo4j/docker-neo4j
urls:
- https://github.com/neo4j/helm-charts/releases/download/5.26.8/neo4j-5.26.8.tgz
version: 5.26.8
- apiVersion: v1
appVersion: 5.26.7
created: "2025-05-28T09:11:45.146299764Z"
description: Neo4j is the world's leading graph database
digest: 41d75c51e8f6277a396fdfa25be5fb8be92427fdfd585171bb51df2c14772bdf
home: https://www.neo4j.com
icon: http://info.neo4j.com/rs/773-GON-065/images/neo4j_logo.png
keywords:
- graph
- database
- cypher
maintainers:
- email: bledi.feshti@neotechnology.com
name: bfeshti
- email: rigert.alekaj@neo4j.com
name: Rigert Alekaj
name: neo4j
sources:
- https://github.com/neo4j/neo4j
- https://github.com/neo4j/docker-neo4j
urls:
- https://github.com/neo4j/helm-charts/releases/download/5.26.7/neo4j-5.26.7.tgz
version: 5.26.7
- apiVersion: v1
appVersion: 5.26.6
created: "2025-05-08T07:53:45.273429334Z"
description: Neo4j is the world's leading graph database
digest: 34dec726c4bfbf930d15f53f125b54892f1fac8ed21395ca5e62de017396fa0c
home: https://www.neo4j.com
icon: http://info.neo4j.com/rs/773-GON-065/images/neo4j_logo.png
keywords:
- graph
- database
- cypher
maintainers:
- email: bledi.feshti@neotechnology.com
name: bfeshti
- email: rigert.alekaj@neo4j.com
name: Rigert Alekaj
name: neo4j
sources:
- https://github.com/neo4j/neo4j
- https://github.com/neo4j/docker-neo4j
urls:
- https://github.com/neo4j/helm-charts/releases/download/5.26.6/neo4j-5.26.6.tgz
version: 5.26.6
- apiVersion: v1
appVersion: 5.26.5
created: "2025-04-07T10:47:01.240011016Z"
description: Neo4j is the world's leading graph database
digest: b811c264b8d54faca961c5a766c43c2ad34586ed1ec8ad0bc36ec9d4eced2401
home: https://www.neo4j.com
icon: http://info.neo4j.com/rs/773-GON-065/images/neo4j_logo.png
keywords:
- graph
- database
- cypher
maintainers:
- email: bledi.feshti@neotechnology.com
name: bfeshti
- email: rigert.alekaj@neo4j.com
name: Rigert Alekaj
name: neo4j
sources:
- https://github.com/neo4j/neo4j
- https://github.com/neo4j/docker-neo4j
urls:
- https://github.com/neo4j/helm-charts/releases/download/5.26.5/neo4j-5.26.5.tgz
version: 5.26.5
- apiVersion: v1
appVersion: 5.26.4
created: "2025-03-12T12:28:32.315414383Z"
description: Neo4j is the world's leading graph database
digest: 6b8e88be2bfbff3105b8fa5b0ffbfb62cfed39af591aed69ae1c50f6ec180898
home: https://www.neo4j.com
icon: http://info.neo4j.com/rs/773-GON-065/images/neo4j_logo.png
keywords:
- graph
- database
- cypher
maintainers:
- email: bledi.feshti@neotechnology.com
name: bfeshti
name: neo4j
sources:
- https://github.com/neo4j/neo4j
- https://github.com/neo4j/docker-neo4j
urls:
- https://github.com/neo4j/helm-charts/releases/download/5.26.4/neo4j-5.26.4.tgz
version: 5.26.4
- apiVersion: v1
appVersion: 5.26.3
created: "2025-02-27T14:30:00Z"
description: Neo4j is the world's leading graph database
digest: 24c49c6bb705bc5fa10d86bcbc09236315316a71a105222feabb2fffbb5f6304
home: https://www.neo4j.com
icon: http://info.neo4j.com/rs/773-GON-065/images/neo4j_logo.png
keywords:
- graph
- database
- cypher
maintainers:
- email: bledi.feshti@neotechnology.com
name: bfeshti
name: neo4j
sources:
- https://github.com/neo4j/neo4j
- https://github.com/neo4j/docker-neo4j
urls:
- https://github.com/neo4j/helm-charts/releases/download/5.26.3/neo4j-5.26.3.tgz
version: 5.26.3
- apiVersion: v1
appVersion: 5.26.2
created: "2025-02-10T09:22:01.9901345Z"
description: Neo4j is the world's leading graph database
digest: f76847b198dfe80997ff6975ac8cfd45d058b876d9d67583c17f72eeb984ede2
home: https://www.neo4j.com
icon: http://info.neo4j.com/rs/773-GON-065/images/neo4j_logo.png
keywords:
- graph
- database
- cypher
maintainers:
- email: bledi.feshti@neotechnology.com
name: bfeshti
name: neo4j
sources:
- https://github.com/neo4j/neo4j
- https://github.com/neo4j/docker-neo4j
urls:
- https://github.com/neo4j/helm-charts/releases/download/5.26.2/neo4j-5.26.2.tgz
version: 5.26.2
- apiVersion: v1
appVersion: 5.26.1
created: "2025-01-23T10:12:26.575904368Z"
description: Neo4j is the world's leading graph database
digest: 4fe129dc3f246179d1f16499c59bc16e37caf704cc6f18c1a1d655b840ef02a4
home: https://www.neo4j.com
icon: http://info.neo4j.com/rs/773-GON-065/images/neo4j_logo.png
keywords:
- graph
- database
- cypher
maintainers:
- email: bledi.feshti@neotechnology.com
name: bfeshti
name: neo4j
sources: