forked from neo4j/helm-charts
-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.yaml
6500 lines (6500 loc) · 224 KB
/
index.yaml
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: 5.24.1
created: "2024-10-07T07:20:53.755133076Z"
description: Neo4j is the world's leading graph database
digest: c38f6f31bb97a0625524179fe1c980c5d0877ac45cacace60d887856f6e0a667
home: https://www.neo4j.com
icon: http://info.neo4j.com/rs/773-GON-065/images/neo4j_logo.png
keywords:
- graph
- database
- cypher
maintainers:
- email: [email protected]
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.24.1/neo4j-5.24.1.tgz
version: 5.24.1
- apiVersion: v1
appVersion: "5.23"
created: "2024-08-27T08:59:27.981474442Z"
description: Neo4j is the world's leading graph database
digest: 9ef86160909ac0c7f43bf9beb3211d8104943312b485260d063c404a2ef7e1e4
home: https://www.neo4j.com
icon: http://info.neo4j.com/rs/773-GON-065/images/neo4j_logo.png
keywords:
- graph
- database
- cypher
maintainers:
- email: [email protected]
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.23/neo4j-5.23.tgz
version: "5.23"
- apiVersion: v1
appVersion: 5.22.0
created: "2024-08-05T09:48:37.676902061Z"
description: Neo4j is the world's leading graph database
digest: aa8becda43730e313035883fe771825e6c23c2196a4288b901eae738d94f199a
home: https://www.neo4j.com
icon: http://info.neo4j.com/rs/773-GON-065/images/neo4j_logo.png
keywords:
- graph
- database
- cypher
maintainers:
- email: [email protected]
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.22.0/neo4j-5.22.0.tgz
version: 5.22.0
- apiVersion: v1
appVersion: 5.21.2
created: "2024-07-16T11:02:43.090267347Z"
description: Neo4j is the world's leading graph database
digest: c4024dd8cc428abac33c9f35c0429f6384e644aa909974ed8b7c9ddce1cd9811
home: https://www.neo4j.com
icon: http://info.neo4j.com/rs/773-GON-065/images/neo4j_logo.png
keywords:
- graph
- database
- cypher
maintainers:
- email: [email protected]
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.21.2/neo4j-5.21.2.tgz
version: 5.21.2
- apiVersion: v1
appVersion: 5.21.0
created: "2024-07-09T09:36:55.09205726Z"
description: Neo4j is the world's leading graph database
digest: 0bfd76ed8f229363b7c0cf50ba8cbd60335aee95af834bb8bac8b8c43886275b
home: https://www.neo4j.com
icon: http://info.neo4j.com/rs/773-GON-065/images/neo4j_logo.png
keywords:
- graph
- database
- cypher
maintainers:
- email: [email protected]
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.21.0/neo4j-5.21.0.tgz
version: 5.21.0
- apiVersion: v1
appVersion: 5.20.0
created: "2024-06-12T15:24:07.022298777Z"
description: Neo4j is the world's leading graph database
digest: 42dafb60e02a353bdf83205701dc1aaf26d80bf8862aa2aa7b14fcd0552526fb
home: https://www.neo4j.com
icon: http://info.neo4j.com/rs/773-GON-065/images/neo4j_logo.png
keywords:
- graph
- database
- cypher
maintainers:
- email: [email protected]
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.20.0/neo4j-5.20.0.tgz
version: 5.20.0
- apiVersion: v1
appVersion: 5.19.0
created: "2024-04-18T17:32:06.132303826Z"
description: Neo4j is the world's leading graph database
digest: 32628f23f35224e3a97c67f0bd61601a204e5e75c9309726368385f9b92c600e
home: https://www.neo4j.com
icon: http://info.neo4j.com/rs/773-GON-065/images/neo4j_logo.png
keywords:
- graph
- database
- cypher
maintainers:
- email: [email protected]
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.19.0/neo4j-5.19.0.tgz
version: 5.19.0
- apiVersion: v1
appVersion: 5.18.1
created: "2024-04-03T14:40:53.986260376Z"
description: Neo4j is the world's leading graph database
digest: 3bda1c47ea82f037d0b28b527aa9cfd293896e89566b8532a2137bc58b4b8624
home: https://www.neo4j.com
icon: http://info.neo4j.com/rs/773-GON-065/images/neo4j_logo.png
keywords:
- graph
- database
- cypher
maintainers:
- email: [email protected]
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.18.1/neo4j-5.18.1.tgz
version: 5.18.1
- apiVersion: v1
appVersion: 5.17.0
created: "2024-02-29T11:41:23.996185188Z"
description: Neo4j is the world's leading graph database
digest: 2e4013e444a6e988b44b9059ebdeb028564f7c7e385dfa6c681482d66d9a2eb6
home: https://www.neo4j.com
icon: http://info.neo4j.com/rs/773-GON-065/images/neo4j_logo.png
keywords:
- graph
- database
- cypher
maintainers:
- email: [email protected]
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.17.0/neo4j-5.17.0.tgz
version: 5.17.0
- apiVersion: v1
appVersion: 5.16.0
created: "2024-02-01T12:29:54.275268705Z"
description: Neo4j is the world's leading graph database
digest: cb651e7ccc2aed2ed312a4956757f03bea836d3d30c0c21ba1f1d88dc9385008
home: https://www.neo4j.com
icon: http://info.neo4j.com/rs/773-GON-065/images/neo4j_logo.png
keywords:
- graph
- database
- cypher
maintainers:
- email: [email protected]
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.16.0/neo4j-5.16.0.tgz
version: 5.16.0
- apiVersion: v1
appVersion: 5.15.0
created: "2024-01-10T19:48:10.891378482Z"
description: Neo4j is the world's leading graph database
digest: 874112fa54d8de6229d67ee184719e2806fe367459aa233cf88afdc706da824b
home: https://www.neo4j.com
icon: http://info.neo4j.com/rs/773-GON-065/images/neo4j_logo.png
keywords:
- graph
- database
- cypher
maintainers:
- email: [email protected]
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.15.0/neo4j-5.15.0.tgz
version: 5.15.0
- apiVersion: v1
appVersion: 5.14.0
created: "2023-12-05T09:11:10.010381693Z"
description: Neo4j is the world's leading graph database
digest: eff7f4bb309d56ac258d6c66b458e1480853bff89fa06f0e378a7f99f7dd4535
home: https://www.neo4j.com
icon: http://info.neo4j.com/rs/773-GON-065/images/neo4j_logo.png
keywords:
- graph
- database
- cypher
maintainers:
- email: [email protected]
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.14.0/neo4j-5.14.0.tgz
version: 5.14.0
- apiVersion: v1
appVersion: 5.13.0
created: "2023-10-24T19:32:31.390965587Z"
description: Neo4j is the world's leading graph database
digest: dc011e9352cf562b79584c01d62d1c1677b921f7b297663033b0c08e5129550b
home: https://www.neo4j.com
icon: http://info.neo4j.com/rs/773-GON-065/images/neo4j_logo.png
keywords:
- graph
- database
- cypher
maintainers:
- email: [email protected]
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.13.0/neo4j-5.13.0.tgz
version: 5.13.0
- apiVersion: v1
appVersion: 5.12.0
created: "2023-09-25T21:16:00.565257247Z"
description: Neo4j is the world's leading graph database
digest: 2e32fc239fcbe20023f427d19f230593302561b69f4383ef7dd3c9bf6c172848
home: https://www.neo4j.com
icon: http://info.neo4j.com/rs/773-GON-065/images/neo4j_logo.png
keywords:
- graph
- database
- cypher
maintainers:
- email: [email protected]
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.12.0/neo4j-5.12.0.tgz
version: 5.12.0
- apiVersion: v1
appVersion: 5.11.0
created: "2023-09-06T10:57:55.15377254Z"
description: Neo4j is the world's leading graph database
digest: fce260786fd173d6d489f90370032995a1cf3abe234e5e6be2fbefbbe59ab6c2
home: https://www.neo4j.com
icon: http://info.neo4j.com/rs/773-GON-065/images/neo4j_logo.png
keywords:
- graph
- database
- cypher
maintainers:
- email: [email protected]
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.11.0/neo4j-5.11.0.tgz
version: 5.11.0
- apiVersion: v1
appVersion: 5.10.0
created: "2023-07-28T13:27:49.378560687Z"
description: Neo4j is the world's leading graph database
digest: 7128ca64e5077cec3a5dd83ebba830e465b6dc3eee1b6f04cd118d0e399c04d2
home: https://www.neo4j.com
icon: http://info.neo4j.com/rs/773-GON-065/images/neo4j_logo.png
keywords:
- graph
- database
- cypher
maintainers:
- email: [email protected]
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.10.0/neo4j-5.10.0.tgz
version: 5.10.0
- apiVersion: v1
appVersion: 5.9.0
created: "2023-06-16T17:18:42.083959957Z"
description: Neo4j is the world's leading graph database
digest: ff16de497774fd08559fc8571016ee0acb6fede00ba1a47b66eb178a4e7839d0
home: https://www.neo4j.com
icon: http://info.neo4j.com/rs/773-GON-065/images/neo4j_logo.png
keywords:
- graph
- database
- cypher
maintainers:
- email: [email protected]
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.9.0/neo4j-5.9.0.tgz
version: 5.9.0
- apiVersion: v1
appVersion: 5.8.0
created: "2023-06-15T10:34:54.023136727Z"
description: Neo4j is the world's leading graph database
digest: 86e68d15cfa5f987437cef60a0206ac7cc52ec2c5ec751e3e1ac7beca177e416
home: https://www.neo4j.com
icon: http://info.neo4j.com/rs/773-GON-065/images/neo4j_logo.png
keywords:
- graph
- database
- cypher
maintainers:
- email: [email protected]
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.8.0/neo4j-5.8.0.tgz
version: 5.8.0
- apiVersion: v1
appVersion: 5.7.0
created: "2023-04-25T14:19:49.151006758Z"
description: Neo4j is the world's leading graph database
digest: 38ca9f87c0f0a35bccc00b1f7c18b638fe85f277e0feea73364859d039cd1675
home: https://www.neo4j.com
icon: http://info.neo4j.com/rs/773-GON-065/images/neo4j_logo.png
keywords:
- graph
- database
- cypher
maintainers:
- email: [email protected]
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.7.0/neo4j-5.7.0.tgz
version: 5.7.0
- apiVersion: v1
appVersion: 5.6.0
created: "2023-04-03T10:27:21.151599683Z"
description: Neo4j is the world's leading graph database
digest: 16f16cde35f5a07c348d44006e1776652ebdaf4f2bdfc73ac9b3d6a3dddff519
home: https://www.neo4j.com
icon: http://info.neo4j.com/rs/773-GON-065/images/neo4j_logo.png
keywords:
- graph
- database
- cypher
maintainers:
- email: [email protected]
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.6.0/neo4j-5.6.0.tgz
version: 5.6.0
- apiVersion: v1
appVersion: 5.5.0
created: "2023-02-20T21:45:49.662355Z"
description: Neo4j is the world's leading graph database
digest: d592ace1a0412bcca4b3cb7916359198a056f547da7e691a2e3e218f24950c03
home: https://www.neo4j.com
icon: http://info.neo4j.com/rs/773-GON-065/images/neo4j_logo.png
keywords:
- graph
- database
- cypher
maintainers:
- email: [email protected]
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.5.0/neo4j-5.5.0.tgz
version: 5.5.0
- apiVersion: v1
appVersion: 5.4.0
created: "2023-01-31T09:18:46.94205Z"
description: Neo4j is the world's leading graph database
digest: a9e1fdbeee42a318466079436a99d5f7269743289cb0a1a839b8178a8ce2a60a
home: https://www.neo4j.com
icon: http://info.neo4j.com/rs/773-GON-065/images/neo4j_logo.png
keywords:
- graph
- database
- cypher
maintainers:
- email: [email protected]
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.4.0/neo4j-5.4.0.tgz
version: 5.4.0
- apiVersion: v1
appVersion: 5.3.0
created: "2022-12-21T13:36:20.498795Z"
description: Neo4j is the world's leading graph database
digest: dbe687256467e9661319b4282c1d6d017ffe786ef6b06816cde82f4c813d01b5
home: https://www.neo4j.com
icon: http://info.neo4j.com/rs/773-GON-065/images/neo4j_logo.png
keywords:
- graph
- database
- cypher
maintainers:
- email: [email protected]
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.3.0/neo4j-5.3.0.tgz
version: 5.3.0
- apiVersion: v1
appVersion: 5.2.0
created: "2022-11-22T11:37:30.838527Z"
description: Neo4j is the world's leading graph database
digest: 7e7b78e9158b2b531b4d97daf5f09ba41b3fcaa9c6e5fee1063fef5d6418c9ee
home: https://www.neo4j.com
icon: http://info.neo4j.com/rs/773-GON-065/images/neo4j_logo.png
keywords:
- graph
- database
- cypher
maintainers:
- email: [email protected]
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.2.0/neo4j-5.2.0.tgz
version: 5.2.0
- apiVersion: v1
created: "2022-11-11T15:02:01.879563Z"
description: Neo4j 5.1.1
digest: 8bb4aea4b9483813344be17d996563b164378bf6b259ef0aeb3f41862bc4c087
home: https://github.com/neo4j/helm-charts
name: neo4j
sources:
- https://github.com/neo4j/helm-charts/tree/5.1/neo4j
urls:
- https://github.com/neo4j/helm-charts/releases/download/5.1.1/neo4j-5.1.1.tgz
version: 5.1.1
- apiVersion: v1
created: "2022-11-09T15:53:01.189063Z"
description: Neo4j 5.1.0
digest: 21c989a31aa158a5ee583165c2a67b7148fa980d59e17743fefbd84aa00da5b8
home: https://github.com/neo4j/helm-charts
name: neo4j
sources:
- https://github.com/neo4j/helm-charts/tree/5.1/neo4j
urls:
- https://github.com/neo4j/helm-charts/releases/download/5.1.0/neo4j-5.1.0.tgz
version: 5.1.0
neo4j-admin:
- apiVersion: v1
appVersion: 5.24.1
created: "2024-10-07T07:20:53.755962535Z"
description: Neo4j is the world's leading graph database
digest: 263743eb79975088931a070d5d596ba6cd2246cf8ca7c0cbdd9d0f1895cd1824
home: https://www.neo4j.com
icon: http://info.neo4j.com/rs/773-GON-065/images/neo4j_logo.png
keywords:
- graph
- database
- cypher
maintainers:
- email: [email protected]
name: bfeshti
name: neo4j-admin
sources:
- https://github.com/neo4j/neo4j
- https://github.com/neo4j/docker-neo4j
urls:
- https://github.com/neo4j/helm-charts/releases/download/5.24.1/neo4j-admin-5.24.1.tgz
version: 5.24.1
- apiVersion: v1
appVersion: "5.23"
created: "2024-08-27T08:59:27.982526487Z"
description: Neo4j is the world's leading graph database
digest: 3ec4d23fdc53896b365b2d7950f20aab8f93fa9bcc96822ba93cf1efbe4d590c
home: https://www.neo4j.com
icon: http://info.neo4j.com/rs/773-GON-065/images/neo4j_logo.png
keywords:
- graph
- database
- cypher
maintainers:
- email: [email protected]
name: bfeshti
name: neo4j-admin
sources:
- https://github.com/neo4j/neo4j
- https://github.com/neo4j/docker-neo4j
urls:
- https://github.com/neo4j/helm-charts/releases/download/5.23/neo4j-admin-5.23.tgz
version: "5.23"
- apiVersion: v1
appVersion: 5.22.0
created: "2024-08-05T09:48:37.677757263Z"
description: Neo4j is the world's leading graph database
digest: e8d010725e6de6d414bac7a9cf416900da7c118d0a15701191eeb166d6c2cde2
home: https://www.neo4j.com
icon: http://info.neo4j.com/rs/773-GON-065/images/neo4j_logo.png
keywords:
- graph
- database
- cypher
maintainers:
- email: [email protected]
name: bfeshti
name: neo4j-admin
sources:
- https://github.com/neo4j/neo4j
- https://github.com/neo4j/docker-neo4j
urls:
- https://github.com/neo4j/helm-charts/releases/download/5.22.0/neo4j-admin-5.22.0.tgz
version: 5.22.0
- apiVersion: v1
appVersion: 5.21.2
created: "2024-07-16T11:02:43.091309336Z"
description: Neo4j is the world's leading graph database
digest: 8da19ea7f2f2a7449255d14df7c5dce0b508471448a77a54a668968f47a68f68
home: https://www.neo4j.com
icon: http://info.neo4j.com/rs/773-GON-065/images/neo4j_logo.png
keywords:
- graph
- database
- cypher
maintainers:
- email: [email protected]
name: bfeshti
name: neo4j-admin
sources:
- https://github.com/neo4j/neo4j
- https://github.com/neo4j/docker-neo4j
urls:
- https://github.com/neo4j/helm-charts/releases/download/5.21.2/neo4j-admin-5.21.2.tgz
version: 5.21.2
- apiVersion: v1
appVersion: 5.21.0
created: "2024-07-09T09:36:55.093056018Z"
description: Neo4j is the world's leading graph database
digest: fa61073f9afbae62f6df84cb58a6498115609c30061b99b3412f308ab5eb6a60
home: https://www.neo4j.com
icon: http://info.neo4j.com/rs/773-GON-065/images/neo4j_logo.png
keywords:
- graph
- database
- cypher
maintainers:
- email: [email protected]
name: bfeshti
name: neo4j-admin
sources:
- https://github.com/neo4j/neo4j
- https://github.com/neo4j/docker-neo4j
urls:
- https://github.com/neo4j/helm-charts/releases/download/5.21.0/neo4j-admin-5.21.0.tgz
version: 5.21.0
- apiVersion: v1
appVersion: 5.20.0
created: "2024-06-12T15:24:07.023283928Z"
description: Neo4j is the world's leading graph database
digest: 5555a97c4d14bbd78690183a383138880ccb19f5e6abcf597e8eda7c9190e424
home: https://www.neo4j.com
icon: http://info.neo4j.com/rs/773-GON-065/images/neo4j_logo.png
keywords:
- graph
- database
- cypher
maintainers:
- email: [email protected]
name: bfeshti
name: neo4j-admin
sources:
- https://github.com/neo4j/neo4j
- https://github.com/neo4j/docker-neo4j
urls:
- https://github.com/neo4j/helm-charts/releases/download/5.20.0/neo4j-admin-5.20.0.tgz
version: 5.20.0
- apiVersion: v1
appVersion: 5.19.0
created: "2024-04-18T17:32:06.13314397Z"
description: Neo4j is the world's leading graph database
digest: 6035181bae6083d475e8f5fc9857093f314e06f2caf1ddecf1bb0f1d666ef53c
home: https://www.neo4j.com
icon: http://info.neo4j.com/rs/773-GON-065/images/neo4j_logo.png
keywords:
- graph
- database
- cypher
maintainers:
- email: [email protected]
name: bfeshti
name: neo4j-admin
sources:
- https://github.com/neo4j/neo4j
- https://github.com/neo4j/docker-neo4j
urls:
- https://github.com/neo4j/helm-charts/releases/download/5.19.0/neo4j-admin-5.19.0.tgz
version: 5.19.0
- apiVersion: v1
appVersion: 5.18.1
created: "2024-04-03T14:40:53.987278898Z"
description: Neo4j is the world's leading graph database
digest: 882541c7de8215c94f888cb76e65df600d83ac7daa47c993eb165b4ab3dc6015
home: https://www.neo4j.com
icon: http://info.neo4j.com/rs/773-GON-065/images/neo4j_logo.png
keywords:
- graph
- database
- cypher
maintainers:
- email: [email protected]
name: bfeshti
name: neo4j-admin
sources:
- https://github.com/neo4j/neo4j
- https://github.com/neo4j/docker-neo4j
urls:
- https://github.com/neo4j/helm-charts/releases/download/5.18.1/neo4j-admin-5.18.1.tgz
version: 5.18.1
- apiVersion: v1
appVersion: 5.17.0
created: "2024-02-29T11:41:23.997681203Z"
description: Neo4j is the world's leading graph database
digest: eea0ebb20acadca09d67e6365458684a7c89bafee9ce9db4c06c1346a592efda
home: https://www.neo4j.com
icon: http://info.neo4j.com/rs/773-GON-065/images/neo4j_logo.png
keywords:
- graph
- database
- cypher
maintainers:
- email: [email protected]
name: bfeshti
name: neo4j-admin
sources:
- https://github.com/neo4j/neo4j
- https://github.com/neo4j/docker-neo4j
urls:
- https://github.com/neo4j/helm-charts/releases/download/5.17.0/neo4j-admin-5.17.0.tgz
version: 5.17.0
- apiVersion: v1
appVersion: 5.16.0
created: "2024-02-01T12:29:54.27669232Z"
description: Neo4j is the world's leading graph database
digest: 5688f6b739c55094725089eeaeda44db34fffa39fbe06f36eeaba7153bdb953c
home: https://www.neo4j.com
icon: http://info.neo4j.com/rs/773-GON-065/images/neo4j_logo.png
keywords:
- graph
- database
- cypher
maintainers:
- email: [email protected]
name: bfeshti
name: neo4j-admin
sources:
- https://github.com/neo4j/neo4j
- https://github.com/neo4j/docker-neo4j
urls:
- https://github.com/neo4j/helm-charts/releases/download/5.16.0/neo4j-admin-5.16.0.tgz
version: 5.16.0
- apiVersion: v1
appVersion: 5.15.0
created: "2024-01-10T19:48:10.892431569Z"
description: Neo4j is the world's leading graph database
digest: 909a333d6a662080cc10ef871ed8f6181f2bcf4c0f452d522e3eeabc9e22e3a5
home: https://www.neo4j.com
icon: http://info.neo4j.com/rs/773-GON-065/images/neo4j_logo.png
keywords:
- graph
- database
- cypher
maintainers:
- email: [email protected]
name: bfeshti
name: neo4j-admin
sources:
- https://github.com/neo4j/neo4j
- https://github.com/neo4j/docker-neo4j
urls:
- https://github.com/neo4j/helm-charts/releases/download/5.15.0/neo4j-admin-5.15.0.tgz
version: 5.15.0
- apiVersion: v1
appVersion: 5.14.0
created: "2023-12-05T09:11:10.011370851Z"
description: Neo4j is the world's leading graph database
digest: a6bb855cd3f807b8532c3023da886b4a7c6f3de23c1893a845164f37aa015d02
home: https://www.neo4j.com
icon: http://info.neo4j.com/rs/773-GON-065/images/neo4j_logo.png
keywords:
- graph
- database
- cypher
maintainers:
- email: [email protected]
name: bfeshti
name: neo4j-admin
sources:
- https://github.com/neo4j/neo4j
- https://github.com/neo4j/docker-neo4j
urls:
- https://github.com/neo4j/helm-charts/releases/download/5.14.0/neo4j-admin-5.14.0.tgz
version: 5.14.0
- apiVersion: v1
appVersion: 5.13.0
created: "2023-10-24T19:32:31.392031305Z"
description: Neo4j is the world's leading graph database
digest: 67ac053603170d38fe479dd784068726c794d6de0306e06806cbeddec1012304
home: https://www.neo4j.com
icon: http://info.neo4j.com/rs/773-GON-065/images/neo4j_logo.png
keywords:
- graph
- database
- cypher
maintainers:
- email: [email protected]
name: bfeshti
name: neo4j-admin
sources:
- https://github.com/neo4j/neo4j
- https://github.com/neo4j/docker-neo4j
urls:
- https://github.com/neo4j/helm-charts/releases/download/5.13.0/neo4j-admin-5.13.0.tgz
version: 5.13.0
- apiVersion: v1
appVersion: 5.12.0
created: "2023-09-25T21:16:00.566204179Z"
description: Neo4j is the world's leading graph database
digest: d830762c78675da86d0252af164ee8cddcb1558eb98304a92e1d14adc3ecd6b0
home: https://www.neo4j.com
icon: http://info.neo4j.com/rs/773-GON-065/images/neo4j_logo.png
keywords:
- graph
- database
- cypher
maintainers:
- email: [email protected]
name: bfeshti
name: neo4j-admin
sources:
- https://github.com/neo4j/neo4j
- https://github.com/neo4j/docker-neo4j
urls:
- https://github.com/neo4j/helm-charts/releases/download/5.12.0/neo4j-admin-5.12.0.tgz
version: 5.12.0
- apiVersion: v1
appVersion: 5.11.0
created: "2023-09-06T10:57:55.154719501Z"
description: Neo4j is the world's leading graph database
digest: 3a76249c5b0649b3d2e45f7acc2cc2fc99de4eea6c1b641b2ab59d33658a1dab
home: https://www.neo4j.com
icon: http://info.neo4j.com/rs/773-GON-065/images/neo4j_logo.png
keywords:
- graph
- database
- cypher
maintainers:
- email: [email protected]
name: bfeshti
name: neo4j-admin
sources:
- https://github.com/neo4j/neo4j
- https://github.com/neo4j/docker-neo4j
urls:
- https://github.com/neo4j/helm-charts/releases/download/5.11.0/neo4j-admin-5.11.0.tgz
version: 5.11.0
- apiVersion: v1
appVersion: 5.10.0
created: "2023-07-28T13:27:49.380369817Z"
description: Neo4j is the world's leading graph database
digest: f1a6141280553ba2c0ce64192846b3ab3172281c1ca199ff1d2d27e2cc672e44
home: https://www.neo4j.com
icon: http://info.neo4j.com/rs/773-GON-065/images/neo4j_logo.png
keywords:
- graph
- database
- cypher
maintainers:
- email: [email protected]
name: bfeshti
name: neo4j-admin
sources:
- https://github.com/neo4j/neo4j
- https://github.com/neo4j/docker-neo4j
urls:
- https://github.com/neo4j/helm-charts/releases/download/5.10.0/neo4j-admin-5.10.0.tgz
version: 5.10.0
- apiVersion: v1
appVersion: 5.9.0
created: "2023-06-16T17:18:42.085288232Z"
description: Neo4j is the world's leading graph database
digest: 36f7cf48c0492ebd3ddf611f3646a14d321aea6c58647fbe5d8ab9b11ed49dd1
home: https://www.neo4j.com
icon: http://info.neo4j.com/rs/773-GON-065/images/neo4j_logo.png
keywords:
- graph
- database
- cypher
maintainers:
- email: [email protected]
name: bfeshti
name: neo4j-admin
sources:
- https://github.com/neo4j/neo4j
- https://github.com/neo4j/docker-neo4j
urls:
- https://github.com/neo4j/helm-charts/releases/download/5.9.0/neo4j-admin-5.9.0.tgz
version: 5.9.0
- apiVersion: v1
appVersion: 5.8.0
created: "2023-06-15T10:34:54.024452325Z"
description: Neo4j is the world's leading graph database
digest: 763097f15de187d65ea327269dd2bc8ed50a9a13830b97a4fa4c62f0ab5c996e
home: https://www.neo4j.com
icon: http://info.neo4j.com/rs/773-GON-065/images/neo4j_logo.png
keywords:
- graph
- database
- cypher
maintainers:
- email: [email protected]
name: bfeshti
name: neo4j-admin
sources:
- https://github.com/neo4j/neo4j
- https://github.com/neo4j/docker-neo4j
urls:
- https://github.com/neo4j/helm-charts/releases/download/5.8.0/neo4j-admin-5.8.0.tgz
version: 5.8.0
- apiVersion: v1
appVersion: 4.4.35
created: "2024-07-08T15:34:49.361556916Z"
description: Neo4j is the world's leading graph database
digest: cc3da2b09310f5888ef7ee7eda073dcfb32170f1428ea91fa9496e0f5a0e8e5e
home: https://www.neo4j.com
icon: http://info.neo4j.com/rs/773-GON-065/images/neo4j_logo.png
keywords:
- graph
- database
- cypher
maintainers:
- email: [email protected]
name: bfeshti
name: neo4j-admin
sources:
- https://github.com/neo4j/neo4j
- https://github.com/neo4j/docker-neo4j
urls:
- https://github.com/neo4j/helm-charts/releases/download/4.4.35/neo4j-admin-4.4.35.tgz
version: 4.4.35
- apiVersion: v1
appVersion: 4.4.34
created: "2024-06-27T10:04:52.617656873Z"
description: Neo4j is the world's leading graph database
digest: 3a9fa3243caba43bf4119966b218e3075b9829ea485858c80ba7bf6c8fada32a
home: https://www.neo4j.com
icon: http://info.neo4j.com/rs/773-GON-065/images/neo4j_logo.png
keywords:
- graph
- database
- cypher
maintainers:
- email: [email protected]
name: bfeshti
name: neo4j-admin
sources:
- https://github.com/neo4j/neo4j
- https://github.com/neo4j/docker-neo4j
urls:
- https://github.com/neo4j/helm-charts/releases/download/4.4.34/neo4j-admin-4.4.34.tgz
version: 4.4.34
- apiVersion: v1
appVersion: 4.4.33
created: "2024-04-26T09:25:49.239719672Z"
description: Neo4j is the world's leading graph database
digest: 6b7e350c58583afc7793093185fce522b63ef4dff0d856ce6356c6ef6f8be66a
home: https://www.neo4j.com
icon: http://info.neo4j.com/rs/773-GON-065/images/neo4j_logo.png
keywords:
- graph
- database
- cypher
maintainers:
- email: [email protected]
name: bfeshti
name: neo4j-admin
sources:
- https://github.com/neo4j/neo4j
- https://github.com/neo4j/docker-neo4j
urls:
- https://github.com/neo4j/helm-charts/releases/download/4.4.33/neo4j-admin-4.4.33.tgz
version: 4.4.33
- apiVersion: v1
appVersion: 4.4.32
created: "2024-04-06T13:09:08.107905762Z"
description: Neo4j is the world's leading graph database
digest: 8238c7bc6faacc22093db280c26687734d7d5726083203440f044ead9b76bace
home: https://www.neo4j.com
icon: http://info.neo4j.com/rs/773-GON-065/images/neo4j_logo.png
keywords:
- graph
- database
- cypher
maintainers:
- email: [email protected]
name: bfeshti
name: neo4j-admin
sources:
- https://github.com/neo4j/neo4j
- https://github.com/neo4j/docker-neo4j
urls:
- https://github.com/neo4j/helm-charts/releases/download/4.4.32/neo4j-admin-4.4.32.tgz
version: 4.4.32
- apiVersion: v1
appVersion: 4.4.31
created: "2024-02-29T12:40:43.993062011Z"
description: Neo4j is the world's leading graph database
digest: e59919a16c21a3efd86eb58ff7f50998143b32ae2d961d42dd38e30661b25c98
home: https://www.neo4j.com
icon: http://info.neo4j.com/rs/773-GON-065/images/neo4j_logo.png
keywords: