forked from microsoft/vcpkg
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathCHANGELOG.md
10523 lines (8440 loc) · 536 KB
/
CHANGELOG.md
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
vcpkg (2020.04.20 - 2020.06.15)
---
#### Total port count: 1402
#### Total port count per triplet (tested):
|triplet|ports available|
|---|---|
|**x64-windows**|1282|
|**x64-osx**|1109|
|**x64-linux**|1181|
|x64-windows-static|1187|
|x86-windows|1261|
|x64-uwp|693|
|arm64-windows|903|
|arm-uwp|656|
#### The following documentation has been updated:
- [Testing](docs/tool-maintainers/testing.md)
- [(#11007)](https://github.com/microsoft/vcpkg/pull/11007) [vcpkg] Fix Catch2 include path in documentation (by @horenmar)
- [Maintainer Guidelines and Policies](docs/maintainers/maintainer-guide.md)
- [(#8749)](https://github.com/microsoft/vcpkg/pull/8749) [vcpkg] Add new function vcpkg_copy_tools (by @myd7349)
- [Portfile helper functions](docs/maintainers/portfile-functions.md)
- [(#8749)](https://github.com/microsoft/vcpkg/pull/8749) [vcpkg] Add new function vcpkg_copy_tools (by @myd7349)
- [(#10505)](https://github.com/microsoft/vcpkg/pull/10505) [gn, crashpad] Add GN build support and crashpad port (by @myd7349)
- [vcpkg_clean_executables_in_bin](docs/maintainers/vcpkg_clean_executables_in_bin.md)***[NEW]***
- [(#8749)](https://github.com/microsoft/vcpkg/pull/8749) [vcpkg] Add new function vcpkg_copy_tools (by @myd7349)
- [vcpkg_copy_tools](docs/maintainers/vcpkg_copy_tools.md)***[NEW]***
- [(#8749)](https://github.com/microsoft/vcpkg/pull/8749) [vcpkg] Add new function vcpkg_copy_tools (by @myd7349)
- [vcpkg_build_gn](docs/maintainers/vcpkg_build_gn.md)***[NEW]***
- [(#10505)](https://github.com/microsoft/vcpkg/pull/10505) [gn, crashpad] Add GN build support and crashpad port (by @vejmartin)
- [vcpkg_build_ninja](docs/maintainers/vcpkg_build_ninja.md)***[NEW]***
- [(#10505)](https://github.com/microsoft/vcpkg/pull/10505) [gn, crashpad] Add GN build support and crashpad port (by @vejmartin)
- [vcpkg_configure_gn](docs/maintainers/vcpkg_configure_gn.md)***[NEW]***
- [(#10505)](https://github.com/microsoft/vcpkg/pull/10505) [gn, crashpad] Add GN build support and crashpad port (by @vejmartin)
- [vcpkg_find_acquire_program](docs/maintainers/vcpkg_find_acquire_program.md)
- [(#10505)](https://github.com/microsoft/vcpkg/pull/10505) [gn, crashpad] Add GN build support and crashpad port (by @vejmartin)
- [vcpkg_install_gn](docs/maintainers/vcpkg_install_gn.md)***[NEW]***
- [(#10505)](https://github.com/microsoft/vcpkg/pull/10505) [gn, crashpad] Add GN build support and crashpad port (by @vejmartin)
- [vcpkg and Android](docs/examples/vcpkg_android_example_cmake_script/cmake/vcpkg_android.cmake)***[NEW]***
- [(#11264)](https://github.com/microsoft/vcpkg/pull/11264) Improve Android doc (triplets, usage with cmake and prefab) (by @pthom)
- [vcpkg telemetry and privacy](docs/about/privacy.md)
- [(#11542)](https://github.com/microsoft/vcpkg/pull/11542) [vcpkg metrics] Allow someone to opt out after build (by @strega-nil)
- [Manifests](docs/specifications/manifests.md)***[NEW]***
- [(#11203)](https://github.com/microsoft/vcpkg/pull/11203) [vcpkg] RFC: Manifests (by @strega-nil)
- [CONTROL files](docs/maintainers/control-files.md)
- [(#11323)](https://github.com/microsoft/vcpkg/pull/11323) [vcpkg] add x86-wasm.cmake to community triplets (by @MoAlyousef)
- [(#11365)](https://github.com/microsoft/vcpkg/pull/11365) [vcpkg] [cudnn] [msmpi] [openmpi] Update VMSS (by @MoAlyousef)
- [Installing and Using Packagese Example: SQLite](docs/examples/installing-and-using-packages.md)
- [(#11763)](https://github.com/microsoft/vcpkg/pull/11763) docs: fix CMakeLists example for SQLite3 (by @disposedtrolley)
#### The following changes have been made to the vcpkg tool and infrastructure:
- [(#10828)](https://github.com/microsoft/vcpkg/pull/10828) Onboard Windows PR tests to Azure Pipelines YAML and Scale Sets (by @BillyONeal)
- [(#10932)](https://github.com/microsoft/vcpkg/pull/10932) [vcpkg] Update git to 2.26.2 (by @Cheney-W)
- [(#10973)](https://github.com/microsoft/vcpkg/pull/10973) [vcpkg] Fix toolsrc CMake build error (by @NancyLi1013)
- [(#11009)](https://github.com/microsoft/vcpkg/pull/11009) Fix slack link to current, correct, location. (by @grafikrobot)
- [(#9861)](https://github.com/microsoft/vcpkg/pull/9861) [scripts] add new function vcpkg_fixup_pkgconfig (by @Neumann-A)
- [(#11064)](https://github.com/microsoft/vcpkg/pull/11064) [vcpkg] Copy macos pipelines into azure-pipelines.yml (by @BillyONeal)
- [(#10476)](https://github.com/microsoft/vcpkg/pull/10476) [vcpkg] Add support for VCPKG_BINARY_SOURCES and --x-binarysource=<> (by @ras0219-msft)
- [(#11068)](https://github.com/microsoft/vcpkg/pull/11068) [vcpkg] Small touchups for vcpkg unit tests (by @horenmar)
- [(#11085)](https://github.com/microsoft/vcpkg/pull/11085) [vcpkg] Correctly record default feature list in BinaryParagraphs. Fixes #10678. (by @ras0219-msft)
- [(#11090)](https://github.com/microsoft/vcpkg/pull/11090) [vcpkg] Bump macos build timeouts to 1 day (by @BillyONeal)
- [(#11091)](https://github.com/microsoft/vcpkg/pull/11091) [vcpkg baseline] Ignore mlpack on macOS (by @strega-nil)
- [(#11083)](https://github.com/microsoft/vcpkg/pull/11083) [vcpkg] Warn on unmatched removal with reasonable alternative (by @ras0219-msft)
- [(#11102)](https://github.com/microsoft/vcpkg/pull/11102) [vcpkg] fix undefined working dir in vcpkg_acquire_msys (by @Neumann-A)
- [(#11058)](https://github.com/microsoft/vcpkg/pull/11058) [msbuild]fix use UseEnv-True (by @Voskrese)
- [(#10980)](https://github.com/microsoft/vcpkg/pull/10980) [vcpkg] Onboard Linux to VMSS, open 'git' port, and switch back to Azure Spot (by @BillyONeal)
- [(#8749)](https://github.com/microsoft/vcpkg/pull/8749) [vcpkg] Add new function vcpkg_copy_tools (by @myd7349)
- [(#11166)](https://github.com/microsoft/vcpkg/pull/11166) [vcpkg] Add disk space report on Linux. (by @BillyONeal)
- [(#11170)](https://github.com/microsoft/vcpkg/pull/11170) [vcpkg] fix bug in Filesystem::absolute (by @strega-nil)
- [(#11175)](https://github.com/microsoft/vcpkg/pull/11175) [vcpkg] Point README.md to the correct status badge. (by @BillyONeal)
- [(#11171)](https://github.com/microsoft/vcpkg/pull/11171) [vcpkg] Add telemetry notice to `README.md`. (by @BillyONeal)
- [(#11189)](https://github.com/microsoft/vcpkg/pull/11189) [vcpkg] Add tombstone deletion scripts. (by @BillyONeal)
- [(#11105)](https://github.com/microsoft/vcpkg/pull/11105) [vcpkg/scripts] Fix ninja search path on windows and find binaries within vcpkg first (by @Neumann-A)
- [(#11202)](https://github.com/microsoft/vcpkg/pull/11202) [vcpkg] always pass VSCMD_SKIP_SENDTELEMETRY=1 (by @strega-nil)
- [(#8588)](https://github.com/microsoft/vcpkg/pull/8588) [vcpkg] Add x86 support for Linux toolchain (by @zhbanito)
- [(#11213)](https://github.com/microsoft/vcpkg/pull/11213) [vcpkg] Restrict telemetry uploads to TLS 1.2 (by @BillyONeal)
- [(#11234)](https://github.com/microsoft/vcpkg/pull/11234) [vcpkg] Don't build the metrics uploader when metrics are disabled. (by @BillyONeal)
- [(#11233)](https://github.com/microsoft/vcpkg/pull/11233) [vcpkg] Resolve relative overlay ports to the current working directory. (by @ras0219-msft)
- [(#10760)](https://github.com/microsoft/vcpkg/pull/10760) [vcpkg] Adding support for finding VS2019 by environment variable (by @Honeybunch)
- [(#11174)](https://github.com/microsoft/vcpkg/pull/11174) [vcpkg] [llvm] Bump Linux VM memory size and do all operations on the temporary disk. (by @BillyONeal)
- [(#11266)](https://github.com/microsoft/vcpkg/pull/11266) [vcpkg][android] Link C++ runtime according to VCPKG_CRT_LINKAGE (by @huangqinjin)
- [(#11260)](https://github.com/microsoft/vcpkg/pull/11260) [vcpkg] Update pull request template (by @PhoebeHui)
- [(#11302)](https://github.com/microsoft/vcpkg/pull/11302) [vcpkg] Resolve --overlay-ports is only working for relative parths since fix… (by @TobiasFunk)
- [(#11205)](https://github.com/microsoft/vcpkg/pull/11205) [vcpkg] Hopefully fix build on macOS 10.13/10.14 (by @strega-nil)
- [(#11093)](https://github.com/microsoft/vcpkg/pull/11093) [vcpkg] Fix nuget package import failed. (by @shihaonan369)
- [(#11239)](https://github.com/microsoft/vcpkg/pull/11239) [vcpkg] Turn on tests in CI. (by @BillyONeal)
- [(#11339)](https://github.com/microsoft/vcpkg/pull/11339) [vcpkg] Avoid naming Policheck sensitive term 'Virgin Islands' (by @BillyONeal)
- [(#11368)](https://github.com/microsoft/vcpkg/pull/11368) [vcpkg] Do not build the metrics uploader with MSBuild when metrics are disabled (by @rickertm)
- [(#11315)](https://github.com/microsoft/vcpkg/pull/11315) [vcpkg] Harden expand environment strings path with explicit integer overflow checks and resistance to CP_ACP. (by @BillyONeal)
- [(#11450)](https://github.com/microsoft/vcpkg/pull/11450) [vcpkg CI] Clean git directory before clone (by @strega-nil)
- [(#11432)](https://github.com/microsoft/vcpkg/pull/11432) [vcpkg] Harden file removals and clean directory contents in "CI" inside vcpkg itself. (by @BillyONeal)
- [(#10767)](https://github.com/microsoft/vcpkg/pull/10767) [cmake] Update to 3.17.2 (by @JackBoosY)
- [(#11433)](https://github.com/microsoft/vcpkg/pull/11433) [vcpkg] Optimize string split slightly. (by @BillyONeal)
- [(#11299)](https://github.com/microsoft/vcpkg/pull/11299) [vcpkg] pass -disableMetrics to bootstrap on git bash (by @strega-nil)
- [(#11453)](https://github.com/microsoft/vcpkg/pull/11453) Fix CMake PATH that fails Windows tests. (by @BillyONeal)
- [(#11343)](https://github.com/microsoft/vcpkg/pull/11343) [vcpkg] fix extern C around ctermid (by @strega-nil)
- [(#11380)](https://github.com/microsoft/vcpkg/pull/11380) [tool-meson] Update to 0.54.2 (by @c72578)
- [(#11057)](https://github.com/microsoft/vcpkg/pull/11057) [Vcpkg] Fix macOS applocal.py dependency bundling error (by @kevinhartman)
- [(#10402)](https://github.com/microsoft/vcpkg/pull/10402) [vcpkg] Improve make builds (by @Neumann-A)
- [(#11431)](https://github.com/microsoft/vcpkg/pull/11431) [vcpkg] Add static triplet for arm64-windows (by @orudge)
- [(#11466)](https://github.com/microsoft/vcpkg/pull/11466) [vcpkg] Fix cmake architecture detection on windows with ninja generator (by @Chronial)
- [(#11512)](https://github.com/microsoft/vcpkg/pull/11512) [vcpkg] Remove powershell from the 'run vcpkg ci' path to reduce hangs from msys components. (by @BillyONeal)
- [(#11443)](https://github.com/microsoft/vcpkg/pull/11443) [vcpkg-acquire-msys] Update pacman before any other package. (by @emptyVoid)
- [(#11496)](https://github.com/microsoft/vcpkg/pull/11496) [Baseline] Fix boost-*:arm-uwp failure and resolve conflicts in CI (by @PhoebeHui)
- [(#11559)](https://github.com/microsoft/vcpkg/pull/11559) [VCPKG baseline] Fix many ports (by @JackBoosY)
- [(#11545)](https://github.com/microsoft/vcpkg/pull/11545) [vcpkg] Move CI cleaning back out of the 'ci' command into a separate command to restore cross-compilation preinstalls. (by @BillyONeal)
- [(#11612)](https://github.com/microsoft/vcpkg/pull/11612) [vcpkg baseline] Fix baseline failures (by @PhoebeHui)
- [(#11542)](https://github.com/microsoft/vcpkg/pull/11542) [vcpkg metrics] Allow someone to opt out after build (by @strega-nil)
- [(#11653)](https://github.com/microsoft/vcpkg/pull/11653) [vcpkg] Rename the msbuild property VcpkgRoot (by @BillyONeal)
- [(#11629)](https://github.com/microsoft/vcpkg/pull/11629) [vcpkg] Use a crypto RNG to generate admin passwords (by @BillyONeal)
- [(#11697)](https://github.com/microsoft/vcpkg/pull/11697) [vcpkg baseline] fix libb2:x64-osx (by @strega-nil)
- [(#11668)](https://github.com/microsoft/vcpkg/pull/11668) [CI|python3] add setuptools (by @Neumann-A)
- [(#11613)](https://github.com/microsoft/vcpkg/pull/11613) [vcpkg-baseline][unixodbc/nanodbc] Fix unixodbc build failure and set it as a dependency on nanodbc (by @JackBoosY)
- [(#11692)](https://github.com/microsoft/vcpkg/pull/11692) [vcpkg baseline] Remove passing port from Ci baseline (by @PhoebeHui)
- [(#11323)](https://github.com/microsoft/vcpkg/pull/11323) [vcpkg] add x86-wasm.cmake to community triplets (by @MoAlyousef)
- [(#11647)](https://github.com/microsoft/vcpkg/pull/11647) [vcpkg baseline][libfabric] Only support dynamic build (by @JackBoosY)
- [(#11483)](https://github.com/microsoft/vcpkg/pull/11483) [vcpkg] Allow CI to pass in all relevant directories and remove use of symbolic links (by @BillyONeal)
- [(#11764)](https://github.com/microsoft/vcpkg/pull/11764) [vcpkg] Add directories to x-ci-clean lost in merge conflict resolution. (by @BillyONeal)
- [(#11742)](https://github.com/microsoft/vcpkg/pull/11742) [vcpkg-baseline][manyport] Fix baseline error (by @JackBoosY)
- [(#11779)](https://github.com/microsoft/vcpkg/pull/11779) [vcpkg] Provide $(VcpkgRoot) and $(VcpkgCurrentInstalledDir) for customers. (by @BillyONeal)
- [(#11750)](https://github.com/microsoft/vcpkg/pull/11750) [vcpkg README] Add #include<C++> channel (by @strega-nil)
- [(#11693)](https://github.com/microsoft/vcpkg/pull/11693) [CI|gfortran] Install gfortran for OSX and Linux CI (by @Neumann-A)
- [(#11839)](https://github.com/microsoft/vcpkg/pull/11839) [vcpkg] Fix OSX CI by ensuring the downloads directory exists (by @BillyONeal
- [(#11810)](https://github.com/microsoft/vcpkg/pull/11810) [vcpkg-acquire-msys] Improvement (by @emptyVoid)
- [(#11365)](https://github.com/microsoft/vcpkg/pull/11365) [vcpkg] [cudnn] [msmpi] [openmpi] Update VMSS (by @BillyONeal)
- [(#11146)](https://github.com/microsoft/vcpkg/pull/11146) [vcpkg] Add nologo to windows toolchain (by @Neumann-A)
- [(#11891)](https://github.com/microsoft/vcpkg/pull/11891) [vcpkg] Fix bootstrap on VS2015 (by @BillyONeal)
- [(#11858)](https://github.com/microsoft/vcpkg/pull/11858) [vcpkg] Merge unit test pass into x86-windows. (by @BillyONeal)
- [(#11896)](https://github.com/microsoft/vcpkg/pull/11896) [vcpkg baseline] Fix baseline error (by @JackBoosY)
- [(#4361)](https://github.com/microsoft/vcpkg/pull/4361) Adds vcpkg item to project settings in Visual Studio (by @Neumann-A)
- [(#11958)](https://github.com/microsoft/vcpkg/pull/11958) Delete g_binary_caching global that should be passed as a parameter. (by @BillyONeal)
<details>
<summary><b>The following 79 ports have been added:</b></summary>
|port|version|
|---|---|
|[ryml](https://github.com/microsoft/vcpkg/pull/10793)| 2020-04-12
|[qt5-androidextras](https://github.com/microsoft/vcpkg/pull/10644)<sup>[#11026](https://github.com/microsoft/vcpkg/pull/11026) </sup>| 5.12.8
|[qt5-canvas3d](https://github.com/microsoft/vcpkg/pull/10644)<sup>[#11026](https://github.com/microsoft/vcpkg/pull/11026) </sup>| 5.12.8
|[qt5-doc](https://github.com/microsoft/vcpkg/pull/10644)<sup>[#11026](https://github.com/microsoft/vcpkg/pull/11026) </sup>| 5.12.8
|[qt5-serialbus](https://github.com/microsoft/vcpkg/pull/10644)<sup>[#11026](https://github.com/microsoft/vcpkg/pull/11026) </sup>| 5.12.8
|[qt5-translations](https://github.com/microsoft/vcpkg/pull/10644)<sup>[#11026](https://github.com/microsoft/vcpkg/pull/11026) </sup>| 5.12.8
|[qt5-wayland](https://github.com/microsoft/vcpkg/pull/10644)<sup>[#11026](https://github.com/microsoft/vcpkg/pull/11026) </sup>| 5.12.8
|[qt5-webengine](https://github.com/microsoft/vcpkg/pull/10644)<sup>[#11026](https://github.com/microsoft/vcpkg/pull/11026) [#11120](https://github.com/microsoft/vcpkg/pull/11120) [#11653](https://github.com/microsoft/vcpkg/pull/11653) </sup>| 5.12.8
|[qt5-webglplugin](https://github.com/microsoft/vcpkg/pull/10644)<sup>[#11026](https://github.com/microsoft/vcpkg/pull/11026) </sup>| 5.12.8
|[qt5-x11extras](https://github.com/microsoft/vcpkg/pull/10644)<sup>[#11026](https://github.com/microsoft/vcpkg/pull/11026) </sup>| 5.12.8
|[iniparser](https://github.com/microsoft/vcpkg/pull/10710)| 2020-04-06
|[quill](https://github.com/microsoft/vcpkg/pull/10902)<sup>[#11326](https://github.com/microsoft/vcpkg/pull/11326) </sup>| 1.3.1
|[frozen](https://github.com/microsoft/vcpkg/pull/10766)| 1.0.0
|[cppcoro](https://github.com/microsoft/vcpkg/pull/10693)| 2020-2-28-1
|[libtomcrypt](https://github.com/microsoft/vcpkg/pull/10960)| 1.18.2-1
|[libtommath](https://github.com/microsoft/vcpkg/pull/10960)| 1.2.0-1
|[pe-parse](https://github.com/microsoft/vcpkg/pull/11012)| 1.2.0
|[opencc](https://github.com/microsoft/vcpkg/pull/8474)<sup>[#10767](https://github.com/microsoft/vcpkg/pull/10767) [#11559](https://github.com/microsoft/vcpkg/pull/11559) [#11612](https://github.com/microsoft/vcpkg/pull/11612) </sup>| 2020-04-26-4
|[uchardet](https://github.com/microsoft/vcpkg/pull/8477)| 2020-04-26
|[libqcow](https://github.com/microsoft/vcpkg/pull/11036)<sup>[#11238](https://github.com/microsoft/vcpkg/pull/11238) </sup>| 20191221-1
|[mstch](https://github.com/microsoft/vcpkg/pull/11020)| 1.0.2-2
|[nowide](https://github.com/microsoft/vcpkg/pull/11066)<sup>[#11732](https://github.com/microsoft/vcpkg/pull/11732) [#11859](https://github.com/microsoft/vcpkg/pull/11859) </sup>| alias
|[discord-game-sdk](https://github.com/microsoft/vcpkg/pull/10763)<sup>[#11728](https://github.com/microsoft/vcpkg/pull/11728) </sup>| 2.5.6-1
|[libmpeg2](https://github.com/microsoft/vcpkg/pull/8871)| 0.5.1
|[opencv2](https://github.com/microsoft/vcpkg/pull/7849)<sup>[#11201](https://github.com/microsoft/vcpkg/pull/11201) </sup>| 2.4.13.7-1
|[rtlsdr](https://github.com/microsoft/vcpkg/pull/10901)<sup>[#11575](https://github.com/microsoft/vcpkg/pull/11575) </sup>| 2020-04-16-1
|[gasol](https://github.com/microsoft/vcpkg/pull/9550)| 2018-01-04
|[coin](https://github.com/microsoft/vcpkg/pull/9880)| 4.0.0
|[simage](https://github.com/microsoft/vcpkg/pull/9880)| 1.8.0
|[soqt](https://github.com/microsoft/vcpkg/pull/9880)| 1.6.0
|[gmp](https://github.com/microsoft/vcpkg/pull/10613)<sup>[#11565](https://github.com/microsoft/vcpkg/pull/11565) </sup>| 6.2.0-1
|[nettle](https://github.com/microsoft/vcpkg/pull/10613)<sup>[#11565](https://github.com/microsoft/vcpkg/pull/11565) </sup>| 3.5.1-1
|[vs-yasm](https://github.com/microsoft/vcpkg/pull/10613)| 0.5.0
|[uthenticode](https://github.com/microsoft/vcpkg/pull/11199)<sup>[#11256](https://github.com/microsoft/vcpkg/pull/11256) [#11362](https://github.com/microsoft/vcpkg/pull/11362) </sup>| 1.0.4
|[bitserializer-pugixml](https://github.com/microsoft/vcpkg/pull/11241)<sup>[#11683](https://github.com/microsoft/vcpkg/pull/11683) </sup>| alias
|[ignition-math6](https://github.com/microsoft/vcpkg/pull/11232)| 6.4.0
|[vtk-m](https://github.com/microsoft/vcpkg/pull/11148)| 1.5.0
|[crashpad](https://github.com/microsoft/vcpkg/pull/10505)| 2020-03-18
|[bitserializer-rapidyaml](https://github.com/microsoft/vcpkg/pull/11242)<sup>[#11683](https://github.com/microsoft/vcpkg/pull/11683) </sup>| alias
|[ignition-msgs5](https://github.com/microsoft/vcpkg/pull/11272)<sup>[#11397](https://github.com/microsoft/vcpkg/pull/11397) </sup>| 5.1.0
|[ignition-transport8](https://github.com/microsoft/vcpkg/pull/11272)| 8.0.0
|[sdformat9](https://github.com/microsoft/vcpkg/pull/11265)<sup>[#11742](https://github.com/microsoft/vcpkg/pull/11742) </sup>| 9.2.0-1
|[kissfft](https://github.com/microsoft/vcpkg/pull/9237)| 2020-03-30
|[jaeger-client-cpp](https://github.com/microsoft/vcpkg/pull/9126)<sup>[#11583](https://github.com/microsoft/vcpkg/pull/11583) </sup>| 0.5.1-1
|[libmediainfo](https://github.com/microsoft/vcpkg/pull/7005)| 20.03
|[h5py-lzf](https://github.com/microsoft/vcpkg/pull/10871)| 2019-12-04
|[microsoft-signalr](https://github.com/microsoft/vcpkg/pull/10833)<sup>[#11496](https://github.com/microsoft/vcpkg/pull/11496) </sup>| 0.1.0-alpha1-1
|[oatpp-consul](https://github.com/microsoft/vcpkg/pull/9402)| 1.0.0
|[oatpp-curl](https://github.com/microsoft/vcpkg/pull/9402)| 1.0.0
|[oatpp-libressl](https://github.com/microsoft/vcpkg/pull/9402)| 1.0.0
|[oatpp-mbedtls](https://github.com/microsoft/vcpkg/pull/9402)| 1.0.0
|[oatpp-swagger](https://github.com/microsoft/vcpkg/pull/9402)| 1.0.0
|[oatpp-websocket](https://github.com/microsoft/vcpkg/pull/9402)| 1.0.0
|[oatpp](https://github.com/microsoft/vcpkg/pull/9402)| 1.0.0
|[gperftools](https://github.com/microsoft/vcpkg/pull/8750)| 2019-09-02
|[libvmdk](https://github.com/microsoft/vcpkg/pull/11010)| 2019-12-21
|[ctp](https://github.com/microsoft/vcpkg/pull/10717)| 6.3.15_20190220_se
|[munit](https://github.com/microsoft/vcpkg/pull/6780)| 2019-04-06
|[mmloader](https://github.com/microsoft/vcpkg/pull/11381)| 2020-05-15
|[absent](https://github.com/microsoft/vcpkg/pull/11447)| 0.3.0
|[ocilib](https://github.com/microsoft/vcpkg/pull/11549)<sup>[#11646](https://github.com/microsoft/vcpkg/pull/11646) </sup>| 4.6.4-1
|[tinyply](https://github.com/microsoft/vcpkg/pull/11534)| 2020-05-22
|[symengine](https://github.com/microsoft/vcpkg/pull/8752)| 2020-05-25
|[nanoprintf](https://github.com/microsoft/vcpkg/pull/11605)| 2020-05-27
|[wavelib](https://github.com/microsoft/vcpkg/pull/11611)| 2020-05-29
|[refl-cpp](https://github.com/microsoft/vcpkg/pull/11622)| 0.9.1
|[trantor](https://github.com/microsoft/vcpkg/pull/11533)| v1.0.0-rc13
|[sockpp](https://github.com/microsoft/vcpkg/pull/11562)| 0.7
|[protozero](https://github.com/microsoft/vcpkg/pull/11652)| 1.6.8
|[p-ranav-csv2](https://github.com/microsoft/vcpkg/pull/11725)| 2020-06-02
|[cr](https://github.com/microsoft/vcpkg/pull/11841)| 2020-04-26
|[json-schema-validator](https://github.com/microsoft/vcpkg/pull/11599)| 2.1.0
|[log4cxx](https://github.com/microsoft/vcpkg/pull/11659)| 0.10.0-2
|[xbyak](https://github.com/microsoft/vcpkg/pull/11689)| 5.911
|[licensepp](https://github.com/microsoft/vcpkg/pull/11711)| 2020-05-19
|[v-hacd](https://github.com/microsoft/vcpkg/pull/11606)| 3.2.0
|[libosmium](https://github.com/microsoft/vcpkg/pull/11863)| 2.15.5
|[gzip-hpp](https://github.com/microsoft/vcpkg/pull/11735)| 0.1.0
|[infoware](https://github.com/microsoft/vcpkg/pull/11410)| 0.5.3
</details>
<details>
<summary><b>The following 375 ports have been updated:</b></summary>
- otl `4.0.451` -> `4.0.455`
- [(#10922)](https://github.com/microsoft/vcpkg/pull/10922) [vcpkg baseline] Update hash for otl
- [(#11300)](https://github.com/microsoft/vcpkg/pull/11300) [otl] Update to 4.0.455
- vtk `8.2.0-12` -> `9.0-2`
- [(#10925)](https://github.com/microsoft/vcpkg/pull/10925) [VTK] Check if VTKTarget files exist
- [(#11148)](https://github.com/microsoft/vcpkg/pull/11148) [VTK/vtk-m] Update VTK to 9.0 and add vtk-m
- [(#11643)](https://github.com/microsoft/vcpkg/pull/11643) [vtk] Fix single configuration builds
- [(#11708)](https://github.com/microsoft/vcpkg/pull/11708) [python3] Update to Python 3.8
- winreg `1.2.1-1` -> `3.1.0`
- [(#10926)](https://github.com/microsoft/vcpkg/pull/10926) [winreg] Update to 2.2.0
- [(#10976)](https://github.com/microsoft/vcpkg/pull/10976) [WinReg] update to v2.2.2
- [(#11034)](https://github.com/microsoft/vcpkg/pull/11034) [winreg] Update to 2.2.3
- [(#11766)](https://github.com/microsoft/vcpkg/pull/11766) [winreg] Update to 2.4.0
- [(#11883)](https://github.com/microsoft/vcpkg/pull/11883) [WinReg] Update to 3.0.1
- [(#11888)](https://github.com/microsoft/vcpkg/pull/11888) [WinReg] Update to 3.1.0
- libyaml `0.2.2-2` -> `0.2.2-3`
- [(#10908)](https://github.com/microsoft/vcpkg/pull/10908) [libyaml] Fix linkage in non-Windows systems
- libzippp `2019-07-22` -> `3.1-1.6.1`
- [(#10893)](https://github.com/microsoft/vcpkg/pull/10893) [libzippp] Update to libzippp-v3.1-1.6.1
- blend2d `beta_2020-04-15` -> `beta_2020-06-01`
- [(#10891)](https://github.com/microsoft/vcpkg/pull/10891) [blend2d] Update to beta_2020-04-19
- [(#11155)](https://github.com/microsoft/vcpkg/pull/11155) [blend2d] Update to beta_2020-05-04
- [(#11778)](https://github.com/microsoft/vcpkg/pull/11778) [blend2d] Update to beta_2020-06-01
- pegtl `3.0.0-pre-9d58962` -> `3.0.0-pre-83b6cdc`
- [(#10870)](https://github.com/microsoft/vcpkg/pull/10870) [pegtl] Update to latest commit from 4/5/2020
- [(#11148)](https://github.com/microsoft/vcpkg/pull/11148) [VTK/vtk-m] Update VTK to 9.0 and add vtk-m
- [(#11531)](https://github.com/microsoft/vcpkg/pull/11531) [pegtl/cppgraphqlgen] matching updates for dependency
- skyr-url `1.5.1` -> `1.9.0`
- [(#10868)](https://github.com/microsoft/vcpkg/pull/10868) [skyr-url] Bump version to 1.7.0
- [(#10954)](https://github.com/microsoft/vcpkg/pull/10954) [skyr-url] Updated port to use version 1.7.3
- [(#11153)](https://github.com/microsoft/vcpkg/pull/11153) [skyr-url] Changed skyr-url version number to 1.7.5
- [(#11568)](https://github.com/microsoft/vcpkg/pull/11568) [skyr-url] Changed version number to 1.9.0
- [(#11774)](https://github.com/microsoft/vcpkg/pull/11774) [skyr-url] Changed version number for skyr-url
- protobuf `3.11.3` -> `3.12.0-2`
- [(#10863)](https://github.com/microsoft/vcpkg/pull/10863) [protobuf] Update to 3.11.4
- [(#11228)](https://github.com/microsoft/vcpkg/pull/11228) [protobuf] Correct protobuf under android (Fix issue #8218)
- [(#11397)](https://github.com/microsoft/vcpkg/pull/11397) [protobuf] protobuf v3.12.0
- [(#11504)](https://github.com/microsoft/vcpkg/pull/11504) [protobuf] Fix RPATH error for static build
- [(#11516)](https://github.com/microsoft/vcpkg/pull/11516) [protobuf] Don't redefine PROTOBUF_USE_DLLS
- sdformat6 `6.2.0` -> `6.2.0-1`
- [(#10859)](https://github.com/microsoft/vcpkg/pull/10859) [sdformat6] Migrate from Bitbucket to GitHub 🤖
- ompl `1.4.2-2` -> `1.4.2-4`
- [(#10854)](https://github.com/microsoft/vcpkg/pull/10854) [ompl] Fix ompl[app] build error
- [(#10972)](https://github.com/microsoft/vcpkg/pull/10972) [ompl] Fix patch apply error
- dlib `19.17-1` -> `19.19-1`
- [(#10826)](https://github.com/microsoft/vcpkg/pull/10826) [dlib] Updated dlib to v19.19
- [(#11195)](https://github.com/microsoft/vcpkg/pull/11195) [dlib] add more granularity in features
- arrow `0.17.0` -> `0.17.1`
- [(#10800)](https://github.com/microsoft/vcpkg/pull/10800) [Arrow] Explicitly enable CSV and JSON
- [(#11016)](https://github.com/microsoft/vcpkg/pull/11016) [Arrow] Add filesystem feature
- [(#11472)](https://github.com/microsoft/vcpkg/pull/11472) [Arrow] Update to 0.17.1
- ace `6.5.8` -> `6.5.9-5`
- [(#10984)](https://github.com/microsoft/vcpkg/pull/10984) [ace] Add support for MacOSX
- [(#11112)](https://github.com/microsoft/vcpkg/pull/11112) [ace] Update to 6.5.9
- [(#11369)](https://github.com/microsoft/vcpkg/pull/11369) [ace] Add patch to fix Visual Studio 2019 16.5 internal compiler error
- [(#11441)](https://github.com/microsoft/vcpkg/pull/11441) [ace] Add support for uwp
- [(#11464)](https://github.com/microsoft/vcpkg/pull/11464) [ace] Simplified port file
- [(#11713)](https://github.com/microsoft/vcpkg/pull/11713) [ace] Fix missing cpp files
- [(#11473)](https://github.com/microsoft/vcpkg/pull/11473) [ace] tao as feature
- libaaplus `2.12` -> `2.12-1`
- [(#10981)](https://github.com/microsoft/vcpkg/pull/10981) [libaaplus] Use versioned download link
- spscqueue `2019-07-26` -> `1.0`
- [(#10874)](https://github.com/microsoft/vcpkg/pull/10874) [spscqueue] Update to version 1.0
- googleapis `0.8.0` -> `alias`
- [(#10994)](https://github.com/microsoft/vcpkg/pull/10994) [googleapis] update to v0.9.0
- [(#11698)](https://github.com/microsoft/vcpkg/pull/11698) [google-cloud-cpp] Consolidate all google-cloud* packages
- ms-gsl `3.0.0` -> `3.0.1`
- [(#10993)](https://github.com/microsoft/vcpkg/pull/10993) [ms-gsl] Update to 3.0.1
- ryu `2.0-1` -> `2.0-2`
- [(#10989)](https://github.com/microsoft/vcpkg/pull/10989) [ryu]Ryu include fix
- glm `0.9.9.7` -> `0.9.9.8`
- [(#10977)](https://github.com/microsoft/vcpkg/pull/10977) [glm, sqlitecpp] update to new version
- sqlitecpp `2.3.0-1` -> `3.0.0`
- [(#10977)](https://github.com/microsoft/vcpkg/pull/10977) [glm, sqlitecpp] update to new version
- nngpp `1.2.4` -> `1.3.0`
- [(#10975)](https://github.com/microsoft/vcpkg/pull/10975) [nngpp] Update to 1.3.0
- libvpx `1.8.1-1` -> `1.8.1-5`
- [(#10952)](https://github.com/microsoft/vcpkg/pull/10952) [libvpx][mpg123] Fix use of YASM in MSBuild (via path)
- [(#11058)](https://github.com/microsoft/vcpkg/pull/11058) [msbuild]fix use UseEnv-True
- [(#11022)](https://github.com/microsoft/vcpkg/pull/11022) [libvpx] Added support for build on MacOS and Linux
- [(#11500)](https://github.com/microsoft/vcpkg/pull/11500) [libvpx] Change default target on Unix
- [(#11795)](https://github.com/microsoft/vcpkg/pull/11795) [libvpx] Add cmake config file
- mpg123 `1.25.8-6` -> `1.25.8-9`
- [(#10952)](https://github.com/microsoft/vcpkg/pull/10952) [libvpx][mpg123] Fix use of YASM in MSBuild (via path)
- [(#11058)](https://github.com/microsoft/vcpkg/pull/11058) [msbuild]fix use UseEnv-True
- [(#11287)](https://github.com/microsoft/vcpkg/pull/11287) [mpg123] Enable UWP support
- [(#11896)](https://github.com/microsoft/vcpkg/pull/11896) [vcpkg baseline] Fix baseline error
- qt5-3d `5.12.5-1` -> `5.12.8`
- [(#10644)](https://github.com/microsoft/vcpkg/pull/10644) [Qt[latest]] Update to 5.14.2
- [(#10749)](https://github.com/microsoft/vcpkg/pull/10749) [Qt5] Update qt to 5.12.8
- qt5-activeqt `5.12.5-1` -> `5.12.8-1`
- [(#10644)](https://github.com/microsoft/vcpkg/pull/10644) [Qt[latest]] Update to 5.14.2
- [(#10749)](https://github.com/microsoft/vcpkg/pull/10749) [Qt5] Update qt to 5.12.8
- [(#11045)](https://github.com/microsoft/vcpkg/pull/11045) [qt5] reactivate qt5-activeqt for CI coverage
- qt5-base `5.12.5-13` -> `5.12.8-4`
- [(#10644)](https://github.com/microsoft/vcpkg/pull/10644) [Qt[latest]] Update to 5.14.2
- [(#10749)](https://github.com/microsoft/vcpkg/pull/10749) [Qt5] Update qt to 5.12.8
- [(#11111)](https://github.com/microsoft/vcpkg/pull/11111) [qt5] Add -j to make to parallelize on Linux and MacOS
- [(#11371)](https://github.com/microsoft/vcpkg/pull/11371) [qt5-base] Add Xorg dependency libx11-xcb-dev
- [(#11416)](https://github.com/microsoft/vcpkg/pull/11416) [harfbuzz,skia] Update and replace Skia dependencies with vcpkg
- [(#11483)](https://github.com/microsoft/vcpkg/pull/11483) [vcpkg] Allow CI to pass in all relevant directories and remove use of symbolic links
- qt5-charts `5.12.5-1` -> `5.12.8`
- [(#10644)](https://github.com/microsoft/vcpkg/pull/10644) [Qt[latest]] Update to 5.14.2
- [(#10749)](https://github.com/microsoft/vcpkg/pull/10749) [Qt5] Update qt to 5.12.8
- qt5-connectivity `5.12.5-1` -> `5.12.8`
- [(#10644)](https://github.com/microsoft/vcpkg/pull/10644) [Qt[latest]] Update to 5.14.2
- [(#10749)](https://github.com/microsoft/vcpkg/pull/10749) [Qt5] Update qt to 5.12.8
- qt5-datavis3d `5.12.5-1` -> `5.12.8`
- [(#10644)](https://github.com/microsoft/vcpkg/pull/10644) [Qt[latest]] Update to 5.14.2
- [(#10749)](https://github.com/microsoft/vcpkg/pull/10749) [Qt5] Update qt to 5.12.8
- qt5-declarative `5.12.5-1` -> `5.12.8`
- [(#10644)](https://github.com/microsoft/vcpkg/pull/10644) [Qt[latest]] Update to 5.14.2
- [(#10749)](https://github.com/microsoft/vcpkg/pull/10749) [Qt5] Update qt to 5.12.8
- qt5-gamepad `5.12.5-2` -> `5.12.8`
- [(#10644)](https://github.com/microsoft/vcpkg/pull/10644) [Qt[latest]] Update to 5.14.2
- [(#10749)](https://github.com/microsoft/vcpkg/pull/10749) [Qt5] Update qt to 5.12.8
- qt5-graphicaleffects `5.12.5-2` -> `5.12.8`
- [(#10644)](https://github.com/microsoft/vcpkg/pull/10644) [Qt[latest]] Update to 5.14.2
- [(#10749)](https://github.com/microsoft/vcpkg/pull/10749) [Qt5] Update qt to 5.12.8
- qt5-imageformats `5.12.5-3` -> `5.12.8`
- [(#10644)](https://github.com/microsoft/vcpkg/pull/10644) [Qt[latest]] Update to 5.14.2
- [(#10749)](https://github.com/microsoft/vcpkg/pull/10749) [Qt5] Update qt to 5.12.8
- qt5-location `5.12.5-2` -> `5.12.8`
- [(#10644)](https://github.com/microsoft/vcpkg/pull/10644) [Qt[latest]] Update to 5.14.2
- [(#10749)](https://github.com/microsoft/vcpkg/pull/10749) [Qt5] Update qt to 5.12.8
- qt5-macextras `5.12.5` -> `5.12.8`
- [(#10644)](https://github.com/microsoft/vcpkg/pull/10644) [Qt[latest]] Update to 5.14.2
- [(#10749)](https://github.com/microsoft/vcpkg/pull/10749) [Qt5] Update qt to 5.12.8
- qt5-mqtt `5.12.5` -> `5.12.8`
- [(#10644)](https://github.com/microsoft/vcpkg/pull/10644) [Qt[latest]] Update to 5.14.2
- [(#10749)](https://github.com/microsoft/vcpkg/pull/10749) [Qt5] Update qt to 5.12.8
- qt5-multimedia `5.12.5-1` -> `5.12.8`
- [(#10644)](https://github.com/microsoft/vcpkg/pull/10644) [Qt[latest]] Update to 5.14.2
- [(#10749)](https://github.com/microsoft/vcpkg/pull/10749) [Qt5] Update qt to 5.12.8
- qt5-networkauth `5.12.5-1` -> `5.12.8`
- [(#10644)](https://github.com/microsoft/vcpkg/pull/10644) [Qt[latest]] Update to 5.14.2
- [(#10749)](https://github.com/microsoft/vcpkg/pull/10749) [Qt5] Update qt to 5.12.8
- qt5-purchasing `5.12.5-2` -> `5.12.8`
- [(#10644)](https://github.com/microsoft/vcpkg/pull/10644) [Qt[latest]] Update to 5.14.2
- [(#10749)](https://github.com/microsoft/vcpkg/pull/10749) [Qt5] Update qt to 5.12.8
- qt5-quickcontrols `5.12.5-1` -> `5.12.8`
- [(#10644)](https://github.com/microsoft/vcpkg/pull/10644) [Qt[latest]] Update to 5.14.2
- [(#10749)](https://github.com/microsoft/vcpkg/pull/10749) [Qt5] Update qt to 5.12.8
- qt5-quickcontrols2 `5.12.5-1` -> `5.12.8`
- [(#10644)](https://github.com/microsoft/vcpkg/pull/10644) [Qt[latest]] Update to 5.14.2
- [(#10749)](https://github.com/microsoft/vcpkg/pull/10749) [Qt5] Update qt to 5.12.8
- qt5-remoteobjects `5.12.5-2` -> `5.12.8`
- [(#10644)](https://github.com/microsoft/vcpkg/pull/10644) [Qt[latest]] Update to 5.14.2
- [(#10749)](https://github.com/microsoft/vcpkg/pull/10749) [Qt5] Update qt to 5.12.8
- qt5-script `5.12.5-1` -> `5.12.8`
- [(#10644)](https://github.com/microsoft/vcpkg/pull/10644) [Qt[latest]] Update to 5.14.2
- [(#10749)](https://github.com/microsoft/vcpkg/pull/10749) [Qt5] Update qt to 5.12.8
- qt5-scxml `5.12.5` -> `5.12.8`
- [(#10644)](https://github.com/microsoft/vcpkg/pull/10644) [Qt[latest]] Update to 5.14.2
- [(#10749)](https://github.com/microsoft/vcpkg/pull/10749) [Qt5] Update qt to 5.12.8
- qt5-sensors `5.12.5-2` -> `5.12.8`
- [(#10644)](https://github.com/microsoft/vcpkg/pull/10644) [Qt[latest]] Update to 5.14.2
- [(#10749)](https://github.com/microsoft/vcpkg/pull/10749) [Qt5] Update qt to 5.12.8
- qt5-serialport `5.12.5-1` -> `5.12.8`
- [(#10644)](https://github.com/microsoft/vcpkg/pull/10644) [Qt[latest]] Update to 5.14.2
- [(#10749)](https://github.com/microsoft/vcpkg/pull/10749) [Qt5] Update qt to 5.12.8
- qt5-speech `5.12.5-1` -> `5.12.8`
- [(#10644)](https://github.com/microsoft/vcpkg/pull/10644) [Qt[latest]] Update to 5.14.2
- [(#10749)](https://github.com/microsoft/vcpkg/pull/10749) [Qt5] Update qt to 5.12.8
- qt5-svg `5.12.5` -> `5.12.8`
- [(#10644)](https://github.com/microsoft/vcpkg/pull/10644) [Qt[latest]] Update to 5.14.2
- [(#10749)](https://github.com/microsoft/vcpkg/pull/10749) [Qt5] Update qt to 5.12.8
- qt5-tools `5.12.5-5` -> `5.12.8`
- [(#10644)](https://github.com/microsoft/vcpkg/pull/10644) [Qt[latest]] Update to 5.14.2
- [(#10749)](https://github.com/microsoft/vcpkg/pull/10749) [Qt5] Update qt to 5.12.8
- qt5-virtualkeyboard `5.12.5-1` -> `5.12.8`
- [(#10644)](https://github.com/microsoft/vcpkg/pull/10644) [Qt[latest]] Update to 5.14.2
- [(#10749)](https://github.com/microsoft/vcpkg/pull/10749) [Qt5] Update qt to 5.12.8
- qt5-webchannel `5.12.5-2` -> `5.12.8`
- [(#10644)](https://github.com/microsoft/vcpkg/pull/10644) [Qt[latest]] Update to 5.14.2
- [(#10749)](https://github.com/microsoft/vcpkg/pull/10749) [Qt5] Update qt to 5.12.8
- qt5-websockets `5.12.5` -> `5.12.8`
- [(#10644)](https://github.com/microsoft/vcpkg/pull/10644) [Qt[latest]] Update to 5.14.2
- [(#10749)](https://github.com/microsoft/vcpkg/pull/10749) [Qt5] Update qt to 5.12.8
- qt5-webview `5.12.5-1` -> `5.12.8`
- [(#10644)](https://github.com/microsoft/vcpkg/pull/10644) [Qt[latest]] Update to 5.14.2
- [(#10749)](https://github.com/microsoft/vcpkg/pull/10749) [Qt5] Update qt to 5.12.8
- qt5-winextras `5.12.5-1` -> `5.12.8`
- [(#10644)](https://github.com/microsoft/vcpkg/pull/10644) [Qt[latest]] Update to 5.14.2
- [(#10749)](https://github.com/microsoft/vcpkg/pull/10749) [Qt5] Update qt to 5.12.8
- qt5-xmlpatterns `5.12.5-1` -> `5.12.8`
- [(#10644)](https://github.com/microsoft/vcpkg/pull/10644) [Qt[latest]] Update to 5.14.2
- [(#10749)](https://github.com/microsoft/vcpkg/pull/10749) [Qt5] Update qt to 5.12.8
- qt5 `5.12.5` -> `5.12.8`
- [(#10644)](https://github.com/microsoft/vcpkg/pull/10644) [Qt[latest]] Update to 5.14.2
- [(#10749)](https://github.com/microsoft/vcpkg/pull/10749) [Qt5] Update qt to 5.12.8
- libzip `rel-1-5-2--1` -> `rel-1-6-1`
- [(#10784)](https://github.com/microsoft/vcpkg/pull/10784) [libzip] update to rel-1-6-1
- nng `1.2.5` -> `1.3.0`
- [(#10974)](https://github.com/microsoft/vcpkg/pull/10974) [nng] Update to 1.3.0
- libmupdf `1.16.1` -> `1.16.1-1`
- [(#10708)](https://github.com/microsoft/vcpkg/pull/10708) [libmupdf] fix build error on Linux
- catch2 `2.11.3` -> `2.12.1`
- [(#10996)](https://github.com/microsoft/vcpkg/pull/10996) [catch2] Update to 2.12.1
- websocketpp `0.8.1-1` -> `0.8.2`
- [(#10969)](https://github.com/microsoft/vcpkg/pull/10969) [websocketpp] Update to 0.8.2
- coroutine `2020-01-13` -> `1.5.0`
- [(#10692)](https://github.com/microsoft/vcpkg/pull/10692) [coroutine] update to 1.5.0
- boost-modular-build-helper `1.72.0-1` -> `1.73.0-1`
- [(#10285)](https://github.com/microsoft/vcpkg/pull/10285) [boost-modular-build-helper] Support Clang '--target=<value>' syntax to enable Android builds
- [(#10814)](https://github.com/microsoft/vcpkg/pull/10814) [boost-modular-build] Fix lack of arm64-linux support
- [(#11427)](https://github.com/microsoft/vcpkg/pull/11427) [boost] MinGW build fixes
- openssl-unix `1.1.1d-2` -> `1.1.1d-4`
- [(#10450)](https://github.com/microsoft/vcpkg/pull/10450) [openssl-unix] Update header path for shared library compilation
- [(#11344)](https://github.com/microsoft/vcpkg/pull/11344) [openssl-unix] Fix openssl-unix android build
- sdl2-gfx `1.0.4-5` -> `1.0.4-6`
- [(#10575)](https://github.com/microsoft/vcpkg/pull/10575) [sdl2-gfx] Fix build error on non windows
- hwloc `1.11.7-3` -> `1.11.7-4`
- [(#10615)](https://github.com/microsoft/vcpkg/pull/10615) [hwloc] Support UNIX
- pixel `0.3` -> `0.3-1`
- [(#10638)](https://github.com/microsoft/vcpkg/pull/10638) [pixel] Add warning message on Linux
- qt-advanced-docking-system `2019-08-14-1` -> `3.2.5-1`
- [(#10170)](https://github.com/microsoft/vcpkg/pull/10170) [qt-advanced-docking-system] updated qt-advanced-docking-system to 3.2.1
- [(#10980)](https://github.com/microsoft/vcpkg/pull/10980) [vcpkg] Onboard Linux to VMSS, open 'git' port, and switch back to Azure Spot
- libarchive `3.4.1-1` -> `3.4.1-3`
- [(#11044)](https://github.com/microsoft/vcpkg/pull/11044) [libarchive] expose zstd as a build feature
- [(#11570)](https://github.com/microsoft/vcpkg/pull/11570) [libarchive] Disable C4061 which causes build to fail in Visual Studio 2019 16.6
- azure-kinect-sensor-sdk `1.4.0-alpha.0-2` -> `1.4.0-alpha.0-5`
- [(#11033)](https://github.com/microsoft/vcpkg/pull/11033) [azure-kinect-sensor-sdk] Fix pipeline error
- [(#10253)](https://github.com/microsoft/vcpkg/pull/10253) [imgui] Add feature bindings and remove feature example
- [(#11116)](https://github.com/microsoft/vcpkg/pull/11116) [azure-kinect-sensor-sdk] Disable parallel configure due to source directory writes
- [(#11139)](https://github.com/microsoft/vcpkg/pull/11139) [azure-kinect-sensor-sdk] Fix Deploy Azure Kinect Sensor SDK on Windows
- range-v3 `0.10.0` -> `0.10.0-20200425`
- [(#11031)](https://github.com/microsoft/vcpkg/pull/11031) [range-v3] Update to new version.
- ode `0.16` -> `0.16.1`
- [(#11029)](https://github.com/microsoft/vcpkg/pull/11029) [ode] Bump version to 0.16.1
- boost-coroutine `1.72.0` -> `1.73.0`
- [(#10988)](https://github.com/microsoft/vcpkg/pull/10988) [boost-coroutine] Add patch from boost.org
- [(#11221)](https://github.com/microsoft/vcpkg/pull/11221) [boost] update to 1.73.0
- libtorrent `1.2.2-1` -> `1.2.7`
- [(#10686)](https://github.com/microsoft/vcpkg/pull/10686) [libtorrent] Update to 1.2.6 and add features
- [(#11257)](https://github.com/microsoft/vcpkg/pull/11257) [libtorrent] add iconv feature on windows and clean up portfile
- [(#11389)](https://github.com/microsoft/vcpkg/pull/11389) [libtorrent] minor portfile simplification and version bump
- [(#11709)](https://github.com/microsoft/vcpkg/pull/11709) [libtorrent] Update to 1.2.7
- geos `3.6.3-3` -> `3.6.4`
- [(#10377)](https://github.com/microsoft/vcpkg/pull/10377) [geos] Upgrade to GEOS 3.6.4
- egl-registry `2020-02-03` -> `2020-02-20`
- [(#10676)](https://github.com/microsoft/vcpkg/pull/10676) [egl-registry, opengl-registry] Update egl-registry to 2020-02-20 and opengl-registry to 2020-03-25
- opengl-registry `2020-02-03` -> `2020-03-25`
- [(#10676)](https://github.com/microsoft/vcpkg/pull/10676) [egl-registry, opengl-registry] Update egl-registry to 2020-02-20 and opengl-registry to 2020-03-25
- murmurhash `2016-01-09` -> `2016-01-09-3`
- [(#11011)](https://github.com/microsoft/vcpkg/pull/11011) [murmurhash] installation fix
- [(#10767)](https://github.com/microsoft/vcpkg/pull/10767) [cmake] Update to 3.17.2
- gts `0.7.6-1` -> `0.7.6-3`
- [(#10055)](https://github.com/microsoft/vcpkg/pull/10055) [gts] Support for build with cmake in unix
- [(#10767)](https://github.com/microsoft/vcpkg/pull/10767) [cmake] Update to 3.17.2
- [(#11884)](https://github.com/microsoft/vcpkg/pull/11884) [glib/gts] Add pkgconfig files
- icu `65.1-3` -> `67.1`
- [(#10656)](https://github.com/microsoft/vcpkg/pull/10656) [icu] Fix configure failure due to not finding python
- [(#11714)](https://github.com/microsoft/vcpkg/pull/11714) [icu] Update to 67.1
- ffmpeg `4.2-7` -> `4.2-9`
- [(#8797)](https://github.com/microsoft/vcpkg/pull/8797) [ffmpeg] Fix ffmpeg[opencl, openssl, lzma] static build failed
- [(#11443)](https://github.com/microsoft/vcpkg/pull/11443) [vcpkg-acquire-msys] Update pacman before any other package.
- [(#11810)](https://github.com/microsoft/vcpkg/pull/11810) [vcpkg-acquire-msys] Improvement
- liblzma `5.2.4-4` -> `5.2.4-5`
- [(#8797)](https://github.com/microsoft/vcpkg/pull/8797) [ffmpeg] Fix ffmpeg[opencl, openssl, lzma] static build failed
- cpprestsdk `2.10.15-1` -> `2.10.16-2`
- [(#11018)](https://github.com/microsoft/vcpkg/pull/11018) [cpprestsdk] Update to v2.10.16
- [(#11694)](https://github.com/microsoft/vcpkg/pull/11694) [cpprestsdk] Avoid using pkg-config to find OpenSSL libraries on Linux
- [(#11867)](https://github.com/microsoft/vcpkg/pull/11867) [cpprestsdk] Fix find dependency openssl
- harfbuzz `2.5.3` -> `2.6.6`
- [(#11082)](https://github.com/microsoft/vcpkg/pull/11082) [harfbuzz] Change build depends from freetype to freetype[core]
- [(#11416)](https://github.com/microsoft/vcpkg/pull/11416) [harfbuzz,skia] Update and replace Skia dependencies with vcpkg
- pcl `1.9.1-11` -> `1.9.1-13`
- [(#11047)](https://github.com/microsoft/vcpkg/pull/11047) [pcl] Fix link to libpng
- [(#11148)](https://github.com/microsoft/vcpkg/pull/11148) [VTK/vtk-m] Update VTK to 9.0 and add vtk-m
- armadillo `2019-04-16-6` -> `2019-04-16-8`
- [(#11063)](https://github.com/microsoft/vcpkg/pull/11063) [armadillo] Add dependent port superlu on osx
- abseil `2020-03-03-3` -> `2020-03-03-6`
- [(#11039)](https://github.com/microsoft/vcpkg/pull/11039) [abseil] Configure abseil to use std:: types when feature cxx17 is enabled
- [(#11630)](https://github.com/microsoft/vcpkg/pull/11630) [abseil] Fix arm build
- [(#11827)](https://github.com/microsoft/vcpkg/pull/11827) [abseil] Enable dynamic build on Windows
- metrohash `1.1.3` -> `1.1.3-1`
- [(#10992)](https://github.com/microsoft/vcpkg/pull/10992) [metrohash] installation fix
- [(#10767)](https://github.com/microsoft/vcpkg/pull/10767) [cmake] Update to 3.17.2
- nana `1.7.2-1` -> `1.7.2-3`
- [(#10936)](https://github.com/microsoft/vcpkg/pull/10936) [nana] Revert 1 darkcacok patch nana
- [(#11494)](https://github.com/microsoft/vcpkg/pull/11494) [basisu, gppanel, msgpack11, nana, rapidcheck, folly] Add missing header file of STL
- alembic `1.7.12` -> `1.7.12-1`
- [(#10912)](https://github.com/microsoft/vcpkg/pull/10912) [alembic] linux fixes
- civetweb `2019-07-05-1` -> `1.12`
- [(#10591)](https://github.com/microsoft/vcpkg/pull/10591) [civetweb] Update to version 1.12
- argh `2018-12-18-1` -> `2018-12-18-2`
- [(#10980)](https://github.com/microsoft/vcpkg/pull/10980) [vcpkg] Onboard Linux to VMSS, open 'git' port, and switch back to Azure Spot
- ceres `1.14.0-6` -> `1.14.0-7`
- [(#10980)](https://github.com/microsoft/vcpkg/pull/10980) [vcpkg] Onboard Linux to VMSS, open 'git' port, and switch back to Azure Spot
- [(#11200)](https://github.com/microsoft/vcpkg/pull/11200) [ceres] Added patch to add find_dependency() for suitesparse targets downstream
- idevicerestore `1.0.12-3` -> `1.0.12-4`
- [(#10980)](https://github.com/microsoft/vcpkg/pull/10980) [vcpkg] Onboard Linux to VMSS, open 'git' port, and switch back to Azure Spot
- [(#11074)](https://github.com/microsoft/vcpkg/pull/11074) [idevicerestore] Fix libgen.h cannot be found
- openblas `0.3.7` -> `0.3.9-1`
- [(#10980)](https://github.com/microsoft/vcpkg/pull/10980) [vcpkg] Onboard Linux to VMSS, open 'git' port, and switch back to Azure Spot
- imgui `1.74` -> `1.76-1`
- [(#10253)](https://github.com/microsoft/vcpkg/pull/10253) [imgui] Add feature bindings and remove feature example
- [(#11388)](https://github.com/microsoft/vcpkg/pull/11388) [imgui] Update to 1.76
- libigl `2.1.0-1` -> `2.1.0-2`
- [(#10253)](https://github.com/microsoft/vcpkg/pull/10253) [imgui] Add feature bindings and remove feature example
- opencv4 `4.1.1-3` -> `4.1.1-6`
- [(#10886)](https://github.com/microsoft/vcpkg/pull/10886) [opencv4] Add GTK support for opencv4 portfile
- [(#7849)](https://github.com/microsoft/vcpkg/pull/7849) [OpenCV2] add new "old" port
- [(#11201)](https://github.com/microsoft/vcpkg/pull/11201) [opencv4] Changed dependency on qt5 to qt5-base, closes microsoft/vcpkg#11138
- [(#11429)](https://github.com/microsoft/vcpkg/pull/11429) [opencv4] Fix linking halide
- libbson `1.15.1-1` -> `1.16.1`
- [(#10010)](https://github.com/microsoft/vcpkg/pull/10010) [libbson/mongo-c-driver] Update to 1.16.1
- mongo-c-driver `1.15.1-1` -> `1.16.1-1`
- [(#10010)](https://github.com/microsoft/vcpkg/pull/10010) [libbson/mongo-c-driver] Update to 1.16.1
- [(#11217)](https://github.com/microsoft/vcpkg/pull/11217) [mongo-c-driver] Fix find_package error
- mongo-cxx-driver `3.4.0-4` -> `3.4.0-5`
- [(#10010)](https://github.com/microsoft/vcpkg/pull/10010) [libbson/mongo-c-driver] Update to 1.16.1
- [(#11584)](https://github.com/microsoft/vcpkg/pull/11584) [mongo-cxx-driver] Patch std::atomic P0883 changes
- cpuinfo `2019-07-28` -> `2019-07-28-1`
- [(#8749)](https://github.com/microsoft/vcpkg/pull/8749) [vcpkg] Add new function vcpkg_copy_tools
- czmq `2019-06-10-3` -> `2019-06-10-4`
- [(#8749)](https://github.com/microsoft/vcpkg/pull/8749) [vcpkg] Add new function vcpkg_copy_tools
- libsvm `323` -> `323-1`
- [(#8749)](https://github.com/microsoft/vcpkg/pull/8749) [vcpkg] Add new function vcpkg_copy_tools
- nanomsg `1.1.5-1` -> `1.1.5-2`
- [(#8749)](https://github.com/microsoft/vcpkg/pull/8749) [vcpkg] Add new function vcpkg_copy_tools
- uriparser `0.9.3-4` -> `0.9.3-5`
- [(#8749)](https://github.com/microsoft/vcpkg/pull/8749) [vcpkg] Add new function vcpkg_copy_tools
- zyre `2019-07-07` -> `2019-07-07-1`
- [(#8749)](https://github.com/microsoft/vcpkg/pull/8749) [vcpkg] Add new function vcpkg_copy_tools
- halide `release_2019_08_27-2` -> `master_2020_03_07`
- [(#10295)](https://github.com/microsoft/vcpkg/pull/10295) [llvm] Update to version 10.0.0 and add new features
- llvm `8.0.0-5` -> `10.0.0-3`
- [(#10295)](https://github.com/microsoft/vcpkg/pull/10295) [llvm] Update to version 10.0.0 and add new features
- [(#11174)](https://github.com/microsoft/vcpkg/pull/11174) [vcpkg] [llvm] Bump Linux VM memory size and do all operations on the temporary disk.
- [(#11268)](https://github.com/microsoft/vcpkg/pull/11268) [llvm] add more backend options, fix issues
- [(#11703)](https://github.com/microsoft/vcpkg/pull/11703) [llvm] fix llvm-tblgen build with MSVC v19.26
- sciter `4.4.1.5` -> `4.4.3.20`
- [(#11161)](https://github.com/microsoft/vcpkg/pull/11161) [sciter] Update to 4.4.3.15.7771
- [(#11393)](https://github.com/microsoft/vcpkg/pull/11393) [sciter] Update to 4.4.3.18.7817
- [(#11723)](https://github.com/microsoft/vcpkg/pull/11723) [sciter] Update to 4.4.3.20.7852
- apr-util `1.6.0-5` -> `1.6.1-1`
- [(#8579)](https://github.com/microsoft/vcpkg/pull/8579) [apr apr-util] Apr and apr-util for non windows systems
- [(#11559)](https://github.com/microsoft/vcpkg/pull/11559) [VCPKG baseline] Fix many ports
- apr `1.6.5-3` -> `1.7.0`
- [(#8579)](https://github.com/microsoft/vcpkg/pull/8579) [apr apr-util] Apr and apr-util for non windows systems
- opencv3 `3.4.7-2` -> `3.4.7-3`
- [(#7849)](https://github.com/microsoft/vcpkg/pull/7849) [OpenCV2] add new "old" port
- [(#11201)](https://github.com/microsoft/vcpkg/pull/11201) [opencv4] Changed dependency on qt5 to qt5-base, closes microsoft/vcpkg#11138
- gtest `2019-10-09-1` -> `1.10.0`
- [(#10963)](https://github.com/microsoft/vcpkg/pull/10963) [gtest] Rollback to a release version.
- ignition-cmake0 `0.6.2-1` -> `0.6.2-2`
- [(#10858)](https://github.com/microsoft/vcpkg/pull/10858) [ignition-modular-scripts] Migrate from Bitbucket to GitHub 🤖
- ignition-cmake2 `2.1.1` -> `2.2.0-1`
- [(#10858)](https://github.com/microsoft/vcpkg/pull/10858) [ignition-modular-scripts] Migrate from Bitbucket to GitHub 🤖
- [(#11232)](https://github.com/microsoft/vcpkg/pull/11232) [ignition-math6] Add new port 🤖
- [(#11270)](https://github.com/microsoft/vcpkg/pull/11270) [eigen3] [ignition-modularscripts] Fix installed pkgconfig files
- ignition-common1 `1.1.1` -> `1.1.1-1`
- [(#10858)](https://github.com/microsoft/vcpkg/pull/10858) [ignition-modular-scripts] Migrate from Bitbucket to GitHub 🤖
- ignition-fuel-tools1 `1.2.0` -> `1.2.0-2`
- [(#10858)](https://github.com/microsoft/vcpkg/pull/10858) [ignition-modular-scripts] Migrate from Bitbucket to GitHub 🤖
- [(#11270)](https://github.com/microsoft/vcpkg/pull/11270) [eigen3] [ignition-modularscripts] Fix installed pkgconfig files
- ignition-math4 `4.0.0` -> `4.0.0-1`
- [(#10858)](https://github.com/microsoft/vcpkg/pull/10858) [ignition-modular-scripts] Migrate from Bitbucket to GitHub 🤖
- ignition-modularscripts `2020-02-10` -> `2020-05-09`
- [(#10858)](https://github.com/microsoft/vcpkg/pull/10858) [ignition-modular-scripts] Migrate from Bitbucket to GitHub 🤖
- [(#11270)](https://github.com/microsoft/vcpkg/pull/11270) [eigen3] [ignition-modularscripts] Fix installed pkgconfig files
- ignition-msgs1 `1.0.0` -> `1.0.0-1`
- [(#10858)](https://github.com/microsoft/vcpkg/pull/10858) [ignition-modular-scripts] Migrate from Bitbucket to GitHub 🤖
- ignition-transport4 `4.0.0` -> `4.0.0-2`
- [(#10858)](https://github.com/microsoft/vcpkg/pull/10858) [ignition-modular-scripts] Migrate from Bitbucket to GitHub 🤖
- [(#11270)](https://github.com/microsoft/vcpkg/pull/11270) [eigen3] [ignition-modularscripts] Fix installed pkgconfig files
- cuda `10.1` -> `10.1-1`
- [(#10838)](https://github.com/microsoft/vcpkg/pull/10838) [cuda] Fix find cuda in UNIX
- libiconv `1.16-1` -> `1.16-3`
- [(#9832)](https://github.com/microsoft/vcpkg/pull/9832) libiconv - Fix ICONV_CONST
- [(#11586)](https://github.com/microsoft/vcpkg/pull/11586) [vcpkg-baseline][zxing-cpp] Fix build failure
- glib `2.52.3-14-5` -> `2.52.3-14-7`
- [(#10856)](https://github.com/microsoft/vcpkg/pull/10856) [glib] Update the usage of string(TOUPPER ...)
- [(#11884)](https://github.com/microsoft/vcpkg/pull/11884) [glib/gts] Add pkgconfig files
- freerdp `2.0.0-rc4-7` -> `2.0.0-1`
- [(#11051)](https://github.com/microsoft/vcpkg/pull/11051) [freerdp] Update to 2.0.0
- [(#11639)](https://github.com/microsoft/vcpkg/pull/11639) [freerdp] Optional 'urbdrc' feature
- wxwidgets `3.1.3` -> `3.1.3-1`
- [(#11178)](https://github.com/microsoft/vcpkg/pull/11178) [wxwidgets] Apply fix to wxWidgets for copy and paste macOS
- libsquish `1.15-2` -> `1.15-3`
- [(#11124)](https://github.com/microsoft/vcpkg/pull/11124) [libsquish] add missing SQUISH_EXPORT
- bitserializer-cpprestjson `0.8` -> `alias`
- [(#11157)](https://github.com/microsoft/vcpkg/pull/11157) [BitSerializer] Update to version 0.9
- [(#11683)](https://github.com/microsoft/vcpkg/pull/11683) [bitserializer] Update to new version 0.10
- bitserializer-rapidjson `0.8` -> `alias`
- [(#11157)](https://github.com/microsoft/vcpkg/pull/11157) [BitSerializer] Update to version 0.9
- [(#11683)](https://github.com/microsoft/vcpkg/pull/11683) [bitserializer] Update to new version 0.10
- bitserializer `0.8` -> `0.9`
- [(#11157)](https://github.com/microsoft/vcpkg/pull/11157) [BitSerializer] Update to version 0.9
- [(#11683)](https://github.com/microsoft/vcpkg/pull/11683) [bitserializer] Update to new version 0.10
- gsoap `2.8.93-2` -> `2.8.93-3`
- [(#11048)](https://github.com/microsoft/vcpkg/pull/11048) [gsoap] Add supports for gsoap
- [(#11355)](https://github.com/microsoft/vcpkg/pull/11355) [gSoap] Update to 2.8.102 and re-enable x64 Builds
- lua `5.3.5-3` -> `5.3.5-5`
- [(#11163)](https://github.com/microsoft/vcpkg/pull/11163) [lua] Compile as position-independent code
- [(#11870)](https://github.com/microsoft/vcpkg/pull/11870) [lua] Add vcpkg-cmake-wrapper
- gainput `1.0.0-2` -> `1.0.0-3`
- [(#11000)](https://github.com/microsoft/vcpkg/pull/11000) [gainput] imporve cmake search gainput library
- opencl `2.2-2` -> `2.2-2-1`
- [(#10567)](https://github.com/microsoft/vcpkg/pull/10567) [opencl] Add build type when installing targets
- azure-iot-sdk-c `2020-02-04.1` -> `2020-02-04.1-1`
- [(#11017)](https://github.com/microsoft/vcpkg/pull/11017) [azure-iot-sdk-c] Fixed the CMake config export.
- sfml `2.5.1-6` -> `2.5.1-7`
- [(#11246)](https://github.com/microsoft/vcpkg/pull/11246) [sfml] Remove unnecessary patch
- asmjit `2020-02-08` -> `2020-05-08`
- [(#11245)](https://github.com/microsoft/vcpkg/pull/11245) [asmjit] Update to the latest commit
- libpq `12.0-1` -> `12.2-2`
- [(#11223)](https://github.com/microsoft/vcpkg/pull/11223) [libpq] link libdl on linux
- [(#10915)](https://github.com/microsoft/vcpkg/pull/10915) [libpq] Update to 12.2 and some feature fixes
- [(#10402)](https://github.com/microsoft/vcpkg/pull/10402) [vcpkg] Improve make builds
- [(#11612)](https://github.com/microsoft/vcpkg/pull/11612) [vcpkg baseline] Fix baseline failures
- [(#11483)](https://github.com/microsoft/vcpkg/pull/11483) [vcpkg] Allow CI to pass in all relevant directories and remove use of symbolic links
- allegro5 `5.2.5.0` -> `5.2.6.0`
- [(#11187)](https://github.com/microsoft/vcpkg/pull/11187) [Allegro] Update to 5.2.6.0
- lz4 `1.9.2-1` -> `1.9.2-2`
- [(#11148)](https://github.com/microsoft/vcpkg/pull/11148) [VTK/vtk-m] Update VTK to 9.0 and add vtk-m
- pegtl-2 `2.8.1` -> `2.8.1-1`
- [(#11148)](https://github.com/microsoft/vcpkg/pull/11148) [VTK/vtk-m] Update VTK to 9.0 and add vtk-m
- vtk-dicom `0.8.12` -> `0.8.12-1`
- [(#11148)](https://github.com/microsoft/vcpkg/pull/11148) [VTK/vtk-m] Update VTK to 9.0 and add vtk-m
- libzen `0.4.37` -> `0.4.38`
- [(#11237)](https://github.com/microsoft/vcpkg/pull/11237) [libzen] Update to 0.4.38
- speexdsp `1.2.0-1` -> `1.2.0-2`
- [(#11218)](https://github.com/microsoft/vcpkg/pull/11218) [speexdsp] Change repo to github
- restclient-cpp `0.5.1-3` -> `0.5.2`
- [(#9717)](https://github.com/microsoft/vcpkg/pull/9717) [restclient-cpp] Fix portfile and update version.
- libpng `1.6.37-7` -> `1.6.37-9`
- [(#11162)](https://github.com/microsoft/vcpkg/pull/11162) [libpng] Fix missing symbols when compiling for ARM
- [(#11280)](https://github.com/microsoft/vcpkg/pull/11280) [libpng] Fix android build
- capstone `4.0.1-120373dc` -> `4.0.2`
- [(#11250)](https://github.com/microsoft/vcpkg/pull/11250) [capstone] Update to 4.0.2
- nuspell `3.1.0` -> `3.1.1`
- [(#11291)](https://github.com/microsoft/vcpkg/pull/11291) [nuspell] update port to v3.1.1
- zydis `3.1.0` -> `3.1.0-1`
- [(#11173)](https://github.com/microsoft/vcpkg/pull/11173) Update zydis portfile.cmake
- glog `0.4.0-2` -> `0.4.0-3`
- [(#11288)](https://github.com/microsoft/vcpkg/pull/11288) [glog] Disable tests
- opus `1.3.1-2` -> `1.3.1-3`
- [(#11279)](https://github.com/microsoft/vcpkg/pull/11279) [opus] Update port to 1.3.1-2
- eigen3 `3.3.7-4` -> `3.3.7-5`
- [(#11270)](https://github.com/microsoft/vcpkg/pull/11270) [eigen3] [ignition-modularscripts] Fix installed pkgconfig files
- nlopt `2.6.1-1` -> `2.6.2-1`
- [(#11254)](https://github.com/microsoft/vcpkg/pull/11254) [nlopt] Update to 2.6.2
- [(#11398)](https://github.com/microsoft/vcpkg/pull/11398) [nlopt] Enable UWP support
- string-theory `3.1` -> `3.2`
- [(#11310)](https://github.com/microsoft/vcpkg/pull/11310) [string-theory] Update to 3.2
- miniz `2.1.0` -> `2.1.0-1`
- [(#11316)](https://github.com/microsoft/vcpkg/pull/11316) [miniz] Fix broken cmake config file
- z3 `4.8.6` -> `4.8.8`
- [(#11314)](https://github.com/microsoft/vcpkg/pull/11314) [z3] update port to 4.8.8
- jsoncons `0.150.0` -> `0.153.0`
- [(#11311)](https://github.com/microsoft/vcpkg/pull/11311) [jsoncons] Update to v0.151.0
- [(#11505)](https://github.com/microsoft/vcpkg/pull/11505) [jsoncons] Update to v0.152.0
- [(#11699)](https://github.com/microsoft/vcpkg/pull/11699) [jsoncons] Update to v0.153.0
- units `2.3.0` -> `2.3.1`
- [(#11308)](https://github.com/microsoft/vcpkg/pull/11308) [units] Update to 2.3.1
- boost-accumulators `1.72.0` -> `1.73.0`
- [(#11221)](https://github.com/microsoft/vcpkg/pull/11221) [boost] update to 1.73.0
- boost-algorithm `1.72.0` -> `1.73.0`
- [(#11221)](https://github.com/microsoft/vcpkg/pull/11221) [boost] update to 1.73.0
- boost-align `1.72.0` -> `1.73.0`
- [(#11221)](https://github.com/microsoft/vcpkg/pull/11221) [boost] update to 1.73.0
- boost-any `1.72.0` -> `1.73.0`
- [(#11221)](https://github.com/microsoft/vcpkg/pull/11221) [boost] update to 1.73.0
- boost-array `1.72.0` -> `1.73.0`
- [(#11221)](https://github.com/microsoft/vcpkg/pull/11221) [boost] update to 1.73.0
- boost-asio `1.72.0` -> `1.73.0`
- [(#11221)](https://github.com/microsoft/vcpkg/pull/11221) [boost] update to 1.73.0
- boost-assert `1.72.0` -> `1.73.0`
- [(#11221)](https://github.com/microsoft/vcpkg/pull/11221) [boost] update to 1.73.0
- boost-assign `1.72.0` -> `1.73.0`
- [(#11221)](https://github.com/microsoft/vcpkg/pull/11221) [boost] update to 1.73.0
- boost-atomic `1.72.0` -> `1.73.0`
- [(#11221)](https://github.com/microsoft/vcpkg/pull/11221) [boost] update to 1.73.0
- boost-beast `1.72.0` -> `1.73.0`
- [(#11221)](https://github.com/microsoft/vcpkg/pull/11221) [boost] update to 1.73.0
- boost-bimap `1.72.0` -> `1.73.0`
- [(#11221)](https://github.com/microsoft/vcpkg/pull/11221) [boost] update to 1.73.0
- boost-bind `1.72.0` -> `1.73.0`
- [(#11221)](https://github.com/microsoft/vcpkg/pull/11221) [boost] update to 1.73.0
- boost-build `1.72.0` -> `1.73.0-1`
- [(#11221)](https://github.com/microsoft/vcpkg/pull/11221) [boost] update to 1.73.0
- [(#11427)](https://github.com/microsoft/vcpkg/pull/11427) [boost] MinGW build fixes
- boost-callable-traits `1.72.0` -> `1.73.0`
- [(#11221)](https://github.com/microsoft/vcpkg/pull/11221) [boost] update to 1.73.0
- boost-chrono `1.72.0` -> `1.73.0`
- [(#11221)](https://github.com/microsoft/vcpkg/pull/11221) [boost] update to 1.73.0
- boost-circular-buffer `1.72.0` -> `1.73.0`
- [(#11221)](https://github.com/microsoft/vcpkg/pull/11221) [boost] update to 1.73.0
- boost-compatibility `1.72.0` -> `1.73.0`
- [(#11221)](https://github.com/microsoft/vcpkg/pull/11221) [boost] update to 1.73.0
- boost-compute `1.72.0` -> `1.73.0`
- [(#11221)](https://github.com/microsoft/vcpkg/pull/11221) [boost] update to 1.73.0
- boost-concept-check `1.72.0` -> `1.73.0`
- [(#11221)](https://github.com/microsoft/vcpkg/pull/11221) [boost] update to 1.73.0
- boost-config `1.72.0` -> `1.73.0`
- [(#11221)](https://github.com/microsoft/vcpkg/pull/11221) [boost] update to 1.73.0
- boost-container-hash `1.72.0` -> `1.73.0`
- [(#11221)](https://github.com/microsoft/vcpkg/pull/11221) [boost] update to 1.73.0
- boost-container `1.72.0` -> `1.73.0`
- [(#11221)](https://github.com/microsoft/vcpkg/pull/11221) [boost] update to 1.73.0
- boost-context `1.72.0` -> `1.73.0-1`
- [(#11221)](https://github.com/microsoft/vcpkg/pull/11221) [boost] update to 1.73.0
- [(#11692)](https://github.com/microsoft/vcpkg/pull/11692) [vcpkg baseline] Remove passing port from Ci baseline
- boost-contract `1.72.0` -> `1.73.0`
- [(#11221)](https://github.com/microsoft/vcpkg/pull/11221) [boost] update to 1.73.0
- boost-conversion `1.72.0` -> `1.73.0`
- [(#11221)](https://github.com/microsoft/vcpkg/pull/11221) [boost] update to 1.73.0
- boost-convert `1.72.0` -> `1.73.0`
- [(#11221)](https://github.com/microsoft/vcpkg/pull/11221) [boost] update to 1.73.0
- boost-core `1.72.0` -> `1.73.0`
- [(#11221)](https://github.com/microsoft/vcpkg/pull/11221) [boost] update to 1.73.0
- boost-coroutine2 `1.72.0` -> `1.73.0`
- [(#11221)](https://github.com/microsoft/vcpkg/pull/11221) [boost] update to 1.73.0
- boost-crc `1.72.0` -> `1.73.0`
- [(#11221)](https://github.com/microsoft/vcpkg/pull/11221) [boost] update to 1.73.0
- boost-date-time `1.72.0` -> `1.73.0`
- [(#11221)](https://github.com/microsoft/vcpkg/pull/11221) [boost] update to 1.73.0
- boost-detail `1.72.0` -> `1.73.0`
- [(#11221)](https://github.com/microsoft/vcpkg/pull/11221) [boost] update to 1.73.0
- boost-dll `1.72.0` -> `1.73.0`
- [(#11221)](https://github.com/microsoft/vcpkg/pull/11221) [boost] update to 1.73.0
- boost-dynamic-bitset `1.72.0` -> `1.73.0`
- [(#11221)](https://github.com/microsoft/vcpkg/pull/11221) [boost] update to 1.73.0
- boost-endian `1.72.0` -> `1.73.0`
- [(#11221)](https://github.com/microsoft/vcpkg/pull/11221) [boost] update to 1.73.0
- boost-exception `1.72.0` -> `1.73.0`
- [(#11221)](https://github.com/microsoft/vcpkg/pull/11221) [boost] update to 1.73.0
- boost-fiber `1.72.0` -> `1.73.0`
- [(#11221)](https://github.com/microsoft/vcpkg/pull/11221) [boost] update to 1.73.0
- boost-filesystem `1.72.0` -> `1.73.0`
- [(#11221)](https://github.com/microsoft/vcpkg/pull/11221) [boost] update to 1.73.0
- boost-flyweight `1.72.0` -> `1.73.0`
- [(#11221)](https://github.com/microsoft/vcpkg/pull/11221) [boost] update to 1.73.0
- boost-foreach `1.72.0` -> `1.73.0`
- [(#11221)](https://github.com/microsoft/vcpkg/pull/11221) [boost] update to 1.73.0
- boost-format `1.72.0` -> `1.73.0`
- [(#11221)](https://github.com/microsoft/vcpkg/pull/11221) [boost] update to 1.73.0
- boost-function-types `1.72.0` -> `1.73.0`
- [(#11221)](https://github.com/microsoft/vcpkg/pull/11221) [boost] update to 1.73.0
- boost-function `1.72.0` -> `1.73.0`
- [(#11221)](https://github.com/microsoft/vcpkg/pull/11221) [boost] update to 1.73.0
- boost-functional `1.72.0` -> `1.73.0`
- [(#11221)](https://github.com/microsoft/vcpkg/pull/11221) [boost] update to 1.73.0
- boost-fusion `1.72.0` -> `1.73.0`
- [(#11221)](https://github.com/microsoft/vcpkg/pull/11221) [boost] update to 1.73.0
- boost-geometry `1.72.0` -> `1.73.0`
- [(#11221)](https://github.com/microsoft/vcpkg/pull/11221) [boost] update to 1.73.0
- boost-gil `1.72.0` -> `1.73.0`
- [(#11221)](https://github.com/microsoft/vcpkg/pull/11221) [boost] update to 1.73.0
- boost-graph-parallel `1.72.0` -> `1.73.0`
- [(#11221)](https://github.com/microsoft/vcpkg/pull/11221) [boost] update to 1.73.0
- boost-graph `1.72.0` -> `1.73.0`
- [(#11221)](https://github.com/microsoft/vcpkg/pull/11221) [boost] update to 1.73.0
- sobjectizer `5.7.0` -> `5.7.0.1`
- [(#11276)](https://github.com/microsoft/vcpkg/pull/11276) [sobjectizer] update to v.5.7.0.1.
- imgui-sfml `2.1` -> `2.1-1`
- [(#10840)](https://github.com/microsoft/vcpkg/pull/10840) [imgui-sfml] Force imgui-sfml to be a static library
- gdcm `3.0.4` -> `3.0.5`
- [(#11258)](https://github.com/microsoft/vcpkg/pull/11258) [gdcm] Update to version 3.0.5
- opengl `0.0-5` -> `0.0-6`
- [(#11294)](https://github.com/microsoft/vcpkg/pull/11294) [OpenGL] Fix lib files copy when VCPKG_BUILD_TYPE is set
- libmysql `8.0.4-7` -> `8.0.20`
- [(#11303)](https://github.com/microsoft/vcpkg/pull/11303) [libmysql] Update to 8.0.20