Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

[GitHubEnterprise-3.14] Update to 1.1.4-17c2c7428f307a53f2d8a29fc0b52750 from 1.1.4-8137cb0f7b4d2c9a7e11798086b95b2a #1582

Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
{
"specHash": "8137cb0f7b4d2c9a7e11798086b95b2a",
"specHash": "17c2c7428f307a53f2d8a29fc0b52750",
"generatedFiles": {
"files": [
{
Expand Down Expand Up @@ -26264,7 +26264,7 @@
},
{
"name": ".\/clients\/GitHubEnterprise-3.14\/etc\/..\/\/src\/\/Schema\/Issues\/Create\/Request\/ApplicationJson.php",
"hash": "335cc418a5e348ab8d9aef4140dbd513"
"hash": "3de07eb2a6b048784a27635795fa683f"
},
{
"name": ".\/clients\/GitHubEnterprise-3.14\/etc\/..\/\/src\/\/Schema\/AliasAbstract\/TietC87B405D\/Tiet9B9DED8B\/Tiet852071AE\/Tiet1AF85D12.php",
Expand Down Expand Up @@ -26296,7 +26296,7 @@
},
{
"name": ".\/clients\/GitHubEnterprise-3.14\/etc\/..\/\/src\/\/Schema\/Issues\/Update\/Request\/ApplicationJson.php",
"hash": "1244e5dcd3e4cb57a5e95343282e8b0f"
"hash": "58462d123a3e94dec71dec93af21fee2"
},
{
"name": ".\/clients\/GitHubEnterprise-3.14\/etc\/..\/\/src\/\/Schema\/Issues\/AddAssignees\/Request\/ApplicationJson.php",
Expand Down Expand Up @@ -27504,7 +27504,7 @@
},
{
"name": ".\/clients\/GitHubEnterprise-3.14\/etc\/..\/\/src\/\/Operation\/Issues.php",
"hash": "2b1c01814ea22ab3511d57bfefb43f7f"
"hash": "943f6c18c2b153af47e046f85548c3d3"
},
{
"name": ".\/clients\/GitHubEnterprise-3.14\/etc\/..\/\/src\/\/Operation\/Licenses.php",
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -96,7 +96,7 @@
"string",
"null"
],
"description": "The name of the issue type to associate with this issue.",
"description": "The name of the issue type to associate with this issue. _NOTE: Only users with push access can set the type for new issues. The type is silently dropped otherwise._",
"examples": [
"Epic"
]
Expand Down Expand Up @@ -127,7 +127,7 @@
* assignee: Login for the user that this issue should be assigned to. _NOTE: Only users with push access can set the assignee for new issues. The assignee is silently dropped otherwise. **This field is closing down.**_
* labels: Labels to associate with this issue. _NOTE: Only users with push access can set labels for new issues. Labels are silently dropped otherwise._
* assignees: Logins for Users to assign to this issue. _NOTE: Only users with push access can set assignees for new issues. Assignees are silently dropped otherwise._
* type: The name of the issue type to associate with this issue.
* type: The name of the issue type to associate with this issue. _NOTE: Only users with push access can set the type for new issues. The type is silently dropped otherwise._
*/
public function __construct(public string|int $title, public string|null $body, public string|null $assignee, public string|int|null $milestone, public array|null $labels, public array|null $assignees, public string|null $type)
{
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -127,7 +127,7 @@
"string",
"null"
],
"description": "The name of the issue type to associate with this issue or use `null` to remove the current issue type.",
"description": "The name of the issue type to associate with this issue or use `null` to remove the current issue type. Only users with push access can set the type for issues. Without push access to the repository, type changes are silently dropped.",
"examples": [
"Epic"
]
Expand Down Expand Up @@ -162,7 +162,7 @@
* stateReason: The reason for the state change. Ignored unless `state` is changed.
* labels: Labels to associate with this issue. Pass one or more labels to _replace_ the set of labels on this issue. Send an empty array (`[]`) to clear all labels from the issue. Only users with push access can set labels for issues. Without push access to the repository, label changes are silently dropped.
* assignees: Usernames to assign to this issue. Pass one or more user logins to _replace_ the set of assignees on this issue. Send an empty array (`[]`) to clear all assignees from the issue. Only users with push access can set assignees for new issues. Without push access to the repository, assignee changes are silently dropped.
* type: The name of the issue type to associate with this issue or use `null` to remove the current issue type.
* type: The name of the issue type to associate with this issue or use `null` to remove the current issue type. Only users with push access can set the type for issues. Without push access to the repository, type changes are silently dropped.
*/
public function __construct(public string|int|null $title, public string|null $body, public string|null $assignee, public string|null $state, #[MapFrom('state_reason')]
public string|null $stateReason, public string|int|null $milestone, public array|null $labels, public array|null $assignees, public string|null $type,)
Expand Down
8 changes: 6 additions & 2 deletions etc/specs/GitHubEnterprise-3.14/current.spec.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -32280,7 +32280,9 @@ paths:
type:
- string
- 'null'
description: The name of the issue type to associate with this issue.
description: 'The name of the issue type to associate with this
issue. _NOTE: Only users with push access can set the type for
new issues. The type is silently dropped otherwise._'
examples:
- Epic
required:
Expand Down Expand Up @@ -32897,7 +32899,9 @@ paths:
- string
- 'null'
description: The name of the issue type to associate with this issue
or use `null` to remove the current issue type.
or use `null` to remove the current issue type. Only users with
push access can set the type for issues. Without push access to
the repository, type changes are silently dropped.
examples:
- Epic
examples:
Expand Down
Loading