Skip to content

Commit 1ad6952

Browse files
Update docs for v15.11.0 release
1 parent 9cce7f6 commit 1ad6952

18 files changed

+92
-67
lines changed

CHANGELOG.md

+23
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,26 @@
1+
## 15.11.0 (2023-04-22)
2+
3+
This release was tested against GitLab 15.9, 15.10 and 15.11 for both CE and EE.
4+
5+
BREAKING CHANGES:
6+
7+
- resource/gitlab_project: Remove specialized branch protection logic for GitLab prior to 14.11 ([!1486](https://gitlab.com/gitlab-org/terraform-provider-gitlab/-/merge_requests/1486))
8+
9+
IMPROVEMENTS:
10+
11+
- resource/gitlab_application_settings: Support `can_create_group` attribute ([!1484](https://gitlab.com/gitlab-org/terraform-provider-gitlab/-/merge_requests/1484))
12+
- resource/gitlab_project: Support `keep_latest_artifact` attribute ([!1506](https://gitlab.com/gitlab-org/terraform-provider-gitlab/-/merge_requests/1506))
13+
- resource/gitlab_group_subgroups: Support `skip_groups` attribute ([!1516](https://gitlab.com/gitlab-org/terraform-provider-gitlab/-/merge_requests/1516))
14+
- datasource/gitlab_project: Support `keep_latest_artifact` attribute ([!1506](https://gitlab.com/gitlab-org/terraform-provider-gitlab/-/merge_requests/1506))
15+
- datasource/gitlab_projects: Support `keep_latest_artifact` attribute ([!1506](https://gitlab.com/gitlab-org/terraform-provider-gitlab/-/merge_requests/1506))
16+
17+
BUG FIXES:
18+
19+
- resource/gitlab_project: Fix waiting when `skip_wait_for_default_branch_protection` is disabled ([!1489](https://gitlab.com/gitlab-org/terraform-provider-gitlab/-/merge_requests/1489))
20+
- resource/gitlab_group_ldap_link: Fix re-creating LDAP link if it was removed out of bounds ([!1495](https://gitlab.com/gitlab-org/terraform-provider-gitlab/-/merge_requests/1495))
21+
- resource/gitlab_runner: Fix plan for `tags` attribute to make it order independent ([!1492](https://gitlab.com/gitlab-org/terraform-provider-gitlab/-/merge_requests/1492))
22+
23+
124
## 15.10.0 (2023-03-22)
225

326
This release was tested against GitLab 15.8, 15.9 and 15.10 for both CE and EE.

docs/data-sources/project.md

+1
Original file line numberDiff line numberDiff line change
@@ -64,6 +64,7 @@ data "gitlab_project" "example" {
6464
- `infrastructure_access_level` (String) Set the infrastructure access level. Valid values are `disabled`, `private`, `enabled`.
6565
- `issues_access_level` (String) Set the issues access level. Valid values are `disabled`, `private`, `enabled`.
6666
- `issues_enabled` (Boolean) Enable issue tracking for the project.
67+
- `keep_latest_artifact` (Boolean) Disable or enable the ability to keep the latest artifact for this project.
6768
- `lfs_enabled` (Boolean) Enable LFS for the project.
6869
- `merge_commit_template` (String) Template used to create merge commit message in merge requests. (Introduced in GitLab 14.5.)
6970
- `merge_pipelines_enabled` (Boolean) Enable or disable merge pipelines.

docs/data-sources/project_issue.md

-1
Original file line numberDiff line numberDiff line change
@@ -51,7 +51,6 @@ output "welcome_issue_web_url" {
5151
- `discussion_to_resolve` (String) The ID of a discussion to resolve. This fills out the issue with a default description and mark the discussion as resolved. Use in combination with merge_request_to_resolve_discussions_of.
5252
- `downvotes` (Number) The number of downvotes the issue has received.
5353
- `due_date` (String) The due date. Date time string in the format YYYY-MM-DD, for example 2016-03-11.
54-
**Note:** removing a due date is currently not supported, see https://github.com/xanzy/go-gitlab/issues/1384 for details.
5554
- `epic_id` (Number) ID of the epic to add the issue to. Valid values are greater than or equal to 0.
5655
- `epic_issue_id` (Number) The ID of the epic issue.
5756
- `external_id` (String) The external ID of the issue.

docs/data-sources/project_milestone.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -42,7 +42,7 @@ data "gitlab_project_milestone" "example" {
4242
- `created_at` (String) The time of creation of the milestone. Date time string, ISO 8601 formatted, for example 2016-03-11T03:45:40Z.
4343
- `description` (String) The description of the milestone.
4444
- `due_date` (String) The due date of the milestone. Date time string in the format YYYY-MM-DD, for example 2016-03-11.
45-
- `expired` (Boolean) Bool, true if milestore expired.
45+
- `expired` (Boolean) Bool, true if milestone expired.
4646
- `id` (String) The ID of this resource.
4747
- `iid` (Number) The ID of the project's milestone.
4848
- `project_id` (Number) The project ID of milestone.

docs/data-sources/projects.md

+1
Original file line numberDiff line numberDiff line change
@@ -119,6 +119,7 @@ Read-Only:
119119
- `issues_access_level` (String)
120120
- `issues_enabled` (Boolean)
121121
- `jobs_enabled` (Boolean)
122+
- `keep_latest_artifact` (Boolean)
122123
- `last_activity_at` (String)
123124
- `lfs_enabled` (Boolean)
124125
- `merge_commit_template` (String)

docs/index.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -49,7 +49,7 @@ resource "gitlab_project_variable" "sample_project_variable" {
4949
resource "gitlab_deploy_key" "sample_deploy_key" {
5050
project = gitlab_project.sample_project.id
5151
title = "terraform example"
52-
key = "ssh-rsa AAAA..."
52+
key = "ssh-ed25519 AAAA..."
5353
}
5454
5555
# Add a group

docs/resources/application.md

+3-3
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ page_title: "gitlab_application Resource - terraform-provider-gitlab"
44
subcategory: ""
55
description: |-
66
The gitlab_application resource allows to manage the lifecycle of applications in gitlab.
7-
~> In order to use a user for a user to create an application, they must have admin priviledges at the instance level.
7+
~> In order to use a user for a user to create an application, they must have admin privileges at the instance level.
88
To create an OIDC application, a scope of "openid".
99
Upstream API: GitLab REST API docs https://docs.gitlab.com/ee/api/applications.html
1010
---
@@ -13,7 +13,7 @@ description: |-
1313

1414
The `gitlab_application` resource allows to manage the lifecycle of applications in gitlab.
1515

16-
~> In order to use a user for a user to create an application, they must have admin priviledges at the instance level.
16+
~> In order to use a user for a user to create an application, they must have admin privileges at the instance level.
1717
To create an OIDC application, a scope of "openid".
1818

1919
**Upstream API**: [GitLab REST API docs](https://docs.gitlab.com/ee/api/applications.html)
@@ -47,7 +47,7 @@ This is only populated when creating a new application. This attribute is not av
4747

4848
- `application_id` (String) Internal name of the application.
4949
- `id` (String) The ID of this Terraform resource. In the format of `<application_id>`.
50-
- `secret` (String, Sensitive) Application secret. Sensative and must be kept secret. This is only populated when creating a new application. This attribute is not available for imported resources.
50+
- `secret` (String, Sensitive) Application secret. Sensitive and must be kept secret. This is only populated when creating a new application. This attribute is not available for imported resources.
5151

5252
## Import
5353

0 commit comments

Comments
 (0)