aspnetcore/scripts
Nate McMaster e69a47f230
Implement patch policies per repo and set default to ProductChangesOnly
Our policy since 1.0.0 has been to always cascade version updates in the packages we own. e.g. if Logging has a product change in 2.1.x, then Kestrel, EF Core, Mvc, etc also re-ship with the updated Logging dependency. This has been done for a variety of reasons:

* NuGet does not show updates for transitive dependencies, only direct ones
* NuGet does resolves the lowest compatible transitive dependencies
* ASP.NET Core ships to both .NET Framework (where transitive dependency version matters) and .NET Core (where it matters less if you use the shared framework)

While transitive dependencies is still an important scenario, this practice of always patching has led to bigger issues.

* High probability users will unintentionally upgrade out of the shared framework: #3307
* Conflicts with metapackages that attempt to use exact version constraints: aspnet/Universe#1180
* A quality perception issue: the high volume of new versions in servicing updates with only metadata changes has created the impression that new versions of packages may not be very important. It's also made it appear like there are more issues product than there really are.
* High volume of packages changing with only metadata changes. Of the last 301 packages published in a servicing update, only 11 contained actual changes to the implementation assemblies. (3.5%)

This change implements a system to verify a new, non-cascading versioning policy for servicing updates. This required changes to repos to pin version variables to that matter per-repo,
and to remove some of the restrictions and checks.

Incidentally, this should make defining new patches easier because it automatically determines which packages are or are not patching in the release.
2018-07-12 21:33:50 -07:00
..
GenerateTags.ps1 Update GenerateTags.ps1 script 2018-04-17 09:08:47 -07:00
GetPackageVersion.targets Backport scripts from dev used to generate tags on repos 2018-03-13 18:09:00 -07:00
ListRepoVersions.ps1 Merge branch 'release/2.0' into release/2.1 2018-06-04 10:35:13 -07:00
PatchVersionPrefix.ps1 Implement patch policies per repo and set default to ProductChangesOnly 2018-07-12 21:33:50 -07:00
TagRepos.ps1 Merge branch 'release/2.0' into release/2.1 2018-06-01 17:08:08 -07:00
UpdateBuildTools.ps1 Minor tweaks to update scripts 2018-04-13 10:55:33 -07:00
UpdateDependencies.ps1 Backport fixes to maestro-bot scripts 2018-05-03 19:25:11 -07:00
UpdateDependenciesCoreFx.ps1 Backport fixes to maestro-bot scripts 2018-05-03 19:25:11 -07:00
UpdateRepos.ps1 UpdateRepos.ps1 get latest of branch 2018-03-09 14:38:15 -08:00
UpdateSubmodules.ps1 Updating submodule(s) 2018-05-23 11:30:56 -07:00
common.psm1 Merge branch 'release/2.0' into release/2.1 2018-07-05 20:12:24 -07:00
requirements.txt
update_travis_appveyor_yml.py