Skip to content

Commit 3ce98f9

Browse files
WyriHaximusgithub-actions[bot]
authored andcommitted
[GitHubEnterprise-3.13] Update to 1.1.4-1e4171c4fa0a2799e195f6bc1881cf84 from 1.1.4-71747b16e45e0f2a54b8e1ca561b75d5
Detected Schema changes: ``` ├─┬Paths │ ├─┬/orgs/{org}/actions/secrets/{secret_name} │ │ └─┬PUT │ │ └─┬Requestbody │ │ └─┬application/json │ │ └─┬Schema │ │ ├──[➖] required (10402:17)❌ │ │ └──[➖] required (10403:17)❌ │ ├─┬/repos/{owner}/{repo}/actions/secrets/{secret_name} │ │ └─┬PUT │ │ └─┬Requestbody │ │ └─┬application/json │ │ └─┬Schema │ │ ├──[➖] required (21353:17)❌ │ │ └──[➖] required (21352:17)❌ │ └─┬/repos/{owner}/{repo}/vulnerability-alerts │ └─┬GET │ └─┬Extensions │ └──[🔀] x-github (39380:9) └─┬Components └─┬ghes-license-info └─┬croquetSupport └──[🔀] description (71460:24) ``` | Document Element | Total Changes | Breaking Changes | |------------------|---------------|------------------| | paths | 5 | 4 | | components | 1 | 0 | Date: 01/31/25 | Commit: New: etc/specs/GitHubEnterprise-3.13/previous.spec.yaml, Original: etc/specs/GitHubEnterprise-3.13/current.spec.yaml - ❌ **BREAKING Changes**: _4_ out of _6_ - **Modifications**: _2_ - **Removals**: _4_ - **Breaking Removals**: _4_ ERROR: breaking changes discovered
1 parent c8b0e3a commit 3ce98f9

File tree

5 files changed

+24
-13
lines changed

5 files changed

+24
-13
lines changed

clients/GitHubEnterprise-3.13/etc/openapi-client-generator.state

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
{
2-
"specHash": "71747b16e45e0f2a54b8e1ca561b75d5",
2+
"specHash": "1e4171c4fa0a2799e195f6bc1881cf84",
33
"generatedFiles": {
44
"files": [
55
{
@@ -13816,7 +13816,7 @@
1381613816
},
1381713817
{
1381813818
"name": ".\/clients\/GitHubEnterprise-3.13\/etc\/..\/\/src\/\/Schema\/GhesLicenseInfo.php",
13819-
"hash": "11f25056840082f928f2981476249d8f"
13819+
"hash": "77c68faa550ce195d57556a97655794f"
1382013820
},
1382113821
{
1382213822
"name": ".\/clients\/GitHubEnterprise-3.13\/etc\/..\/\/src\/\/Schema\/GhesUploadLicenseRequest.php",
@@ -24964,7 +24964,7 @@
2496424964
},
2496524965
{
2496624966
"name": ".\/clients\/GitHubEnterprise-3.13\/etc\/..\/\/src\/\/Schema\/Actions\/CreateOrUpdateOrgSecret\/Request\/ApplicationJson.php",
24967-
"hash": "0a552931448e86ef390118859bb6dea5"
24967+
"hash": "e7d3d8a1cfe4be25e3e27b4d0db88ccc"
2496824968
},
2496924969
{
2497024970
"name": ".\/clients\/GitHubEnterprise-3.13\/etc\/..\/\/src\/\/Schema\/AliasAbstract\/TietD6BA1ED7\/Tiet9B0C5C34\/TietD5FB7F6C\/Tiet8AB8BB18.php",
@@ -25540,7 +25540,7 @@
2554025540
},
2554125541
{
2554225542
"name": ".\/clients\/GitHubEnterprise-3.13\/etc\/..\/\/src\/\/Schema\/Actions\/CreateOrUpdateRepoSecret\/Request\/ApplicationJson.php",
25543-
"hash": "639ecdb585ccdb4b155073cfcf86a555"
25543+
"hash": "de48413601fba051e9ef62c628a42e2f"
2554425544
},
2554525545
{
2554625546
"name": ".\/clients\/GitHubEnterprise-3.13\/etc\/..\/\/src\/\/Schema\/AliasAbstract\/TietFE7865BF\/Tiet5F7F1DFF\/TietE50994AE\/TietB8600E0B.php",
@@ -27212,7 +27212,7 @@
2721227212
},
2721327213
{
2721427214
"name": ".\/clients\/GitHubEnterprise-3.13\/etc\/..\/\/src\/\/Operation\/Dependabot.php",
27215-
"hash": "41f38bbe9a82db393bb4c578316bf591"
27215+
"hash": "edac74857f10a9a5ef2430a8051cd208"
2721627216
},
2721727217
{
2721827218
"name": ".\/clients\/GitHubEnterprise-3.13\/etc\/..\/\/src\/\/Operation\/Billing.php",

clients/GitHubEnterprise-3.13/src/Schema/Actions/CreateOrUpdateOrgSecret/Request/ApplicationJson.php

Lines changed: 4 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -10,6 +10,8 @@
1010
{
1111
public const SCHEMA_JSON = '{
1212
"required": [
13+
"encrypted_value",
14+
"key_id",
1315
"visibility"
1416
],
1517
"type": "object",
@@ -60,8 +62,8 @@
6062
* selectedRepositoryIds: An array of repository ids that can access the organization secret. You can only provide a list of repository ids when the `visibility` is set to `selected`. You can manage the list of selected repositories using the [List selected repositories for an organization secret](https://docs.github.com/[email protected]/rest/actions/secrets#list-selected-repositories-for-an-organization-secret), [Set selected repositories for an organization secret](https://docs.github.com/[email protected]/rest/actions/secrets#set-selected-repositories-for-an-organization-secret), and [Remove selected repository from an organization secret](https://docs.github.com/[email protected]/rest/actions/secrets#remove-selected-repository-from-an-organization-secret) endpoints.
6163
*/
6264
public function __construct(#[MapFrom('encrypted_value')]
63-
public string|null $encryptedValue, #[MapFrom('key_id')]
64-
public string|null $keyId, public string $visibility, #[MapFrom('selected_repository_ids')]
65+
public string $encryptedValue, #[MapFrom('key_id')]
66+
public string $keyId, public string $visibility, #[MapFrom('selected_repository_ids')]
6567
public array|null $selectedRepositoryIds,)
6668
{
6769
}

clients/GitHubEnterprise-3.13/src/Schema/Actions/CreateOrUpdateRepoSecret/Request/ApplicationJson.php

Lines changed: 6 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -9,6 +9,10 @@
99
final readonly class ApplicationJson
1010
{
1111
public const SCHEMA_JSON = '{
12+
"required": [
13+
"encrypted_value",
14+
"key_id"
15+
],
1216
"type": "object",
1317
"properties": {
1418
"encrypted_value": {
@@ -34,8 +38,8 @@
3438
* keyId: ID of the key you used to encrypt the secret.
3539
*/
3640
public function __construct(#[MapFrom('encrypted_value')]
37-
public string|null $encryptedValue, #[MapFrom('key_id')]
38-
public string|null $keyId,)
41+
public string $encryptedValue, #[MapFrom('key_id')]
42+
public string $keyId,)
3943
{
4044
}
4145
}

clients/GitHubEnterprise-3.13/src/Schema/GhesLicenseInfo.php

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -27,7 +27,7 @@
2727
},
2828
"croquetSupport": {
2929
"type": "boolean",
30-
"description": "Whether the Github Connect feature is enabled."
30+
"description": "Whether the GitHub Connect feature is enabled."
3131
},
3232
"customTerms": {
3333
"type": "boolean",
@@ -123,7 +123,7 @@
123123
* advancedSecuritySeats: If the GitHub Advanced Security feature is enabled, the seat count.
124124
* clusterSupport: Whether the cluster support feature is enabled.
125125
* company: The company under which the license is issued.
126-
* croquetSupport: Whether the Github Connect feature is enabled.
126+
* croquetSupport: Whether the GitHub Connect feature is enabled.
127127
* customTerms: Whether this license is issued under custom terms.
128128
* evaluation: Wheter this license is issued as an evaluation license.
129129
* expireAt: The expiration date of the license.

etc/specs/GitHubEnterprise-3.13/current.spec.yaml

Lines changed: 7 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -10399,6 +10399,8 @@ paths:
1039910399
items:
1040010400
type: integer
1040110401
required:
10402+
- encrypted_value
10403+
- key_id
1040210404
- visibility
1040310405
examples:
1040410406
default:
@@ -21346,6 +21348,9 @@ paths:
2134621348
key_id:
2134721349
type: string
2134821350
description: ID of the key you used to encrypt the secret.
21351+
required:
21352+
- encrypted_value
21353+
- key_id
2134921354
examples:
2135021355
default:
2135121356
value:
@@ -39378,7 +39383,7 @@ paths:
3937839383
description: Not Found if repository is not enabled with vulnerability alerts
3937939384
x-github:
3938039385
githubCloudOnly: false
39381-
enabledForGitHubApps: false
39386+
enabledForGitHubApps: true
3938239387
category: repos
3938339388
subcategory: repos
3938439389
put:
@@ -71457,7 +71462,7 @@ components:
7145771462
description: The company under which the license is issued.
7145871463
type: string
7145971464
croquetSupport:
71460-
description: Whether the Github Connect feature is enabled.
71465+
description: Whether the GitHub Connect feature is enabled.
7146171466
type: boolean
7146271467
customTerms:
7146371468
description: Whether this license is issued under custom terms.

0 commit comments

Comments
 (0)