aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorVictor Romero <romerosanchezv@gmail.com>2019-09-06 12:44:28 -0700
committerGriffin Downs <35574547+grdowns@users.noreply.github.com>2019-09-06 12:44:28 -0700
commitab51cc9aa13010d60c4adf2f16578c85b3a4a7b6 (patch)
tree2236f04fd72476482a7ae041356f0e1329d2d567
parent73e55002f1e3e8093431bc1b506d907396bfbf2f (diff)
downloadvcpkg-ab51cc9aa13010d60c4adf2f16578c85b3a4a7b6.tar.gz
vcpkg-ab51cc9aa13010d60c4adf2f16578c85b3a4a7b6.zip
Add August changelog (#8048)
-rw-r--r--CHANGELOG.md814
1 files changed, 814 insertions, 0 deletions
diff --git a/CHANGELOG.md b/CHANGELOG.md
index ad2091da9..8f97da543 100644
--- a/CHANGELOG.md
+++ b/CHANGELOG.md
@@ -1,3 +1,817 @@
+vcpkg (2019.08.31)
+---
+#### Total port count: 1169
+#### Total port count per triplet (tested):
+|triplet|ports available|
+|---|---|
+|**x64-windows**|1099|
+|x86-windows|1085|
+|x64-windows-static|987|
+|**x64-linux**|930|
+|**x64-osx**|876|
+|arm64-windows|726|
+|x64-uwp|595|
+|arm-uwp|571|
+
+#### The following commands and options have been updated:
+- `depend-info`
+ - `--max-recurse` ***[NEW OPTION]***: Set the max depth of recursion for listing dependencies
+ - `--sort` ***[NEW OPTION]***: Sort the list of dependencies by `lexicographical`, `topological`, and `reverse` (topological) order
+ - `--show-depth` ***[NEW OPTION]***: Display the depth of each dependency in the list
+ - [(#7643)](https://github.com/microsoft/vcpkg/pull/7643) [depend-info] Fix bugs, add `--sort`, `--show-depth` and `--max-recurse` options
+- `install --only-downloads` ***[NEW OPTION]***
+ - Download sources for a package and its dependencies and don't build them
+ - [(#7950)](https://github.com/microsoft/vcpkg/pull/7950) [vcpkg install] Enable Download Mode ⏬
+
+#### The following documentation has been updated:
+- [Index](docs/index.md)
+ - [(#7506)](https://github.com/microsoft/vcpkg/pull/7506) Update tests, and add documentation!
+ - [(#7821)](https://github.com/microsoft/vcpkg/pull/7821) [vcpkg docs] More tool maintainer docs! 🐱‍👤
+- [Tool maintainers: Testing](docs/tool-maintainers/testing.md) ***[NEW]***
+ - [(#7506)](https://github.com/microsoft/vcpkg/pull/7506) Update tests, and add documentation!
+ - [(#7821)](https://github.com/microsoft/vcpkg/pull/7821) [vcpkg docs] More tool maintainer docs! 🐱‍👤
+- [Examples: Overlay triplets example
+](docs/examples/overlay-triplets-linux-dynamic.md)
+ - [(#7502)](https://github.com/microsoft/vcpkg/pull/7502) [vcpkg-docs] Reword and reorganize overlay-triplets-linux-dynamic.md
+- [Portfile helper functions](docs/maintainers/portfile-functions.md)
+ - [(#7558)](https://github.com/microsoft/vcpkg/pull/7558) [vcpkg_check_features] Set output variable explicitly and allow reverse-logic check
+ - [(#7950)](https://github.com/microsoft/vcpkg/pull/7950) [vcpkg install] Enable Download Mode ⏬
+- [`vcpkg_check_features`](docs/maintainers/vcpkg_check_features.md)
+ - [(#7558)](https://github.com/microsoft/vcpkg/pull/7558) [vcpkg_check_features] Set output variable explicitly and allow reverse-logic check
+- [`vcpkg_configure_cmake`](docs/maintainers/vcpkg_configure_cmake.md)
+ - [(#7558)](https://github.com/microsoft/vcpkg/pull/7558) [vcpkg_check_features] Set output variable explicitly and allow reverse-logic check
+- [`vcpkg_pretiffy_command`](docs/maintainers/vcpkg_prettify_command.md) ***[NEW]***
+ - [(#7558)](https://github.com/microsoft/vcpkg/pull/7558) [vcpkg_check_features] Set output variable explicitly and allow reverse-logic check
+- [Maintainer Guidelines and Policies](docs/maintainers/maintainer-guide.md)
+ - [(#7751)](https://github.com/microsoft/vcpkg/pull/7751) Add guideline for overriding `VCPKG_<VARIABLE>`
+- [Tool maintainers: Benchmarking](docs/tool-maintainers/benchmarking.md) ***[NEW]***
+ - [(#7821)](https://github.com/microsoft/vcpkg/pull/7821) [vcpkg docs] More tool maintainer docs! 🐱‍👤
+- [Tool maintainers: Layout of the vcpkg source tree](docs/tool-maintainers/layout.md) ***[NEW]***
+ - [(#7821)](https://github.com/microsoft/vcpkg/pull/7821) [vcpkg docs] More tool maintainer docs! 🐱‍👤
+- [`vcpkg_common_definitions`](docs/maintainers/vcpkg_common_definitions.md) ***[NEW]***
+ - [(#7950)](https://github.com/microsoft/vcpkg/pull/7950) [vcpkg install] Enable Download Mode ⏬
+- [`vcpkg_execute_required_process`](docs/maintainers/vcpkg_execute_required_process.md)
+ - [(#7950)](https://github.com/microsoft/vcpkg/pull/7950) [vcpkg install] Enable Download Mode ⏬
+- [`vcpkg_fail_port_install`](docs/maintainers/vcpkg_fail_port_install.md) ***[NEW]***
+ - [(#7950)](https://github.com/microsoft/vcpkg/pull/7950) [vcpkg install] Enable Download Mode ⏬
+
+#### The following *remarkable* changes have been made to vcpkg's infrastructure:
+- CONTROL files extended syntax
+ - The `Build-Depends` field now supports logical expressions as well as line breaks
+ - [(#7508)](https://github.com/microsoft/vcpkg/pull/7508) Improve logical evaluation of dependency qualifiers
+ - [(#7863)](https://github.com/microsoft/vcpkg/pull/7863) Fix list parsing logic and add error messages
+- Quality-of-Life improvements for portfile maintainers
+ - [(#7601)](https://github.com/microsoft/vcpkg/pull/7601) [vcpkg/cmake] Added a function to fail from portfiles in a default way
+ - [(#7600)](https://github.com/microsoft/vcpkg/pull/7600) [vcpkg] QoL: add target dependent library prefix/suffix variables and enable find_library for portfiles
+ - [(#7773)](https://github.com/microsoft/vcpkg/pull/7773) [vcpkg] QoL: Make find_library useable without errors to console.
+ - [(#7599)](https://github.com/microsoft/vcpkg/pull/7599) [vcpkg] QoL: add host/target dependent variables for executable suffixes
+
+#### The following *additional* changes have been made to vcpkg's infrastructure:
+- [(#4572)](https://github.com/microsoft/vcpkg/pull/4572) Change CMakeLists.txt in toolsrc to allow compiling with llvm toolset
+- [(#7305)](https://github.com/microsoft/vcpkg/pull/7305) [vcpkg] Public ABI override option
+- [(#7307)](https://github.com/microsoft/vcpkg/pull/7307) [vcpkg] Always calculate ABI tags
+- [(#7491)](https://github.com/microsoft/vcpkg/pull/7491) Handle response files with Windows line-endings properly
+- [(#7501)](https://github.com/microsoft/vcpkg/pull/7501) Add July changelog
+- [(#7506)](https://github.com/microsoft/vcpkg/pull/7506) Update tests, and add documentation!
+- [(#7558)](https://github.com/microsoft/vcpkg/pull/7558) [vcpkg_check_features] Set output variable explicitly and allow reverse-logic check
+- [(#7568)](https://github.com/microsoft/vcpkg/pull/7568) [tensorflow] Add new port for linux
+- [(#7570)](https://github.com/microsoft/vcpkg/pull/7570) [vcpkg] Make `RealFilesystem::remove_all` much, much faster, and start benchmarking
+- [(#7587)](https://github.com/microsoft/vcpkg/pull/7587) [vcpkg] Revert accidental removal of powershell-core usage in bb3a9ddb6ec917f54
+- [(#7619)](https://github.com/microsoft/vcpkg/pull/7619) [vcpkg] Fix `.vcpkg-root` detection issue
+- [(#7620)](https://github.com/microsoft/vcpkg/pull/7620) [vcpkg] Fix warnings in `files.{h,cpp}` build under /W4
+- [(#7623)](https://github.com/microsoft/vcpkg/pull/7623) Fix VS 2019 detection bug
+- [(#7637)](https://github.com/microsoft/vcpkg/pull/7637) [vcpkg] Fix the build on VS2015 debug
+- [(#7638)](https://github.com/microsoft/vcpkg/pull/7638) [vcpkg] Make CMakelists nicer 😁
+- [(#7687)](https://github.com/microsoft/vcpkg/pull/7687) [vcpkg] Port toolchains
+- [(#7754)](https://github.com/microsoft/vcpkg/pull/7754) [vcpkg] Allow multiple spaces in a comma list
+- [(#7757)](https://github.com/microsoft/vcpkg/pull/7757) [vcpkg] Switch to internal hash algorithms 🐱‍💻
+- [(#7793)](https://github.com/microsoft/vcpkg/pull/7793) Allow redirection of the scripts folder
+- [(#7798)](https://github.com/microsoft/vcpkg/pull/7798) [vcpkg] Fix build on FreeBSD 😈
+- [(#7816)](https://github.com/microsoft/vcpkg/pull/7816) [vcpkg] Fix gcc-9 warning
+- [(#7864)](https://github.com/microsoft/vcpkg/pull/7864) [vcpkg] Move `do_build_package_and_clean_buildtrees()` above generating vcpkg_abi_info.txt so it will be included in the package.
+- [(#7930)](https://github.com/microsoft/vcpkg/pull/7930) [vcpkg] fix bug in StringView::operator== 😱
+<details>
+<summary><b>The following 63 ports have been added:</b></summary>
+
+|port|version|
+|---|---|
+|[riffcpp](https://github.com/microsoft/vcpkg/pull/7509) [#7541](https://github.com/microsoft/vcpkg/pull/7541) [#7859](https://github.com/microsoft/vcpkg/pull/7859) | 2.2.2
+|[easyhook](https://github.com/microsoft/vcpkg/pull/7487)| 2.7.6789.0
+|[brigand](https://github.com/microsoft/vcpkg/pull/7518)| 1.3.0
+|[ctbignum](https://github.com/microsoft/vcpkg/pull/7512)| 2019-08-02
+|[gaussianlib](https://github.com/microsoft/vcpkg/pull/7542)| 2019-08-04
+|[tinycthread](https://github.com/microsoft/vcpkg/pull/7565)| 2019-08-06
+|[libcerf](https://github.com/microsoft/vcpkg/pull/7320)| 1.13
+|[tinynpy](https://github.com/microsoft/vcpkg/pull/7393)| 1.0.0-2
+|[googleapis](https://github.com/microsoft/vcpkg/pull/7557) [#7703](https://github.com/microsoft/vcpkg/pull/7703) | 0.1.3
+|[pdqsort](https://github.com/microsoft/vcpkg/pull/7464)| 2019-07-30
+|[discount](https://github.com/microsoft/vcpkg/pull/7400)| 2.2.6
+|[duckx](https://github.com/microsoft/vcpkg/pull/7561)| 2019-08-06
+|[opencv3](https://github.com/microsoft/vcpkg/pull/5169) [#7581](https://github.com/microsoft/vcpkg/pull/7581) [#7658](https://github.com/microsoft/vcpkg/pull/7658) [#7925](https://github.com/microsoft/vcpkg/pull/7925) | 3.4.7-1
+|[opencv4](https://github.com/microsoft/vcpkg/pull/5169) [#7558](https://github.com/microsoft/vcpkg/pull/7558) [#7581](https://github.com/microsoft/vcpkg/pull/7581) [#7658](https://github.com/microsoft/vcpkg/pull/7658) | 4.1.1-1
+|[tiny-bignum-c](https://github.com/microsoft/vcpkg/pull/7531)| 2019-07-31
+|[tgc](https://github.com/microsoft/vcpkg/pull/7644)| 2019-08-11
+|[bento4](https://github.com/microsoft/vcpkg/pull/7595)| 1.5.1-628
+|[dbow2](https://github.com/microsoft/vcpkg/pull/7552)| 2019-08-05
+|[tiny-aes-c](https://github.com/microsoft/vcpkg/pull/7530)| 2019-07-31
+|[drlibs](https://github.com/microsoft/vcpkg/pull/7656)| 2019-08-12
+|[nt-wrapper](https://github.com/microsoft/vcpkg/pull/7633)| 2019-08-10
+|[xorstr](https://github.com/microsoft/vcpkg/pull/7631)| 2019-08-10
+|[lazy-importer](https://github.com/microsoft/vcpkg/pull/7630)| 2019-08-10
+|[plf-colony](https://github.com/microsoft/vcpkg/pull/7627)| 2019-08-10
+|[plf-list](https://github.com/microsoft/vcpkg/pull/7627)| 2019-08-10
+|[plf-nanotimer](https://github.com/microsoft/vcpkg/pull/7627)| 2019-08-10
+|[plf-stack](https://github.com/microsoft/vcpkg/pull/7627)| 2019-08-10
+|[tiny-regex-c](https://github.com/microsoft/vcpkg/pull/7626)| 2019-07-31
+|[hayai](https://github.com/microsoft/vcpkg/pull/7624)| 2019-08-10
+|[yasm](https://github.com/microsoft/vcpkg/pull/7478)| 1.3.0
+|[fast-cpp-csv-parser](https://github.com/microsoft/vcpkg/pull/7681)| 2019-08-14
+|[wg21-sg14](https://github.com/microsoft/vcpkg/pull/7663)| 2019-08-13
+|[pistache](https://github.com/microsoft/vcpkg/pull/7547)| 2019-08-05
+|[hfsm2](https://github.com/microsoft/vcpkg/pull/7516)| beta7
+|[mpmcqueue](https://github.com/microsoft/vcpkg/pull/7437)| 2019-07-26
+|[spscqueue](https://github.com/microsoft/vcpkg/pull/7437)| 2019-07-26
+|[tinkerforge](https://github.com/microsoft/vcpkg/pull/7523)| 2.1.25
+|[field3d](https://github.com/microsoft/vcpkg/pull/7594)| 1.7.2
+|[libsvm](https://github.com/microsoft/vcpkg/pull/7664)| 323
+|[nanort](https://github.com/microsoft/vcpkg/pull/7778)| 2019-08-20
+|[libspatialindex](https://github.com/microsoft/vcpkg/pull/7762)| 1.9.0
+|[qtkeychain](https://github.com/microsoft/vcpkg/pull/7760)| v0.9.1
+|[sparsehash](https://github.com/microsoft/vcpkg/pull/7772)| 2.0.3
+|[tensorflow-cc](https://github.com/microsoft/vcpkg/pull/7568)| 1.14
+|[qt-advanced-docking-system](https://github.com/microsoft/vcpkg/pull/7621)| 2019-08-14
+|[quickfast](https://github.com/microsoft/vcpkg/pull/7814)| 1.5
+|[mp3lame](https://github.com/microsoft/vcpkg/pull/7830)| 3.100
+|[quickfix](https://github.com/microsoft/vcpkg/pull/7796)| 1.15.1
+|[fplus](https://github.com/microsoft/vcpkg/pull/7883)| 0.2.3-p0
+|[json5-parser](https://github.com/microsoft/vcpkg/pull/7915)| 1.0.0
+|[gppanel](https://github.com/microsoft/vcpkg/pull/7868)| 2018-04-06
+|[libguarded](https://github.com/microsoft/vcpkg/pull/7924)| 2019-08-27
+|[cgl](https://github.com/microsoft/vcpkg/pull/7810)| 0.60.2-1
+|[minifb](https://github.com/microsoft/vcpkg/pull/7766)| 2019-08-20-1
+|[log4cpp](https://github.com/microsoft/vcpkg/pull/7433)| 2.9.1-1
+|[chartdir](https://github.com/microsoft/vcpkg/pull/7912)| 6.3.1
+|[outcome](https://github.com/microsoft/vcpkg/pull/7940)| 2.1
+|[libP7Client](https://github.com/microsoft/vcpkg/pull/7605)| 5.2
+|[clue](https://github.com/microsoft/vcpkg/pull/7564)| 1.0.0-alpha.7
+|[status-value-lite](https://github.com/microsoft/vcpkg/pull/7563)| 1.1.0
+|[type-lite](https://github.com/microsoft/vcpkg/pull/7563)| 0.1.0
+|[value-ptr-lite](https://github.com/microsoft/vcpkg/pull/7563)| 0.2.1
+|[kvasir-mpl](https://github.com/microsoft/vcpkg/pull/7562)| 2019-08-06
+</details>
+
+<details>
+<summary><b>The following 199 ports have been updated:</b></summary>
+
+- pcl `1.9.1-5` -> `1.9.1-8`
+ - [(#7413)](https://github.com/microsoft/vcpkg/pull/7413) [pcl] Fix Build failure in linux
+ - [(#7558)](https://github.com/microsoft/vcpkg/pull/7558) [vcpkg_check_features] Set output variable explicitly and allow reverse-logic check
+ - [(#7700)](https://github.com/microsoft/vcpkg/pull/7700) [czmq/pcl] Fix judgment feature condition.
+
+- xalan-c `1.11-5` -> `1.11-7`
+ - [(#7496)](https://github.com/microsoft/vcpkg/pull/7496) [xalan-c] Bump version number
+ - [(#7505)](https://github.com/microsoft/vcpkg/pull/7505) [xalan-c] switch to https://github.com/apache/xalan-c (#7489)
+
+- catch2 `2.7.2-2` -> `2.9.2`
+ - [(#7497)](https://github.com/microsoft/vcpkg/pull/7497) [Catch2] Update to v2.9.1
+ - [(#7702)](https://github.com/microsoft/vcpkg/pull/7702) [brynet, catch2, chakracore] Update some ports version
+
+- ade `0.1.1d` -> `0.1.1f`
+ - [(#7494)](https://github.com/microsoft/vcpkg/pull/7494) Update some ports version
+ - [(#7628)](https://github.com/microsoft/vcpkg/pull/7628) [ade] Update library to 0.1.1f
+
+- harfbuzz `2.5.1-1` -> `2.5.3`
+ - [(#7494)](https://github.com/microsoft/vcpkg/pull/7494) Update some ports version
+
+- libpmemobj-cpp `1.6-1` -> `1.7`
+ - [(#7494)](https://github.com/microsoft/vcpkg/pull/7494) Update some ports version
+
+- msgpack `3.1.1` -> `3.2.0`
+ - [(#7494)](https://github.com/microsoft/vcpkg/pull/7494) Update some ports version
+
+- protobuf `3.8.0-1` -> `3.9.1`
+ - [(#7494)](https://github.com/microsoft/vcpkg/pull/7494) Update some ports version
+ - [(#7671)](https://github.com/microsoft/vcpkg/pull/7671) [protobuf] Update from 3.9.0 to 3.9.1
+
+- string-theory `2.1-1` -> `2.2`
+ - [(#7494)](https://github.com/microsoft/vcpkg/pull/7494) Update some ports version
+
+- ccfits `2.5-2` -> `2.5-3`
+ - [(#7484)](https://github.com/microsoft/vcpkg/pull/7484) [manyports] Regenerate patches and modify how the patches are used.
+
+- itpp `4.3.1` -> `4.3.1-1`
+ - [(#7484)](https://github.com/microsoft/vcpkg/pull/7484) [manyports] Regenerate patches and modify how the patches are used.
+
+- mpg123 `1.25.8-5` -> `1.25.8-6`
+ - [(#7484)](https://github.com/microsoft/vcpkg/pull/7484) [manyports] Regenerate patches and modify how the patches are used.
+
+- qwt `6.1.3-6` -> `6.1.3-7`
+ - [(#7484)](https://github.com/microsoft/vcpkg/pull/7484) [manyports] Regenerate patches and modify how the patches are used.
+
+- sdl1 `1.2.15-5` -> `1.2.15-6`
+ - [(#7484)](https://github.com/microsoft/vcpkg/pull/7484) [manyports] Regenerate patches and modify how the patches are used.
+
+- gdal `2.4.1-5` -> `2.4.1-8`
+ - [(#7520)](https://github.com/microsoft/vcpkg/pull/7520) [gdal] Fix duplicate pdb file
+ - [(#7434)](https://github.com/microsoft/vcpkg/pull/7434) [gdal] Fix dependent ports in static builds.
+
+- blosc `1.16.3-2` -> `1.17.0-1`
+ - [(#7525)](https://github.com/microsoft/vcpkg/pull/7525) Update some ports version
+ - [(#7649)](https://github.com/microsoft/vcpkg/pull/7649) [blosc] enable dependent ports to use debug builds
+
+- boost-callable-traits `1.70.0` -> `2.3.2`
+ - [(#7525)](https://github.com/microsoft/vcpkg/pull/7525) Update some ports version
+
+- cjson `1.7.10-1` -> `1.7.12`
+ - [(#7525)](https://github.com/microsoft/vcpkg/pull/7525) Update some ports version
+
+- cppzmq `4.3.0-1` -> `4.4.1`
+ - [(#7525)](https://github.com/microsoft/vcpkg/pull/7525) Update some ports version
+
+- restinio `0.5.1-1` -> `0.6.0`
+ - [(#7514)](https://github.com/microsoft/vcpkg/pull/7514) [RESTinio] updated to v.0.5.1.1
+ - [(#7962)](https://github.com/microsoft/vcpkg/pull/7962) RESTinio updated to v.0.6.0
+
+- argh `2018-12-18` -> `2018-12-18-1`
+ - [(#7527)](https://github.com/microsoft/vcpkg/pull/7527) [argh] fix flaky cmake config
+
+- libusb `1.0.22-3` -> `1.0.22-4`
+ - [(#7465)](https://github.com/microsoft/vcpkg/pull/7465) [libusb] Fix using mismatched CRT_linkage/library_linkage issue.
+
+- casclib `1.50` -> `1.50b-1`
+ - [(#7522)](https://github.com/microsoft/vcpkg/pull/7522) [casclib] Added CMake targets
+ - [(#7907)](https://github.com/microsoft/vcpkg/pull/7907) [casclib] Update library to 1.50b
+
+- opencv `3.4.3-9` -> `4.1.1-1`
+ - [(#7499)](https://github.com/microsoft/vcpkg/pull/7499) Add feature halide to OpenCV.
+ - [(#5169)](https://github.com/microsoft/vcpkg/pull/5169) [OpenCV] Update to v4.1.1
+ - [(#7659)](https://github.com/microsoft/vcpkg/pull/7659) [opencv] Expose all features from `opencv4` in meta-package
+ - [(#7558)](https://github.com/microsoft/vcpkg/pull/7558) [vcpkg_check_features] Set output variable explicitly and allow reverse-logic check
+
+- openxr-loader `1.0.0-1` -> `1.0.0-2`
+ - [(#7560)](https://github.com/microsoft/vcpkg/pull/7560) [Openxr-loader] Remove the invalid patch
+
+- simdjson `2019-03-09` -> `2019-08-05`
+ - [(#7546)](https://github.com/microsoft/vcpkg/pull/7546) [simdjson] Update to 0.2.1
+
+- alembic `1.7.11-3` -> `1.7.11-4`
+ - [(#7551)](https://github.com/microsoft/vcpkg/pull/7551) [alembic] fix hdf5 linkage
+
+- xerces-c `3.2.2-10` -> `3.2.2-11`
+ - [(#7500)](https://github.com/microsoft/vcpkg/pull/7500) [xercec-c] no symlinks in static build (#7490)
+ - [(#7622)](https://github.com/microsoft/vcpkg/pull/7622) [tiff][tesseract][xerces-c] Disable unmanaged optional dependencies
+
+- sol2 `3.0.2` -> `3.0.3`
+ - [(#7545)](https://github.com/microsoft/vcpkg/pull/7545) Update sol2 portfile to 579908
+ - [(#7804)](https://github.com/microsoft/vcpkg/pull/7804) [sol2] Update library to 3.0.3
+
+- cpprestsdk `2.10.14` -> `2.10.14-1`
+ - [(#7472)](https://github.com/microsoft/vcpkg/pull/7472) Repair compression dependency bugs in cpprestsdk
+ - [(#7863)](https://github.com/microsoft/vcpkg/pull/7863) fix list parsing logic and add error messages
+
+- libevent `2.1.10` -> `2.1.11`
+ - [(#7515)](https://github.com/microsoft/vcpkg/pull/7515) [libevent] update to 2.1.11
+
+- imgui `1.70-1` -> `1.72b`
+ - [(#7534)](https://github.com/microsoft/vcpkg/pull/7534) Update some ports version
+
+- mbedtls `2.15.1` -> `2.16.2`
+ - [(#7534)](https://github.com/microsoft/vcpkg/pull/7534) Update some ports version
+
+- ffmpeg `4.1-8` -> `4.1-9`
+ - [(#7476)](https://github.com/microsoft/vcpkg/pull/7476) [ffmpeg] Fix debug build in Windows.
+ - [(#5169)](https://github.com/microsoft/vcpkg/pull/5169) [OpenCV] Update to v4.1.1
+ - [(#7608)](https://github.com/microsoft/vcpkg/pull/7608) [ffmpeg] Add feature avresample.
+ - [(#7739)](https://github.com/microsoft/vcpkg/pull/7739) [ffmpeg] Fix static linking on Windows, FindFFMPEG
+
+- kangaru `4.1.3-2` -> `4.2.0`
+ - [(#7567)](https://github.com/microsoft/vcpkg/pull/7567) Updated kangaru version
+
+- cpp-taskflow `2018-11-30` -> `2.2.0`
+ - [(#7554)](https://github.com/microsoft/vcpkg/pull/7554) [cpp-taskflow] update to 2.2.0
+
+- jsoncons `0.125.0` -> `0.132.1`
+ - [(#7529)](https://github.com/microsoft/vcpkg/pull/7529) Update jsoncons to v0.131.2
+ - [(#7718)](https://github.com/microsoft/vcpkg/pull/7718) [jsoncons] Update library to 0.132.1
+
+- tinyexif `1.0.2-5` -> `1.0.2-6`
+ - [(#7575)](https://github.com/microsoft/vcpkg/pull/7575) [TinyEXIF] fix linux/mac
+
+- itk `5.0.0-2` -> `5.0.1`
+ - [(#7241)](https://github.com/microsoft/vcpkg/pull/7241) ITK portfile support legacy user code by default
+ - [(#7586)](https://github.com/microsoft/vcpkg/pull/7586) [itk] Update library from 5.0.0 to 5.0.1
+
+- stxxl `2018-11-15-1` -> `2018-11-15-2`
+ - [(#7330)](https://github.com/microsoft/vcpkg/pull/7330) [stxxl] compilation fix
+
+- chakracore `1.11.9` -> `1.11.12`
+ - [(#7576)](https://github.com/microsoft/vcpkg/pull/7576) [chakracore] Update library to 1.11.11
+ - [(#7702)](https://github.com/microsoft/vcpkg/pull/7702) [brynet, catch2, chakracore] Update some ports version
+
+- qhull `7.3.2` -> `7.3.2-1`
+ - [(#7370)](https://github.com/microsoft/vcpkg/pull/7370) [Qhulluwp] fix uwp building
+
+- netcdf-c `4.7.0-3` -> `4.7.0-4`
+ - [(#7578)](https://github.com/microsoft/vcpkg/pull/7578) [netcdf-c] correctly fix hdf5 linkage
+
+- google-cloud-cpp `0.11.0` -> `0.12.0`
+ - [(#7557)](https://github.com/microsoft/vcpkg/pull/7557) Update google-cloud-cpp to 0.12.0.
+
+- stormlib `9.22` -> `2019-05-10`
+ - [(#7409)](https://github.com/microsoft/vcpkg/pull/7409) [stormlib] Add targets and streamline build
+
+- openimageio `2.0.8` -> `2019-08-08-2`
+ - [(#7419)](https://github.com/microsoft/vcpkg/pull/7419) [openimageio] Fix feature libraw build errors
+ - [(#7588)](https://github.com/microsoft/vcpkg/pull/7588) [openimageio] find_package support
+ - [(#7747)](https://github.com/microsoft/vcpkg/pull/7747) [openimageio] Fix find correct debug/release openexr libraries.
+
+- librdkafka `1.1.0` -> `1.1.0-1`
+ - [(#7469)](https://github.com/microsoft/vcpkg/pull/7469) Librdkafka snappy
+ - [(#7558)](https://github.com/microsoft/vcpkg/pull/7558) [vcpkg_check_features] Set output variable explicitly and allow reverse-logic check
+
+- open62541 `0.3.0-2` -> `0.3.0-3`
+ - [(#7607)](https://github.com/microsoft/vcpkg/pull/7607) [open62541] Fix flakiness/bugginess
+
+- jsonnet `2019-05-08` -> `2019-05-08-1`
+ - [(#7587)](https://github.com/microsoft/vcpkg/pull/7587) [vcpkg] Revert accidental removal of powershell-core usage in bb3a9ddb6ec917f54
+ - [(#7374)](https://github.com/microsoft/vcpkg/pull/7374) [jsonnet] Upgrade version to 0.13.0
+
+- expat `2.2.6` -> `2.2.7`
+ - [(#7596)](https://github.com/microsoft/vcpkg/pull/7596) [expat] Update library to 2.2.7
+
+- aws-lambda-cpp `0.1.0-1` -> `0.1.0-2`
+ - [(#7601)](https://github.com/microsoft/vcpkg/pull/7601) [vcpkg/cmake] Added a function to fail from portfiles in a default way
+
+- rocksdb `6.1.2` -> `6.1.2-1`
+ - [(#7452)](https://github.com/microsoft/vcpkg/pull/7452) [rocksdb] Change linkage type to static.
+ - [(#7558)](https://github.com/microsoft/vcpkg/pull/7558) [vcpkg_check_features] Set output variable explicitly and allow reverse-logic check
+ - [(#7217)](https://github.com/microsoft/vcpkg/pull/7217) [many ports] Updates 2019.07.09
+
+- freeimage `3.18.0-6` -> `3.18.0-7`
+ - [(#5169)](https://github.com/microsoft/vcpkg/pull/5169) [OpenCV] Update to v4.1.1
+
+- gdcm `3.0.0-3` -> `3.0.0-4`
+ - [(#5169)](https://github.com/microsoft/vcpkg/pull/5169) [OpenCV] Update to v4.1.1
+
+- ogre `1.12.0-1` -> `1.12.1`
+ - [(#5169)](https://github.com/microsoft/vcpkg/pull/5169) [OpenCV] Update to v4.1.1
+ - [(#7217)](https://github.com/microsoft/vcpkg/pull/7217) [many ports] Updates 2019.07.09
+
+- pthreads `3.0.0-2` -> `3.0.0-3`
+ - [(#5169)](https://github.com/microsoft/vcpkg/pull/5169) [OpenCV] Update to v4.1.1
+
+- qt5 `5.12.3` -> `5.12.3-1`
+ - [(#5169)](https://github.com/microsoft/vcpkg/pull/5169) [OpenCV] Update to v4.1.1
+ - [(#7642)](https://github.com/microsoft/vcpkg/pull/7642) [qt5] Only build qt5-activeqt on windows
+
+- zxing-cpp `3.3.3-5` -> `3.3.3-6`
+ - [(#5169)](https://github.com/microsoft/vcpkg/pull/5169) [OpenCV] Update to v4.1.1
+
+- tesseract `4.1.0-1` -> `4.1.0-2`
+ - [(#7622)](https://github.com/microsoft/vcpkg/pull/7622) [tiff][tesseract][xerces-c] Disable unmanaged optional dependencies
+
+- tiff `4.0.10-6` -> `4.0.10-7`
+ - [(#7622)](https://github.com/microsoft/vcpkg/pull/7622) [tiff][tesseract][xerces-c] Disable unmanaged optional dependencies
+
+- osg `3.6.3-1` -> `3.6.4`
+ - [(#7653)](https://github.com/microsoft/vcpkg/pull/7653) [osg] Update osg version to 3.6.4
+ - [(#7677)](https://github.com/microsoft/vcpkg/pull/7677) [osg] Fix Applying patch failed
+
+- cppgraphqlgen `3.0.0` -> `3.0.2`
+ - [(#7639)](https://github.com/microsoft/vcpkg/pull/7639) [cppgraphqlgen] Update with matching PEGTL
+
+- pegtl `3.0.0-pre` -> `3.0.0-pre-697aaa0`
+ - [(#7639)](https://github.com/microsoft/vcpkg/pull/7639) [cppgraphqlgen] Update with matching PEGTL
+
+- monkeys-audio `4.3.3-1` -> `4.8.3`
+ - [(#7634)](https://github.com/microsoft/vcpkg/pull/7634) [monkeys-audio] Update library to 4.8.3
+
+- directxmesh `apr2019` -> `jun2019-1`
+ - [(#7665)](https://github.com/microsoft/vcpkg/pull/7665) [directxtk][directxtk12][directxmesh][directxtex] Updated to June version and improved platform toolset support
+ - [(#7869)](https://github.com/microsoft/vcpkg/pull/7869) [directxmesh] Update library to aug2019
+
+- directxtex `apr2019` -> `jun2019-1`
+ - [(#7665)](https://github.com/microsoft/vcpkg/pull/7665) [directxtk][directxtk12][directxmesh][directxtex] Updated to June version and improved platform toolset support
+ - [(#7870)](https://github.com/microsoft/vcpkg/pull/7870) [directxtex] Update library to aug2019
+
+- directxtk `apr2019-1` -> `jun2019-1`
+ - [(#7665)](https://github.com/microsoft/vcpkg/pull/7665) [directxtk][directxtk12][directxmesh][directxtex] Updated to June version and improved platform toolset support
+ - [(#7871)](https://github.com/microsoft/vcpkg/pull/7871) [directxtk] Update library to aug2019
+
+- directxtk12 `dec2016-1` -> `jun2019-1`
+ - [(#7665)](https://github.com/microsoft/vcpkg/pull/7665) [directxtk][directxtk12][directxmesh][directxtex] Updated to June version and improved platform toolset support
+ - [(#7872)](https://github.com/microsoft/vcpkg/pull/7872) [directxtk12] Update library to aug2019
+
+- usockets `0.1.2` -> `0.3.1`
+ - [(#7662)](https://github.com/microsoft/vcpkg/pull/7662) [usockets] upgrade to v0.3.1
+
+- dimcli `4.1.0` -> `5.0.0`
+ - [(#7651)](https://github.com/microsoft/vcpkg/pull/7651) [dimcli] Fix build error C2220
+ - [(#7785)](https://github.com/microsoft/vcpkg/pull/7785) [dimcli] Update library to 5.0.0
+
+- czmq `2019-06-10-1` -> `2019-06-10-3`
+ - [(#7558)](https://github.com/microsoft/vcpkg/pull/7558) [vcpkg_check_features] Set output variable explicitly and allow reverse-logic check
+ - [(#7700)](https://github.com/microsoft/vcpkg/pull/7700) [czmq/pcl] Fix judgment feature condition.
+
+- darknet `0.2.5-5` -> `0.2.5-6`
+ - [(#7558)](https://github.com/microsoft/vcpkg/pull/7558) [vcpkg_check_features] Set output variable explicitly and allow reverse-logic check
+
+- mimalloc `2019-06-25` -> `2019-06-25-1`
+ - [(#7558)](https://github.com/microsoft/vcpkg/pull/7558) [vcpkg_check_features] Set output variable explicitly and allow reverse-logic check
+
+- mongo-c-driver `1.14.0-3` -> `1.14.0-3-1`
+ - [(#7558)](https://github.com/microsoft/vcpkg/pull/7558) [vcpkg_check_features] Set output variable explicitly and allow reverse-logic check
+
+- oniguruma `6.9.2-2` -> `6.9.3`
+ - [(#7558)](https://github.com/microsoft/vcpkg/pull/7558) [vcpkg_check_features] Set output variable explicitly and allow reverse-logic check
+ - [(#7721)](https://github.com/microsoft/vcpkg/pull/7721) [oniguruma] Update library 6.9.3
+
+- paho-mqttpp3 `1.0.1` -> `1.0.1-2`
+ - [(#7558)](https://github.com/microsoft/vcpkg/pull/7558) [vcpkg_check_features] Set output variable explicitly and allow reverse-logic check
+ - [(#7769)](https://github.com/microsoft/vcpkg/pull/7769) [paho-mqttpp3] Fix missing reference to C library headers
+
+- xsimd `7.2.3-1` -> `7.2.3-2`
+ - [(#7558)](https://github.com/microsoft/vcpkg/pull/7558) [vcpkg_check_features] Set output variable explicitly and allow reverse-logic check
+
+- xtensor `0.20.7-1` -> `0.20.7-2`
+ - [(#7558)](https://github.com/microsoft/vcpkg/pull/7558) [vcpkg_check_features] Set output variable explicitly and allow reverse-logic check
+
+- zeromq `2019-07-09` -> `2019-07-09-1`
+ - [(#7558)](https://github.com/microsoft/vcpkg/pull/7558) [vcpkg_check_features] Set output variable explicitly and allow reverse-logic check
+
+- gtest `2019-01-04-2` -> `2019-08-14-1`
+ - [(#7692)](https://github.com/microsoft/vcpkg/pull/7692) [gtest] update to 90a443f9c2437ca8a682a1ac625eba64e1d74a8a
+ - [(#7316)](https://github.com/microsoft/vcpkg/pull/7316) [gtest] Re-fix port_main/port_maind libraries path and add gmock cmake files.
+
+- physx `commit-624f2cb6c0392013d54b235d9072a49d01c3cb6c` -> `4.1.1-1`
+ - [(#7679)](https://github.com/microsoft/vcpkg/pull/7679) [physx] Update to 4.1.1 (with Visual Studio 2019 support)
+
+- libidn2 `2.1.1-1` -> `2.2.0`
+ - [(#7685)](https://github.com/microsoft/vcpkg/pull/7685) [libidn2] Update to version 2.2.0.
+
+- poco `2.0.0-pre-3` -> `1.9.2-1`
+ - [(#7698)](https://github.com/microsoft/vcpkg/pull/7698) [poco] Upgrade version to 1.9.2 release.
+ - [(#7892)](https://github.com/microsoft/vcpkg/pull/7892) [poco] Fix conflicts with libharu.
+
+- osgearth `2.10.1` -> `2.10.2`
+ - [(#7695)](https://github.com/microsoft/vcpkg/pull/7695) [osgearth] Fix osgearth rocksdb plugin build falied
+
+- spdlog `1.3.1-1` -> `1.3.1-2`
+ - [(#7670)](https://github.com/microsoft/vcpkg/pull/7670) [spdlog] fix cmake targets path
+
+- libgit2 `0.28.2` -> `0.28.3`
+ - [(#7669)](https://github.com/microsoft/vcpkg/pull/7669) [libgit2] Upgrade to version 0.28.3
+
+- brynet `1.0.2` -> `1.0.3`
+ - [(#7702)](https://github.com/microsoft/vcpkg/pull/7702) [brynet, catch2, chakracore] Update some ports version
+
+- nghttp2 `1.35.0` -> `1.39.2`
+ - [(#7699)](https://github.com/microsoft/vcpkg/pull/7699) [nghttp2] Upgrade to version 1.39.2
+
+- leptonica `1.76.0-1` -> `1.78.0-1`
+ - [(#7358)](https://github.com/microsoft/vcpkg/pull/7358) [leptonica] Upgrade to 1.78.0
+ - [(#7712)](https://github.com/microsoft/vcpkg/pull/7712) [leptonica] Add dependency port libwebp and fix find libwebp in debug/release
+
+- libtorrent `2019-04-19` -> `1.2.1-bcb26fd6`
+ - [(#7708)](https://github.com/microsoft/vcpkg/pull/7708) [libtorrent] Update to 1.2.1-bcb26fd6
+
+- angelscript `2.33.0-1` -> `2.33.1-1`
+ - [(#7650)](https://github.com/microsoft/vcpkg/pull/7650) [angelscript] Added feature to optionally install all Angelscript standard addons
+
+- jsoncpp `1.8.4-1` -> `1.9.1`
+ - [(#7719)](https://github.com/microsoft/vcpkg/pull/7719) [jsoncpp] Update library to 1.9.1
+
+- robin-hood-hashing `3.2.13` -> `3.4.0`
+ - [(#7722)](https://github.com/microsoft/vcpkg/pull/7722) [robin-hood-hashing] Update library to 3.4.0
+
+- sqlite-orm `1.3-1` -> `1.4`
+ - [(#7723)](https://github.com/microsoft/vcpkg/pull/7723) [sqlite-orm] Update library to 1.4
+
+- doctest `2.3.3` -> `2.3.4`
+ - [(#7716)](https://github.com/microsoft/vcpkg/pull/7716) [doctest] Update library to 2.3.4
+
+- pegtl-2 `2.8.0` -> `2.8.1`
+ - [(#7715)](https://github.com/microsoft/vcpkg/pull/7715) [pegtl-2] Update library to 2.8.1
+
+- cpp-httplib `0.2.0` -> `0.2.1`
+ - [(#7714)](https://github.com/microsoft/vcpkg/pull/7714) [cpp-httplib] Update library to 0.2.1
+
+- geographiclib `1.47-patch1-6` -> `1.47-patch1-7`
+ - [(#7697)](https://github.com/microsoft/vcpkg/pull/7697) [geographiclib] Fix build error on Linux
+
+- libmariadb `3.0.10-3` -> `3.0.10-4`
+ - [(#7710)](https://github.com/microsoft/vcpkg/pull/7710) [libmariadb] Fix usage error LNK2001.
+
+- irrlicht `1.8.4-2` -> `1.8.4-1`
+ - [(#7726)](https://github.com/microsoft/vcpkg/pull/7726) Revert "[irrlicht] use unicode path on windows (#7354)"
+
+- cgltf `2019-04-30` -> `1.3`
+ - [(#7731)](https://github.com/microsoft/vcpkg/pull/7731) [cgltf] Update library to 1.2
+ - [(#7774)](https://github.com/microsoft/vcpkg/pull/7774) [cgltf] Update library to 1.3
+
+- duktape `2.3.0-2` -> `2.4.0-3`
+ - [(#7548)](https://github.com/microsoft/vcpkg/pull/7548) [ duktape] Update hash for pip.
+ - [(#7873)](https://github.com/microsoft/vcpkg/pull/7873) [duktape] Update library to 2.4.0
+
+- double-conversion `3.1.4` -> `3.1.5`
+ - [(#7717)](https://github.com/microsoft/vcpkg/pull/7717) [double-conversion] Update library to 3.1.5
+
+- libmorton `2018-19-07` -> `0.2`
+ - [(#7738)](https://github.com/microsoft/vcpkg/pull/7738) [libmorton] Update library to 0.2
+
+- clp `1.17.2-2` -> `1.17.3`
+ - [(#7756)](https://github.com/microsoft/vcpkg/pull/7756) [clp] Update library to 1.17.3
+
+- libfabric `1.7.1-1` -> `1.8.0`
+ - [(#7755)](https://github.com/microsoft/vcpkg/pull/7755) [libfabric] Update library to 1.8.0
+
+- leaf `0.2.1-2` -> `0.2.2`
+ - [(#7782)](https://github.com/microsoft/vcpkg/pull/7782) [leaf] Update library to 0.2.2
+
+- inih `44` -> `45`
+ - [(#7780)](https://github.com/microsoft/vcpkg/pull/7780) [inih] Update library to 45
+
+- clara `2019-03-29` -> `1.1.5`
+ - [(#7775)](https://github.com/microsoft/vcpkg/pull/7775) [clara] Update library to 1.1.5
+
+- distorm `2018-08-26-16e6f435-1` -> `3.4.1`
+ - [(#7777)](https://github.com/microsoft/vcpkg/pull/7777) [distorm] Update library to 3.4.1
+
+- libcopp `1.1.0-2` -> `1.2.0`
+ - [(#7770)](https://github.com/microsoft/vcpkg/pull/7770) [libcopp] Update library to 1.2.0
+
+- argparse `2019-06-10` -> `1.9`
+ - [(#7753)](https://github.com/microsoft/vcpkg/pull/7753) [argparse] Update library to 1.9
+
+- argagg `2019-01-25` -> `0.4.6`
+ - [(#7752)](https://github.com/microsoft/vcpkg/pull/7752) [argagg] Update library to 0.4.6
+
+- eastl `3.14.00` -> `3.14.01`
+ - [(#7786)](https://github.com/microsoft/vcpkg/pull/7786) [eastl] Update library to 3.14.01
+
+- fribidi `58c6cb3` -> `2019-02-04-1`
+ - [(#7768)](https://github.com/microsoft/vcpkg/pull/7768) [fribidi] Fix static library suffix in windows-static
+
+- luajit `2.0.5-1` -> `2.0.5-2`
+ - [(#7764)](https://github.com/microsoft/vcpkg/pull/7764) [luajit] Separate debug/release build path and fix generate pdbs.
+
+- ixwebsocket `4.0.3` -> `5.0.4`
+ - [(#7789)](https://github.com/microsoft/vcpkg/pull/7789) [ixwebsocket] update to 5.0.4
+
+- azure-c-shared-utility `2019-05-16.1` -> `2019-08-20.1`
+ - [(#7791)](https://github.com/microsoft/vcpkg/pull/7791) [azure-iot] vcpkg update for master/public-preview release
+
+- azure-iot-sdk-c `2019-07-01.1` -> `2019-08-20.1`
+ - [(#7791)](https://github.com/microsoft/vcpkg/pull/7791) [azure-iot] vcpkg update for master/public-preview release
+
+- azure-macro-utils-c `2019-05-16.1` -> `2019-08-20.1`
+ - [(#7791)](https://github.com/microsoft/vcpkg/pull/7791) [azure-iot] vcpkg update for master/public-preview release
+
+- azure-uamqp-c `2019-05-16.1` -> `2019-08-20.1`
+ - [(#7791)](https://github.com/microsoft/vcpkg/pull/7791) [azure-iot] vcpkg update for master/public-preview release
+
+- azure-uhttp-c `2019-05-16.1` -> `2019-08-20.1`
+ - [(#7791)](https://github.com/microsoft/vcpkg/pull/7791) [azure-iot] vcpkg update for master/public-preview release
+
+- azure-umqtt-c `2019-05-16.1` -> `2019-08-20.1`
+ - [(#7791)](https://github.com/microsoft/vcpkg/pull/7791) [azure-iot] vcpkg update for master/public-preview release
+
+- umock-c `2019-05-16.1` -> `2019-08-20.1`
+ - [(#7791)](https://github.com/microsoft/vcpkg/pull/7791) [azure-iot] vcpkg update for master/public-preview release
+
+- embree3 `3.5.2` -> `3.5.2-1`
+ - [(#7767)](https://github.com/microsoft/vcpkg/pull/7767) [embree3] Fix install path
+
+- re2 `2019-05-07-2` -> `2019-08-01`
+ - [(#7808)](https://github.com/microsoft/vcpkg/pull/7808) [re2] Update library to 2019-08-01
+
+- reproc `6.0.0-2` -> `8.0.1`
+ - [(#7807)](https://github.com/microsoft/vcpkg/pull/7807) [reproc] Update library to 8.0.1
+
+- safeint `3.20.0` -> `3.21`
+ - [(#7806)](https://github.com/microsoft/vcpkg/pull/7806) [safeint] Update library to 3.21
+
+- snowhouse `3.1.0` -> `3.1.1`
+ - [(#7805)](https://github.com/microsoft/vcpkg/pull/7805) [snowhouse] Update library to 3.1.1
+
+- spectra `0.8.0` -> `0.8.1`
+ - [(#7803)](https://github.com/microsoft/vcpkg/pull/7803) [spectra] Update library to 0.8.1
+
+- spirv-cross `2019-05-09` -> `2019-07-26`
+ - [(#7802)](https://github.com/microsoft/vcpkg/pull/7802) [spirv-cross] Update library to 2019-07-26
+
+- libmodbus `3.1.4-3` -> `3.1.6`
+ - [(#7834)](https://github.com/microsoft/vcpkg/pull/7834) [libmodbus] Update library to 3.1.6
+
+- basisu `0.0.1-1` -> `1.11-1`
+ - [(#7836)](https://github.com/microsoft/vcpkg/pull/7836) [basisu] fix vcpkg version, merge upstream fixes
+
+- range-v3 `0.5.0` -> `0.9.0-20190822`
+ - [(#7845)](https://github.com/microsoft/vcpkg/pull/7845) Update range-v3 reference
+
+- cryptopp `8.1.0-2` -> `8.2.0`
+ - [(#7854)](https://github.com/microsoft/vcpkg/pull/7854) [cryptopp] Update library to 8.2.0
+
+- lz4 `1.9.1-2` -> `1.9.2`
+ - [(#7860)](https://github.com/microsoft/vcpkg/pull/7860) [lz4] Update library to 1.9.2
+
+- wxwidgets `3.1.2-1` -> `3.1.2-2`
+ - [(#7833)](https://github.com/microsoft/vcpkg/pull/7833) [wxwidgets] Windows ARM support
+
+- args `2019-05-01` -> `2019-07-11`
+ - [(#7217)](https://github.com/microsoft/vcpkg/pull/7217) [many ports] Updates 2019.07.09
+
+- asmjit `2019-03-29` -> `2019-07-11`
+ - [(#7217)](https://github.com/microsoft/vcpkg/pull/7217) [many ports] Updates 2019.07.09
+
+- aws-c-common `0.3.11-1` -> `0.4.1`
+ - [(#7217)](https://github.com/microsoft/vcpkg/pull/7217) [many ports] Updates 2019.07.09
+
+- aws-sdk-cpp `1.7.116` -> `1.7.142`
+ - [(#7217)](https://github.com/microsoft/vcpkg/pull/7217) [many ports] Updates 2019.07.09
+
+- bitsery `4.6.0` -> `5.0.0`
+ - [(#7217)](https://github.com/microsoft/vcpkg/pull/7217) [many ports] Updates 2019.07.09
+
+- botan `2.9.0-2` -> `2.11.0`
+ - [(#7217)](https://github.com/microsoft/vcpkg/pull/7217) [many ports] Updates 2019.07.09
+
+- breakpad `2019-05-08` -> `2019-07-11`
+ - [(#7217)](https://github.com/microsoft/vcpkg/pull/7217) [many ports] Updates 2019.07.09
+
+- chipmunk `7.0.2` -> `7.0.3`
+ - [(#7217)](https://github.com/microsoft/vcpkg/pull/7217) [many ports] Updates 2019.07.09
+
+- console-bridge `0.3.2-4` -> `0.4.3-1`
+ - [(#7217)](https://github.com/microsoft/vcpkg/pull/7217) [many ports] Updates 2019.07.09
+
+- coroutine `1.4.1-1` -> `1.4.3`
+ - [(#7217)](https://github.com/microsoft/vcpkg/pull/7217) [many ports] Updates 2019.07.09
+
+- crc32c `1.0.7-1` -> `1.1.0`
+ - [(#7217)](https://github.com/microsoft/vcpkg/pull/7217) [many ports] Updates 2019.07.09
+
+- exprtk `2019-03-29` -> `2019-07-11`
+ - [(#7217)](https://github.com/microsoft/vcpkg/pull/7217) [many ports] Updates 2019.07.09
+
+- fastcdr `1.0.9-1` -> `1.0.10`
+ - [(#7217)](https://github.com/microsoft/vcpkg/pull/7217) [many ports] Updates 2019.07.09
+ - [(#7862)](https://github.com/microsoft/vcpkg/pull/7862) [fastcdr] Update library 1.0.10
+
+- fizz `2019.05.20.00-1` -> `2019.07.08.00`
+ - [(#7217)](https://github.com/microsoft/vcpkg/pull/7217) [many ports] Updates 2019.07.09
+
+- folly `2019.05.20.00-1` -> `2019.06.17.00`
+ - [(#7217)](https://github.com/microsoft/vcpkg/pull/7217) [many ports] Updates 2019.07.09
+
+- glad `0.1.30` -> `0.1.31`
+ - [(#7217)](https://github.com/microsoft/vcpkg/pull/7217) [many ports] Updates 2019.07.09
+
+- gmmlib `19.1.2` -> `19.2.3`
+ - [(#7217)](https://github.com/microsoft/vcpkg/pull/7217) [many ports] Updates 2019.07.09
+
+- graphite2 `1.3.12-1` -> `1.3.13`
+ - [(#7217)](https://github.com/microsoft/vcpkg/pull/7217) [many ports] Updates 2019.07.09
+
+- grpc `1.21.1-1` -> `1.22.0`
+ - [(#7217)](https://github.com/microsoft/vcpkg/pull/7217) [many ports] Updates 2019.07.09
+
+- io2d `0.1-2` -> `2019-07-11`
+ - [(#7217)](https://github.com/microsoft/vcpkg/pull/7217) [many ports] Updates 2019.07.09
+
+- libarchive `3.3.3-3` -> `3.4.0`
+ - [(#7217)](https://github.com/microsoft/vcpkg/pull/7217) [many ports] Updates 2019.07.09
+
+- libpqxx `6.4.4` -> `6.4.5`
+ - [(#7217)](https://github.com/microsoft/vcpkg/pull/7217) [many ports] Updates 2019.07.09
+
+- libssh2 `1.8.2` -> `1.9.0`
+ - [(#7217)](https://github.com/microsoft/vcpkg/pull/7217) [many ports] Updates 2019.07.09
+
+- libuv `1.29.1` -> `1.30.1`
+ - [(#7217)](https://github.com/microsoft/vcpkg/pull/7217) [many ports] Updates 2019.07.09
+
+- luabridge `2.3.1` -> `2.3.2`
+ - [(#7217)](https://github.com/microsoft/vcpkg/pull/7217) [many ports] Updates 2019.07.09
+
+- matio `1.5.15` -> `1.5.16`
+ - [(#7217)](https://github.com/microsoft/vcpkg/pull/7217) [many ports] Updates 2019.07.09
+
+- mosquitto `1.6.2-2` -> `1.6.3`
+ - [(#7217)](https://github.com/microsoft/vcpkg/pull/7217) [many ports] Updates 2019.07.09
+
+- ms-gsl `2019-04-19` -> `2019-07-11`
+ - [(#7217)](https://github.com/microsoft/vcpkg/pull/7217) [many ports] Updates 2019.07.09
+
+- nmslib `1.7.3.6-1` -> `1.8.1`
+ - [(#7217)](https://github.com/microsoft/vcpkg/pull/7217) [many ports] Updates 2019.07.09
+
+- nuklear `2019-03-29` -> `2019-07-11`
+ - [(#7217)](https://github.com/microsoft/vcpkg/pull/7217) [many ports] Updates 2019.07.09
+
+- openvr `1.4.18` -> `1.5.17`
+ - [(#7217)](https://github.com/microsoft/vcpkg/pull/7217) [many ports] Updates 2019.07.09
+
+- orc `1.5.5-1` -> `1.5.6`
+ - [(#7217)](https://github.com/microsoft/vcpkg/pull/7217) [many ports] Updates 2019.07.09
+ - [(#7908)](https://github.com/microsoft/vcpkg/pull/7908) Add homepage for orc
+
+- parson `2019-04-19` -> `2019-07-11`
+ - [(#7217)](https://github.com/microsoft/vcpkg/pull/7217) [many ports] Updates 2019.07.09
+
+- piex `2018-03-13-1` -> `2019-07-11`
+ - [(#7217)](https://github.com/microsoft/vcpkg/pull/7217) [many ports] Updates 2019.07.09
+
+- ptex `2.1.28-1` -> `2.3.2`
+ - [(#7217)](https://github.com/microsoft/vcpkg/pull/7217) [many ports] Updates 2019.07.09
+
+- pybind11 `2.2.4` -> `2.3.0`
+ - [(#7217)](https://github.com/microsoft/vcpkg/pull/7217) [many ports] Updates 2019.07.09
+
+- rs-core-lib `2019-05-07` -> `2019-07-11`
+ - [(#7217)](https://github.com/microsoft/vcpkg/pull/7217) [many ports] Updates 2019.07.09
+
+- shogun `6.1.3-3` -> `6.1.4`
+ - [(#7217)](https://github.com/microsoft/vcpkg/pull/7217) [many ports] Updates 2019.07.09
+
+- stb `2019-05-07` -> `2019-07-11`
+ - [(#7217)](https://github.com/microsoft/vcpkg/pull/7217) [many ports] Updates 2019.07.09
+
+- taocpp-json `2019-05-08` -> `2019-07-11`
+ - [(#7217)](https://github.com/microsoft/vcpkg/pull/7217) [many ports] Updates 2019.07.09
+
+- tbb `2019_U7-1` -> `2019_U8`
+ - [(#7217)](https://github.com/microsoft/vcpkg/pull/7217) [many ports] Updates 2019.07.09
+
+- telnetpp `1.2.4-1` -> `2.0`
+ - [(#7217)](https://github.com/microsoft/vcpkg/pull/7217) [many ports] Updates 2019.07.09
+
+- blaze `3.5` -> `3.6`
+ - [(#7878)](https://github.com/microsoft/vcpkg/pull/7878) [blaze] Update to Blaze 3.6
+
+- glfw3 `3.3-1` -> `3.3-2`
+ - [(#7885)](https://github.com/microsoft/vcpkg/pull/7885) [glfw3] Add more information about installing dependencies.
+
+- fmt `5.3.0-2` -> `6.0.0`
+ - [(#7910)](https://github.com/microsoft/vcpkg/pull/7910) [fmt] Update to 6.0.0
+ - [(#7884)](https://github.com/microsoft/vcpkg/pull/7884) [fmt] missing VCPKG_BUILD_TYPE support added
+
+- magic-enum `2019-06-07` -> `0.6.0`
+ - [(#7916)](https://github.com/microsoft/vcpkg/pull/7916) [magic-enum] Update to v0.6.0
+
+- liblsl `1.13.0-b6` -> `1.13.0-b11-1`
+ - [(#7906)](https://github.com/microsoft/vcpkg/pull/7906) [liblsl] Update library to 1.13.0-b11
+ - [(#7945)](https://github.com/microsoft/vcpkg/pull/7945) [liblsl] Fix installation
+
+- yaml-cpp `0.6.2-2` -> `0.6.2-3`
+ - [(#7847)](https://github.com/microsoft/vcpkg/pull/7847) [yaml-cpp] Fix include path in yaml-cpp-config.cmake
+
+- fluidsynth `2.0.5` -> `2.0.5-1`
+ - [(#7837)](https://github.com/microsoft/vcpkg/pull/7837) [fluidsynth] add Windows ARM support
+
+- nmap `7.70` -> `7.70-1`
+ - [(#7811)](https://github.com/microsoft/vcpkg/pull/7811) [nmap] Fix build error.
+
+- moos-ui `10.0.1-1` -> `10.0.1-2`
+ - [(#7812)](https://github.com/microsoft/vcpkg/pull/7812) [moos-ui] Fix install path
+
+- openni2 `2.2.0.33-9` -> `2.2.0.33-10`
+ - [(#7809)](https://github.com/microsoft/vcpkg/pull/7809) [openni2] Add warning message when cannot find NETFXSDK.
+
+- abseil `2019-05-08` -> `2019-05-08-1`
+ - [(#7745)](https://github.com/microsoft/vcpkg/pull/7745) [abseil] fix cmake config issue
+
+- libwebp `1.0.2-6` -> `1.0.2-7`
+ - [(#7886)](https://github.com/microsoft/vcpkg/pull/7886) [libwebp] Fix two dependent windows library link conditions.
+
+- wpilib `2019.5.1` -> `2019.6.1`
+ - [(#7927)](https://github.com/microsoft/vcpkg/pull/7927) [wpilib] Update wpilib port to allow opencv4
+
+- ogdf `2018-03-28-2` -> `2019-08-23`
+ - [(#7846)](https://github.com/microsoft/vcpkg/pull/7846) [ogdf] Update source link
+
+- libp7client `5.2` -> `5.2-1`
+ - [(#7977)](https://github.com/microsoft/vcpkg/pull/7977) [libp7client] Rename port folder to lowercase
+
+- libpng `1.6.37-2` -> `1.6.37-3`
+ - [(#7972)](https://github.com/microsoft/vcpkg/pull/7972) [libpng] Fix find_package() in CONFIG mode (#7968)
+
+- openblas `0.3.6-5` -> `0.3.6-6`
+ - [(#7888)](https://github.com/microsoft/vcpkg/pull/7888) [openblas] Enable x86 build and fix usage errors.
+
+- qt5-base `5.12.3-3` -> `5.12.3-4`
+ - [(#7973)](https://github.com/microsoft/vcpkg/pull/7973) [Qt5] Fix libpq linkage in wrapper
+
+- liblas `1.8.1` -> `1.8.1-2`
+ - [(#7975)](https://github.com/microsoft/vcpkg/pull/7975) [liblas] Fix Geotiff linkage
+
+- glib `2.52.3-14-2` -> `2.52.3-14-3`
+ - [(#7963)](https://github.com/microsoft/vcpkg/pull/7963) [glib] Fix install config.h
+
+</details>
+
+-- vcpkg team vcpkg@microsoft.com THU, 04 Sept 14:00:00 -0800
+
vcpkg (2019.7.31)
---
#### Total port count: 1105