* **Allow breaking configuration inheritance**. Implements [326](https://github.com/gitlabform/gitlabform/issues/326). PR [#339](https://github.com/gitlabform/gitlabform/pull/339).
Imagine you have a configuration like this:
yaml
projects_and_groups:
my-group/*:
members:
enforce: true
groups:
regular-developers:
group_access: developer
my-group/special-private-project:
members:
inherit: false <--- the new keyword
enforce: true
groups:
special-developers:
group_access: developer
users:
john:
access_level: maintainer
With the new `inherit: false` entry used here, the effective members for `my-group/special-private-project` project are ONLY the `special-developers` grup and `john` user.
* Always expect pagination for GETs. Fixes [354](https://github.com/gitlabform/gitlabform/issues/354). PR [#358](https://github.com/gitlabform/gitlabform/pull/358).
* Workaround for the GitLab's Schedules API change/bug. Fixes [361](https://github.com/gitlabform/gitlabform/issues/361).
<br/>
Big thanks to the [Elastic Path](https://www.elasticpath.com/) team for their contribution of the above feature, especially [ep-linden](https://github.com/ep-linden) for the whole implementation and [amimas](https://github.com/amimas) for the initial proposal and cooperation on design!
<br/>
(There were 4 pre-releases of this version, 2.11.0b1-b4. b1 contained "Allow breaking configuration inheritance", b2 also [358](https://github.com/gitlabform/gitlabform/pull/358), b3 also a fix of a bug that caused breaking config inheritance to not work in some cases, b4 - [#361](https://github.com/gitlabform/gitlabform/issues/361)).