-
Notifications
You must be signed in to change notification settings - Fork 1
/
releases.json
1445 lines (1418 loc) · 80.2 KB
/
releases.json
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
[
{
"url": "https://api.github.com/repos/shopware5/shopware/releases/122163456",
"assets_url": "https://api.github.com/repos/shopware5/shopware/releases/122163456/assets",
"upload_url": "https://uploads.github.com/repos/shopware5/shopware/releases/122163456/assets{?name,label}",
"html_url": "https://github.com/shopware5/shopware/releases/tag/v5.7.19",
"id": 122163456,
"author": {
"login": "github-actions[bot]",
"id": 41898282,
"node_id": "MDM6Qm90NDE4OTgyODI=",
"avatar_url": "https://avatars.githubusercontent.com/in/15368?v=4",
"gravatar_id": "",
"url": "https://api.github.com/users/github-actions%5Bbot%5D",
"html_url": "https://github.com/apps/github-actions",
"followers_url": "https://api.github.com/users/github-actions%5Bbot%5D/followers",
"following_url": "https://api.github.com/users/github-actions%5Bbot%5D/following{/other_user}",
"gists_url": "https://api.github.com/users/github-actions%5Bbot%5D/gists{/gist_id}",
"starred_url": "https://api.github.com/users/github-actions%5Bbot%5D/starred{/owner}{/repo}",
"subscriptions_url": "https://api.github.com/users/github-actions%5Bbot%5D/subscriptions",
"organizations_url": "https://api.github.com/users/github-actions%5Bbot%5D/orgs",
"repos_url": "https://api.github.com/users/github-actions%5Bbot%5D/repos",
"events_url": "https://api.github.com/users/github-actions%5Bbot%5D/events{/privacy}",
"received_events_url": "https://api.github.com/users/github-actions%5Bbot%5D/received_events",
"type": "Bot",
"site_admin": false
},
"node_id": "RE_kwDOAFa3Gs4HSBEA",
"tag_name": "v5.7.19",
"target_commitish": "197a12d35e50f5ac6c2507e0372263d3eabdaef3",
"name": "v5.7.19",
"draft": false,
"prerelease": false,
"created_at": "2023-09-25T12:09:46Z",
"published_at": "2023-09-25T12:44:43Z",
"assets": [
{
"url": "https://api.github.com/repos/shopware5/shopware/releases/assets/127628396",
"id": 127628396,
"node_id": "RA_kwDOAFa3Gs4Hm3Rs",
"name": "install_e75856b1d446ab80746b4db216e11875c4f8159a.zip",
"label": "",
"uploader": {
"login": "github-actions[bot]",
"id": 41898282,
"node_id": "MDM6Qm90NDE4OTgyODI=",
"avatar_url": "https://avatars.githubusercontent.com/in/15368?v=4",
"gravatar_id": "",
"url": "https://api.github.com/users/github-actions%5Bbot%5D",
"html_url": "https://github.com/apps/github-actions",
"followers_url": "https://api.github.com/users/github-actions%5Bbot%5D/followers",
"following_url": "https://api.github.com/users/github-actions%5Bbot%5D/following{/other_user}",
"gists_url": "https://api.github.com/users/github-actions%5Bbot%5D/gists{/gist_id}",
"starred_url": "https://api.github.com/users/github-actions%5Bbot%5D/starred{/owner}{/repo}",
"subscriptions_url": "https://api.github.com/users/github-actions%5Bbot%5D/subscriptions",
"organizations_url": "https://api.github.com/users/github-actions%5Bbot%5D/orgs",
"repos_url": "https://api.github.com/users/github-actions%5Bbot%5D/repos",
"events_url": "https://api.github.com/users/github-actions%5Bbot%5D/events{/privacy}",
"received_events_url": "https://api.github.com/users/github-actions%5Bbot%5D/received_events",
"type": "Bot",
"site_admin": false
},
"content_type": "application/zip",
"state": "uploaded",
"size": 47087469,
"download_count": 1,
"created_at": "2023-09-25T12:40:44Z",
"updated_at": "2023-09-25T12:40:46Z",
"browser_download_url": "https://github.com/shopware5/shopware/releases/download/v5.7.19/install_e75856b1d446ab80746b4db216e11875c4f8159a.zip"
},
{
"url": "https://api.github.com/repos/shopware5/shopware/releases/assets/127628757",
"id": 127628757,
"node_id": "RA_kwDOAFa3Gs4Hm3XV",
"name": "update_915126687e3e5c37e86535cba26e1b69083c2644.zip",
"label": "",
"uploader": {
"login": "github-actions[bot]",
"id": 41898282,
"node_id": "MDM6Qm90NDE4OTgyODI=",
"avatar_url": "https://avatars.githubusercontent.com/in/15368?v=4",
"gravatar_id": "",
"url": "https://api.github.com/users/github-actions%5Bbot%5D",
"html_url": "https://github.com/apps/github-actions",
"followers_url": "https://api.github.com/users/github-actions%5Bbot%5D/followers",
"following_url": "https://api.github.com/users/github-actions%5Bbot%5D/following{/other_user}",
"gists_url": "https://api.github.com/users/github-actions%5Bbot%5D/gists{/gist_id}",
"starred_url": "https://api.github.com/users/github-actions%5Bbot%5D/starred{/owner}{/repo}",
"subscriptions_url": "https://api.github.com/users/github-actions%5Bbot%5D/subscriptions",
"organizations_url": "https://api.github.com/users/github-actions%5Bbot%5D/orgs",
"repos_url": "https://api.github.com/users/github-actions%5Bbot%5D/repos",
"events_url": "https://api.github.com/users/github-actions%5Bbot%5D/events{/privacy}",
"received_events_url": "https://api.github.com/users/github-actions%5Bbot%5D/received_events",
"type": "Bot",
"site_admin": false
},
"content_type": "application/zip",
"state": "uploaded",
"size": 48039285,
"download_count": 1,
"created_at": "2023-09-25T12:43:36Z",
"updated_at": "2023-09-25T12:43:37Z",
"browser_download_url": "https://github.com/shopware5/shopware/releases/download/v5.7.19/update_915126687e3e5c37e86535cba26e1b69083c2644.zip"
}
],
"tarball_url": "https://api.github.com/repos/shopware5/shopware/tarball/v5.7.19",
"zipball_url": "https://api.github.com/repos/shopware5/shopware/zipball/v5.7.19",
"body": "[SW-27151](https://issues.shopware.com/issues/SW-27151) - Mail addresses in forms are validated correctly again\r\n[SW-27165](https://issues.shopware.com/issues/SW-27165) - Prices for products with graduated prices can be changed again in the backend order module\r\n\r\nChanges: https://github.com/shopware5/shopware/compare/v5.7.18...v5.7.19"
},
{
"url": "https://api.github.com/repos/shopware5/shopware/releases/110011677",
"assets_url": "https://api.github.com/repos/shopware5/shopware/releases/110011677/assets",
"upload_url": "https://uploads.github.com/repos/shopware5/shopware/releases/110011677/assets{?name,label}",
"html_url": "https://github.com/shopware5/shopware/releases/tag/v5.7.18",
"id": 110011677,
"author": {
"login": "github-actions[bot]",
"id": 41898282,
"node_id": "MDM6Qm90NDE4OTgyODI=",
"avatar_url": "https://avatars.githubusercontent.com/in/15368?v=4",
"gravatar_id": "",
"url": "https://api.github.com/users/github-actions%5Bbot%5D",
"html_url": "https://github.com/apps/github-actions",
"followers_url": "https://api.github.com/users/github-actions%5Bbot%5D/followers",
"following_url": "https://api.github.com/users/github-actions%5Bbot%5D/following{/other_user}",
"gists_url": "https://api.github.com/users/github-actions%5Bbot%5D/gists{/gist_id}",
"starred_url": "https://api.github.com/users/github-actions%5Bbot%5D/starred{/owner}{/repo}",
"subscriptions_url": "https://api.github.com/users/github-actions%5Bbot%5D/subscriptions",
"organizations_url": "https://api.github.com/users/github-actions%5Bbot%5D/orgs",
"repos_url": "https://api.github.com/users/github-actions%5Bbot%5D/repos",
"events_url": "https://api.github.com/users/github-actions%5Bbot%5D/events{/privacy}",
"received_events_url": "https://api.github.com/users/github-actions%5Bbot%5D/received_events",
"type": "Bot",
"site_admin": false
},
"node_id": "RE_kwDOAFa3Gs4GjqUd",
"tag_name": "v5.7.18",
"target_commitish": "95e77156a9c8e0f2c3b731d7e4835cb26921c36d",
"name": "Release 5.7.18",
"draft": false,
"prerelease": false,
"created_at": "2023-06-27T09:32:21Z",
"published_at": "2023-06-27T09:47:15Z",
"assets": [
{
"url": "https://api.github.com/repos/shopware5/shopware/releases/assets/127621297",
"id": 127621297,
"node_id": "RA_kwDOAFa3Gs4Hm1ix",
"name": "install_9438a378537ad6414ab7c6e0083d07efb3f2d101.zip",
"label": null,
"uploader": {
"login": "mitelg",
"id": 6985627,
"node_id": "MDQ6VXNlcjY5ODU2Mjc=",
"avatar_url": "https://avatars.githubusercontent.com/u/6985627?v=4",
"gravatar_id": "",
"url": "https://api.github.com/users/mitelg",
"html_url": "https://github.com/mitelg",
"followers_url": "https://api.github.com/users/mitelg/followers",
"following_url": "https://api.github.com/users/mitelg/following{/other_user}",
"gists_url": "https://api.github.com/users/mitelg/gists{/gist_id}",
"starred_url": "https://api.github.com/users/mitelg/starred{/owner}{/repo}",
"subscriptions_url": "https://api.github.com/users/mitelg/subscriptions",
"organizations_url": "https://api.github.com/users/mitelg/orgs",
"repos_url": "https://api.github.com/users/mitelg/repos",
"events_url": "https://api.github.com/users/mitelg/events{/privacy}",
"received_events_url": "https://api.github.com/users/mitelg/received_events",
"type": "User",
"site_admin": false
},
"content_type": "application/zip",
"state": "uploaded",
"size": 47088453,
"download_count": 2,
"created_at": "2023-09-25T11:46:52Z",
"updated_at": "2023-09-25T11:47:18Z",
"browser_download_url": "https://github.com/shopware5/shopware/releases/download/v5.7.18/install_9438a378537ad6414ab7c6e0083d07efb3f2d101.zip"
},
{
"url": "https://api.github.com/repos/shopware5/shopware/releases/assets/127621324",
"id": 127621324,
"node_id": "RA_kwDOAFa3Gs4Hm1jM",
"name": "update_2b0fdbac9a4cf650c21b8bff022d76f45347c79b.zip",
"label": null,
"uploader": {
"login": "mitelg",
"id": 6985627,
"node_id": "MDQ6VXNlcjY5ODU2Mjc=",
"avatar_url": "https://avatars.githubusercontent.com/u/6985627?v=4",
"gravatar_id": "",
"url": "https://api.github.com/users/mitelg",
"html_url": "https://github.com/mitelg",
"followers_url": "https://api.github.com/users/mitelg/followers",
"following_url": "https://api.github.com/users/mitelg/following{/other_user}",
"gists_url": "https://api.github.com/users/mitelg/gists{/gist_id}",
"starred_url": "https://api.github.com/users/mitelg/starred{/owner}{/repo}",
"subscriptions_url": "https://api.github.com/users/mitelg/subscriptions",
"organizations_url": "https://api.github.com/users/mitelg/orgs",
"repos_url": "https://api.github.com/users/mitelg/repos",
"events_url": "https://api.github.com/users/mitelg/events{/privacy}",
"received_events_url": "https://api.github.com/users/mitelg/received_events",
"type": "User",
"site_admin": false
},
"content_type": "application/zip",
"state": "uploaded",
"size": 48041641,
"download_count": 0,
"created_at": "2023-09-25T11:47:18Z",
"updated_at": "2023-09-25T11:47:37Z",
"browser_download_url": "https://github.com/shopware5/shopware/releases/download/v5.7.18/update_2b0fdbac9a4cf650c21b8bff022d76f45347c79b.zip"
}
],
"tarball_url": "https://api.github.com/repos/shopware5/shopware/tarball/v5.7.18",
"zipball_url": "https://api.github.com/repos/shopware5/shopware/zipball/v5.7.18",
"body": "[SW-26868](https://issues.shopware.com/issues/SW-26868) - Removed feedback popup\r\n[SW-27043](https://issues.shopware.com/issues/SW-27043) - Optimized file size of fonts [(aragon999)](https://github.com/aragon999)</a>\r\n[SW-27047](https://issues.shopware.com/issues/SW-27047) - The corresponding error message will be displayed when adding an item to the shopping cart without stock and with the sale option enabled. [(lacknere)](https://github.com/lacknere)</a>\r\n[SW-27050](https://issues.shopware.com/issues/SW-27050) - Improve method documentation [(jkrzefski)](https://github.com/jkrzefski)</a>\r\n[SW-27052](https://issues.shopware.com/issues/SW-27052) - Improve compatibility with PHP8.2 [(aragon999)](https://github.com/aragon999)</a>\r\n[SW-27062](https://issues.shopware.com/issues/SW-27062) - Update of third party dependencies\r\n[SW-27074](https://issues.shopware.com/issues/SW-27074) - Adjust the conditions in function CacheManager::getOpCacheCacheInfo\r\n[SW-27078](https://issues.shopware.com/issues/SW-27078) - changes the type of $listingLinkRewriteService property to ListingLinkRewriteServiceInterface which prevents throwing an errors [(mkreusch)](https://github.com/mkreusch)</a>\r\n[SW-27079](https://issues.shopware.com/issues/SW-27079) - The config \"shopware.es.backend.index_settings\" is now correctly considered for the Elasticsearch backend functionality\r\n[SW-27080](https://issues.shopware.com/issues/SW-27080) - Adding new positions in the backend order module now also considers graduated prices.\r\n[SW-27081](https://issues.shopware.com/issues/SW-27081) - Improve calculation of shipping costs in product exports\r\n[SW-27083](https://issues.shopware.com/issues/SW-27083) - Improved validation of input fields for registration, newsletter subscription and forms\r\n[SW-27086](https://issues.shopware.com/issues/SW-27086) - Fixed variant displaying on the product detail page\r\n[SW-27088](https://issues.shopware.com/issues/SW-27088) - 'Ask for reason' mail can be sent without voucher again\r\n[SW-27090](https://issues.shopware.com/issues/SW-27090) - Subhop settings can be saved again\r\n[SW-27091](https://issues.shopware.com/issues/SW-27091) - Products can be edited again if their images were deleted previously\r\n[SW-27093](https://issues.shopware.com/issues/SW-27093) - The e-mail configuration on sending the order confirmation can now be adjusted by an event\r\n[SW-27094](https://issues.shopware.com/issues/SW-27094) - Fix SLT cookie behavior [(dot-frost)](https://github.com/dot-frost)</a>\r\n[SW-27103](https://issues.shopware.com/issues/SW-27103) - If salutation is not required, the field validations is skipped [(zukucker)](https://github.com/zukucker)</a>\r\n[SW-27115](https://issues.shopware.com/issues/SW-27115) - The auto updater will obtain the updates directly from GitHub in the future\r\n[SW-27121](https://issues.shopware.com/issues/SW-27121) - Creating customer streams is possible again\r\n[SW-27136](https://issues.shopware.com/issues/SW-27136) - Removed Shopware BI feature\r\n\r\n\r\nChanges: https://github.com/shopware5/shopware/compare/v5.7.17...v5.7.18"
},
{
"url": "https://api.github.com/repos/shopware5/shopware/releases/97288305",
"assets_url": "https://api.github.com/repos/shopware5/shopware/releases/97288305/assets",
"upload_url": "https://uploads.github.com/repos/shopware5/shopware/releases/97288305/assets{?name,label}",
"html_url": "https://github.com/shopware5/shopware/releases/tag/v5.7.17",
"id": 97288305,
"author": {
"login": "mitelg",
"id": 6985627,
"node_id": "MDQ6VXNlcjY5ODU2Mjc=",
"avatar_url": "https://avatars.githubusercontent.com/u/6985627?v=4",
"gravatar_id": "",
"url": "https://api.github.com/users/mitelg",
"html_url": "https://github.com/mitelg",
"followers_url": "https://api.github.com/users/mitelg/followers",
"following_url": "https://api.github.com/users/mitelg/following{/other_user}",
"gists_url": "https://api.github.com/users/mitelg/gists{/gist_id}",
"starred_url": "https://api.github.com/users/mitelg/starred{/owner}{/repo}",
"subscriptions_url": "https://api.github.com/users/mitelg/subscriptions",
"organizations_url": "https://api.github.com/users/mitelg/orgs",
"repos_url": "https://api.github.com/users/mitelg/repos",
"events_url": "https://api.github.com/users/mitelg/events{/privacy}",
"received_events_url": "https://api.github.com/users/mitelg/received_events",
"type": "User",
"site_admin": false
},
"node_id": "RE_kwDOAFa3Gs4FzIBx",
"tag_name": "v5.7.17",
"target_commitish": "5.7",
"name": "Release 5.7.17",
"draft": false,
"prerelease": false,
"created_at": "2023-03-21T12:58:25Z",
"published_at": "2023-03-29T09:06:24Z",
"assets": [
{
"url": "https://api.github.com/repos/shopware5/shopware/releases/assets/102259279",
"id": 102259279,
"node_id": "RA_kwDOAFa3Gs4GGFpP",
"name": "install_31b8b37fe396c41da6dfe6c5354e968ca82d890c.zip",
"label": null,
"uploader": {
"login": "PascalThesing",
"id": 14017436,
"node_id": "MDQ6VXNlcjE0MDE3NDM2",
"avatar_url": "https://avatars.githubusercontent.com/u/14017436?v=4",
"gravatar_id": "",
"url": "https://api.github.com/users/PascalThesing",
"html_url": "https://github.com/PascalThesing",
"followers_url": "https://api.github.com/users/PascalThesing/followers",
"following_url": "https://api.github.com/users/PascalThesing/following{/other_user}",
"gists_url": "https://api.github.com/users/PascalThesing/gists{/gist_id}",
"starred_url": "https://api.github.com/users/PascalThesing/starred{/owner}{/repo}",
"subscriptions_url": "https://api.github.com/users/PascalThesing/subscriptions",
"organizations_url": "https://api.github.com/users/PascalThesing/orgs",
"repos_url": "https://api.github.com/users/PascalThesing/repos",
"events_url": "https://api.github.com/users/PascalThesing/events{/privacy}",
"received_events_url": "https://api.github.com/users/PascalThesing/received_events",
"type": "User",
"site_admin": false
},
"content_type": "application/zip",
"state": "uploaded",
"size": 45264378,
"download_count": 170,
"created_at": "2023-04-04T12:14:50Z",
"updated_at": "2023-06-22T08:18:16Z",
"browser_download_url": "https://github.com/shopware5/shopware/releases/download/v5.7.17/install_31b8b37fe396c41da6dfe6c5354e968ca82d890c.zip"
},
{
"url": "https://api.github.com/repos/shopware5/shopware/releases/assets/102259331",
"id": 102259331,
"node_id": "RA_kwDOAFa3Gs4GGFqD",
"name": "update_e0a7813fcbae9ecf1dd566899b02e820a0c0b3e5.zip",
"label": null,
"uploader": {
"login": "PascalThesing",
"id": 14017436,
"node_id": "MDQ6VXNlcjE0MDE3NDM2",
"avatar_url": "https://avatars.githubusercontent.com/u/14017436?v=4",
"gravatar_id": "",
"url": "https://api.github.com/users/PascalThesing",
"html_url": "https://github.com/PascalThesing",
"followers_url": "https://api.github.com/users/PascalThesing/followers",
"following_url": "https://api.github.com/users/PascalThesing/following{/other_user}",
"gists_url": "https://api.github.com/users/PascalThesing/gists{/gist_id}",
"starred_url": "https://api.github.com/users/PascalThesing/starred{/owner}{/repo}",
"subscriptions_url": "https://api.github.com/users/PascalThesing/subscriptions",
"organizations_url": "https://api.github.com/users/PascalThesing/orgs",
"repos_url": "https://api.github.com/users/PascalThesing/repos",
"events_url": "https://api.github.com/users/PascalThesing/events{/privacy}",
"received_events_url": "https://api.github.com/users/PascalThesing/received_events",
"type": "User",
"site_admin": false
},
"content_type": "application/zip",
"state": "uploaded",
"size": 46082425,
"download_count": 30,
"created_at": "2023-04-04T12:15:18Z",
"updated_at": "2023-05-30T07:14:37Z",
"browser_download_url": "https://github.com/shopware5/shopware/releases/download/v5.7.17/update_e0a7813fcbae9ecf1dd566899b02e820a0c0b3e5.zip"
}
],
"tarball_url": "https://api.github.com/repos/shopware5/shopware/tarball/v5.7.17",
"zipball_url": "https://api.github.com/repos/shopware5/shopware/zipball/v5.7.17",
"body": "[SW-22909](https://issues.shopware.com/issues/SW-22909) - Salutation could be deactivated now\r\n[SW-23083](https://issues.shopware.com/issues/SW-23083) - Removes configurator option from article name after converting variant article to main article and relationships of configurator options to deleted variants.\r\n[SW-23455](https://issues.shopware.com/issues/SW-23455) - For discounts and surcharges a record is created in the s_order_basket_attributes\r\n[SW-23762](https://issues.shopware.com/issues/SW-23762) - The parameter -m for the sw:media:optimize command now works as intended\r\n[SW-24545](https://issues.shopware.com/issues/SW-24545) - Improve settings and behaviour of similar products on product detail page\r\n[SW-24778](https://issues.shopware.com/issues/SW-24778) - The release date is now shown correctly on the note\r\n[SW-25764](https://issues.shopware.com/issues/SW-25764) - Fix not available hint for variant products with more than two options\r\n[SW-25825](https://issues.shopware.com/issues/SW-25825) - remove \"motor\" from bot list for Motorola-device-compatibility\r\n[SW-25878](https://issues.shopware.com/issues/SW-25878) - Asynchrone PluginManager Requests\r\n[SW-25939](https://issues.shopware.com/issues/SW-25939) - Providing the information on the product detail page that the payment method has been changed.\r\n[SW-25985](https://issues.shopware.com/issues/SW-25985) - Fixed a problem where the blog ID was non-existend after reloading the blog page with activated caching\r\n[SW-26321](https://issues.shopware.com/issues/SW-26321) - Pre-selection of the country of delivery and dependent taxes based on the positioning of the countries\r\n[SW-26386](https://issues.shopware.com/issues/SW-26386) - Improved snippet import\r\n[SW-26746](https://issues.shopware.com/issues/SW-26746) - PHP 8.2 compatibility\r\n[SW-26923](https://issues.shopware.com/issues/SW-26923) - Tax, as well as the specific price for the customer-group, are now set in order-module when adding a new position to an order\r\n[SW-26931](https://issues.shopware.com/issues/SW-26931) - Improve PHP8 compatibility in the media module\r\n[SW-26951](https://issues.shopware.com/issues/SW-26951) - Improve PHP8.1 compatibility of the theme cache generation [(teiling88)](https://github.com/teiling88)\r\n[SW-26953](https://issues.shopware.com/issues/SW-26953) - Content type names are allowed to contain numbers now [(bforbird)](https://github.com/bforbird)\r\n[SW-26954](https://issues.shopware.com/issues/SW-26954) - Update of third party dependencies\r\n[SW-26958](https://issues.shopware.com/issues/SW-26958) - Fix deprecation in service declaration [(larsbo)](https://github.com/larsbo)\r\n[SW-26961](https://issues.shopware.com/issues/SW-26961) - Invalidate reset password link after changing account email address.\r\n[SW-26962](https://issues.shopware.com/issues/SW-26962) - Improve registration of CLI commands [(teiling88)](https://github.com/teiling88)\r\n[SW-26968](https://issues.shopware.com/issues/SW-26968) - Fix creating of products with translations in the batch API\r\n[SW-26970](https://issues.shopware.com/issues/SW-26970) - Prevent unwanted behavior when double-clicking the login button\r\n[SW-26981](https://issues.shopware.com/issues/SW-26981) - Improve the performance of the shipping module by minimizing requests and query only necessary data\r\n[SW-27002](https://issues.shopware.com/issues/SW-27002) - Improve PHP 8.1 compatibility [(teiling88)](https://github.com/teiling88)\r\n[SW-27003](https://issues.shopware.com/issues/SW-27003) - Add class prefix \"has--\" back to modernizr [(bestit-pstandt)](https://github.com/bestit-pstandt)\r\n[SW-27004](https://issues.shopware.com/issues/SW-27004) - Removed duplicated font folders in theme to fix installation problem on MacOS\r\n[SW-27009](https://issues.shopware.com/issues/SW-27009) - Added configuration for devenv\r\n[SW-27018](https://issues.shopware.com/issues/SW-27018) - Improving the caching behavior of the account page.\r\n[SW-27019](https://issues.shopware.com/issues/SW-27019) - Changed default value from the ComboBox to an empty value [(Dominikrt)](https://github.com/Dominikrt)\r\n[SW-27031](https://issues.shopware.com/issues/SW-27031) - Adjusted honeypot captcha\r\n[SW-27035](https://issues.shopware.com/issues/SW-27035) - When changing the order via the backend module, the delivery country is now correctly taken into account\r\n[SW-27055](https://issues.shopware.com/issues/SW-27055) - Performance of the order confirm page improved. In addition, attributes of discount or surcharge items are now automatically transferred from the cart to the order again\r\n\r\nChanges: https://github.com/shopware/shopware/compare/v5.7.16...v5.7.17"
},
{
"url": "https://api.github.com/repos/shopware5/shopware/releases/95544513",
"assets_url": "https://api.github.com/repos/shopware5/shopware/releases/95544513/assets",
"upload_url": "https://uploads.github.com/repos/shopware5/shopware/releases/95544513/assets{?name,label}",
"html_url": "https://github.com/shopware5/shopware/releases/tag/v5.7.17-RC1",
"id": 95544513,
"author": {
"login": "mitelg",
"id": 6985627,
"node_id": "MDQ6VXNlcjY5ODU2Mjc=",
"avatar_url": "https://avatars.githubusercontent.com/u/6985627?v=4",
"gravatar_id": "",
"url": "https://api.github.com/users/mitelg",
"html_url": "https://github.com/mitelg",
"followers_url": "https://api.github.com/users/mitelg/followers",
"following_url": "https://api.github.com/users/mitelg/following{/other_user}",
"gists_url": "https://api.github.com/users/mitelg/gists{/gist_id}",
"starred_url": "https://api.github.com/users/mitelg/starred{/owner}{/repo}",
"subscriptions_url": "https://api.github.com/users/mitelg/subscriptions",
"organizations_url": "https://api.github.com/users/mitelg/orgs",
"repos_url": "https://api.github.com/users/mitelg/repos",
"events_url": "https://api.github.com/users/mitelg/events{/privacy}",
"received_events_url": "https://api.github.com/users/mitelg/received_events",
"type": "User",
"site_admin": false
},
"node_id": "RE_kwDOAFa3Gs4FseTB",
"tag_name": "v5.7.17-RC1",
"target_commitish": "5.7",
"name": "Release 5.7.17 RC1",
"draft": false,
"prerelease": true,
"created_at": "2023-03-13T13:36:12Z",
"published_at": "2023-03-14T12:27:55Z",
"assets": [
],
"tarball_url": "https://api.github.com/repos/shopware5/shopware/tarball/v5.7.17-RC1",
"zipball_url": "https://api.github.com/repos/shopware5/shopware/zipball/v5.7.17-RC1",
"body": "Find more information here: https://www.shopware.com/en/changelog-sw5/#5-7-17RC1\r\n\r\nChanges: https://github.com/shopware/shopware/compare/v5.7.16...v5.7.17-RC1"
},
{
"url": "https://api.github.com/repos/shopware5/shopware/releases/82382322",
"assets_url": "https://api.github.com/repos/shopware5/shopware/releases/82382322/assets",
"upload_url": "https://uploads.github.com/repos/shopware5/shopware/releases/82382322/assets{?name,label}",
"html_url": "https://github.com/shopware5/shopware/releases/tag/v5.7.16",
"id": 82382322,
"author": {
"login": "mitelg",
"id": 6985627,
"node_id": "MDQ6VXNlcjY5ODU2Mjc=",
"avatar_url": "https://avatars.githubusercontent.com/u/6985627?v=4",
"gravatar_id": "",
"url": "https://api.github.com/users/mitelg",
"html_url": "https://github.com/mitelg",
"followers_url": "https://api.github.com/users/mitelg/followers",
"following_url": "https://api.github.com/users/mitelg/following{/other_user}",
"gists_url": "https://api.github.com/users/mitelg/gists{/gist_id}",
"starred_url": "https://api.github.com/users/mitelg/starred{/owner}{/repo}",
"subscriptions_url": "https://api.github.com/users/mitelg/subscriptions",
"organizations_url": "https://api.github.com/users/mitelg/orgs",
"repos_url": "https://api.github.com/users/mitelg/repos",
"events_url": "https://api.github.com/users/mitelg/events{/privacy}",
"received_events_url": "https://api.github.com/users/mitelg/received_events",
"type": "User",
"site_admin": false
},
"node_id": "RE_kwDOAFa3Gs4E6Q3y",
"tag_name": "v5.7.16",
"target_commitish": "5.7",
"name": "Release 5.7.16",
"draft": false,
"prerelease": false,
"created_at": "2022-11-02T09:29:39Z",
"published_at": "2022-11-08T12:30:35Z",
"assets": [
],
"tarball_url": "https://api.github.com/repos/shopware5/shopware/tarball/v5.7.16",
"zipball_url": "https://api.github.com/repos/shopware5/shopware/zipball/v5.7.16",
"body": "Find more information here: https://www.shopware.com/en/changelog-sw5/#5-7-16\r\n\r\nChanges: https://github.com/shopware/shopware/compare/v5.7.15...v5.7.16"
},
{
"url": "https://api.github.com/repos/shopware5/shopware/releases/80293473",
"assets_url": "https://api.github.com/repos/shopware5/shopware/releases/80293473/assets",
"upload_url": "https://uploads.github.com/repos/shopware5/shopware/releases/80293473/assets{?name,label}",
"html_url": "https://github.com/shopware5/shopware/releases/tag/v5.7.16-RC1",
"id": 80293473,
"author": {
"login": "PascalThesing",
"id": 14017436,
"node_id": "MDQ6VXNlcjE0MDE3NDM2",
"avatar_url": "https://avatars.githubusercontent.com/u/14017436?v=4",
"gravatar_id": "",
"url": "https://api.github.com/users/PascalThesing",
"html_url": "https://github.com/PascalThesing",
"followers_url": "https://api.github.com/users/PascalThesing/followers",
"following_url": "https://api.github.com/users/PascalThesing/following{/other_user}",
"gists_url": "https://api.github.com/users/PascalThesing/gists{/gist_id}",
"starred_url": "https://api.github.com/users/PascalThesing/starred{/owner}{/repo}",
"subscriptions_url": "https://api.github.com/users/PascalThesing/subscriptions",
"organizations_url": "https://api.github.com/users/PascalThesing/orgs",
"repos_url": "https://api.github.com/users/PascalThesing/repos",
"events_url": "https://api.github.com/users/PascalThesing/events{/privacy}",
"received_events_url": "https://api.github.com/users/PascalThesing/received_events",
"type": "User",
"site_admin": false
},
"node_id": "RE_kwDOAFa3Gs4EyS5h",
"tag_name": "v5.7.16-RC1",
"target_commitish": "5.7",
"name": "Release 5.7.16-RC1",
"draft": false,
"prerelease": true,
"created_at": "2022-10-10T19:51:53Z",
"published_at": "2022-10-19T07:42:59Z",
"assets": [
],
"tarball_url": "https://api.github.com/repos/shopware5/shopware/tarball/v5.7.16-RC1",
"zipball_url": "https://api.github.com/repos/shopware5/shopware/zipball/v5.7.16-RC1",
"body": "Find more information here: https://en.shopware.com/changelog-sw5/#5-7-16RC1\r\n\r\nChanges: https://github.com/shopware/shopware/compare/v5.7.15...v5.7.16-RC1"
},
{
"url": "https://api.github.com/repos/shopware5/shopware/releases/76867194",
"assets_url": "https://api.github.com/repos/shopware5/shopware/releases/76867194/assets",
"upload_url": "https://uploads.github.com/repos/shopware5/shopware/releases/76867194/assets{?name,label}",
"html_url": "https://github.com/shopware5/shopware/releases/tag/v5.7.15",
"id": 76867194,
"author": {
"login": "PascalThesing",
"id": 14017436,
"node_id": "MDQ6VXNlcjE0MDE3NDM2",
"avatar_url": "https://avatars.githubusercontent.com/u/14017436?v=4",
"gravatar_id": "",
"url": "https://api.github.com/users/PascalThesing",
"html_url": "https://github.com/PascalThesing",
"followers_url": "https://api.github.com/users/PascalThesing/followers",
"following_url": "https://api.github.com/users/PascalThesing/following{/other_user}",
"gists_url": "https://api.github.com/users/PascalThesing/gists{/gist_id}",
"starred_url": "https://api.github.com/users/PascalThesing/starred{/owner}{/repo}",
"subscriptions_url": "https://api.github.com/users/PascalThesing/subscriptions",
"organizations_url": "https://api.github.com/users/PascalThesing/orgs",
"repos_url": "https://api.github.com/users/PascalThesing/repos",
"events_url": "https://api.github.com/users/PascalThesing/events{/privacy}",
"received_events_url": "https://api.github.com/users/PascalThesing/received_events",
"type": "User",
"site_admin": false
},
"node_id": "RE_kwDOAFa3Gs4ElOZ6",
"tag_name": "v5.7.15",
"target_commitish": "5.7",
"name": "Release 5.7.15",
"draft": false,
"prerelease": false,
"created_at": "2022-09-08T07:56:47Z",
"published_at": "2022-09-12T08:25:05Z",
"assets": [
],
"tarball_url": "https://api.github.com/repos/shopware5/shopware/tarball/v5.7.15",
"zipball_url": "https://api.github.com/repos/shopware5/shopware/zipball/v5.7.15",
"body": "Find more information here: https://en.shopware.com/changelog-sw5/#5-7-15\r\n\r\nChanges: https://github.com/shopware/shopware/compare/v5.7.14...v5.7.15"
},
{
"url": "https://api.github.com/repos/shopware5/shopware/releases/72751174",
"assets_url": "https://api.github.com/repos/shopware5/shopware/releases/72751174/assets",
"upload_url": "https://uploads.github.com/repos/shopware5/shopware/releases/72751174/assets{?name,label}",
"html_url": "https://github.com/shopware5/shopware/releases/tag/v5.7.14",
"id": 72751174,
"author": {
"login": "mitelg",
"id": 6985627,
"node_id": "MDQ6VXNlcjY5ODU2Mjc=",
"avatar_url": "https://avatars.githubusercontent.com/u/6985627?v=4",
"gravatar_id": "",
"url": "https://api.github.com/users/mitelg",
"html_url": "https://github.com/mitelg",
"followers_url": "https://api.github.com/users/mitelg/followers",
"following_url": "https://api.github.com/users/mitelg/following{/other_user}",
"gists_url": "https://api.github.com/users/mitelg/gists{/gist_id}",
"starred_url": "https://api.github.com/users/mitelg/starred{/owner}{/repo}",
"subscriptions_url": "https://api.github.com/users/mitelg/subscriptions",
"organizations_url": "https://api.github.com/users/mitelg/orgs",
"repos_url": "https://api.github.com/users/mitelg/repos",
"events_url": "https://api.github.com/users/mitelg/events{/privacy}",
"received_events_url": "https://api.github.com/users/mitelg/received_events",
"type": "User",
"site_admin": false
},
"node_id": "RE_kwDOAFa3Gs4EVhhG",
"tag_name": "v5.7.14",
"target_commitish": "5.7",
"name": "Release 5.7.14",
"draft": false,
"prerelease": false,
"created_at": "2022-07-18T12:29:54Z",
"published_at": "2022-07-25T12:37:40Z",
"assets": [
],
"tarball_url": "https://api.github.com/repos/shopware5/shopware/tarball/v5.7.14",
"zipball_url": "https://api.github.com/repos/shopware5/shopware/zipball/v5.7.14",
"body": "Find more information here: https://en.shopware.com/changelog-sw5/#5-7-14\r\n\r\nChanges: https://github.com/shopware/shopware/compare/v5.7.13...v5.7.14"
},
{
"url": "https://api.github.com/repos/shopware5/shopware/releases/70051157",
"assets_url": "https://api.github.com/repos/shopware5/shopware/releases/70051157/assets",
"upload_url": "https://uploads.github.com/repos/shopware5/shopware/releases/70051157/assets{?name,label}",
"html_url": "https://github.com/shopware5/shopware/releases/tag/v5.7.13",
"id": 70051157,
"author": {
"login": "philipgatzka",
"id": 16081565,
"node_id": "MDQ6VXNlcjE2MDgxNTY1",
"avatar_url": "https://avatars.githubusercontent.com/u/16081565?v=4",
"gravatar_id": "",
"url": "https://api.github.com/users/philipgatzka",
"html_url": "https://github.com/philipgatzka",
"followers_url": "https://api.github.com/users/philipgatzka/followers",
"following_url": "https://api.github.com/users/philipgatzka/following{/other_user}",
"gists_url": "https://api.github.com/users/philipgatzka/gists{/gist_id}",
"starred_url": "https://api.github.com/users/philipgatzka/starred{/owner}{/repo}",
"subscriptions_url": "https://api.github.com/users/philipgatzka/subscriptions",
"organizations_url": "https://api.github.com/users/philipgatzka/orgs",
"repos_url": "https://api.github.com/users/philipgatzka/repos",
"events_url": "https://api.github.com/users/philipgatzka/events{/privacy}",
"received_events_url": "https://api.github.com/users/philipgatzka/received_events",
"type": "User",
"site_admin": false
},
"node_id": "RE_kwDOAFa3Gs4ELOVV",
"tag_name": "v5.7.13",
"target_commitish": "5.7",
"name": "Release 5.7.13",
"draft": false,
"prerelease": false,
"created_at": "2022-06-22T13:11:35Z",
"published_at": "2022-06-22T14:27:08Z",
"assets": [
],
"tarball_url": "https://api.github.com/repos/shopware5/shopware/tarball/v5.7.13",
"zipball_url": "https://api.github.com/repos/shopware5/shopware/zipball/v5.7.13",
"body": "Find more information here: https://en.shopware.com/changelog-sw5/#5-7-13\r\n\r\nChanges: https://github.com/shopware/shopware/compare/v5.7.12...v5.7.13"
},
{
"url": "https://api.github.com/repos/shopware5/shopware/releases/69938480",
"assets_url": "https://api.github.com/repos/shopware5/shopware/releases/69938480/assets",
"upload_url": "https://uploads.github.com/repos/shopware5/shopware/releases/69938480/assets{?name,label}",
"html_url": "https://github.com/shopware5/shopware/releases/tag/v5.7.12",
"id": 69938480,
"author": {
"login": "philipgatzka",
"id": 16081565,
"node_id": "MDQ6VXNlcjE2MDgxNTY1",
"avatar_url": "https://avatars.githubusercontent.com/u/16081565?v=4",
"gravatar_id": "",
"url": "https://api.github.com/users/philipgatzka",
"html_url": "https://github.com/philipgatzka",
"followers_url": "https://api.github.com/users/philipgatzka/followers",
"following_url": "https://api.github.com/users/philipgatzka/following{/other_user}",
"gists_url": "https://api.github.com/users/philipgatzka/gists{/gist_id}",
"starred_url": "https://api.github.com/users/philipgatzka/starred{/owner}{/repo}",
"subscriptions_url": "https://api.github.com/users/philipgatzka/subscriptions",
"organizations_url": "https://api.github.com/users/philipgatzka/orgs",
"repos_url": "https://api.github.com/users/philipgatzka/repos",
"events_url": "https://api.github.com/users/philipgatzka/events{/privacy}",
"received_events_url": "https://api.github.com/users/philipgatzka/received_events",
"type": "User",
"site_admin": false
},
"node_id": "RE_kwDOAFa3Gs4EKy0w",
"tag_name": "v5.7.12",
"target_commitish": "5.7",
"name": "Release 5.7.12",
"draft": false,
"prerelease": false,
"created_at": "2022-06-22T07:33:37Z",
"published_at": "2022-06-22T07:56:07Z",
"assets": [
],
"tarball_url": "https://api.github.com/repos/shopware5/shopware/tarball/v5.7.12",
"zipball_url": "https://api.github.com/repos/shopware5/shopware/zipball/v5.7.12",
"body": "Find more information here: https://en.shopware.com/changelog-sw5/#5-7-12\r\n\r\nChanges: https://github.com/shopware/shopware/compare/v5.7.11...v5.7.12"
},
{
"url": "https://api.github.com/repos/shopware5/shopware/releases/66569456",
"assets_url": "https://api.github.com/repos/shopware5/shopware/releases/66569456/assets",
"upload_url": "https://uploads.github.com/repos/shopware5/shopware/releases/66569456/assets{?name,label}",
"html_url": "https://github.com/shopware5/shopware/releases/tag/v5.7.11",
"id": 66569456,
"author": {
"login": "philipgatzka",
"id": 16081565,
"node_id": "MDQ6VXNlcjE2MDgxNTY1",
"avatar_url": "https://avatars.githubusercontent.com/u/16081565?v=4",
"gravatar_id": "",
"url": "https://api.github.com/users/philipgatzka",
"html_url": "https://github.com/philipgatzka",
"followers_url": "https://api.github.com/users/philipgatzka/followers",
"following_url": "https://api.github.com/users/philipgatzka/following{/other_user}",
"gists_url": "https://api.github.com/users/philipgatzka/gists{/gist_id}",
"starred_url": "https://api.github.com/users/philipgatzka/starred{/owner}{/repo}",
"subscriptions_url": "https://api.github.com/users/philipgatzka/subscriptions",
"organizations_url": "https://api.github.com/users/philipgatzka/orgs",
"repos_url": "https://api.github.com/users/philipgatzka/repos",
"events_url": "https://api.github.com/users/philipgatzka/events{/privacy}",
"received_events_url": "https://api.github.com/users/philipgatzka/received_events",
"type": "User",
"site_admin": false
},
"node_id": "RE_kwDOAFa3Gs4D98Tw",
"tag_name": "v5.7.11",
"target_commitish": "5.7",
"name": "Release 5.7.11",
"draft": false,
"prerelease": false,
"created_at": "2022-05-09T15:10:46Z",
"published_at": "2022-05-11T11:26:07Z",
"assets": [
],
"tarball_url": "https://api.github.com/repos/shopware5/shopware/tarball/v5.7.11",
"zipball_url": "https://api.github.com/repos/shopware5/shopware/zipball/v5.7.11",
"body": "Find more information here: https://en.shopware.com/changelog-sw5/#5-7-11\r\n\r\nChanges: https://github.com/shopware/shopware/compare/v5.7.10...v5.7.11"
},
{
"url": "https://api.github.com/repos/shopware5/shopware/releases/65682183",
"assets_url": "https://api.github.com/repos/shopware5/shopware/releases/65682183/assets",
"upload_url": "https://uploads.github.com/repos/shopware5/shopware/releases/65682183/assets{?name,label}",
"html_url": "https://github.com/shopware5/shopware/releases/tag/v5.7.10",
"id": 65682183,
"author": {
"login": "philipgatzka",
"id": 16081565,
"node_id": "MDQ6VXNlcjE2MDgxNTY1",
"avatar_url": "https://avatars.githubusercontent.com/u/16081565?v=4",
"gravatar_id": "",
"url": "https://api.github.com/users/philipgatzka",
"html_url": "https://github.com/philipgatzka",
"followers_url": "https://api.github.com/users/philipgatzka/followers",
"following_url": "https://api.github.com/users/philipgatzka/following{/other_user}",
"gists_url": "https://api.github.com/users/philipgatzka/gists{/gist_id}",
"starred_url": "https://api.github.com/users/philipgatzka/starred{/owner}{/repo}",
"subscriptions_url": "https://api.github.com/users/philipgatzka/subscriptions",
"organizations_url": "https://api.github.com/users/philipgatzka/orgs",
"repos_url": "https://api.github.com/users/philipgatzka/repos",
"events_url": "https://api.github.com/users/philipgatzka/events{/privacy}",
"received_events_url": "https://api.github.com/users/philipgatzka/received_events",
"type": "User",
"site_admin": false
},
"node_id": "RE_kwDOAFa3Gs4D6jsH",
"tag_name": "v5.7.10",
"target_commitish": "5.7",
"name": "Release 5.7.10",
"draft": false,
"prerelease": false,
"created_at": "2022-04-29T13:16:10Z",
"published_at": "2022-04-29T13:42:05Z",
"assets": [
],
"tarball_url": "https://api.github.com/repos/shopware5/shopware/tarball/v5.7.10",
"zipball_url": "https://api.github.com/repos/shopware5/shopware/zipball/v5.7.10",
"body": "Find more information here: https://en.shopware.com/changelog-sw5/#5-7-10\r\n\r\nChanges: https://github.com/shopware/shopware/compare/v5.7.9...v5.7.10"
},
{
"url": "https://api.github.com/repos/shopware5/shopware/releases/65566989",
"assets_url": "https://api.github.com/repos/shopware5/shopware/releases/65566989/assets",
"upload_url": "https://uploads.github.com/repos/shopware5/shopware/releases/65566989/assets{?name,label}",
"html_url": "https://github.com/shopware5/shopware/releases/tag/v5.7.9",
"id": 65566989,
"author": {
"login": "philipgatzka",
"id": 16081565,
"node_id": "MDQ6VXNlcjE2MDgxNTY1",
"avatar_url": "https://avatars.githubusercontent.com/u/16081565?v=4",
"gravatar_id": "",
"url": "https://api.github.com/users/philipgatzka",
"html_url": "https://github.com/philipgatzka",
"followers_url": "https://api.github.com/users/philipgatzka/followers",
"following_url": "https://api.github.com/users/philipgatzka/following{/other_user}",
"gists_url": "https://api.github.com/users/philipgatzka/gists{/gist_id}",
"starred_url": "https://api.github.com/users/philipgatzka/starred{/owner}{/repo}",
"subscriptions_url": "https://api.github.com/users/philipgatzka/subscriptions",
"organizations_url": "https://api.github.com/users/philipgatzka/orgs",
"repos_url": "https://api.github.com/users/philipgatzka/repos",
"events_url": "https://api.github.com/users/philipgatzka/events{/privacy}",
"received_events_url": "https://api.github.com/users/philipgatzka/received_events",
"type": "User",
"site_admin": false
},
"node_id": "RE_kwDOAFa3Gs4D6HkN",
"tag_name": "v5.7.9",
"target_commitish": "5.7",
"name": "Release 5.7.9",
"draft": false,
"prerelease": false,
"created_at": "2022-04-27T13:02:19Z",
"published_at": "2022-04-28T11:45:14Z",
"assets": [
],
"tarball_url": "https://api.github.com/repos/shopware5/shopware/tarball/v5.7.9",
"zipball_url": "https://api.github.com/repos/shopware5/shopware/zipball/v5.7.9",
"body": "Find more information here: https://en.shopware.com/changelog-sw5/#5-7-9\r\n\r\nChanges: https://github.com/shopware/shopware/compare/v5.7.8...v5.7.9"
},
{
"url": "https://api.github.com/repos/shopware5/shopware/releases/64229904",
"assets_url": "https://api.github.com/repos/shopware5/shopware/releases/64229904/assets",
"upload_url": "https://uploads.github.com/repos/shopware5/shopware/releases/64229904/assets{?name,label}",
"html_url": "https://github.com/shopware5/shopware/releases/tag/v5.7.8",
"id": 64229904,
"author": {
"login": "philipgatzka",
"id": 16081565,
"node_id": "MDQ6VXNlcjE2MDgxNTY1",
"avatar_url": "https://avatars.githubusercontent.com/u/16081565?v=4",
"gravatar_id": "",
"url": "https://api.github.com/users/philipgatzka",
"html_url": "https://github.com/philipgatzka",
"followers_url": "https://api.github.com/users/philipgatzka/followers",
"following_url": "https://api.github.com/users/philipgatzka/following{/other_user}",
"gists_url": "https://api.github.com/users/philipgatzka/gists{/gist_id}",
"starred_url": "https://api.github.com/users/philipgatzka/starred{/owner}{/repo}",
"subscriptions_url": "https://api.github.com/users/philipgatzka/subscriptions",
"organizations_url": "https://api.github.com/users/philipgatzka/orgs",
"repos_url": "https://api.github.com/users/philipgatzka/repos",
"events_url": "https://api.github.com/users/philipgatzka/events{/privacy}",
"received_events_url": "https://api.github.com/users/philipgatzka/received_events",
"type": "User",
"site_admin": false
},
"node_id": "RE_kwDOAFa3Gs4D1BIQ",
"tag_name": "v5.7.8",
"target_commitish": "5.7",
"name": "Shopware 5.7.8",
"draft": false,
"prerelease": false,
"created_at": "2022-04-05T16:13:56Z",
"published_at": "2022-04-12T11:17:17Z",
"assets": [
],
"tarball_url": "https://api.github.com/repos/shopware5/shopware/tarball/v5.7.8",
"zipball_url": "https://api.github.com/repos/shopware5/shopware/zipball/v5.7.8",
"body": "Find more information here: https://en.shopware.com/changelog-sw5/#5-7-8\r\n\r\nChanges: https://github.com/shopware/shopware/compare/v5.7.7...v5.7.8",
"reactions": {
"url": "https://api.github.com/repos/shopware5/shopware/releases/64229904/reactions",
"total_count": 1,
"+1": 0,
"-1": 0,
"laugh": 0,
"hooray": 0,
"confused": 0,
"heart": 0,
"rocket": 1,
"eyes": 0
}
},
{
"url": "https://api.github.com/repos/shopware5/shopware/releases/56438608",
"assets_url": "https://api.github.com/repos/shopware5/shopware/releases/56438608/assets",
"upload_url": "https://uploads.github.com/repos/shopware5/shopware/releases/56438608/assets{?name,label}",
"html_url": "https://github.com/shopware5/shopware/releases/tag/v5.7.7",
"id": 56438608,
"author": {
"login": "philipgatzka",
"id": 16081565,
"node_id": "MDQ6VXNlcjE2MDgxNTY1",
"avatar_url": "https://avatars.githubusercontent.com/u/16081565?v=4",
"gravatar_id": "",
"url": "https://api.github.com/users/philipgatzka",
"html_url": "https://github.com/philipgatzka",
"followers_url": "https://api.github.com/users/philipgatzka/followers",
"following_url": "https://api.github.com/users/philipgatzka/following{/other_user}",
"gists_url": "https://api.github.com/users/philipgatzka/gists{/gist_id}",
"starred_url": "https://api.github.com/users/philipgatzka/starred{/owner}{/repo}",
"subscriptions_url": "https://api.github.com/users/philipgatzka/subscriptions",
"organizations_url": "https://api.github.com/users/philipgatzka/orgs",
"repos_url": "https://api.github.com/users/philipgatzka/repos",
"events_url": "https://api.github.com/users/philipgatzka/events{/privacy}",
"received_events_url": "https://api.github.com/users/philipgatzka/received_events",
"type": "User",
"site_admin": false
},
"node_id": "RE_kwDOAFa3Gs4DXS9Q",
"tag_name": "v5.7.7",
"target_commitish": "5.7",
"name": "Shopware 5.7.7",
"draft": false,
"prerelease": false,
"created_at": "2021-12-29T10:09:06Z",
"published_at": "2022-01-05T08:43:10Z",
"assets": [
],
"tarball_url": "https://api.github.com/repos/shopware5/shopware/tarball/v5.7.7",
"zipball_url": "https://api.github.com/repos/shopware5/shopware/zipball/v5.7.7",
"body": "Find more information here: https://en.shopware.com/changelog-sw5/#5-7-7\r\n\r\nChanges: https://github.com/shopware/shopware/compare/v5.7.6...v5.7.7"
},
{
"url": "https://api.github.com/repos/shopware5/shopware/releases/52032997",
"assets_url": "https://api.github.com/repos/shopware5/shopware/releases/52032997/assets",
"upload_url": "https://uploads.github.com/repos/shopware5/shopware/releases/52032997/assets{?name,label}",
"html_url": "https://github.com/shopware5/shopware/releases/tag/v5.7.6",
"id": 52032997,
"author": {
"login": "philipgatzka",
"id": 16081565,
"node_id": "MDQ6VXNlcjE2MDgxNTY1",
"avatar_url": "https://avatars.githubusercontent.com/u/16081565?v=4",
"gravatar_id": "",
"url": "https://api.github.com/users/philipgatzka",
"html_url": "https://github.com/philipgatzka",
"followers_url": "https://api.github.com/users/philipgatzka/followers",
"following_url": "https://api.github.com/users/philipgatzka/following{/other_user}",
"gists_url": "https://api.github.com/users/philipgatzka/gists{/gist_id}",
"starred_url": "https://api.github.com/users/philipgatzka/starred{/owner}{/repo}",
"subscriptions_url": "https://api.github.com/users/philipgatzka/subscriptions",
"organizations_url": "https://api.github.com/users/philipgatzka/orgs",
"repos_url": "https://api.github.com/users/philipgatzka/repos",
"events_url": "https://api.github.com/users/philipgatzka/events{/privacy}",
"received_events_url": "https://api.github.com/users/philipgatzka/received_events",
"type": "User",
"site_admin": false
},
"node_id": "RE_kwDOAFa3Gs4DGfXl",
"tag_name": "v5.7.6",
"target_commitish": "5.7",
"name": "Shopware 5.7.6",
"draft": false,
"prerelease": false,
"created_at": "2021-10-25T14:31:22Z",
"published_at": "2021-10-26T08:09:17Z",
"assets": [
],
"tarball_url": "https://api.github.com/repos/shopware5/shopware/tarball/v5.7.6",
"zipball_url": "https://api.github.com/repos/shopware5/shopware/zipball/v5.7.6",
"body": "Find more information here: https://en.shopware.com/changelog-sw5/#5-7-6\r\n\r\nChanges: https://github.com/shopware/shopware/compare/v5.7.5...v5.7.6"
},
{
"url": "https://api.github.com/repos/shopware5/shopware/releases/51623810",
"assets_url": "https://api.github.com/repos/shopware5/shopware/releases/51623810/assets",
"upload_url": "https://uploads.github.com/repos/shopware5/shopware/releases/51623810/assets{?name,label}",
"html_url": "https://github.com/shopware5/shopware/releases/tag/v5.7.5",
"id": 51623810,
"author": {
"login": "swDennis",
"id": 11271248,
"node_id": "MDQ6VXNlcjExMjcxMjQ4",
"avatar_url": "https://avatars.githubusercontent.com/u/11271248?v=4",
"gravatar_id": "",
"url": "https://api.github.com/users/swDennis",
"html_url": "https://github.com/swDennis",
"followers_url": "https://api.github.com/users/swDennis/followers",
"following_url": "https://api.github.com/users/swDennis/following{/other_user}",
"gists_url": "https://api.github.com/users/swDennis/gists{/gist_id}",
"starred_url": "https://api.github.com/users/swDennis/starred{/owner}{/repo}",
"subscriptions_url": "https://api.github.com/users/swDennis/subscriptions",
"organizations_url": "https://api.github.com/users/swDennis/orgs",
"repos_url": "https://api.github.com/users/swDennis/repos",
"events_url": "https://api.github.com/users/swDennis/events{/privacy}",
"received_events_url": "https://api.github.com/users/swDennis/received_events",
"type": "User",
"site_admin": false
},
"node_id": "RE_kwDOAFa3Gs4DE7eC",
"tag_name": "v5.7.5",
"target_commitish": "5.7",
"name": "Shopware 5.7.5",
"draft": false,
"prerelease": false,
"created_at": "2021-10-19T13:07:07Z",
"published_at": "2021-10-19T14:08:08Z",
"assets": [
],
"tarball_url": "https://api.github.com/repos/shopware5/shopware/tarball/v5.7.5",
"zipball_url": "https://api.github.com/repos/shopware5/shopware/zipball/v5.7.5",
"body": "Find more information here: https://en.shopware.com/changelog-sw5/#5-7-5\r\n\r\nChanges: https://github.com/shopware/shopware/compare/v5.7.4...v5.7.5"
},
{
"url": "https://api.github.com/repos/shopware5/shopware/releases/51516942",
"assets_url": "https://api.github.com/repos/shopware5/shopware/releases/51516942/assets",
"upload_url": "https://uploads.github.com/repos/shopware5/shopware/releases/51516942/assets{?name,label}",
"html_url": "https://github.com/shopware5/shopware/releases/tag/v5.7.4",
"id": 51516942,
"author": {
"login": "swDennis",
"id": 11271248,
"node_id": "MDQ6VXNlcjExMjcxMjQ4",
"avatar_url": "https://avatars.githubusercontent.com/u/11271248?v=4",
"gravatar_id": "",
"url": "https://api.github.com/users/swDennis",
"html_url": "https://github.com/swDennis",
"followers_url": "https://api.github.com/users/swDennis/followers",
"following_url": "https://api.github.com/users/swDennis/following{/other_user}",
"gists_url": "https://api.github.com/users/swDennis/gists{/gist_id}",
"starred_url": "https://api.github.com/users/swDennis/starred{/owner}{/repo}",
"subscriptions_url": "https://api.github.com/users/swDennis/subscriptions",
"organizations_url": "https://api.github.com/users/swDennis/orgs",
"repos_url": "https://api.github.com/users/swDennis/repos",
"events_url": "https://api.github.com/users/swDennis/events{/privacy}",
"received_events_url": "https://api.github.com/users/swDennis/received_events",
"type": "User",
"site_admin": false
},
"node_id": "RE_kwDOAFa3Gs4DEhYO",
"tag_name": "v5.7.4",
"target_commitish": "5.7",
"name": "Shopware 5.7.4",
"draft": false,
"prerelease": false,
"created_at": "2021-10-12T14:37:30Z",
"published_at": "2021-10-18T07:13:21Z",
"assets": [
],
"tarball_url": "https://api.github.com/repos/shopware5/shopware/tarball/v5.7.4",
"zipball_url": "https://api.github.com/repos/shopware5/shopware/zipball/v5.7.4",
"body": "Find more information here: https://en.shopware.com/changelog-sw5/#5-7-4\r\n\r\nChanges: https://github.com/shopware/shopware/compare/v5.7.3...v5.7.4"
},
{
"url": "https://api.github.com/repos/shopware5/shopware/releases/49181744",
"assets_url": "https://api.github.com/repos/shopware5/shopware/releases/49181744/assets",
"upload_url": "https://uploads.github.com/repos/shopware5/shopware/releases/49181744/assets{?name,label}",
"html_url": "https://github.com/shopware5/shopware/releases/tag/v5.7.3",
"id": 49181744,
"author": {
"login": "mitelg",
"id": 6985627,
"node_id": "MDQ6VXNlcjY5ODU2Mjc=",
"avatar_url": "https://avatars.githubusercontent.com/u/6985627?v=4",
"gravatar_id": "",
"url": "https://api.github.com/users/mitelg",
"html_url": "https://github.com/mitelg",
"followers_url": "https://api.github.com/users/mitelg/followers",
"following_url": "https://api.github.com/users/mitelg/following{/other_user}",
"gists_url": "https://api.github.com/users/mitelg/gists{/gist_id}",
"starred_url": "https://api.github.com/users/mitelg/starred{/owner}{/repo}",
"subscriptions_url": "https://api.github.com/users/mitelg/subscriptions",
"organizations_url": "https://api.github.com/users/mitelg/orgs",
"repos_url": "https://api.github.com/users/mitelg/repos",
"events_url": "https://api.github.com/users/mitelg/events{/privacy}",
"received_events_url": "https://api.github.com/users/mitelg/received_events",
"type": "User",
"site_admin": false
},
"node_id": "RE_kwDOAFa3Gs4C7nQw",
"tag_name": "v5.7.3",
"target_commitish": "5.7",
"name": "Shopware 5.7.3",
"draft": false,
"prerelease": false,
"created_at": "2021-09-08T06:34:22Z",
"published_at": "2021-09-08T08:51:57Z",
"assets": [
],
"tarball_url": "https://api.github.com/repos/shopware5/shopware/tarball/v5.7.3",
"zipball_url": "https://api.github.com/repos/shopware5/shopware/zipball/v5.7.3",
"body": "Find more information here: https://en.shopware.com/changelog-sw5/#5-7-3\r\n\r\nChanges: https://github.com/shopware/shopware/compare/v5.7.2...v5.7.3"
},
{
"url": "https://api.github.com/repos/shopware5/shopware/releases/45699885",
"assets_url": "https://api.github.com/repos/shopware5/shopware/releases/45699885/assets",
"upload_url": "https://uploads.github.com/repos/shopware5/shopware/releases/45699885/assets{?name,label}",
"html_url": "https://github.com/shopware5/shopware/releases/tag/v5.7.2",
"id": 45699885,
"author": {