• taladar@sh.itjust.works
    link
    fedilink
    English
    arrow-up
    0
    ·
    1 month ago

    What I would really like to know is the thought process behind using the oldest dependency version in a version range in .NET instead of the newest like literally every other package or dependency manager ever made. That design couldn’t be worse if it was designed to maximize security holes.

      • taladar@sh.itjust.works
        link
        fedilink
        English
        arrow-up
        0
        ·
        1 month ago

        If you specify that e.g. a dependency should be between version >= 4.0 and < 4.1 in dotnet and there are versions 4.0.0 and 4.0.1 available pretty much all other systems choose 4.0.1 based on the idea that that will include a fix while dotnet chooses 4.0.0 based on the idea that that is “more stable”.