<feed xmlns='http://www.w3.org/2005/Atom'>
<title>delta/gitlab/gitlab-ce.git/app/models/ci/group_variable.rb, branch docs/fix-deploy-example</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>Inherit from ApplicationRecord instead of ActiveRecord::Base</title>
<updated>2019-03-28T16:18:23+00:00</updated>
<author>
<name>Nick Thomas</name>
<email>nick@gitlab.com</email>
</author>
<published>2019-03-28T13:17:42+00:00</published>
<link rel='alternate' type='text/html' href='http://git.baserock.org/cgit/delta/gitlab/gitlab-ce.git/commit/?id=013f7cd24c4359d5d704b719d85b6df7ca1fdd55'/>
<id>013f7cd24c4359d5d704b719d85b6df7ca1fdd55</id>
<content type='text'>
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
</pre>
</div>
</content>
</entry>
<entry>
<title>Revert "Merge branch 'revert-8baf9e5f' into 'master'"</title>
<updated>2019-02-27T11:52:53+00:00</updated>
<author>
<name>Matija Čupić</name>
<email>matteeyah@gmail.com</email>
</author>
<published>2019-02-27T00:22:51+00:00</published>
<link rel='alternate' type='text/html' href='http://git.baserock.org/cgit/delta/gitlab/gitlab-ce.git/commit/?id=316889cb4789e8a4a43bf0c79a4269643a97c336'/>
<id>316889cb4789e8a4a43bf0c79a4269643a97c336</id>
<content type='text'>
This reverts commit f5201a816f2eff9393e16f362403451e5d86ee6c, reversing
changes made to 48e6db0dad6f256e8423e0bd6c9b254803f50ccf.
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
This reverts commit f5201a816f2eff9393e16f362403451e5d86ee6c, reversing
changes made to 48e6db0dad6f256e8423e0bd6c9b254803f50ccf.
</pre>
</div>
</content>
</entry>
<entry>
<title>Revert "Merge branch '13784-simple-masking-of-protected-variables-in-logs' into 'master'"</title>
<updated>2019-02-26T17:32:23+00:00</updated>
<author>
<name>Kamil Trzciński</name>
<email>ayufan@ayufan.eu</email>
</author>
<published>2019-02-26T17:32:23+00:00</published>
<link rel='alternate' type='text/html' href='http://git.baserock.org/cgit/delta/gitlab/gitlab-ce.git/commit/?id=7b445f9b15c31f7b2b53561901183ab23db2d636'/>
<id>7b445f9b15c31f7b2b53561901183ab23db2d636</id>
<content type='text'>
This reverts merge request !25293
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
This reverts merge request !25293
</pre>
</div>
</content>
</entry>
<entry>
<title>Add Maskable concern for CI variables</title>
<updated>2019-02-26T14:03:42+00:00</updated>
<author>
<name>Matija Čupić</name>
<email>matteeyah@gmail.com</email>
</author>
<published>2019-02-26T14:03:42+00:00</published>
<link rel='alternate' type='text/html' href='http://git.baserock.org/cgit/delta/gitlab/gitlab-ce.git/commit/?id=c9125c4786970fc3c3745c7ea7bff45ef7a62e7d'/>
<id>c9125c4786970fc3c3745c7ea7bff45ef7a62e7d</id>
<content type='text'>
This adds a concern that abstracts the concept of masking a variable,
including the RegEx for validation.
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
This adds a concern that abstracts the concept of masking a variable,
including the RegEx for validation.
</pre>
</div>
</content>
</entry>
<entry>
<title>Enable frozen string for app/models/**/*.rb</title>
<updated>2018-08-03T08:44:16+00:00</updated>
<author>
<name>gfyoung</name>
<email>gfyoung17@gmail.com</email>
</author>
<published>2018-08-03T07:15:25+00:00</published>
<link rel='alternate' type='text/html' href='http://git.baserock.org/cgit/delta/gitlab/gitlab-ce.git/commit/?id=388cb319d59e4c5e7cf5b3032d924afb57202fd0'/>
<id>388cb319d59e4c5e7cf5b3032d924afb57202fd0</id>
<content type='text'>
Partially addresses #47424.
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
Partially addresses #47424.
</pre>
</div>
</content>
</entry>
<entry>
<title>[Rails5] Fix `undefined method 'arel_table' for Ci::Group:Class` error</title>
<updated>2018-04-12T02:36:31+00:00</updated>
<author>
<name>blackst0ne</name>
<email>blackst0ne.ru@gmail.com</email>
</author>
<published>2018-04-12T02:36:31+00:00</published>
<link rel='alternate' type='text/html' href='http://git.baserock.org/cgit/delta/gitlab/gitlab-ce.git/commit/?id=cbf2906496b5123fc7bf1be3094693790d047e11'/>
<id>cbf2906496b5123fc7bf1be3094693790d047e11</id>
<content type='text'>
Some specs fail in rails5 branch with errors like

```
1) Group#secret_variables_for when the ref is not protected contains only the secret variables
    Failure/Error: variables = Ci::GroupVariable.where(group: list_of_ids)

    NoMethodError:
      undefined method `arel_table' for Ci::Group:Class
```

This commit fixes it.
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
Some specs fail in rails5 branch with errors like

```
1) Group#secret_variables_for when the ref is not protected contains only the secret variables
    Failure/Error: variables = Ci::GroupVariable.where(group: list_of_ids)

    NoMethodError:
      undefined method `arel_table' for Ci::Group:Class
```

This commit fixes it.
</pre>
</div>
</content>
</entry>
<entry>
<title>Make Variable key not secret</title>
<updated>2018-03-22T11:08:16+00:00</updated>
<author>
<name>Matija Čupić</name>
<email>matteeyah@gmail.com</email>
</author>
<published>2018-03-22T11:08:16+00:00</published>
<link rel='alternate' type='text/html' href='http://git.baserock.org/cgit/delta/gitlab/gitlab-ce.git/commit/?id=05103f080cf0e40b8fe5e1774b8dd1f8084105e3'/>
<id>05103f080cf0e40b8fe5e1774b8dd1f8084105e3</id>
<content type='text'>
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
</pre>
</div>
</content>
</entry>
<entry>
<title>Alias secret_key and secret_value to key and value</title>
<updated>2018-03-17T15:33:36+00:00</updated>
<author>
<name>Matija Čupić</name>
<email>matteeyah@gmail.com</email>
</author>
<published>2018-03-17T11:17:40+00:00</published>
<link rel='alternate' type='text/html' href='http://git.baserock.org/cgit/delta/gitlab/gitlab-ce.git/commit/?id=53915c5c54c06182717b457375ae771ee01558fd'/>
<id>53915c5c54c06182717b457375ae771ee01558fd</id>
<content type='text'>
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
</pre>
</div>
</content>
</entry>
<entry>
<title>Include CI Variable Key in its uniqueness validation error message</title>
<updated>2018-02-23T00:19:46+00:00</updated>
<author>
<name>Matija Čupić</name>
<email>matteeyah@gmail.com</email>
</author>
<published>2018-02-23T00:19:46+00:00</published>
<link rel='alternate' type='text/html' href='http://git.baserock.org/cgit/delta/gitlab/gitlab-ce.git/commit/?id=f2695aa84b68cd905eff90c598e452cbf63d98ed'/>
<id>f2695aa84b68cd905eff90c598e452cbf63d98ed</id>
<content type='text'>
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
</pre>
</div>
</content>
</entry>
<entry>
<title>move `lib/ci/model.rb` into `lib/gitlab/ci/model.rb`</title>
<updated>2017-09-12T19:32:01+00:00</updated>
<author>
<name>Maxim Rydkin</name>
<email>maks.rydkin@gmail.com</email>
</author>
<published>2017-09-06T11:13:52+00:00</published>
<link rel='alternate' type='text/html' href='http://git.baserock.org/cgit/delta/gitlab/gitlab-ce.git/commit/?id=c295d3362b610945de5c722616b39323a48c377e'/>
<id>c295d3362b610945de5c722616b39323a48c377e</id>
<content type='text'>
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
</pre>
</div>
</content>
</entry>
</feed>
