<feed xmlns='http://www.w3.org/2005/Atom'>
<title>delta/gitlab/gitlab-ce.git/lib/api/variables.rb, branch docs-patch-71</title>
<subtitle>gitlab.com: gitlab-org/gitlab-ce.git
</subtitle>
<link rel='alternate' type='text/html' href='http://91.123.203.49/cgit/delta/gitlab/gitlab-ce.git/'/>
<entry>
<title>Bring scoped environment variables to core</title>
<updated>2019-08-08T18:51:52+00:00</updated>
<author>
<name>Hordur Freyr Yngvason</name>
<email>hfyngvason@gitlab.com</email>
</author>
<published>2019-08-08T18:51:52+00:00</published>
<link rel='alternate' type='text/html' href='http://91.123.203.49/cgit/delta/gitlab/gitlab-ce.git/commit/?id=5f82ff1469510b4e51d531775a44e4bea92254fe'/>
<id>5f82ff1469510b4e51d531775a44e4bea92254fe</id>
<content type='text'>
As decided in https://gitlab.com/gitlab-org/gitlab-ce/issues/53593
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
As decided in https://gitlab.com/gitlab-org/gitlab-ce/issues/53593
</pre>
</div>
</content>
</entry>
<entry>
<title>CE port of Move EE specific lines in API::Variables</title>
<updated>2019-05-28T10:14:43+00:00</updated>
<author>
<name>Imre Farkas</name>
<email>ifarkas@gitlab.com</email>
</author>
<published>2019-05-28T10:14:43+00:00</published>
<link rel='alternate' type='text/html' href='http://91.123.203.49/cgit/delta/gitlab/gitlab-ce.git/commit/?id=ba4977ab96e1a58f8b77eb8190e19849c27caf6e'/>
<id>ba4977ab96e1a58f8b77eb8190e19849c27caf6e</id>
<content type='text'>
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
</pre>
</div>
</content>
</entry>
<entry>
<title>Make protected attribute Boolean type</title>
<updated>2019-05-28T02:26:43+00:00</updated>
<author>
<name>Thong Kuah</name>
<email>tkuah@gitlab.com</email>
</author>
<published>2019-05-27T00:51:48+00:00</published>
<link rel='alternate' type='text/html' href='http://91.123.203.49/cgit/delta/gitlab/gitlab-ce.git/commit/?id=ff0ffffd694b5ecda7d1327f4075e6d6de737901'/>
<id>ff0ffffd694b5ecda7d1327f4075e6d6de737901</id>
<content type='text'>
As documented in
https://gitlab.com/gitlab-org/gitlab-ce/blob/master/doc/api/project_level_variables.md#create-variable
and it's a boolean in `db/schema.rb`
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
As documented in
https://gitlab.com/gitlab-org/gitlab-ce/blob/master/doc/api/project_level_variables.md#create-variable
and it's a boolean in `db/schema.rb`
</pre>
</div>
</content>
</entry>
<entry>
<title>Masked should be Boolean type</title>
<updated>2019-05-27T00:42:24+00:00</updated>
<author>
<name>Thong Kuah</name>
<email>tkuah@gitlab.com</email>
</author>
<published>2019-05-26T22:29:41+00:00</published>
<link rel='alternate' type='text/html' href='http://91.123.203.49/cgit/delta/gitlab/gitlab-ce.git/commit/?id=9c5fa659a54139461c5ee3bc3af2c0ea9bf12ace'/>
<id>9c5fa659a54139461c5ee3bc3af2c0ea9bf12ace</id>
<content type='text'>
As documented in
https://gitlab.com/gitlab-org/gitlab-ce/blob/master/doc/api/project_level_variables.md#create-variable
and it's a boolean in `db/schema.rb`
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
As documented in
https://gitlab.com/gitlab-org/gitlab-ce/blob/master/doc/api/project_level_variables.md#create-variable
and it's a boolean in `db/schema.rb`
</pre>
</div>
</content>
</entry>
<entry>
<title>API: Allow to get and set "masked" attribute for variables</title>
<updated>2019-05-22T05:25:26+00:00</updated>
<author>
<name>Mathieu Parent</name>
<email>math.parent@gmail.com</email>
</author>
<published>2019-05-16T20:07:42+00:00</published>
<link rel='alternate' type='text/html' href='http://91.123.203.49/cgit/delta/gitlab/gitlab-ce.git/commit/?id=00c851384e8bc957f601d27c25c36c2ca80b60c1'/>
<id>00c851384e8bc957f601d27c25c36c2ca80b60c1</id>
<content type='text'>
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
</pre>
</div>
</content>
</entry>
<entry>
<title>Implement support for CI variables of type file</title>
<updated>2019-05-06T13:11:42+00:00</updated>
<author>
<name>Krasimir Angelov</name>
<email>kangelov@gitlab.com</email>
</author>
<published>2019-05-06T13:11:42+00:00</published>
<link rel='alternate' type='text/html' href='http://91.123.203.49/cgit/delta/gitlab/gitlab-ce.git/commit/?id=85609c117e2b96a786204069669c66d36d971733'/>
<id>85609c117e2b96a786204069669c66d36d971733</id>
<content type='text'>
Add env_var and file as supported types for CI variables. Variables of
type file expose to users existing gitlab-runner behaviour - save
variable value into a temp file and set the path to this file in an ENV
var named after the variable key.

Resolves https://gitlab.com/gitlab-org/gitlab-ce/issues/46806.
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
Add env_var and file as supported types for CI variables. Variables of
type file expose to users existing gitlab-runner behaviour - save
variable value into a temp file and set the path to this file in an ENV
var named after the variable key.

Resolves https://gitlab.com/gitlab-org/gitlab-ce/issues/46806.
</pre>
</div>
</content>
</entry>
<entry>
<title>Backport parameters for API::Parameters</title>
<updated>2019-03-26T13:18:29+00:00</updated>
<author>
<name>Yorick Peterse</name>
<email>yorickpeterse@gmail.com</email>
</author>
<published>2019-03-25T14:47:55+00:00</published>
<link rel='alternate' type='text/html' href='http://91.123.203.49/cgit/delta/gitlab/gitlab-ce.git/commit/?id=cbe21d78bff5f845cedb2a75d0385a282077f87f'/>
<id>cbe21d78bff5f845cedb2a75d0385a282077f87f</id>
<content type='text'>
This backports the EE specific parameters for API::Parameters, wrapping
them in a conditional.
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
This backports the EE specific parameters for API::Parameters, wrapping
them in a conditional.
</pre>
</div>
</content>
</entry>
<entry>
<title>Add method to API::Variables for filtering params</title>
<updated>2019-03-04T16:44:57+00:00</updated>
<author>
<name>Yorick Peterse</name>
<email>yorickpeterse@gmail.com</email>
</author>
<published>2019-03-04T13:50:15+00:00</published>
<link rel='alternate' type='text/html' href='http://91.123.203.49/cgit/delta/gitlab/gitlab-ce.git/commit/?id=a7004e282586c2158fc13d5f82f210b4a63a7b92'/>
<id>a7004e282586c2158fc13d5f82f210b4a63a7b92</id>
<content type='text'>
This allows EE to customize the parameters used in two places, without
having to modify the source code directly.
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
This allows EE to customize the parameters used in two places, without
having to modify the source code directly.
</pre>
</div>
</content>
</entry>
<entry>
<title>Enable the Layout/ExtraSpacing cop</title>
<updated>2019-01-24T12:05:45+00:00</updated>
<author>
<name>Rémy Coutable</name>
<email>remy@rymai.me</email>
</author>
<published>2019-01-16T12:09:29+00:00</published>
<link rel='alternate' type='text/html' href='http://91.123.203.49/cgit/delta/gitlab/gitlab-ce.git/commit/?id=3a2abc1d50b419a353edb7f7cf68f3894dfdeeef'/>
<id>3a2abc1d50b419a353edb7f7cf68f3894dfdeeef</id>
<content type='text'>
Signed-off-by: Rémy Coutable &lt;remy@rymai.me&gt;
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
Signed-off-by: Rémy Coutable &lt;remy@rymai.me&gt;
</pre>
</div>
</content>
</entry>
<entry>
<title>Fix API::Namespaces to accept namepaces with dots</title>
<updated>2018-11-28T11:54:11+00:00</updated>
<author>
<name>Imre Farkas</name>
<email>ifarkas@gitlab.com</email>
</author>
<published>2018-11-08T12:18:17+00:00</published>
<link rel='alternate' type='text/html' href='http://91.123.203.49/cgit/delta/gitlab/gitlab-ce.git/commit/?id=b1e070bf4957a558ac51315dd4a6277056047e8a'/>
<id>b1e070bf4957a558ac51315dd4a6277056047e8a</id>
<content type='text'>
It also renames the API::PROJECT_ENDPOINT_REQUIREMENTS constant to
API::NAMESPACE_OR_PROJECT_REQUIREMENTS
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
It also renames the API::PROJECT_ENDPOINT_REQUIREMENTS constant to
API::NAMESPACE_OR_PROJECT_REQUIREMENTS
</pre>
</div>
</content>
</entry>
</feed>
