-
-
Notifications
You must be signed in to change notification settings - Fork 319
/
Copy pathindex.yaml
1044 lines (1044 loc) · 34.6 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:
mercure:
- apiVersion: v2
appVersion: v0.18.4
created: "2025-02-19T11:18:15.750372288Z"
description: A Helm chart to install a Mercure Hub in a Kubernetes cluster. Mercure
is a protocol to push data updates to web browsers and other HTTP clients in
a convenient, fast, reliable and battery-efficient way.
digest: 3412a08b989d8c51197846de7aec10dfcc5c4b90c777f53c510873abf94e6695
home: https://mercure.rocks
icon: https://mercure.rocks/static/logo.svg
keywords:
- mercure
- hub
- push
- streaming-api
- async-api
maintainers:
- email: [email protected]
name: dunglas
url: https://dunglas.fr
name: mercure
sources:
- https://github.com/dunglas/mercure
type: application
urls:
- https://github.com/dunglas/mercure/releases/download/helm-chart-0.18.4/mercure-0.18.4.tgz
version: 0.18.4
- apiVersion: v2
appVersion: v0.18.3
created: "2025-02-17T14:59:19.819772967Z"
description: A Helm chart to install a Mercure Hub in a Kubernetes cluster. Mercure
is a protocol to push data updates to web browsers and other HTTP clients in
a convenient, fast, reliable and battery-efficient way.
digest: 5d77092806032e40b765203ee3930400a691fb88498dfdf83e1746963162a67f
home: https://mercure.rocks
icon: https://mercure.rocks/static/logo.svg
keywords:
- mercure
- hub
- push
- streaming-api
- async-api
maintainers:
- email: [email protected]
name: dunglas
url: https://dunglas.fr
name: mercure
sources:
- https://github.com/dunglas/mercure
type: application
urls:
- https://github.com/dunglas/mercure/releases/download/helm-chart-0.18.3/mercure-0.18.3.tgz
version: 0.18.3
- apiVersion: v2
appVersion: v0.18.2
created: "2025-01-27T21:17:26.033360867Z"
description: A Helm chart to install a Mercure Hub in a Kubernetes cluster. Mercure
is a protocol to push data updates to web browsers and other HTTP clients in
a convenient, fast, reliable and battery-efficient way.
digest: 60bd66cb066d4ff82547bcf0c3cf2bef0df88f5898c4de3b1fefb32c501ff870
home: https://mercure.rocks
icon: https://mercure.rocks/static/logo.svg
keywords:
- mercure
- hub
- push
- streaming-api
- async-api
maintainers:
- email: [email protected]
name: dunglas
url: https://dunglas.fr
name: mercure
sources:
- https://github.com/dunglas/mercure
type: application
urls:
- https://github.com/dunglas/mercure/releases/download/helm-chart-0.18.2/mercure-0.18.2.tgz
version: 0.18.2
- apiVersion: v2
appVersion: v0.18.1
created: "2025-01-08T21:08:05.380808884Z"
description: A Helm chart to install a Mercure Hub in a Kubernetes cluster. Mercure
is a protocol to push data updates to web browsers and other HTTP clients in
a convenient, fast, reliable and battery-efficient way.
digest: 2da2f2b3b6570a01d43d8917f50858f7a1a6e72f367d7429e31403fb73429b3e
home: https://mercure.rocks
icon: https://mercure.rocks/static/logo.svg
keywords:
- mercure
- hub
- push
- streaming-api
- async-api
maintainers:
- email: [email protected]
name: dunglas
url: https://dunglas.fr
name: mercure
sources:
- https://github.com/dunglas/mercure
type: application
urls:
- https://github.com/dunglas/mercure/releases/download/helm-chart-0.18.1/mercure-0.18.1.tgz
version: 0.18.1
- apiVersion: v2
appVersion: v0.18.0
created: "2025-01-08T13:16:04.565679612Z"
description: A Helm chart to install a Mercure Hub in a Kubernetes cluster. Mercure
is a protocol to push data updates to web browsers and other HTTP clients in
a convenient, fast, reliable and battery-efficient way.
digest: ba58eec929bbaa1f82a4e8ab168a4ded5b356384da9561c5d7427871b034af06
home: https://mercure.rocks
icon: https://mercure.rocks/static/logo.svg
keywords:
- mercure
- hub
- push
- streaming-api
- async-api
maintainers:
- email: [email protected]
name: dunglas
url: https://dunglas.fr
name: mercure
sources:
- https://github.com/dunglas/mercure
type: application
urls:
- https://github.com/dunglas/mercure/releases/download/helm-chart-0.18.0/mercure-0.18.0.tgz
version: 0.18.0
- apiVersion: v2
appVersion: v0.17.1
created: "2024-11-11T17:47:46.15916569Z"
description: A Helm chart to install a Mercure Hub in a Kubernetes cluster. Mercure
is a protocol to push data updates to web browsers and other HTTP clients in
a convenient, fast, reliable and battery-efficient way.
digest: 566895ca080260768c09eb38ac52af039d376d98b6f68c96ba8385e31650b502
home: https://mercure.rocks
icon: https://mercure.rocks/static/logo.svg
keywords:
- mercure
- hub
- push
- streaming-api
- async-api
maintainers:
- email: [email protected]
name: dunglas
url: https://dunglas.fr
name: mercure
sources:
- https://github.com/dunglas/mercure
type: application
urls:
- https://github.com/dunglas/mercure/releases/download/helm-chart-0.17.1/mercure-0.17.1.tgz
version: 0.17.1
- apiVersion: v2
appVersion: v0.17.0
created: "2024-11-10T18:31:34.667786039Z"
description: A Helm chart to install a Mercure Hub in a Kubernetes cluster. Mercure
is a protocol to push data updates to web browsers and other HTTP clients in
a convenient, fast, reliable and battery-efficient way.
digest: 10fb879ece6a42b6a95b299eb0c0f450fab8fd7f96fdcd243942f65ff475f80b
home: https://mercure.rocks
icon: https://mercure.rocks/static/logo.svg
keywords:
- mercure
- hub
- push
- streaming-api
- async-api
maintainers:
- email: [email protected]
name: dunglas
url: https://dunglas.fr
name: mercure
sources:
- https://github.com/dunglas/mercure
type: application
urls:
- https://github.com/dunglas/mercure/releases/download/helm-chart-0.17.0/mercure-0.17.0.tgz
version: 0.17.0
- apiVersion: v2
appVersion: v0.16.3
created: "2024-08-18T09:48:33.727823781Z"
description: A Helm chart to install a Mercure Hub in a Kubernetes cluster. Mercure
is a protocol to push data updates to web browsers and other HTTP clients in
a convenient, fast, reliable and battery-efficient way.
digest: 75b9805a510243e7061b6bf6c824d534a1b272967199d5083bd482b7bdc33487
home: https://mercure.rocks
icon: https://mercure.rocks/static/logo.svg
keywords:
- mercure
- hub
- push
- streaming-api
- async-api
maintainers:
- email: [email protected]
name: dunglas
url: https://dunglas.fr
name: mercure
sources:
- https://github.com/dunglas/mercure
type: application
urls:
- https://github.com/dunglas/mercure/releases/download/helm-chart-0.16.3/mercure-0.16.3.tgz
version: 0.16.3
- apiVersion: v2
appVersion: v0.16.2
created: "2024-06-04T16:06:45.847038623Z"
description: A Helm chart to install a Mercure Hub in a Kubernetes cluster. Mercure
is a protocol to push data updates to web browsers and other HTTP clients in
a convenient, fast, reliable and battery-efficient way.
digest: 4f1d39d5cb48a006f38850e925dccb47819bca9fe24893a7b23c82ee4d9bb7d4
home: https://mercure.rocks
icon: https://mercure.rocks/static/logo.svg
keywords:
- mercure
- hub
- push
- streaming-api
- async-api
maintainers:
- email: [email protected]
name: dunglas
url: https://dunglas.fr
name: mercure
sources:
- https://github.com/dunglas/mercure
type: application
urls:
- https://github.com/dunglas/mercure/releases/download/helm-chart-0.16.2/mercure-0.16.2.tgz
version: 0.16.2
- apiVersion: v2
appVersion: v0.16.1
created: "2024-05-31T09:35:11.809254151Z"
description: A Helm chart to install a Mercure Hub in a Kubernetes cluster. Mercure
is a protocol to push data updates to web browsers and other HTTP clients in
a convenient, fast, reliable and battery-efficient way.
digest: c5a4567306f909751c0361ef1d4548b51d54f02400698bad5e071a9915f133ce
home: https://mercure.rocks
icon: https://mercure.rocks/static/logo.svg
keywords:
- mercure
- hub
- push
- streaming-api
- async-api
maintainers:
- email: [email protected]
name: dunglas
url: https://dunglas.fr
name: mercure
sources:
- https://github.com/dunglas/mercure
type: application
urls:
- https://github.com/dunglas/mercure/releases/download/helm-chart-0.16.1/mercure-0.16.1.tgz
version: 0.16.1
- apiVersion: v2
appVersion: v0.16.0
created: "2024-05-30T09:33:59.279871534Z"
description: A Helm chart to install a Mercure Hub in a Kubernetes cluster. Mercure
is a protocol to push data updates to web browsers and other HTTP clients in
a convenient, fast, reliable and battery-efficient way.
digest: 87f80f5f7d4933f770868a03a276304e5a07f7825aecb96c68772efbeb179608
home: https://mercure.rocks
icon: https://mercure.rocks/static/logo.svg
keywords:
- mercure
- hub
- push
- streaming-api
- async-api
maintainers:
- email: [email protected]
name: dunglas
url: https://dunglas.fr
name: mercure
sources:
- https://github.com/dunglas/mercure
type: application
urls:
- https://github.com/dunglas/mercure/releases/download/helm-chart-0.16.0/mercure-0.16.0.tgz
version: 0.16.0
- apiVersion: v2
appVersion: v0.15.11
created: "2024-04-08T12:21:12.096355169Z"
description: A Helm chart to install a Mercure Hub in a Kubernetes cluster. Mercure
is a protocol to push data updates to web browsers and other HTTP clients in
a convenient, fast, reliable and battery-efficient way.
digest: d9dce8033848e2fc95d8ef90026292fc29f1863a6a707c4635954fdf058b81d7
home: https://mercure.rocks
icon: https://mercure.rocks/static/logo.svg
keywords:
- mercure
- hub
- push
- streaming-api
- async-api
maintainers:
- email: [email protected]
name: dunglas
url: https://dunglas.fr
name: mercure
sources:
- https://github.com/dunglas/mercure
type: application
urls:
- https://github.com/dunglas/mercure/releases/download/helm-chart-0.15.11/mercure-0.15.11.tgz
version: 0.15.11
- apiVersion: v2
appVersion: v0.15.10
created: "2024-03-18T14:06:13.443010017Z"
description: A Helm chart to install a Mercure Hub in a Kubernetes cluster. Mercure
is a protocol to push data updates to web browsers and other HTTP clients in
a convenient, fast, reliable and battery-efficient way.
digest: caade02b17a4e03eea4bf10bd1347682fe9ee03afaae1cc08048d7ac1c55c061
home: https://mercure.rocks
icon: https://mercure.rocks/static/logo.svg
keywords:
- mercure
- hub
- push
- streaming-api
- async-api
maintainers:
- email: [email protected]
name: dunglas
url: https://dunglas.fr
name: mercure
sources:
- https://github.com/dunglas/mercure
type: application
urls:
- https://github.com/dunglas/mercure/releases/download/helm-chart-0.15.10/mercure-0.15.10.tgz
version: 0.15.10
- apiVersion: v2
appVersion: v0.15.9
created: "2024-01-25T22:34:23.129786635Z"
description: A Helm chart to install a Mercure Hub in a Kubernetes cluster. Mercure
is a protocol to push data updates to web browsers and other HTTP clients in
a convenient, fast, reliable and battery-efficient way.
digest: 0f0cf0d53332978cb47302917fac3c073b653601de54f08a5a2aa93ba84d6624
home: https://mercure.rocks
icon: https://mercure.rocks/static/logo.svg
keywords:
- mercure
- hub
- push
- streaming-api
- async-api
maintainers:
- email: [email protected]
name: dunglas
url: https://dunglas.fr
name: mercure
sources:
- https://github.com/dunglas/mercure
type: application
urls:
- https://github.com/dunglas/mercure/releases/download/helm-chart-0.15.9/mercure-0.15.9.tgz
version: 0.15.9
- apiVersion: v2
appVersion: v0.15.8
created: "2024-01-24T14:05:12.484150329Z"
description: A Helm chart to install a Mercure Hub in a Kubernetes cluster. Mercure
is a protocol to push data updates to web browsers and other HTTP clients in
a convenient, fast, reliable and battery-efficient way.
digest: a4dacabbdbb463db92134fdcec601c777631af4cdfb74ac58c97d615e1021241
home: https://mercure.rocks
icon: https://mercure.rocks/static/logo.svg
keywords:
- mercure
- hub
- push
- streaming-api
- async-api
maintainers:
- email: [email protected]
name: dunglas
url: https://dunglas.fr
name: mercure
sources:
- https://github.com/dunglas/mercure
type: application
urls:
- https://github.com/dunglas/mercure/releases/download/helm-chart-0.15.8/mercure-0.15.8.tgz
version: 0.15.8
- apiVersion: v2
appVersion: v0.15.7
created: "2023-12-20T23:29:31.476350126Z"
description: A Helm chart to install a Mercure Hub in a Kubernetes cluster. Mercure
is a protocol to push data updates to web browsers and other HTTP clients in
a convenient, fast, reliable and battery-efficient way.
digest: 9e3c2be341c4946617c5269a0cb73586685ca589b9f7e9823f467fd8e55f70f6
home: https://mercure.rocks
icon: https://mercure.rocks/static/logo.svg
keywords:
- mercure
- hub
- push
- streaming-api
- async-api
maintainers:
- email: [email protected]
name: dunglas
url: https://dunglas.fr
name: mercure
sources:
- https://github.com/dunglas/mercure
type: application
urls:
- https://github.com/dunglas/mercure/releases/download/helm-chart-0.15.7/mercure-0.15.7.tgz
version: 0.15.7
- apiVersion: v2
appVersion: v0.15.6
created: "2023-12-04T22:30:13.800478881Z"
description: A Helm chart to install a Mercure Hub in a Kubernetes cluster. Mercure
is a protocol to push data updates to web browsers and other HTTP clients in
a convenient, fast, reliable and battery-efficient way.
digest: 7e23597e0da36a4de4bb474a0316fcea2313d690e5f52ea226d474fae3bd4f4e
home: https://mercure.rocks
icon: https://mercure.rocks/static/logo.svg
keywords:
- mercure
- hub
- push
- streaming-api
- async-api
maintainers:
- email: [email protected]
name: dunglas
url: https://dunglas.fr
name: mercure
sources:
- https://github.com/dunglas/mercure
type: application
urls:
- https://github.com/dunglas/mercure/releases/download/helm-chart-0.15.6/mercure-0.15.6.tgz
version: 0.15.6
- apiVersion: v2
appVersion: v0.15.5
created: "2023-10-13T08:17:19.141618599Z"
description: A Helm chart to install a Mercure Hub in a Kubernetes cluster. Mercure
is a protocol to push data updates to web browsers and other HTTP clients in
a convenient, fast, reliable and battery-efficient way.
digest: db1458c56ea78621ea1728cdba84c37451d02912ed3e2a272fcfb1938a9a8848
home: https://mercure.rocks
icon: https://mercure.rocks/static/logo.svg
keywords:
- mercure
- hub
- push
- streaming-api
- async-api
maintainers:
- email: [email protected]
name: dunglas
url: https://dunglas.fr
name: mercure
sources:
- https://github.com/dunglas/mercure
type: application
urls:
- https://github.com/dunglas/mercure/releases/download/helm-chart-0.15.5/mercure-0.15.5.tgz
version: 0.15.5
- apiVersion: v2
appVersion: v0.15.4
created: "2023-10-12T10:25:56.581426131Z"
description: A Helm chart to install a Mercure Hub in a Kubernetes cluster. Mercure
is a protocol to push data updates to web browsers and other HTTP clients in
a convenient, fast, reliable and battery-efficient way.
digest: e09010a1f0ac3cad8d11dfe300d56e52b78453dd297ead60f05206086a778b9b
home: https://mercure.rocks
icon: https://mercure.rocks/static/logo.svg
keywords:
- mercure
- hub
- push
- streaming-api
- async-api
maintainers:
- email: [email protected]
name: dunglas
url: https://dunglas.fr
name: mercure
sources:
- https://github.com/dunglas/mercure
type: application
urls:
- https://github.com/dunglas/mercure/releases/download/helm-chart-0.15.4/mercure-0.15.4.tgz
version: 0.15.4
- apiVersion: v2
appVersion: v0.15.3
created: "2023-10-08T19:10:17.995400403Z"
description: A Helm chart to install a Mercure Hub in a Kubernetes cluster. Mercure
is a protocol to push data updates to web browsers and other HTTP clients in
a convenient, fast, reliable and battery-efficient way.
digest: 90ddb26777b4f2e3e6f8f12ef0e00a2e353c79440d4e3b0378f1a5367d60314b
home: https://mercure.rocks
icon: https://mercure.rocks/static/logo.svg
keywords:
- mercure
- hub
- push
- streaming-api
- async-api
maintainers:
- email: [email protected]
name: dunglas
url: https://dunglas.fr
name: mercure
sources:
- https://github.com/dunglas/mercure
type: application
urls:
- https://github.com/dunglas/mercure/releases/download/helm-chart-0.15.3/mercure-0.15.3.tgz
version: 0.15.3
- apiVersion: v2
appVersion: v0.15.2
created: "2023-08-06T15:39:48.477061293Z"
description: A Helm chart to install a Mercure Hub in a Kubernetes cluster. Mercure
is a protocol to push data updates to web browsers and other HTTP clients in
a convenient, fast, reliable and battery-efficient way.
digest: b6abafd912d801a62323d397d6a2d1885a70dbc2222bbdfa3d3eafffa8160f08
home: https://mercure.rocks
icon: https://mercure.rocks/static/logo.svg
keywords:
- mercure
- hub
- push
- streaming-api
- async-api
maintainers:
- email: [email protected]
name: dunglas
url: https://dunglas.fr
name: mercure
sources:
- https://github.com/dunglas/mercure
type: application
urls:
- https://github.com/dunglas/mercure/releases/download/helm-chart-0.15.2/mercure-0.15.2.tgz
version: 0.15.2
- apiVersion: v2
appVersion: v0.15.1
created: "2023-08-03T13:31:34.12187918Z"
description: A Helm chart to install a Mercure Hub in a Kubernetes cluster. Mercure
is a protocol to push data updates to web browsers and other HTTP clients in
a convenient, fast, reliable and battery-efficient way.
digest: 4397329ac01f56e6d43d10c72eafe120d960d20461dd278b5306c84ead6c2c20
home: https://mercure.rocks
icon: https://mercure.rocks/static/logo.svg
keywords:
- mercure
- hub
- push
- streaming-api
- async-api
maintainers:
- email: [email protected]
name: dunglas
url: https://dunglas.fr
name: mercure
sources:
- https://github.com/dunglas/mercure
type: application
urls:
- https://github.com/dunglas/mercure/releases/download/helm-chart-0.15.1/mercure-0.15.1.tgz
version: 0.15.1
- apiVersion: v2
appVersion: v0.15.0
created: "2023-08-03T09:54:28.401889481Z"
description: A Helm chart to install a Mercure Hub in a Kubernetes cluster. Mercure
is a protocol to push data updates to web browsers and other HTTP clients in
a convenient, fast, reliable and battery-efficient way.
digest: bd061757160df67956e141c6b62b5986929e6d6afaabd6ea4df50b09f66a77e3
home: https://mercure.rocks
icon: https://mercure.rocks/static/logo.svg
keywords:
- mercure
- hub
- push
- streaming-api
- async-api
maintainers:
- email: [email protected]
name: dunglas
url: https://dunglas.fr
name: mercure
sources:
- https://github.com/dunglas/mercure
type: application
urls:
- https://github.com/dunglas/mercure/releases/download/helm-chart-0.15.0/mercure-0.15.0.tgz
version: 0.15.0
- apiVersion: v2
appVersion: v0.14.10
created: "2023-06-04T16:41:13.715615988Z"
description: A Helm chart to install a Mercure Hub in a Kubernetes cluster. Mercure
is a protocol to push data updates to web browsers and other HTTP clients in
a convenient, fast, reliable and battery-efficient way.
digest: 710fb0d78bf43dd9dac690930634afc602b9e92eac351745091ee9d7ad47a5e5
home: https://mercure.rocks
icon: https://mercure.rocks/static/logo.svg
keywords:
- mercure
- hub
- push
- streaming-api
- async-api
maintainers:
- email: [email protected]
name: dunglas
url: https://dunglas.fr
name: mercure
sources:
- https://github.com/dunglas/mercure
type: application
urls:
- https://github.com/dunglas/mercure/releases/download/helm-chart-0.14.10/mercure-0.14.10.tgz
version: 0.14.10
- apiVersion: v2
appVersion: v0.14.9
created: "2023-05-25T15:16:56.868480803Z"
description: A Helm chart to install a Mercure Hub in a Kubernetes cluster. Mercure
is a protocol to push data updates to web browsers and other HTTP clients in
a convenient, fast, reliable and battery-efficient way.
digest: 766ed20ecc6e2f53b2af0593603613bea8a30398b90452b4e39eb9ab70c41c4e
home: https://mercure.rocks
icon: https://mercure.rocks/static/logo.svg
keywords:
- mercure
- hub
- push
- streaming-api
- async-api
maintainers:
- email: [email protected]
name: dunglas
url: https://dunglas.fr
name: mercure
sources:
- https://github.com/dunglas/mercure
type: application
urls:
- https://github.com/dunglas/mercure/releases/download/helm-chart-0.14.9/mercure-0.14.9.tgz
version: 0.14.9
- apiVersion: v2
appVersion: v0.14.8
created: "2023-05-22T15:36:26.175310609Z"
description: A Helm chart to install a Mercure Hub in a Kubernetes cluster. Mercure
is a protocol to push data updates to web browsers and other HTTP clients in
a convenient, fast, reliable and battery-efficient way.
digest: 36b074cd00be4746e3cc26ae6023c9e7d69db6a5499038b79b44181c8141f971
home: https://mercure.rocks
icon: https://mercure.rocks/static/logo.svg
keywords:
- mercure
- hub
- push
- streaming-api
- async-api
maintainers:
- email: [email protected]
name: dunglas
url: https://dunglas.fr
name: mercure
sources:
- https://github.com/dunglas/mercure
type: application
urls:
- https://github.com/dunglas/mercure/releases/download/helm-chart-0.14.8/mercure-0.14.8.tgz
version: 0.14.8
- apiVersion: v2
appVersion: v0.14.6
created: "2023-05-17T14:36:32.816669444Z"
description: A Helm chart to install a Mercure Hub in a Kubernetes cluster. Mercure
is a protocol to push data updates to web browsers and other HTTP clients in
a convenient, fast, reliable and battery-efficient way.
digest: 1db1089671fc54da3cf3e8398c60cbeb31bffb36714a404901ebd6d4354808e7
home: https://mercure.rocks
icon: https://mercure.rocks/static/logo.svg
keywords:
- mercure
- hub
- push
- streaming-api
- async-api
maintainers:
- email: [email protected]
name: dunglas
url: https://dunglas.fr
name: mercure
sources:
- https://github.com/dunglas/mercure
type: application
urls:
- https://github.com/dunglas/mercure/releases/download/helm-chart-0.14.6/mercure-0.14.6.tgz
version: 0.14.6
- apiVersion: v2
appVersion: v0.14.5
created: "2023-02-17T16:32:43.213095838Z"
description: A Helm chart to install a Mercure Hub in a Kubernetes cluster. Mercure
is a protocol to push data updates to web browsers and other HTTP clients in
a convenient, fast, reliable and battery-efficient way.
digest: 4706026b4b4f816b9b292479722dfe7f07f376b2443b17b90100836be065f4e9
home: https://mercure.rocks
icon: https://mercure.rocks/static/logo.svg
keywords:
- mercure
- hub
- push
- streaming-api
- async-api
maintainers:
- email: [email protected]
name: dunglas
url: https://dunglas.fr
name: mercure
sources:
- https://github.com/dunglas/mercure
type: application
urls:
- https://github.com/dunglas/mercure/releases/download/helm-chart-0.14.5/mercure-0.14.5.tgz
version: 0.14.5
- apiVersion: v2
appVersion: v0.14.4
created: "2023-01-14T10:20:39.300926184Z"
description: A Helm chart to install a Mercure Hub in a Kubernetes cluster. Mercure
is a protocol to push data updates to web browsers and other HTTP clients in
a convenient, fast, reliable and battery-efficient way.
digest: 52bbd9a619ccf69aa8aae60a12fa993cd36e30808fd179688cc2f055f5cf5211
home: https://mercure.rocks
icon: https://mercure.rocks/static/logo.svg
keywords:
- mercure
- hub
- push
- streaming-api
- async-api
maintainers:
- email: [email protected]
name: dunglas
url: https://dunglas.fr
name: mercure
sources:
- https://github.com/dunglas/mercure
type: application
urls:
- https://github.com/dunglas/mercure/releases/download/helm-chart-0.14.4/mercure-0.14.4.tgz
version: 0.14.4
- apiVersion: v2
appVersion: v0.14.3
created: "2023-01-11T08:16:49.635284661Z"
description: A Helm chart to install a Mercure Hub in a Kubernetes cluster. Mercure
is a protocol to push data updates to web browsers and other HTTP clients in
a convenient, fast, reliable and battery-efficient way.
digest: 483b4baa9d48aa513074fd414169a9c1f7cf862ffd5e15138b2fa392f211d116
home: https://mercure.rocks
icon: https://mercure.rocks/static/logo.svg
keywords:
- mercure
- hub
- push
- streaming-api
- async-api
maintainers:
- email: [email protected]
name: dunglas
url: https://dunglas.fr
name: mercure
sources:
- https://github.com/dunglas/mercure
type: application
urls:
- https://github.com/dunglas/mercure/releases/download/helm-chart-0.14.3/mercure-0.14.3.tgz
version: 0.14.3
- apiVersion: v2
appVersion: v0.14.2
created: "2022-11-23T21:28:57.681383032Z"
description: A Helm chart to install a Mercure Hub in a Kubernetes cluster. Mercure
is a protocol to push data updates to web browsers and other HTTP clients in
a convenient, fast, reliable and battery-efficient way.
digest: 16bab2f8190fa5deb0b9120b5cacad2949b5c3f0df3151c04e44ca73e1effbc3
home: https://mercure.rocks
icon: https://mercure.rocks/static/logo.svg
keywords:
- mercure
- hub
- push
- streaming-api
- async-api
maintainers:
- email: [email protected]
name: dunglas
url: https://dunglas.fr
name: mercure
sources:
- https://github.com/dunglas/mercure
type: application
urls:
- https://github.com/dunglas/mercure/releases/download/helm-chart-0.14.2/mercure-0.14.2.tgz
version: 0.14.2
- apiVersion: v2
appVersion: v0.14.1
created: "2022-09-13T17:59:24.234436824Z"
description: A Helm chart to install a Mercure Hub in a Kubernetes cluster. Mercure
is a protocol to push data updates to web browsers and other HTTP clients in
a convenient, fast, reliable and battery-efficient way.
digest: e68ad12213ef7f1686a57251a718b853d883a7118eae01ef1eb98a5317b3919d
home: https://mercure.rocks
icon: https://mercure.rocks/static/logo.svg
keywords:
- mercure
- hub
- push
- streaming-api
- async-api
maintainers:
- email: [email protected]
name: dunglas
url: https://dunglas.fr
name: mercure
sources:
- https://github.com/dunglas/mercure
type: application
urls:
- https://github.com/dunglas/mercure/releases/download/helm-chart-0.14.1/mercure-0.14.1.tgz
version: 0.14.1
- apiVersion: v2
appVersion: v0.14.0
created: "2022-09-06T12:47:12.977492189Z"
description: A Helm chart to install a Mercure Hub in a Kubernetes cluster. Mercure
is a protocol to push data updates to web browsers and other HTTP clients in
a convenient, fast, reliable and battery-efficient way.
digest: 8831d2f85eb032136e5bc4e20e4e0b8c08f644d9d18f5fe945fd23456db05e45
home: https://mercure.rocks
icon: https://mercure.rocks/static/logo.svg
keywords:
- mercure
- hub
- push
- streaming-api
- async-api
maintainers:
- email: [email protected]
name: dunglas
url: https://dunglas.fr
name: mercure
sources:
- https://github.com/dunglas/mercure
type: application
urls:
- https://github.com/dunglas/mercure/releases/download/helm-chart-0.14.0/mercure-0.14.0.tgz
version: 0.14.0
- apiVersion: v2
appVersion: v0.14.0-beta.2
created: "2022-08-12T22:14:57.136974674Z"
description: A Helm chart to install a Mercure Hub in a Kubernetes cluster. Mercure
is a protocol to push data updates to web browsers and other HTTP clients in
a convenient, fast, reliable and battery-efficient way.
digest: f12a0f4d3e97d232ca45674f2b5166f496e88101312d05a9e820d6d4f88952a7
home: https://mercure.rocks
icon: https://mercure.rocks/static/logo.svg
keywords:
- mercure
- hub
- push
- streaming-api
- async-api
maintainers:
- email: [email protected]
name: dunglas
url: https://dunglas.fr
name: mercure
sources:
- https://github.com/dunglas/mercure
type: application
urls:
- https://github.com/dunglas/mercure/releases/download/helm-chart-0.14.0-beta.2/mercure-0.14.0-beta.2.tgz
version: 0.14.0-beta.2
- apiVersion: v2
appVersion: v0.14.0-beta.1
created: "2022-08-12T16:05:44.582563059Z"
description: A Helm chart to install a Mercure Hub in a Kubernetes cluster. Mercure
is a protocol to push data updates to web browsers and other HTTP clients in
a convenient, fast, reliable and battery-efficient way.
digest: 10e30078729c78e77dab160b81ddc1eff879e2defaa567e197a8df1419f8fbac
home: https://mercure.rocks
icon: https://mercure.rocks/static/logo.svg
keywords:
- mercure
- hub
- push
- streaming-api
- async-api
maintainers:
- email: [email protected]
name: dunglas
url: https://dunglas.fr
name: mercure
sources:
- https://github.com/dunglas/mercure
type: application
urls:
- https://github.com/dunglas/mercure/releases/download/helm-chart-0.14.0-beta.1/mercure-0.14.0-beta.1.tgz
version: 0.14.0-beta.1
- apiVersion: v2
appVersion: v0.13.0
created: "2021-10-11T17:24:31.689476095Z"
description: A Helm chart to install a Mercure Hub in a Kubernetes cluster. Mercure
is a protocol to push data updates to web browsers and other HTTP clients in
a convenient, fast, reliable and battery-efficient way.
digest: d447bfa5d867c2da137abeee6b1d21a32f844022bec7342ab6e8eadb47552951
home: https://mercure.rocks
icon: https://mercure.rocks/static/logo.svg
keywords:
- mercure
- hub
- push
- streaming-api
- async-api
maintainers:
- email: [email protected]
name: dunglas
url: https://dunglas.fr
name: mercure
sources:
- https://github.com/dunglas/mercure
type: application
urls:
- https://github.com/dunglas/mercure/releases/download/helm-chart-0.13.0/mercure-0.13.0.tgz
version: 0.13.0
- apiVersion: v2
appVersion: v0.12.2
created: "2021-08-24T09:08:19.571133893Z"
description: A Helm chart to install a Mercure Hub in a Kubernetes cluster. Mercure
is a protocol to push data updates to web browsers and other HTTP clients in
a convenient, fast, reliable and battery-efficient way.
digest: edc9d2d3e0b19e5c81012d215d82acbc1fdfbca0e204095475e637d3b414b662
home: https://mercure.rocks
icon: https://mercure.rocks/static/logo.svg
keywords:
- mercure
- hub
- push
- streaming-api
- async-api
maintainers:
- email: [email protected]
name: dunglas
url: https://dunglas.fr
name: mercure
sources:
- https://github.com/dunglas/mercure
type: application
urls:
- https://github.com/dunglas/mercure/releases/download/helm-chart-0.12.2/mercure-0.12.2.tgz
version: 0.12.2
- apiVersion: v2
appVersion: v0.12.1
created: "2021-08-03T16:13:16.174695852Z"
description: A Helm chart to install a Mercure Hub in a Kubernetes cluster. Mercure
is a protocol to push data updates to web browsers and other HTTP clients in
a convenient, fast, reliable and battery-efficient way.
digest: 9a4c0a931599ab8955e15d9c360fbd4d435a7deaf192792be8df1bb346043421
home: https://mercure.rocks
icon: https://mercure.rocks/static/logo.svg
keywords:
- mercure
- hub
- push
- streaming-api
- async-api
maintainers:
- email: [email protected]
name: dunglas
url: https://dunglas.fr
name: mercure
sources:
- https://github.com/dunglas/mercure
type: application
urls:
- https://github.com/dunglas/mercure/releases/download/helm-chart-0.12.1/mercure-0.12.1.tgz
version: 0.12.1
- apiVersion: v2
appVersion: v0.12.0
created: "2021-07-12T13:42:00.286759+02:00"
description: A Helm chart to install a Mercure Hub in a Kubernetes cluster. Mercure
is a protocol to push data updates to web browsers and other HTTP clients in
a convenient, fast, reliable and battery-efficient way.
digest: 7324eee7d8be50dc6494b238ac9599c8625348c632b1ec629dc8044a3fdfae1b
home: https://mercure.rocks
icon: https://mercure.rocks/static/logo.svg