Skip to content

Commit d728f10

Browse files
authoredNov 1, 2024
Merge pull request #35141 from github/repo-sync
Repo sync
2 parents 2dffa8d + 3d61b6c commit d728f10

File tree

9 files changed

+77
-1
lines changed

9 files changed

+77
-1
lines changed
 

‎content/code-security/dependabot/dependabot-version-updates/configuration-options-for-the-dependabot.yml-file.md

Lines changed: 27 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1022,6 +1022,33 @@ updates:
10221022
versioning-strategy: increase-if-necessary
10231023
```
10241024

1025+
{% ifversion dependabot-updates-supported-versioning-tags %}
1026+
1027+
### Versioning tags
1028+
1029+
* Represent stages in the software release lifecycle, such as alpha, beta, and stable versions.
1030+
* Allow publishers to distribute their packages more effectively.
1031+
* Indicate the stability of a version and communicate what users should expect in terms of features and stability.
1032+
1033+
{% data reusables.dependabot.dependabot-updates-supported-versioning-tags %}
1034+
1035+
#### Versioning tag glossary
1036+
1037+
* **`alpha`**: Early version, may be unstable and have incomplete features.
1038+
* **`beta`**: More stable than alpha but may still have bugs.
1039+
* **`canary`**: Regularly updated pre-release version for testing.
1040+
* **`dev`**: Represents development versions.
1041+
* **`experimental`**: Versions with experimental features.
1042+
* **`latest`**: The latest stable release.
1043+
* **`legacy`**: Older or deprecated versions.
1044+
* **`next`**: Upcoming release version.
1045+
* **`nightly`**: Versions built nightly; often includes the latest changes.
1046+
* **`rc`**: Release candidate, close to stable release.
1047+
* **`release`**: The official release version.
1048+
* **`stable`**: The most reliable, production-ready version.
1049+
1050+
{% endif %}
1051+
10251052
## Configuration options for private registries
10261053

10271054
The top-level `registries` key is optional. It allows you to specify authentication details that {% data variables.product.prodname_dependabot %} can use to access private package registries.
Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,6 @@
1+
# Reference: #16090
2+
# Add versioning tag details to Dependabot docs
3+
versions:
4+
fpt: '*'
5+
ghec: '*'
6+
ghes: '> 3.14'
Lines changed: 12 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,12 @@
1+
{% data variables.product.prodname_dependabot %} recognizes a variety of versioning tags for pre-releases, stable versions, and custom tags across different ecosystems.
2+
3+
The `dependabot.yml` file doesn't control the versioning tags that you can use, but you can define in configuration options such as [`ignore`](/code-security/dependabot/dependabot-version-updates/configuration-options-for-the-dependabot.yml-file#ignore) the supported versioning tags you want to ignore updates for.
4+
5+
#### Supported versioning tags
6+
7+
| **Package Manager** | **YAML value** | **Supported Tags** | **Examples** |
8+
|---------------------|-------------------|--------------------------------------------------------------------------------------------------------------------|-------------------------------------------|
9+
| Maven | `maven` | `alpha, a, beta, b, milestone, m, rc, cr, sp, ga, final, release, snapshot` | `spring-security-web@5.6.0-SNAPSHOT`, `spring-core@5.2.0.RELEASE` |
10+
| npm | `npm` | `alpha`, `beta`, `canary`, `dev`, `experimental`, `latest`, `legacy`, `next`, `nightly`, `rc`, `release`, `stable` | `lodash@beta`, `react@latest`, `express@next` | |
11+
| pnpm | `npm` | `alpha`, `beta`, `canary`, `dev`, `experimental`, `latest`, `legacy`, `next`, `nightly`, `rc`, `release`, `stable` | `lodash@1.2.0-alpha`, `react@alpha`, `vue@next` |
12+
| yarn | `npm` | `alpha`, `beta`, `canary`, `dev`, `experimental`, `latest`, `legacy`, `next`, `nightly`, `rc`, `release`, `stable` | `lodash@1.2.0-alpha`, `axios@latest`, `moment@nightly` |

‎src/audit-logs/lib/config.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,5 +3,5 @@
33
"apiOnlyEvents": "This event is not available in the web interface, only via the REST API, audit log streaming, or JSON/CSV exports.",
44
"apiRequestEvent": "This event is only available via audit log streaming."
55
},
6-
"sha": "6a20673ab35be527bc4d1773716a5ac1efe4308a"
6+
"sha": "e0d0a5b51de85051f0e2529cd362ff41a32e09aa"
77
}

‎src/graphql/data/fpt/changelog.json

Lines changed: 13 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,17 @@
11
[
2+
{
3+
"schemaChanges": [
4+
{
5+
"title": "The GraphQL schema includes these changes:",
6+
"changes": [
7+
"<p>Enum value <code>BLUESKY</code> was added to enum <code>SocialAccountProvider</code></p>"
8+
]
9+
}
10+
],
11+
"previewChanges": [],
12+
"upcomingChanges": [],
13+
"date": "2024-11-01"
14+
},
215
{
316
"schemaChanges": [
417
{

‎src/graphql/data/fpt/schema.docs.graphql

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -50805,6 +50805,11 @@ type SocialAccountEdge {
5080550805
Software or company that hosts social media accounts.
5080650806
"""
5080750807
enum SocialAccountProvider {
50808+
"""
50809+
Decentralized microblogging social platform.
50810+
"""
50811+
BLUESKY
50812+
5080850813
"""
5080950814
Social media and networking website.
5081050815
"""

‎src/graphql/data/fpt/schema.json

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -88096,6 +88096,10 @@
8809688096
"href": "/graphql/reference/enums#socialaccountprovider",
8809788097
"description": "<p>Software or company that hosts social media accounts.</p>",
8809888098
"values": [
88099+
{
88100+
"name": "BLUESKY",
88101+
"description": "<p>Decentralized microblogging social platform.</p>"
88102+
},
8809988103
{
8810088104
"name": "FACEBOOK",
8810188105
"description": "<p>Social media and networking website.</p>"

‎src/graphql/data/ghec/schema.docs.graphql

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -50805,6 +50805,11 @@ type SocialAccountEdge {
5080550805
Software or company that hosts social media accounts.
5080650806
"""
5080750807
enum SocialAccountProvider {
50808+
"""
50809+
Decentralized microblogging social platform.
50810+
"""
50811+
BLUESKY
50812+
5080850813
"""
5080950814
Social media and networking website.
5081050815
"""

‎src/graphql/data/ghec/schema.json

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -88096,6 +88096,10 @@
8809688096
"href": "/graphql/reference/enums#socialaccountprovider",
8809788097
"description": "<p>Software or company that hosts social media accounts.</p>",
8809888098
"values": [
88099+
{
88100+
"name": "BLUESKY",
88101+
"description": "<p>Decentralized microblogging social platform.</p>"
88102+
},
8809988103
{
8810088104
"name": "FACEBOOK",
8810188105
"description": "<p>Social media and networking website.</p>"

0 commit comments

Comments
 (0)