You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: CHANGELOG.md
+23
Original file line number
Diff line number
Diff 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
+
1
24
## 15.10.0 (2023-03-22)
2
25
3
26
This release was tested against GitLab 15.8, 15.9 and 15.10 for both CE and EE.
-`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.
52
52
-`downvotes` (Number) The number of downvotes the issue has received.
53
53
-`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.
55
54
-`epic_id` (Number) ID of the epic to add the issue to. Valid values are greater than or equal to 0.
56
55
-`epic_issue_id` (Number) The ID of the epic issue.
57
56
-`external_id` (String) The external ID of the issue.
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.
8
8
To create an OIDC application, a scope of "openid".
9
9
Upstream API: GitLab REST API docs https://docs.gitlab.com/ee/api/applications.html
10
10
---
@@ -13,7 +13,7 @@ description: |-
13
13
14
14
The `gitlab_application` resource allows to manage the lifecycle of applications in gitlab.
15
15
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.
17
17
To create an OIDC application, a scope of "openid".
18
18
19
19
**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
47
47
48
48
-`application_id` (String) Internal name of the application.
49
49
-`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.
0 commit comments