-
Notifications
You must be signed in to change notification settings - Fork 15.5k
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Project: Release Notes V2 #30516
Comments
This seems like a failure of our backporting policy IMO. Upgrading should never remove features (unless those features were intentionally removed & the removal was listed in breaking changes, etc.) |
Not necessarily, our version system is non-linear, such that 13.3.0 might contain fixes not in 14.0.1 literally because it was released after it. I.e. the change might be in 14.2.0 🤷 It isn't a failure in backport policy, it's just an unchangeable That's How Time Works problem 😄 |
This issue has been automatically marked as stale. If this issue is still affecting you, please leave any comment (for example, "bump"), and we'll keep it open. If you have any new additional information—in particular, if this is still reproducible in the latest version of Electron or in the beta—please include it with your comment! |
This issue has been closed due to inactivity, and will not be monitored. If this is a bug and you can reproduce this issue on a supported version of Electron please open a new issue and include instructions for reproducing the issue. |
One of the big issues folks have with upgrading Electron is being able to easily tell (a) what has changed between the version they're on and the version they're upgrading to and (b) whether those changes impact them.
Currently the solution to (a) is to check the releases notes of every version between vCurrent and vNext. This works reasonably well for upgrades within the same major version of Electron but falls apart when crossing the major version boundary. This is because fixes / features in vN might not be in vN+1 and vice versa due to how we maintain branches in parallel and backport changes.
In order to solve this problem in a way that actually solves the underlying issue for electron app developers I'd like to outline a series of changes to how we handle release notes.
electron/electron
and moved toclerk
such that you can fire an API request and obtain release notes between two versions.The new release notes service in clerk is specced out here: electron/clerk#66
The text was updated successfully, but these errors were encountered: