Skip to content

Commit

Permalink
Merge pull request github#35141 from github/repo-sync
Browse files Browse the repository at this point in the history
Repo sync
  • Loading branch information
docs-bot authored Nov 1, 2024
2 parents 2dffa8d + 3d61b6c commit d728f10
Show file tree
Hide file tree
Showing 9 changed files with 77 additions and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -1022,6 +1022,33 @@ updates:
versioning-strategy: increase-if-necessary
```

{% ifversion dependabot-updates-supported-versioning-tags %}

### Versioning tags

* Represent stages in the software release lifecycle, such as alpha, beta, and stable versions.
* Allow publishers to distribute their packages more effectively.
* Indicate the stability of a version and communicate what users should expect in terms of features and stability.

{% data reusables.dependabot.dependabot-updates-supported-versioning-tags %}

#### Versioning tag glossary

* **`alpha`**: Early version, may be unstable and have incomplete features.
* **`beta`**: More stable than alpha but may still have bugs.
* **`canary`**: Regularly updated pre-release version for testing.
* **`dev`**: Represents development versions.
* **`experimental`**: Versions with experimental features.
* **`latest`**: The latest stable release.
* **`legacy`**: Older or deprecated versions.
* **`next`**: Upcoming release version.
* **`nightly`**: Versions built nightly; often includes the latest changes.
* **`rc`**: Release candidate, close to stable release.
* **`release`**: The official release version.
* **`stable`**: The most reliable, production-ready version.

{% endif %}

## Configuration options for private registries

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.
Expand Down
Original file line number Diff line number Diff line change
@@ -0,0 +1,6 @@
# Reference: #16090
# Add versioning tag details to Dependabot docs
versions:
fpt: '*'
ghec: '*'
ghes: '> 3.14'
Original file line number Diff line number Diff line change
@@ -0,0 +1,12 @@
{% data variables.product.prodname_dependabot %} recognizes a variety of versioning tags for pre-releases, stable versions, and custom tags across different ecosystems.

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.

#### Supported versioning tags

| **Package Manager** | **YAML value** | **Supported Tags** | **Examples** |
|---------------------|-------------------|--------------------------------------------------------------------------------------------------------------------|-------------------------------------------|
| Maven | `maven` | `alpha, a, beta, b, milestone, m, rc, cr, sp, ga, final, release, snapshot` | `[email protected]`, `[email protected]` |
| npm | `npm` | `alpha`, `beta`, `canary`, `dev`, `experimental`, `latest`, `legacy`, `next`, `nightly`, `rc`, `release`, `stable` | `lodash@beta`, `react@latest`, `express@next` | |
| pnpm | `npm` | `alpha`, `beta`, `canary`, `dev`, `experimental`, `latest`, `legacy`, `next`, `nightly`, `rc`, `release`, `stable` | `[email protected]`, `react@alpha`, `vue@next` |
| yarn | `npm` | `alpha`, `beta`, `canary`, `dev`, `experimental`, `latest`, `legacy`, `next`, `nightly`, `rc`, `release`, `stable` | `[email protected]`, `axios@latest`, `moment@nightly` |
2 changes: 1 addition & 1 deletion src/audit-logs/lib/config.json
Original file line number Diff line number Diff line change
Expand Up @@ -3,5 +3,5 @@
"apiOnlyEvents": "This event is not available in the web interface, only via the REST API, audit log streaming, or JSON/CSV exports.",
"apiRequestEvent": "This event is only available via audit log streaming."
},
"sha": "6a20673ab35be527bc4d1773716a5ac1efe4308a"
"sha": "e0d0a5b51de85051f0e2529cd362ff41a32e09aa"
}
13 changes: 13 additions & 0 deletions src/graphql/data/fpt/changelog.json
Original file line number Diff line number Diff line change
@@ -1,4 +1,17 @@
[
{
"schemaChanges": [
{
"title": "The GraphQL schema includes these changes:",
"changes": [
"<p>Enum value <code>BLUESKY</code> was added to enum <code>SocialAccountProvider</code></p>"
]
}
],
"previewChanges": [],
"upcomingChanges": [],
"date": "2024-11-01"
},
{
"schemaChanges": [
{
Expand Down
5 changes: 5 additions & 0 deletions src/graphql/data/fpt/schema.docs.graphql
Original file line number Diff line number Diff line change
Expand Up @@ -50805,6 +50805,11 @@ type SocialAccountEdge {
Software or company that hosts social media accounts.
"""
enum SocialAccountProvider {
"""
Decentralized microblogging social platform.
"""
BLUESKY

"""
Social media and networking website.
"""
Expand Down
4 changes: 4 additions & 0 deletions src/graphql/data/fpt/schema.json
Original file line number Diff line number Diff line change
Expand Up @@ -88096,6 +88096,10 @@
"href": "/graphql/reference/enums#socialaccountprovider",
"description": "<p>Software or company that hosts social media accounts.</p>",
"values": [
{
"name": "BLUESKY",
"description": "<p>Decentralized microblogging social platform.</p>"
},
{
"name": "FACEBOOK",
"description": "<p>Social media and networking website.</p>"
Expand Down
5 changes: 5 additions & 0 deletions src/graphql/data/ghec/schema.docs.graphql
Original file line number Diff line number Diff line change
Expand Up @@ -50805,6 +50805,11 @@ type SocialAccountEdge {
Software or company that hosts social media accounts.
"""
enum SocialAccountProvider {
"""
Decentralized microblogging social platform.
"""
BLUESKY

"""
Social media and networking website.
"""
Expand Down
4 changes: 4 additions & 0 deletions src/graphql/data/ghec/schema.json
Original file line number Diff line number Diff line change
Expand Up @@ -88096,6 +88096,10 @@
"href": "/graphql/reference/enums#socialaccountprovider",
"description": "<p>Software or company that hosts social media accounts.</p>",
"values": [
{
"name": "BLUESKY",
"description": "<p>Decentralized microblogging social platform.</p>"
},
{
"name": "FACEBOOK",
"description": "<p>Social media and networking website.</p>"
Expand Down

0 comments on commit d728f10

Please sign in to comment.