<feed xmlns='http://www.w3.org/2005/Atom'>
<title>delta/gitlab/gitlab-ce.git/app/views/ci, branch docs-pages-force-https</title>
<subtitle>gitlab.com: gitlab-org/gitlab-ce.git
</subtitle>
<link rel='alternate' type='text/html' href='http://git.baserock.org/cgit/delta/gitlab/gitlab-ce.git/'/>
<entry>
<title>Use exposed regex for frontend maskable check</title>
<updated>2019-06-06T14:46:45+00:00</updated>
<author>
<name>mfluharty</name>
<email>mfluharty@gitlab.com</email>
</author>
<published>2019-06-04T16:48:04+00:00</published>
<link rel='alternate' type='text/html' href='http://git.baserock.org/cgit/delta/gitlab/gitlab-ce.git/commit/?id=c3130068e89c1a02f0b9cd4c3e25a33bc91b59df'/>
<id>c3130068e89c1a02f0b9cd4c3e25a33bc91b59df</id>
<content type='text'>
Pass string value in through haml template data attribute
Evaluate it into a regex when initiating variable list
Use it to determine whether to show the maskability warning
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
Pass string value in through haml template data attribute
Evaluate it into a regex when initiating variable list
Use it to determine whether to show the maskability warning
</pre>
</div>
</content>
</entry>
<entry>
<title>Default masked to false for new variables</title>
<updated>2019-06-04T13:09:01+00:00</updated>
<author>
<name>mfluharty</name>
<email>mfluharty@gitlab.com</email>
</author>
<published>2019-05-07T19:37:29+00:00</published>
<link rel='alternate' type='text/html' href='http://git.baserock.org/cgit/delta/gitlab/gitlab-ce.git/commit/?id=598fa4cdd8e698d4ed19ad6101989aa286c9131c'/>
<id>598fa4cdd8e698d4ed19ad6101989aa286c9131c</id>
<content type='text'>
Set the default value to false
Adjust tests to expect false as the default
Update documentation to make new default clear
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
Set the default value to false
Adjust tests to expect false as the default
Update documentation to make new default clear
</pre>
</div>
</content>
</entry>
<entry>
<title>Add support for toggling masked on UI</title>
<updated>2019-05-26T23:54:16+00:00</updated>
<author>
<name>Thong Kuah</name>
<email>tkuah@gitlab.com</email>
</author>
<published>2019-05-26T23:54:16+00:00</published>
<link rel='alternate' type='text/html' href='http://git.baserock.org/cgit/delta/gitlab/gitlab-ce.git/commit/?id=33132427b3d4a14975b948fb15e22bc8a376dda2'/>
<id>33132427b3d4a14975b948fb15e22bc8a376dda2</id>
<content type='text'>
In addition to API, add support for toggling mased on UI too.

(Though fabricate_via_browser_ui is private)
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
In addition to API, add support for toggling mased on UI too.

(Though fabricate_via_browser_ui is private)
</pre>
</div>
</content>
</entry>
<entry>
<title>Adds arrow icons to select option in CI/CD settings</title>
<updated>2019-05-20T11:52:02+00:00</updated>
<author>
<name>Filipa Lacerda</name>
<email>filipa@gitlab.com</email>
</author>
<published>2019-05-20T11:52:02+00:00</published>
<link rel='alternate' type='text/html' href='http://git.baserock.org/cgit/delta/gitlab/gitlab-ce.git/commit/?id=64f040e209081264d67f9286f2d5b65e89343127'/>
<id>64f040e209081264d67f9286f2d5b65e89343127</id>
<content type='text'>
Adds custom-select class to the select menu for variables
type in CI/CD settings
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
Adds custom-select class to the select menu for variables
type in CI/CD settings
</pre>
</div>
</content>
</entry>
<entry>
<title>Adds header column to variables list</title>
<updated>2019-05-07T14:23:47+00:00</updated>
<author>
<name>Filipa Lacerda</name>
<email>filipa@gitlab.com</email>
</author>
<published>2019-05-03T11:12:58+00:00</published>
<link rel='alternate' type='text/html' href='http://git.baserock.org/cgit/delta/gitlab/gitlab-ce.git/commit/?id=31861b0f050ab4ba728c8d17bbe9d1970c4ce190'/>
<id>31861b0f050ab4ba728c8d17bbe9d1970c4ce190</id>
<content type='text'>
For the variables list in CI/CD settings
this commits adds an header row with titles
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
For the variables list in CI/CD settings
this commits adds an header row with titles
</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://git.baserock.org/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>Clarify masked variable message, add link to docs</title>
<updated>2019-04-18T23:50:47+00:00</updated>
<author>
<name>mfluharty</name>
<email>mfluharty@gitlab.com</email>
</author>
<published>2019-04-09T03:16:52+00:00</published>
<link rel='alternate' type='text/html' href='http://git.baserock.org/cgit/delta/gitlab/gitlab-ce.git/commit/?id=1798dcc1a6fc24e4fba8ed53d89cd86039a670f9'/>
<id>1798dcc1a6fc24e4fba8ed53d89cd86039a670f9</id>
<content type='text'>
Update error message "This variable will not be masked" to
"Cannot use Masked Variable with current value"
Add link to masked variables section to error message
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
Update error message "This variable will not be masked" to
"Cannot use Masked Variable with current value"
Add link to masked variables section to error message
</pre>
</div>
</content>
</entry>
<entry>
<title>Override problematic display with utility class</title>
<updated>2019-04-08T17:37:23+00:00</updated>
<author>
<name>sarahghp</name>
<email>sarah.groff.palermo@gmail.com</email>
</author>
<published>2019-04-08T17:37:23+00:00</published>
<link rel='alternate' type='text/html' href='http://git.baserock.org/cgit/delta/gitlab/gitlab-ce.git/commit/?id=42f6a8c3b9de6475ab60b5ef7deccd134e92d1ef'/>
<id>42f6a8c3b9de6475ab60b5ef7deccd134e92d1ef</id>
<content type='text'>
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
</pre>
</div>
</content>
</entry>
<entry>
<title>Initial pass for tooltip changes</title>
<updated>2019-04-05T22:25:54+00:00</updated>
<author>
<name>Sarah Groff Hennigh-Palermo</name>
<email>sarah.groff.palermo@gmail.com</email>
</author>
<published>2019-04-05T22:25:54+00:00</published>
<link rel='alternate' type='text/html' href='http://git.baserock.org/cgit/delta/gitlab/gitlab-ce.git/commit/?id=3e949356dbfa3a5d0b39da9fd7af6a7af2073538'/>
<id>3e949356dbfa3a5d0b39da9fd7af6a7af2073538</id>
<content type='text'>
Makes changes for truncation and combines the two related CSS classes.
Applies new tooltip comp as close as possible to the span for testing.
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
Makes changes for truncation and combines the two related CSS classes.
Applies new tooltip comp as close as possible to the span for testing.
</pre>
</div>
</content>
</entry>
<entry>
<title>Remove duplicate environment selector dropdown</title>
<updated>2019-03-29T19:27:03+00:00</updated>
<author>
<name>mfluharty</name>
<email>mfluharty@gitlab.com</email>
</author>
<published>2019-03-29T18:59:16+00:00</published>
<link rel='alternate' type='text/html' href='http://git.baserock.org/cgit/delta/gitlab/gitlab-ce.git/commit/?id=02c99ec8ce0449f330f0fd9ca277ea4cdc82be23'/>
<id>02c99ec8ce0449f330f0fd9ca277ea4cdc82be23</id>
<content type='text'>
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
</pre>
</div>
</content>
</entry>
</feed>
