From 63c450b3e417739ddbe0bf89a6f843074e35c66c Mon Sep 17 00:00:00 2001 From: GitLab Bot Date: Tue, 29 Nov 2022 06:08:59 +0000 Subject: Add latest changes from gitlab-org/gitlab@master --- doc/api/graphql/reference/index.md | 23 +++++++++++++++++++++++ doc/update/deprecations.md | 20 ++++++++++++++++++++ 2 files changed, 43 insertions(+) (limited to 'doc') diff --git a/doc/api/graphql/reference/index.md b/doc/api/graphql/reference/index.md index 6bdb0cef560..3fe43ced551 100644 --- a/doc/api/graphql/reference/index.md +++ b/doc/api/graphql/reference/index.md @@ -17912,6 +17912,29 @@ four standard [pagination arguments](#connection-pagination-arguments): | `sort` | [`Sort`](#sort) | List requirements by sort order. | | `state` | [`RequirementState`](#requirementstate) | Filter requirements by state. | +##### `Project.runners` + +Find runners visible to the current user. + +Returns [`CiRunnerConnection`](#cirunnerconnection). + +This field returns a [connection](#connections). It accepts the +four standard [pagination arguments](#connection-pagination-arguments): +`before: String`, `after: String`, `first: Int`, `last: Int`. + +###### Arguments + +| Name | Type | Description | +| ---- | ---- | ----------- | +| `active` **{warning-solid}** | [`Boolean`](#boolean) | **Deprecated** in 14.8. This was renamed. Use: `paused`. | +| `paused` | [`Boolean`](#boolean) | Filter runners by `paused` (true) or `active` (false) status. | +| `search` | [`String`](#string) | Filter by full token or partial text in description field. | +| `sort` | [`CiRunnerSort`](#cirunnersort) | Sort order of results. | +| `status` | [`CiRunnerStatus`](#cirunnerstatus) | Filter runners by status. | +| `tagList` | [`[String!]`](#string) | Filter by tags associated with the runner (comma-separated or array). | +| `type` | [`CiRunnerType`](#cirunnertype) | Filter runners by type. | +| `upgradeStatus` | [`CiRunnerUpgradeStatus`](#cirunnerupgradestatus) | Filter by upgrade status. | + ##### `Project.scanExecutionPolicies` Scan Execution Policies of the project. diff --git a/doc/update/deprecations.md b/doc/update/deprecations.md index 12ce638c85b..052dae32747 100644 --- a/doc/update/deprecations.md +++ b/doc/update/deprecations.md @@ -52,6 +52,26 @@ sole discretion of GitLab Inc.
+### DAST API variables + +Planned removal: GitLab 16.0 (2022-05-22) + +WARNING: +This is a [breaking change](https://docs.gitlab.com/ee/development/deprecation_guidelines/). +Review the details carefully before upgrading. + +With the switch to the new DAST API analyzer in GitLab 15.6, two legacy DAST API variables are being deprecated. The variables `DAST_API_HOST_OVERRIDE` and `DAST_API_SPECIFICATION` will no longer be used for DAST API scans. + +`DAST_API_HOST_OVERRIDE` has been deprecated in favor of using the `DAST_API_TARGET_URL` to automatically override the host in the OpenAPI specification. + +`DAST_API_SPECIFICATION` has been deprecated in favor of `DAST_API_OPENAPI`. To continue using an OpenAPI specification to guide the test, users must replace the `DAST_API_SPECIFICATION` variable with the `DAST_API_OPENAPI` variable. The value can remain the same, but the variable name must be replaced. + +These two variables will be removed in GitLab 16.0. + +
+ +
+ ### KAS Metrics Port in GitLab Helm Chart End of Support: GitLab 16.0 (2023-05-22)
-- cgit v1.2.3