When running webdriver-manager update in version 13.0.0, it downloads chromedriver version 77 (or 77.0.3865.10 to be exact), even though Chrome 77 hasn't had its official release yet (see https://www.chromestatus.com/features/schedule). This causes my Protractor tests to fail with Error: SessionNotCreatedError: session not created: This version of ChromeDriver only supports Chrome version 77.
The issue does not exist in webdriver-manager 12 (exact version tested: 12.1.6), where it correctly downloads chromedriver 76.0.3809.12.
I know about the workaround of explicitly defining the Chrome version to download (webdriver-manager update --versions.chrome=76.0.3809.12), but that isn't really sustainable.