chore: include alt text for images in markdown (#26665)
* chore: include alt text for images in markdown * chore: fix typo
This commit is contained in:
parent
956892dd5b
commit
0be6c92aa9
1 changed files with 8 additions and 8 deletions
|
@ -20,7 +20,7 @@ Electron versions *< 2.0* did not conform to the [semver](https://semver.org) sp
|
||||||
|
|
||||||
Here is an example of the 1.x strategy:
|
Here is an example of the 1.x strategy:
|
||||||
|
|
||||||

|

|
||||||
|
|
||||||
An app developed with `1.8.1` cannot take the `1.8.3` bug fix without either absorbing the `1.8.2` feature, or by backporting the fix and maintaining a new release line.
|
An app developed with `1.8.1` cannot take the `1.8.3` bug fix without either absorbing the `1.8.2` feature, or by backporting the fix and maintaining a new release line.
|
||||||
|
|
||||||
|
@ -54,12 +54,12 @@ Note that most Chromium updates will be considered breaking. Fixes that can be b
|
||||||
|
|
||||||
Stabilization branches are branches that run parallel to master, taking in only cherry-picked commits that are related to security or stability. These branches are never merged back to master.
|
Stabilization branches are branches that run parallel to master, taking in only cherry-picked commits that are related to security or stability. These branches are never merged back to master.
|
||||||
|
|
||||||

|

|
||||||
|
|
||||||
Since Electron 8, stabilization branches are always **major** version lines, and named against the following template `$MAJOR-x-y` e.g. `8-x-y`. Prior to that we used **minor** version lines and named them as `$MAJOR-$MINOR-x` e.g. `2-0-x`
|
Since Electron 8, stabilization branches are always **major** version lines, and named against the following template `$MAJOR-x-y` e.g. `8-x-y`. Prior to that we used **minor** version lines and named them as `$MAJOR-$MINOR-x` e.g. `2-0-x`
|
||||||
|
|
||||||
We allow for multiple stabilization branches to exist simultaneously, and intend to support at least two in parallel at all times, backporting security fixes as necessary.
|
We allow for multiple stabilization branches to exist simultaneously, and intend to support at least two in parallel at all times, backporting security fixes as necessary.
|
||||||

|

|
||||||
|
|
||||||
Older lines will not be supported by GitHub, but other groups can take ownership and backport stability and security fixes on their own. We discourage this, but recognize that it makes life easier for many app developers.
|
Older lines will not be supported by GitHub, but other groups can take ownership and backport stability and security fixes on their own. We discourage this, but recognize that it makes life easier for many app developers.
|
||||||
|
|
||||||
|
@ -104,17 +104,17 @@ For each major and minor bump, you should expect to see something like the follo
|
||||||
An example lifecycle in pictures:
|
An example lifecycle in pictures:
|
||||||
|
|
||||||
* A new release branch is created that includes the latest set of features. It is published as `2.0.0-beta.1`.
|
* A new release branch is created that includes the latest set of features. It is published as `2.0.0-beta.1`.
|
||||||

|

|
||||||
* A bug fix comes into master that can be backported to the release branch. The patch is applied, and a new beta is published as `2.0.0-beta.2`.
|
* A bug fix comes into master that can be backported to the release branch. The patch is applied, and a new beta is published as `2.0.0-beta.2`.
|
||||||

|

|
||||||
* The beta is considered _generally stable_ and it is published again as a non-beta under `2.0.0`.
|
* The beta is considered _generally stable_ and it is published again as a non-beta under `2.0.0`.
|
||||||

|

|
||||||
* Later, a zero-day exploit is revealed and a fix is applied to master. We backport the fix to the `2-0-x` line and release `2.0.1`.
|
* Later, a zero-day exploit is revealed and a fix is applied to master. We backport the fix to the `2-0-x` line and release `2.0.1`.
|
||||||

|

|
||||||
|
|
||||||
A few examples of how various semver ranges will pick up new releases:
|
A few examples of how various semver ranges will pick up new releases:
|
||||||
|
|
||||||

|

|
||||||
|
|
||||||
# Missing Features: Alphas
|
# Missing Features: Alphas
|
||||||
|
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue