<feed xmlns='http://www.w3.org/2005/Atom'>
<title>delta/gitlab/gitlab-ce.git/Gemfile, branch issue-closing-docs</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>add explicit reference to rouge 1.10.1</title>
<updated>2015-12-08T07:05:02+00:00</updated>
<author>
<name>Valery Sizov</name>
<email>vsv2711@gmail.com</email>
</author>
<published>2015-12-01T14:02:26+00:00</published>
<link rel='alternate' type='text/html' href='http://git.baserock.org/cgit/delta/gitlab/gitlab-ce.git/commit/?id=2e270c0705895f7535ca3f62abc1c1a9cbff769d'/>
<id>2e270c0705895f7535ca3f62abc1c1a9cbff769d</id>
<content type='text'>
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
</pre>
</div>
</content>
</entry>
<entry>
<title>Merge branch 'feature/sidekiq-cron' into 'master'</title>
<updated>2015-12-07T18:53:59+00:00</updated>
<author>
<name>Dmitriy Zaporozhets</name>
<email>dmitriy.zaporozhets@gmail.com</email>
</author>
<published>2015-12-07T18:53:59+00:00</published>
<link rel='alternate' type='text/html' href='http://git.baserock.org/cgit/delta/gitlab/gitlab-ce.git/commit/?id=1da71fa9ed4513d966a5824382fc87be4f0fb307'/>
<id>1da71fa9ed4513d966a5824382fc87be4f0fb307</id>
<content type='text'>

Migrate from Sidetiq to Sidekiq-cron

Migrate from Sidetiq to Sidekiq-cron
Updated Sidekiq to 3.5.x

This will solve #2355

See merge request !1982</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>

Migrate from Sidetiq to Sidekiq-cron

Migrate from Sidetiq to Sidekiq-cron
Updated Sidekiq to 3.5.x

This will solve #2355

See merge request !1982</pre>
</div>
</content>
</entry>
<entry>
<title>Fix Error 500 when creating global milestones with Unicode characters</title>
<updated>2015-12-05T08:04:44+00:00</updated>
<author>
<name>Stan Hu</name>
<email>stanhu@gmail.com</email>
</author>
<published>2015-12-04T07:33:52+00:00</published>
<link rel='alternate' type='text/html' href='http://git.baserock.org/cgit/delta/gitlab/gitlab-ce.git/commit/?id=d800a949d2d5497e8aff3ae28ec8520e5b99cdb8'/>
<id>d800a949d2d5497e8aff3ae28ec8520e5b99cdb8</id>
<content type='text'>
Two issues:

1. The constraints in the resources were incorrect. Here's what it was before:
```
group_milestone  GET /groups/:group_id/milestones/:id(.:format)  groups/milestones#show {:id=&gt;/[a-zA-Z.0-9_\-]+(?&lt;!\.atom)/, :group_id=&gt;/[a-zA-Z.0-9_\-]+(?&lt;!\.atom)/}
```

In this case, id is actually the title of the milestone, which can be anything at the moment.

After:

```
group_milestone  GET /groups/:group_id/milestones/:id(.:format)  groups/milestones#show {:id=&gt;/[^\/]+/, :group_id=&gt;/[a-zA-Z.0-9_\-]+(?&lt;!\.atom)/}
```

2. `parameterize` would strip all Unicode characters, leaving a blank string. Rails would report something like:

ActionView::Template::Error (No route matches {:action=&gt;"show", :controller=&gt;"groups/milestones", :group_id=&gt;#&lt;Group id: 48, name: "ops-dev", path: "ops-dev", owner_id: nil, created_at: "2015-11-15 08:55:30", updated_at: "2015-12-02 06:23:26", type: "Group", description: "", avatar: "sha1.c71e73d51af1865c1bbbf6208e10044d46c9bb93.png", public: false&gt;, :id=&gt;"", :title=&gt;"肯定不是中文的问题"} missing required keys: [:id]):

This change uses the babosa library to create a better slug, which surprisingly
isn't actually used by the global milestone controllers. Instead, they use the
title passed as a query string for some reason.

Closes https://github.com/gitlabhq/gitlabhq/issues/9881

Fix constraints
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
Two issues:

1. The constraints in the resources were incorrect. Here's what it was before:
```
group_milestone  GET /groups/:group_id/milestones/:id(.:format)  groups/milestones#show {:id=&gt;/[a-zA-Z.0-9_\-]+(?&lt;!\.atom)/, :group_id=&gt;/[a-zA-Z.0-9_\-]+(?&lt;!\.atom)/}
```

In this case, id is actually the title of the milestone, which can be anything at the moment.

After:

```
group_milestone  GET /groups/:group_id/milestones/:id(.:format)  groups/milestones#show {:id=&gt;/[^\/]+/, :group_id=&gt;/[a-zA-Z.0-9_\-]+(?&lt;!\.atom)/}
```

2. `parameterize` would strip all Unicode characters, leaving a blank string. Rails would report something like:

ActionView::Template::Error (No route matches {:action=&gt;"show", :controller=&gt;"groups/milestones", :group_id=&gt;#&lt;Group id: 48, name: "ops-dev", path: "ops-dev", owner_id: nil, created_at: "2015-11-15 08:55:30", updated_at: "2015-12-02 06:23:26", type: "Group", description: "", avatar: "sha1.c71e73d51af1865c1bbbf6208e10044d46c9bb93.png", public: false&gt;, :id=&gt;"", :title=&gt;"肯定不是中文的问题"} missing required keys: [:id]):

This change uses the babosa library to create a better slug, which surprisingly
isn't actually used by the global milestone controllers. Instead, they use the
title passed as a query string for some reason.

Closes https://github.com/gitlabhq/gitlabhq/issues/9881

Fix constraints
</pre>
</div>
</content>
</entry>
<entry>
<title>Migrate from Sidetiq to Sidekiq-cron</title>
<updated>2015-12-04T13:29:45+00:00</updated>
<author>
<name>Gabriel Mazetto</name>
<email>brodock@gmail.com</email>
</author>
<published>2015-12-03T23:24:39+00:00</published>
<link rel='alternate' type='text/html' href='http://git.baserock.org/cgit/delta/gitlab/gitlab-ce.git/commit/?id=496870ddec632ae13cff8b5e8f6ca0bff0fa3ec7'/>
<id>496870ddec632ae13cff8b5e8f6ca0bff0fa3ec7</id>
<content type='text'>
Updated Sidekiq to 3.5.x
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
Updated Sidekiq to 3.5.x
</pre>
</div>
</content>
</entry>
<entry>
<title>Merge branch 'rails_update_to_4_2' into 'master'</title>
<updated>2015-11-30T16:49:09+00:00</updated>
<author>
<name>Valery Sizov</name>
<email>valery@gitlab.com</email>
</author>
<published>2015-11-30T16:49:09+00:00</published>
<link rel='alternate' type='text/html' href='http://git.baserock.org/cgit/delta/gitlab/gitlab-ce.git/commit/?id=e0131c5d07f22681e4118473dbfa0dd93df12b28'/>
<id>e0131c5d07f22681e4118473dbfa0dd93df12b28</id>
<content type='text'>

Rails update to 4.2.4

https://gitlab.com/gitlab-org/gitlab-ce/issues/2694

See merge request !1902</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>

Rails update to 4.2.4

https://gitlab.com/gitlab-org/gitlab-ce/issues/2694

See merge request !1902</pre>
</div>
</content>
</entry>
<entry>
<title>Bump jquery-turbolinks to ~&gt; 2.1.0</title>
<updated>2015-11-27T21:34:59+00:00</updated>
<author>
<name>Robert Speicher</name>
<email>rspeicher@gmail.com</email>
</author>
<published>2015-11-27T21:34:59+00:00</published>
<link rel='alternate' type='text/html' href='http://git.baserock.org/cgit/delta/gitlab/gitlab-ce.git/commit/?id=344cb89718d9424e239a24dbc888d7b7a98cb474'/>
<id>344cb89718d9424e239a24dbc888d7b7a98cb474</id>
<content type='text'>
See #2857
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
See #2857
</pre>
</div>
</content>
</entry>
<entry>
<title>Migrate mailers to ActiveJob</title>
<updated>2015-11-26T15:03:43+00:00</updated>
<author>
<name>Valery Sizov</name>
<email>vsv2711@gmail.com</email>
</author>
<published>2015-11-26T13:48:01+00:00</published>
<link rel='alternate' type='text/html' href='http://git.baserock.org/cgit/delta/gitlab/gitlab-ce.git/commit/?id=7f214cee74796ceaf7b01bd6e133d4d54c5123db'/>
<id>7f214cee74796ceaf7b01bd6e133d4d54c5123db</id>
<content type='text'>
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
</pre>
</div>
</content>
</entry>
<entry>
<title>Merge remote-tracking branch 'origin/master' into rails_update_to_4_2</title>
<updated>2015-11-26T10:30:28+00:00</updated>
<author>
<name>Valery Sizov</name>
<email>vsv2711@gmail.com</email>
</author>
<published>2015-11-26T10:30:28+00:00</published>
<link rel='alternate' type='text/html' href='http://git.baserock.org/cgit/delta/gitlab/gitlab-ce.git/commit/?id=3e0fe27627f5b074a35ce2e1a0794f869f8abc15'/>
<id>3e0fe27627f5b074a35ce2e1a0794f869f8abc15</id>
<content type='text'>
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
</pre>
</div>
</content>
</entry>
<entry>
<title>update test_after_commit gem to 0.4.2</title>
<updated>2015-11-26T09:57:04+00:00</updated>
<author>
<name>Valery Sizov</name>
<email>vsv2711@gmail.com</email>
</author>
<published>2015-11-26T09:57:04+00:00</published>
<link rel='alternate' type='text/html' href='http://git.baserock.org/cgit/delta/gitlab/gitlab-ce.git/commit/?id=38489d8d7d0a352789c23d3bf9cadb169f765d5b'/>
<id>38489d8d7d0a352789c23d3bf9cadb169f765d5b</id>
<content type='text'>
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
</pre>
</div>
</content>
</entry>
<entry>
<title>Merge branch 'rs-remove-enumerize' into 'master'</title>
<updated>2015-11-26T09:03:04+00:00</updated>
<author>
<name>Dmitriy Zaporozhets</name>
<email>dmitriy.zaporozhets@gmail.com</email>
</author>
<published>2015-11-26T09:03:04+00:00</published>
<link rel='alternate' type='text/html' href='http://git.baserock.org/cgit/delta/gitlab/gitlab-ce.git/commit/?id=1befbbf57dddc23761558f21017294c950d6d3b7'/>
<id>1befbbf57dddc23761558f21017294c950d6d3b7</id>
<content type='text'>

Remove enumerize gem

Closes #2803 

See merge request !1912</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>

Remove enumerize gem

Closes #2803 

See merge request !1912</pre>
</div>
</content>
</entry>
</feed>
