Skip to content

Commit 6266b6e

Browse files
WyriHaximusgithub-actions[bot]
authored andcommitted
[GitHubEnterprise-3.14] Update to 1.1.4-e6b97d7e63c1ce77438434e9c1074e81 from 1.1.4-4d3a9ded7363917824fb2d5fa79ad2ce
Detected Schema changes: ``` ├─┬Paths │ ├─┬/repos/{owner}/{repo}/actions/secrets/{secret_name} │ │ └─┬PUT │ │ └─┬Requestbody │ │ └─┬application/json │ │ └─┬Schema │ │ ├──[➖] required (21971:17)❌ │ │ └──[➖] required (21972:17)❌ │ ├─┬/repos/{owner}/{repo}/vulnerability-alerts │ │ └─┬GET │ │ └─┬Extensions │ │ └──[🔀] x-github (39999:9) │ └─┬/orgs/{org}/actions/secrets/{secret_name} │ └─┬PUT │ └─┬Requestbody │ └─┬application/json │ └─┬Schema │ ├──[➖] required (10442:17)❌ │ └──[➖] required (10443:17)❌ └─┬Components └─┬ghes-license-info └─┬croquetSupport └──[🔀] description (72420:24) ``` | Document Element | Total Changes | Breaking Changes | |------------------|---------------|------------------| | paths | 5 | 4 | | components | 1 | 0 | Date: 01/31/25 | Commit: New: etc/specs/GitHubEnterprise-3.14/previous.spec.yaml, Original: etc/specs/GitHubEnterprise-3.14/current.spec.yaml - ❌ **BREAKING Changes**: _4_ out of _6_ - **Modifications**: _2_ - **Removals**: _4_ - **Breaking Removals**: _4_ ERROR: breaking changes discovered
1 parent 7418d51 commit 6266b6e

File tree

5 files changed

+24
-13
lines changed

5 files changed

+24
-13
lines changed

clients/GitHubEnterprise-3.14/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": "4d3a9ded7363917824fb2d5fa79ad2ce",
2+
"specHash": "e6b97d7e63c1ce77438434e9c1074e81",
33
"generatedFiles": {
44
"files": [
55
{
@@ -13980,7 +13980,7 @@
1398013980
},
1398113981
{
1398213982
"name": ".\/clients\/GitHubEnterprise-3.14\/etc\/..\/\/src\/\/Schema\/GhesLicenseInfo.php",
13983-
"hash": "11f25056840082f928f2981476249d8f"
13983+
"hash": "77c68faa550ce195d57556a97655794f"
1398413984
},
1398513985
{
1398613986
"name": ".\/clients\/GitHubEnterprise-3.14\/etc\/..\/\/src\/\/Schema\/GhesUploadLicenseRequest.php",
@@ -25256,7 +25256,7 @@
2525625256
},
2525725257
{
2525825258
"name": ".\/clients\/GitHubEnterprise-3.14\/etc\/..\/\/src\/\/Schema\/Actions\/CreateOrUpdateOrgSecret\/Request\/ApplicationJson.php",
25259-
"hash": "0b6f98a2232a95ea3593f03b49eda419"
25259+
"hash": "2d7744ebe2f4d68f92e3c40ffd4da32c"
2526025260
},
2526125261
{
2526225262
"name": ".\/clients\/GitHubEnterprise-3.14\/etc\/..\/\/src\/\/Schema\/AliasAbstract\/TietD6BA1ED7\/Tiet9B0C5C34\/TietD5FB7F6C\/Tiet8AB8BB18.php",
@@ -25836,7 +25836,7 @@
2583625836
},
2583725837
{
2583825838
"name": ".\/clients\/GitHubEnterprise-3.14\/etc\/..\/\/src\/\/Schema\/Actions\/CreateOrUpdateRepoSecret\/Request\/ApplicationJson.php",
25839-
"hash": "5c8073638ace32910e5876ba6abb0a27"
25839+
"hash": "53df65197bca16ec3466e9eba95d8b65"
2584025840
},
2584125841
{
2584225842
"name": ".\/clients\/GitHubEnterprise-3.14\/etc\/..\/\/src\/\/Schema\/AliasAbstract\/TietFE7865BF\/Tiet5F7F1DFF\/TietE50994AE\/TietB8600E0B.php",
@@ -27508,7 +27508,7 @@
2750827508
},
2750927509
{
2751027510
"name": ".\/clients\/GitHubEnterprise-3.14\/etc\/..\/\/src\/\/Operation\/Dependabot.php",
27511-
"hash": "41f38bbe9a82db393bb4c578316bf591"
27511+
"hash": "edac74857f10a9a5ef2430a8051cd208"
2751227512
},
2751327513
{
2751427514
"name": ".\/clients\/GitHubEnterprise-3.14\/etc\/..\/\/src\/\/Operation\/Billing.php",

clients/GitHubEnterprise-3.14/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.14/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.14/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.14/current.spec.yaml

Lines changed: 7 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -10439,6 +10439,8 @@ paths:
1043910439
items:
1044010440
type: integer
1044110441
required:
10442+
- encrypted_value
10443+
- key_id
1044210444
- visibility
1044310445
examples:
1044410446
default:
@@ -21965,6 +21967,9 @@ paths:
2196521967
key_id:
2196621968
type: string
2196721969
description: ID of the key you used to encrypt the secret.
21970+
required:
21971+
- encrypted_value
21972+
- key_id
2196821973
examples:
2196921974
default:
2197021975
value:
@@ -39997,7 +40002,7 @@ paths:
3999740002
description: Not Found if repository is not enabled with vulnerability alerts
3999840003
x-github:
3999940004
githubCloudOnly: false
40000-
enabledForGitHubApps: false
40005+
enabledForGitHubApps: true
4000140006
category: repos
4000240007
subcategory: repos
4000340008
put:
@@ -72417,7 +72422,7 @@ components:
7241772422
description: The company under which the license is issued.
7241872423
type: string
7241972424
croquetSupport:
72420-
description: Whether the Github Connect feature is enabled.
72425+
description: Whether the GitHub Connect feature is enabled.
7242172426
type: boolean
7242272427
customTerms:
7242372428
description: Whether this license is issued under custom terms.

0 commit comments

Comments
 (0)