git_reflow 0.8.10 → 0.9.0

Sign up to get free protection for your applications and to get access to all the features.
Files changed (70) hide show
  1. checksums.yaml +4 -4
  2. data/.rubocop.yml +2 -0
  3. data/.ruby-version +1 -1
  4. data/Appraisals +1 -6
  5. data/CHANGELOG.md +426 -348
  6. data/Gemfile.lock +15 -19
  7. data/LICENSE +20 -20
  8. data/README.md +27 -7
  9. data/Rakefile +8 -8
  10. data/bin/console +7 -7
  11. data/bin/setup +6 -6
  12. data/circle.yml +5 -5
  13. data/exe/git-reflow +9 -30
  14. data/git_reflow.gemspec +1 -2
  15. data/lib/git_reflow/config.rb +22 -13
  16. data/lib/git_reflow/git_helpers.rb +69 -22
  17. data/lib/git_reflow/git_server/base.rb +68 -68
  18. data/lib/git_reflow/git_server/git_hub/pull_request.rb +15 -13
  19. data/lib/git_reflow/git_server/pull_request.rb +4 -2
  20. data/lib/git_reflow/merge_error.rb +9 -9
  21. data/lib/git_reflow/rspec/command_line_helpers.rb +9 -1
  22. data/lib/git_reflow/rspec/stub_helpers.rb +13 -13
  23. data/lib/git_reflow/rspec/workflow_helpers.rb +18 -0
  24. data/lib/git_reflow/rspec.rb +1 -0
  25. data/lib/git_reflow/sandbox.rb +1 -0
  26. data/lib/git_reflow/version.rb +1 -1
  27. data/lib/git_reflow/workflow.rb +277 -9
  28. data/lib/git_reflow/workflows/FlatMergeWorkflow +38 -0
  29. data/lib/git_reflow/workflows/core.rb +208 -79
  30. data/lib/git_reflow.rb +3 -14
  31. data/spec/fixtures/awesome_workflow.rb +2 -6
  32. data/spec/fixtures/git/git_config +7 -7
  33. data/spec/fixtures/issues/comment.json.erb +27 -27
  34. data/spec/fixtures/issues/comments.json +29 -29
  35. data/spec/fixtures/issues/comments.json.erb +15 -15
  36. data/spec/fixtures/pull_requests/comment.json.erb +45 -45
  37. data/spec/fixtures/pull_requests/comments.json +47 -47
  38. data/spec/fixtures/pull_requests/comments.json.erb +15 -15
  39. data/spec/fixtures/pull_requests/commits.json +29 -29
  40. data/spec/fixtures/pull_requests/external_pull_request.json +145 -145
  41. data/spec/fixtures/pull_requests/pull_request.json +142 -142
  42. data/spec/fixtures/pull_requests/pull_request.json.erb +142 -142
  43. data/spec/fixtures/pull_requests/pull_request_branch_nonexistent_error.json +32 -0
  44. data/spec/fixtures/pull_requests/pull_request_exists_error.json +32 -32
  45. data/spec/fixtures/pull_requests/pull_requests.json +136 -136
  46. data/spec/fixtures/repositories/commit.json +53 -53
  47. data/spec/fixtures/repositories/commit.json.erb +53 -53
  48. data/spec/fixtures/repositories/commits.json.erb +13 -13
  49. data/spec/fixtures/repositories/statuses.json +31 -31
  50. data/spec/lib/git_reflow/git_helpers_spec.rb +115 -12
  51. data/spec/lib/git_reflow/git_server/git_hub/pull_request_spec.rb +6 -6
  52. data/spec/lib/git_reflow/git_server/pull_request_spec.rb +9 -3
  53. data/spec/lib/git_reflow/workflow_spec.rb +190 -11
  54. data/spec/lib/git_reflow/workflows/core_spec.rb +224 -65
  55. data/spec/lib/git_reflow/workflows/flat_merge_spec.rb +17 -6
  56. data/spec/lib/git_reflow_spec.rb +2 -25
  57. data/spec/spec_helper.rb +3 -0
  58. data/spec/support/github_helpers.rb +1 -1
  59. data/spec/support/mock_pull_request.rb +17 -17
  60. data/spec/support/web_mocks.rb +39 -39
  61. metadata +9 -28
  62. data/lib/git_reflow/commands/deliver.rb +0 -10
  63. data/lib/git_reflow/commands/refresh.rb +0 -20
  64. data/lib/git_reflow/commands/review.rb +0 -13
  65. data/lib/git_reflow/commands/setup.rb +0 -11
  66. data/lib/git_reflow/commands/stage.rb +0 -9
  67. data/lib/git_reflow/commands/start.rb +0 -18
  68. data/lib/git_reflow/commands/status.rb +0 -7
  69. data/lib/git_reflow/workflows/flat_merge.rb +0 -10
  70. data/spec/fixtures/workflow_with_super.rb +0 -8
data/CHANGELOG.md CHANGED
@@ -1,348 +1,426 @@
1
- # Change Log
2
-
3
- ## [Unreleased](https://github.com/reenhanced/gitreflow/tree/v0.8.4)
4
-
5
- [Full Changelog](https://github.com/reenhanced/gitreflow/compare/v0.8.3...v0.8.4)
6
-
7
- **Closed issues:**
8
-
9
- - Introduce the idea of "Workflows" to customize steps [\#53](https://github.com/reenhanced/gitreflow/issues/53)
10
- - undefined method for strip during setup [\#197](https://github.com/reenhanced/gitreflow/issues/197)
11
-
12
- **Merged pull requests:**
13
-
14
- - \[53\] Create core workflow module to consolidate commands [\#198](https://github.com/reenhanced/gitreflow/pull/198) ([codenamev](https://github.com/codenamev))
15
-
16
- ## [v0.8.3](https://github.com/reenhanced/gitreflow/tree/v0.8.3) (2016-08-04)
17
- [Full Changelog](https://github.com/reenhanced/gitreflow/compare/v0.8.2...v0.8.3)
18
-
19
- ## [v0.8.2](https://github.com/reenhanced/gitreflow/tree/v0.8.2) (2016-08-01)
20
- [Full Changelog](https://github.com/reenhanced/gitreflow/compare/v0.8.1...v0.8.2)
21
-
22
- **Fixed bugs:**
23
-
24
- - git-reflow setup not working on Windows [\#187](https://github.com/reenhanced/gitreflow/issues/187)
25
-
26
- **Closed issues:**
27
-
28
- - GitHub authentication issues [\#193](https://github.com/reenhanced/gitreflow/issues/193)
29
- - non-master base branch does not work for the deliver command [\#192](https://github.com/reenhanced/gitreflow/issues/192)
30
- - git-reflow fork command [\#188](https://github.com/reenhanced/gitreflow/issues/188)
31
- - Bitbucket setup not working [\#186](https://github.com/reenhanced/gitreflow/issues/186)
32
- - Default approval regex not respecting :+1: [\#182](https://github.com/reenhanced/gitreflow/issues/182)
33
- - \[SOLVED\] Unable To Install the GEM \(install nokogiri manually to solve the issue\) [\#178](https://github.com/reenhanced/gitreflow/issues/178)
34
- - Can we switch off LGTM reviews? [\#177](https://github.com/reenhanced/gitreflow/issues/177)
35
- - gitreflow does not cache github token? [\#173](https://github.com/reenhanced/gitreflow/issues/173)
36
- - message below the fold in review [\#105](https://github.com/reenhanced/gitreflow/issues/105)
37
-
38
- **Merged pull requests:**
39
-
40
- - \[\#187\] Update git-reflow config file path to use $HOME for windows support [\#195](https://github.com/reenhanced/gitreflow/pull/195) ([codenamev](https://github.com/codenamev))
41
- - \[192\] Allow delivery to custom base branch [\#194](https://github.com/reenhanced/gitreflow/pull/194) ([codenamev](https://github.com/codenamev))
42
- - Refactor tests to allow for use of reflow test helpers in third-party gems [\#189](https://github.com/reenhanced/gitreflow/pull/189) ([codenamev](https://github.com/codenamev))
43
- - \[Issue \#182\] Fix LGTM Expression [\#185](https://github.com/reenhanced/gitreflow/pull/185) ([simonzhu24](https://github.com/simonzhu24))
44
- - Use $EDITOR as text editor fallback [\#184](https://github.com/reenhanced/gitreflow/pull/184) ([timraasveld](https://github.com/timraasveld))
45
- - Respect GitHub pull request template [\#179](https://github.com/reenhanced/gitreflow/pull/179) ([timraasveld](https://github.com/timraasveld))
46
-
47
- ## [v0.8.1](https://github.com/reenhanced/gitreflow/tree/v0.8.1) (2016-05-26)
48
- [Full Changelog](https://github.com/reenhanced/gitreflow/compare/v0.8.0...v0.8.1)
49
-
50
- **Closed issues:**
51
-
52
- - undefined method `git\_editor\_comand' for GitReflow:Module [\#176](https://github.com/reenhanced/gitreflow/issues/176)
53
- - github PR ends up "closed" instead of "merged" [\#149](https://github.com/reenhanced/gitreflow/issues/149)
54
- - Update README to mention how to update an in-progress feature branch from origin/master [\#125](https://github.com/reenhanced/gitreflow/issues/125)
55
- - Option to silence the offer to open the PR in my browser? [\#117](https://github.com/reenhanced/gitreflow/issues/117)
56
- - command for merging updates from base branch [\#74](https://github.com/reenhanced/gitreflow/issues/74)
57
- - Support for non-master branch [\#73](https://github.com/reenhanced/gitreflow/issues/73)
58
-
59
- ## [v0.8.0](https://github.com/reenhanced/gitreflow/tree/v0.8.0) (2016-05-26)
60
- [Full Changelog](https://github.com/reenhanced/gitreflow/compare/v0.7.5...v0.8.0)
61
-
62
- **Implemented enhancements:**
63
-
64
- - Upgrade RSpec [\#162](https://github.com/reenhanced/gitreflow/issues/162)
65
-
66
- **Closed issues:**
67
-
68
- - Setup doesn't work with GH two-factor turned on [\#175](https://github.com/reenhanced/gitreflow/issues/175)
69
- - --base switch does not work? [\#174](https://github.com/reenhanced/gitreflow/issues/174)
70
- - Idea: git reflow promote \<promotion branch\> [\#168](https://github.com/reenhanced/gitreflow/issues/168)
71
- - add changelog support [\#100](https://github.com/reenhanced/gitreflow/issues/100)
72
- - Always have reflow start create a branch from master [\#66](https://github.com/reenhanced/gitreflow/issues/66)
73
-
74
- **Merged pull requests:**
75
-
76
- - Cleanup new Github merge for next release [\#172](https://github.com/reenhanced/gitreflow/pull/172) ([codenamev](https://github.com/codenamev))
77
- - Bug Fix for Merging "reenhanced:master" instead of "master" [\#171](https://github.com/reenhanced/gitreflow/pull/171) ([simonzhu24](https://github.com/simonzhu24))
78
- - Sz issue/149 fix commit message to merge instead of close [\#170](https://github.com/reenhanced/gitreflow/pull/170) ([simonzhu24](https://github.com/simonzhu24))
79
- - Fixing Refresh to take in parameter for "base" instead of "branch" [\#169](https://github.com/reenhanced/gitreflow/pull/169) ([simonzhu24](https://github.com/simonzhu24))
80
- - \[Issue \#66\] Always have reflow start create a branch from master [\#167](https://github.com/reenhanced/gitreflow/pull/167) ([simonzhu24](https://github.com/simonzhu24))
81
- - \[162\] Updating Rspec Version to 3.3.0 [\#165](https://github.com/reenhanced/gitreflow/pull/165) ([simonzhu24](https://github.com/simonzhu24))
82
- - \[Issue \#66 + \#74\] Implementing "Git Reflow Refresh" [\#164](https://github.com/reenhanced/gitreflow/pull/164) ([simonzhu24](https://github.com/simonzhu24))
83
- - \[issue: 162\] Updating Rspecs: Use "Allow" instead of "Stub" [\#163](https://github.com/reenhanced/gitreflow/pull/163) ([simonzhu24](https://github.com/simonzhu24))
84
-
85
- ## [v0.7.5](https://github.com/reenhanced/gitreflow/tree/v0.7.5) (2016-04-14)
86
- [Full Changelog](https://github.com/reenhanced/gitreflow/compare/v0.7.4...v0.7.5)
87
-
88
- **Implemented enhancements:**
89
-
90
- - Modernize gem file structure [\#158](https://github.com/reenhanced/gitreflow/issues/158)
91
-
92
- **Closed issues:**
93
-
94
- - Remove unused gitreflow-common [\#154](https://github.com/reenhanced/gitreflow/issues/154)
95
- - Option to require LGTM from only one person? [\#141](https://github.com/reenhanced/gitreflow/issues/141)
96
-
97
- **Merged pull requests:**
98
-
99
- - \[Issue \#141\] Fixing Issues and Adding Configurable Nx LGTM and LGTM Regex Options, Adding Rspec Tests [\#161](https://github.com/reenhanced/gitreflow/pull/161) ([simonzhu24](https://github.com/simonzhu24))
100
- - modernize gem structure; Fixes \#158 [\#159](https://github.com/reenhanced/gitreflow/pull/159) ([pboling](https://github.com/pboling))
101
- - Remove unused gitreflow-common [\#155](https://github.com/reenhanced/gitreflow/pull/155) ([pboling](https://github.com/pboling))
102
-
103
- ## [v0.7.4](https://github.com/reenhanced/gitreflow/tree/v0.7.4) (2016-04-08)
104
- [Full Changelog](https://github.com/reenhanced/gitreflow/compare/v0.7.3...v0.7.4)
105
-
106
- **Fixed bugs:**
107
-
108
- - Deliver command doesn't sync feature branch before merge [\#152](https://github.com/reenhanced/gitreflow/issues/152)
109
- - SSL Verification is turned off [\#151](https://github.com/reenhanced/gitreflow/issues/151)
110
-
111
- ## [v0.7.3](https://github.com/reenhanced/gitreflow/tree/v0.7.3) (2016-03-24)
112
- [Full Changelog](https://github.com/reenhanced/gitreflow/compare/v0.7.2...v0.7.3)
113
-
114
- **Fixed bugs:**
115
-
116
- - Setting title is ignored from review [\#127](https://github.com/reenhanced/gitreflow/issues/127)
117
- - Don't open EDITOR if there is an existing PR for this branch [\#123](https://github.com/reenhanced/gitreflow/issues/123)
118
-
119
- **Closed issues:**
120
-
121
- - add "Created With Reflow" [\#101](https://github.com/reenhanced/gitreflow/issues/101)
122
- - Store OAuth token somewhere else? [\#54](https://github.com/reenhanced/gitreflow/issues/54)
123
-
124
- ## [v0.7.2](https://github.com/reenhanced/gitreflow/tree/v0.7.2) (2016-02-22)
125
- [Full Changelog](https://github.com/reenhanced/gitreflow/compare/v0.7.1...v0.7.2)
126
-
127
- **Closed issues:**
128
-
129
- - git: 'reflow' is not a git command. See 'git --help' [\#146](https://github.com/reenhanced/gitreflow/issues/146)
130
- - option to use non-master branch by default everywhere [\#145](https://github.com/reenhanced/gitreflow/issues/145)
131
- - Deliver to custom branch? [\#144](https://github.com/reenhanced/gitreflow/issues/144)
132
-
133
- ## [v0.7.1](https://github.com/reenhanced/gitreflow/tree/v0.7.1) (2015-10-27)
134
- [Full Changelog](https://github.com/reenhanced/gitreflow/compare/v0.7.0...v0.7.1)
135
-
136
- **Merged pull requests:**
137
-
138
- - Fix the ask to open in browser dialog on Mac. [\#143](https://github.com/reenhanced/gitreflow/pull/143) ([squaresurf](https://github.com/squaresurf))
139
-
140
- ## [v0.7.0](https://github.com/reenhanced/gitreflow/tree/v0.7.0) (2015-10-14)
141
- [Full Changelog](https://github.com/reenhanced/gitreflow/compare/v0.6.7...v0.7.0)
142
-
143
- **Fixed bugs:**
144
-
145
- - Hide author's name from list of LGTMs we need to get [\#126](https://github.com/reenhanced/gitreflow/issues/126)
146
-
147
- **Closed issues:**
148
-
149
- - Command Injection in append\_to\_squashed\_commit\_message. [\#134](https://github.com/reenhanced/gitreflow/issues/134)
150
-
151
- ## [v0.6.7](https://github.com/reenhanced/gitreflow/tree/v0.6.7) (2015-09-29)
152
- [Full Changelog](https://github.com/reenhanced/gitreflow/compare/v0.6.6...v0.6.7)
153
-
154
- ## [v0.6.6](https://github.com/reenhanced/gitreflow/tree/v0.6.6) (2015-09-28)
155
- [Full Changelog](https://github.com/reenhanced/gitreflow/compare/v0.6.5...v0.6.6)
156
-
157
- **Merged pull requests:**
158
-
159
- - Fix review message parsing from editor failed [\#133](https://github.com/reenhanced/gitreflow/pull/133) ([francois](https://github.com/francois))
160
-
161
- ## [v0.6.5](https://github.com/reenhanced/gitreflow/tree/v0.6.5) (2015-08-31)
162
- [Full Changelog](https://github.com/reenhanced/gitreflow/compare/v0.6.4...v0.6.5)
163
-
164
- **Closed issues:**
165
-
166
- - Request: git reflow review --quick or --update [\#129](https://github.com/reenhanced/gitreflow/issues/129)
167
- - Feature Request: command to cleanly land a contributor's PR [\#128](https://github.com/reenhanced/gitreflow/issues/128)
168
-
169
- ## [v0.6.4](https://github.com/reenhanced/gitreflow/tree/v0.6.4) (2015-08-04)
170
- [Full Changelog](https://github.com/reenhanced/gitreflow/compare/v0.6.3...v0.6.4)
171
-
172
- **Fixed bugs:**
173
-
174
- - reflow needs an lgtm from myself [\#116](https://github.com/reenhanced/gitreflow/issues/116)
175
-
176
- ## [v0.6.3](https://github.com/reenhanced/gitreflow/tree/v0.6.3) (2015-08-03)
177
- [Full Changelog](https://github.com/reenhanced/gitreflow/compare/v0.6.2...v0.6.3)
178
-
179
- **Closed issues:**
180
-
181
- - Github pre-receive hook to ensure review is not skipped [\#121](https://github.com/reenhanced/gitreflow/issues/121)
182
- - Error: \#\<NameError: wrong constant name \> [\#120](https://github.com/reenhanced/gitreflow/issues/120)
183
-
184
- ## [v0.6.2](https://github.com/reenhanced/gitreflow/tree/v0.6.2) (2015-08-03)
185
- [Full Changelog](https://github.com/reenhanced/gitreflow/compare/v0.6.1...v0.6.2)
186
-
187
- **Fixed bugs:**
188
-
189
- - GIT\_REFLOW\_PR\_MSG: Permission denied [\#115](https://github.com/reenhanced/gitreflow/issues/115)
190
- - Git reflow setup undefined method `body` [\#96](https://github.com/reenhanced/gitreflow/issues/96)
191
-
192
- **Closed issues:**
193
-
194
- - deliver halted because lgtm not detected, but lgtm exists [\#119](https://github.com/reenhanced/gitreflow/issues/119)
195
- - Clarify when I would want to install reflow or git\_reflow [\#113](https://github.com/reenhanced/gitreflow/issues/113)
196
- - Clarify when I would want to install reflow or git\_reflow [\#112](https://github.com/reenhanced/gitreflow/issues/112)
197
- - Error when running git reflow review [\#107](https://github.com/reenhanced/gitreflow/issues/107)
198
- - Default PR title from branch name rather than last commit [\#89](https://github.com/reenhanced/gitreflow/issues/89)
199
-
200
- **Merged pull requests:**
201
-
202
- - Clarify how to pick which gem [\#114](https://github.com/reenhanced/gitreflow/pull/114) ([sethladd](https://github.com/sethladd))
203
- - Add number attribute to Base:PullRequest [\#110](https://github.com/reenhanced/gitreflow/pull/110) ([tanin47](https://github.com/tanin47))
204
-
205
- ## [v0.6.1](https://github.com/reenhanced/gitreflow/tree/v0.6.1) (2015-06-02)
206
- [Full Changelog](https://github.com/reenhanced/gitreflow/compare/v0.6.0...v0.6.1)
207
-
208
- **Closed issues:**
209
-
210
- - git reflow setup not working [\#106](https://github.com/reenhanced/gitreflow/issues/106)
211
-
212
- ## [v0.6.0](https://github.com/reenhanced/gitreflow/tree/v0.6.0) (2015-05-15)
213
- [Full Changelog](https://github.com/reenhanced/gitreflow/compare/v0.5.3...v0.6.0)
214
-
215
- **Merged pull requests:**
216
-
217
- - new functionality for review [\#99](https://github.com/reenhanced/gitreflow/pull/99) ([meesterdude](https://github.com/meesterdude))
218
-
219
- ## [v0.5.3](https://github.com/reenhanced/gitreflow/tree/v0.5.3) (2015-05-15)
220
- [Full Changelog](https://github.com/reenhanced/gitreflow/compare/v0.5.2...v0.5.3)
221
-
222
- **Closed issues:**
223
-
224
- - rescue/allow retry on review submit [\#102](https://github.com/reenhanced/gitreflow/issues/102)
225
- - tmp\_squash\_msg can be improved [\#97](https://github.com/reenhanced/gitreflow/issues/97)
226
- - Getting following error while setting up GitHub with reflow [\#94](https://github.com/reenhanced/gitreflow/issues/94)
227
-
228
- **Merged pull requests:**
229
-
230
- - tmp\_squash\_msh is not removed if we use git reflow in other directories than root. [\#98](https://github.com/reenhanced/gitreflow/pull/98) ([tanin47](https://github.com/tanin47))
231
-
232
- ## [v0.5.2](https://github.com/reenhanced/gitreflow/tree/v0.5.2) (2015-04-03)
233
- [Full Changelog](https://github.com/reenhanced/gitreflow/compare/v0.5.1...v0.5.2)
234
-
235
- ## [v0.5.1](https://github.com/reenhanced/gitreflow/tree/v0.5.1) (2015-03-26)
236
- [Full Changelog](https://github.com/reenhanced/gitreflow/compare/v0.5.0...v0.5.1)
237
-
238
- ## [v0.5.0](https://github.com/reenhanced/gitreflow/tree/v0.5.0) (2015-03-26)
239
- [Full Changelog](https://github.com/reenhanced/gitreflow/compare/v0.4.2...v0.5.0)
240
-
241
- **Fixed bugs:**
242
-
243
- - bad URI on git reflow status [\#88](https://github.com/reenhanced/gitreflow/issues/88)
244
-
245
- **Closed issues:**
246
-
247
- - Changing remote url in \reponame\.git\config to make reflow deliver work [\#75](https://github.com/reenhanced/gitreflow/issues/75)
248
-
249
- ## [v0.4.2](https://github.com/reenhanced/gitreflow/tree/v0.4.2) (2015-02-10)
250
- [Full Changelog](https://github.com/reenhanced/gitreflow/compare/v0.4.1...v0.4.2)
251
-
252
- **Fixed bugs:**
253
-
254
- - Allow for non-ssh origin urls [\#71](https://github.com/reenhanced/gitreflow/issues/71)
255
-
256
- **Closed issues:**
257
-
258
- - 404 error on all PR functions [\#77](https://github.com/reenhanced/gitreflow/issues/77)
259
- - Show an error message when trying to use the `http` url [\#72](https://github.com/reenhanced/gitreflow/issues/72)
260
- - Setup does not work when 2-factor authentication is enabled [\#57](https://github.com/reenhanced/gitreflow/issues/57)
261
- - Github Enterprise Compatibility [\#42](https://github.com/reenhanced/gitreflow/issues/42)
262
-
263
- ## [v0.4.1](https://github.com/reenhanced/gitreflow/tree/v0.4.1) (2014-10-28)
264
- [Full Changelog](https://github.com/reenhanced/gitreflow/compare/v0.4.0...v0.4.1)
265
-
266
- **Closed issues:**
267
-
268
- - License does not have year and name filled in [\#69](https://github.com/reenhanced/gitreflow/issues/69)
269
-
270
- ## [v0.4.0](https://github.com/reenhanced/gitreflow/tree/v0.4.0) (2014-10-16)
271
- [Full Changelog](https://github.com/reenhanced/gitreflow/compare/v0.3.5...v0.4.0)
272
-
273
- **Merged pull requests:**
274
-
275
- - Make sure to create feature branch with current branch as base [\#64](https://github.com/reenhanced/gitreflow/pull/64) ([esposito](https://github.com/esposito))
276
- - \[fix\] Show delivery halted message properly [\#63](https://github.com/reenhanced/gitreflow/pull/63) ([shirshendu](https://github.com/shirshendu))
277
-
278
- ## [v0.3.5](https://github.com/reenhanced/gitreflow/tree/v0.3.5) (2014-03-05)
279
- [Full Changelog](https://github.com/reenhanced/gitreflow/compare/v0.3.4...v0.3.5)
280
-
281
- **Closed issues:**
282
-
283
- - Getting a 'error: POST https://api.github.com/authorizations: 422' when entering correct user/password [\#60](https://github.com/reenhanced/gitreflow/issues/60)
284
- - Why is squashed merging your preferred workflow? [\#52](https://github.com/reenhanced/gitreflow/issues/52)
285
- - Commit editor prints last commit line twice on top on deliver [\#49](https://github.com/reenhanced/gitreflow/issues/49)
286
- - `git reflow status` does not open in browser when answering 'y' [\#48](https://github.com/reenhanced/gitreflow/issues/48)
287
- - Setup fails [\#47](https://github.com/reenhanced/gitreflow/issues/47)
288
-
289
- **Merged pull requests:**
290
-
291
- - Add CI build status integration if present [\#58](https://github.com/reenhanced/gitreflow/pull/58) ([shirshendu](https://github.com/shirshendu))
292
- - Add note to created oauth token so users can find them on their tokens page [\#55](https://github.com/reenhanced/gitreflow/pull/55) ([marten](https://github.com/marten))
293
-
294
- ## [v0.3.4](https://github.com/reenhanced/gitreflow/tree/v0.3.4) (2013-11-01)
295
- [Full Changelog](https://github.com/reenhanced/gitreflow/compare/v0.3.3...v0.3.4)
296
-
297
- **Fixed bugs:**
298
-
299
- - Skip lgtm not functional [\#41](https://github.com/reenhanced/gitreflow/issues/41)
300
-
301
- **Closed issues:**
302
-
303
- - Syntax for `review` [\#44](https://github.com/reenhanced/gitreflow/issues/44)
304
- - Print all git commands [\#43](https://github.com/reenhanced/gitreflow/issues/43)
305
-
306
- ## [v0.3.3](https://github.com/reenhanced/gitreflow/tree/v0.3.3) (2013-10-16)
307
- [Full Changelog](https://github.com/reenhanced/gitreflow/compare/v0.3.2...v0.3.3)
308
-
309
- **Closed issues:**
310
-
311
- - License missing from gemspec [\#40](https://github.com/reenhanced/gitreflow/issues/40)
312
-
313
- **Merged pull requests:**
314
-
315
- - Fix --skip-lgtm option was never passed to the `\#deliver` method [\#45](https://github.com/reenhanced/gitreflow/pull/45) ([francois](https://github.com/francois))
316
-
317
- ## [v0.3.2](https://github.com/reenhanced/gitreflow/tree/v0.3.2) (2013-07-25)
318
- [Full Changelog](https://github.com/reenhanced/gitreflow/compare/v0.3.1...v0.3.2)
319
-
320
- ## [v0.3.1](https://github.com/reenhanced/gitreflow/tree/v0.3.1) (2013-07-12)
321
- [Full Changelog](https://github.com/reenhanced/gitreflow/compare/v0.3...v0.3.1)
322
-
323
- ## [v0.3](https://github.com/reenhanced/gitreflow/tree/v0.3) (2013-07-12)
324
- [Full Changelog](https://github.com/reenhanced/gitreflow/compare/v0.2.5...v0.3)
325
-
326
- ## [v0.2.5](https://github.com/reenhanced/gitreflow/tree/v0.2.5) (2013-03-04)
327
- [Full Changelog](https://github.com/reenhanced/gitreflow/compare/v0.2.5-with-tests...v0.2.5)
328
-
329
- ## [v0.2.5-with-tests](https://github.com/reenhanced/gitreflow/tree/v0.2.5-with-tests) (2013-03-04)
330
- [Full Changelog](https://github.com/reenhanced/gitreflow/compare/v0.2.4...v0.2.5-with-tests)
331
-
332
- ## [v0.2.4](https://github.com/reenhanced/gitreflow/tree/v0.2.4) (2012-09-21)
333
- [Full Changelog](https://github.com/reenhanced/gitreflow/compare/v0.2.2...v0.2.4)
334
-
335
- ## [v0.2.2](https://github.com/reenhanced/gitreflow/tree/v0.2.2) (2012-09-17)
336
- [Full Changelog](https://github.com/reenhanced/gitreflow/compare/v0.2.1...v0.2.2)
337
-
338
- ## [v0.2.1](https://github.com/reenhanced/gitreflow/tree/v0.2.1) (2012-08-30)
339
- [Full Changelog](https://github.com/reenhanced/gitreflow/compare/v0.2...v0.2.1)
340
-
341
- ## [v0.2](https://github.com/reenhanced/gitreflow/tree/v0.2) (2012-08-28)
342
- **Merged pull requests:**
343
-
344
- - Adds documentation to reflow [\#13](https://github.com/reenhanced/gitreflow/pull/13) ([nhance](https://github.com/nhance))
345
-
346
-
347
-
348
- \* *This Change Log was automatically generated by [github_changelog_generator](https://github.com/skywinder/Github-Changelog-Generator)*
1
+ # Change Log
2
+
3
+ ## [v0.9.0](https://github.com/reenhanced/gitreflow/tree/v0.9.0) (2018-11-09)
4
+
5
+ [Full Changelog](https://github.com/reenhanced/gitreflow/compare/v0.8.10...v0.9.0)
6
+
7
+ **Implemented enhancements:**
8
+
9
+ - Make a git-reflow specific configuration for storing a custom base-branch [\#202](https://github.com/reenhanced/gitreflow/issues/202)
10
+
11
+ **Fixed bugs:**
12
+
13
+ - bitbucket: error occurs while creating pull request [\#93](https://github.com/reenhanced/gitreflow/issues/93)
14
+ - Review command race condition [\#84](https://github.com/reenhanced/gitreflow/issues/84)
15
+
16
+ **Closed issues:**
17
+
18
+ - No help from git reflow --help [\#118](https://github.com/reenhanced/gitreflow/issues/118)
19
+ - f has already been specified as a switch in the command deliver \(ArgumentError\) [\#59](https://github.com/reenhanced/gitreflow/issues/59)
20
+ - Command to edit default commit format [\#51](https://github.com/reenhanced/gitreflow/issues/51)
21
+
22
+ **Merged pull requests:**
23
+
24
+ - Allows for configuring a custom base-branch [\#231](https://github.com/reenhanced/gitreflow/pull/231) ([codenamev](https://github.com/codenamev))
25
+ - Fixes many scoping issues with new Workflow [\#229](https://github.com/reenhanced/gitreflow/pull/229) ([codenamev](https://github.com/codenamev))
26
+ - Retry pull-request creation if there are errors [\#226](https://github.com/reenhanced/gitreflow/pull/226) ([codenamev](https://github.com/codenamev))
27
+ - Fixes loading of custom workflow file to once per session [\#224](https://github.com/reenhanced/gitreflow/pull/224) ([codenamev](https://github.com/codenamev))
28
+ - Allow for custom commit/merge message templates [\#223](https://github.com/reenhanced/gitreflow/pull/223) ([codenamev](https://github.com/codenamev))
29
+
30
+ ## [v0.8.10](https://github.com/reenhanced/gitreflow/tree/v0.8.10) (2018-04-19)
31
+ [Full Changelog](https://github.com/reenhanced/gitreflow/compare/v0.8.9...v0.8.10)
32
+
33
+ **Merged pull requests:**
34
+
35
+ - Updates rubies and gems [\#221](https://github.com/reenhanced/gitreflow/pull/221) ([codenamev](https://github.com/codenamev))
36
+ - Remove lingering `skip\_lgtm` options in favor of `force` option [\#218](https://github.com/reenhanced/gitreflow/pull/218) ([codenamev](https://github.com/codenamev))
37
+ - Remove dead code [\#217](https://github.com/reenhanced/gitreflow/pull/217) ([codenamev](https://github.com/codenamev))
38
+ - Updates REAME to Markdown [\#216](https://github.com/reenhanced/gitreflow/pull/216) ([codenamev](https://github.com/codenamev))
39
+ - Updates readme with details on customization [\#214](https://github.com/reenhanced/gitreflow/pull/214) ([codenamev](https://github.com/codenamev))
40
+
41
+ ## [v0.8.9](https://github.com/reenhanced/gitreflow/tree/v0.8.9) (2017-04-26)
42
+ [Full Changelog](https://github.com/reenhanced/gitreflow/compare/v0.8.8...v0.8.9)
43
+
44
+ **Fixed bugs:**
45
+
46
+ - `git reflow deliver` no longer squashing! [\#212](https://github.com/reenhanced/gitreflow/issues/212)
47
+ - Github approval message is not seen as a LGTM [\#207](https://github.com/reenhanced/gitreflow/issues/207)
48
+
49
+ **Merged pull requests:**
50
+
51
+ - Adds checks for new GH reviews when delivering [\#215](https://github.com/reenhanced/gitreflow/pull/215) ([codenamev](https://github.com/codenamev))
52
+
53
+ ## [v0.8.8](https://github.com/reenhanced/gitreflow/tree/v0.8.8) (2017-04-24)
54
+ [Full Changelog](https://github.com/reenhanced/gitreflow/compare/v0.8.7...v0.8.8)
55
+
56
+ ## [v0.8.7](https://github.com/reenhanced/gitreflow/tree/v0.8.7) (2017-04-21)
57
+ [Full Changelog](https://github.com/reenhanced/gitreflow/compare/v0.8.4...v0.8.7)
58
+
59
+ **Implemented enhancements:**
60
+
61
+ - Use a logger instead of `puts` [\#156](https://github.com/reenhanced/gitreflow/issues/156)
62
+
63
+ **Closed issues:**
64
+
65
+ - Rejected push deletes local branch on deliver [\#206](https://github.com/reenhanced/gitreflow/issues/206)
66
+ - Running setup multiple times will create multiple entries in .gitconfig [\#203](https://github.com/reenhanced/gitreflow/issues/203)
67
+ - Add Direct Merge Workflow [\#201](https://github.com/reenhanced/gitreflow/issues/201)
68
+ - undefined method for strip [\#197](https://github.com/reenhanced/gitreflow/issues/197)
69
+ - Ideas for additional steps, such as linting, etc. [\#190](https://github.com/reenhanced/gitreflow/issues/190)
70
+
71
+ **Merged pull requests:**
72
+
73
+ - 0.8.7 [\#213](https://github.com/reenhanced/gitreflow/pull/213) ([nhance](https://github.com/nhance))
74
+ - Updates Github merge request to use new `merge\_method` param [\#211](https://github.com/reenhanced/gitreflow/pull/211) ([codenamev](https://github.com/codenamev))
75
+ - Adds a logger to log command runs [\#210](https://github.com/reenhanced/gitreflow/pull/210) ([codenamev](https://github.com/codenamev))
76
+ - All commands that are run through reflow \(except git-config\) are now blocking [\#209](https://github.com/reenhanced/gitreflow/pull/209) ([codenamev](https://github.com/codenamev))
77
+ - Fix loading of PR template from '.github' directory [\#208](https://github.com/reenhanced/gitreflow/pull/208) ([codenamev](https://github.com/codenamev))
78
+ - \[\#201\] Add direct merge workflow [\#205](https://github.com/reenhanced/gitreflow/pull/205) ([codenamev](https://github.com/codenamev))
79
+ - \[\#203\] Evaluate environment variables when checking existing config files [\#204](https://github.com/reenhanced/gitreflow/pull/204) ([Shalmezad](https://github.com/Shalmezad))
80
+ - \[53\] Allow workflows to be loaded from git config [\#199](https://github.com/reenhanced/gitreflow/pull/199) ([codenamev](https://github.com/codenamev))
81
+
82
+ ## [v0.8.4](https://github.com/reenhanced/gitreflow/tree/v0.8.4) (2016-08-22)
83
+ [Full Changelog](https://github.com/reenhanced/gitreflow/compare/v0.8.3...v0.8.4)
84
+
85
+ **Closed issues:**
86
+
87
+ - error: We were unable to authenticate with Github [\#196](https://github.com/reenhanced/gitreflow/issues/196)
88
+ - Introduce the idea of "Workflows" to customize steps [\#53](https://github.com/reenhanced/gitreflow/issues/53)
89
+
90
+ **Merged pull requests:**
91
+
92
+ - \[53\] Create core workflow module to consolidate commands [\#198](https://github.com/reenhanced/gitreflow/pull/198) ([codenamev](https://github.com/codenamev))
93
+
94
+ ## [v0.8.3](https://github.com/reenhanced/gitreflow/tree/v0.8.3) (2016-08-04)
95
+ [Full Changelog](https://github.com/reenhanced/gitreflow/compare/v0.8.2...v0.8.3)
96
+
97
+ ## [v0.8.2](https://github.com/reenhanced/gitreflow/tree/v0.8.2) (2016-08-01)
98
+ [Full Changelog](https://github.com/reenhanced/gitreflow/compare/v0.8.1...v0.8.2)
99
+
100
+ **Fixed bugs:**
101
+
102
+ - git-reflow setup not working on Windows [\#187](https://github.com/reenhanced/gitreflow/issues/187)
103
+
104
+ **Closed issues:**
105
+
106
+ - GitHub authentication issues [\#193](https://github.com/reenhanced/gitreflow/issues/193)
107
+ - non-master base branch does not work for the deliver command [\#192](https://github.com/reenhanced/gitreflow/issues/192)
108
+ - git-reflow fork command [\#188](https://github.com/reenhanced/gitreflow/issues/188)
109
+ - Bitbucket setup not working [\#186](https://github.com/reenhanced/gitreflow/issues/186)
110
+ - Default approval regex not respecting :+1: [\#182](https://github.com/reenhanced/gitreflow/issues/182)
111
+ - \[SOLVED\] Unable To Install the GEM \(install nokogiri manually to solve the issue\) [\#178](https://github.com/reenhanced/gitreflow/issues/178)
112
+ - Can we switch off LGTM reviews? [\#177](https://github.com/reenhanced/gitreflow/issues/177)
113
+ - gitreflow does not cache github token? [\#173](https://github.com/reenhanced/gitreflow/issues/173)
114
+ - message below the fold in review [\#105](https://github.com/reenhanced/gitreflow/issues/105)
115
+
116
+ **Merged pull requests:**
117
+
118
+ - \[\#187\] Update git-reflow config file path to use $HOME for windows support [\#195](https://github.com/reenhanced/gitreflow/pull/195) ([codenamev](https://github.com/codenamev))
119
+ - \[192\] Allow delivery to custom base branch [\#194](https://github.com/reenhanced/gitreflow/pull/194) ([codenamev](https://github.com/codenamev))
120
+ - Refactor tests to allow for use of reflow test helpers in third-party gems [\#189](https://github.com/reenhanced/gitreflow/pull/189) ([codenamev](https://github.com/codenamev))
121
+ - \[Issue \#182\] Fix LGTM Expression [\#185](https://github.com/reenhanced/gitreflow/pull/185) ([simonzhu24](https://github.com/simonzhu24))
122
+ - Use $EDITOR as text editor fallback [\#184](https://github.com/reenhanced/gitreflow/pull/184) ([timraasveld](https://github.com/timraasveld))
123
+ - Respect GitHub pull request template [\#179](https://github.com/reenhanced/gitreflow/pull/179) ([timraasveld](https://github.com/timraasveld))
124
+
125
+ ## [v0.8.1](https://github.com/reenhanced/gitreflow/tree/v0.8.1) (2016-05-26)
126
+ [Full Changelog](https://github.com/reenhanced/gitreflow/compare/v0.8.0...v0.8.1)
127
+
128
+ **Closed issues:**
129
+
130
+ - undefined method `git\_editor\_comand' for GitReflow:Module [\#176](https://github.com/reenhanced/gitreflow/issues/176)
131
+ - github PR ends up "closed" instead of "merged" [\#149](https://github.com/reenhanced/gitreflow/issues/149)
132
+ - Update README to mention how to update an in-progress feature branch from origin/master [\#125](https://github.com/reenhanced/gitreflow/issues/125)
133
+ - Option to silence the offer to open the PR in my browser? [\#117](https://github.com/reenhanced/gitreflow/issues/117)
134
+ - command for merging updates from base branch [\#74](https://github.com/reenhanced/gitreflow/issues/74)
135
+ - Support for non-master branch [\#73](https://github.com/reenhanced/gitreflow/issues/73)
136
+
137
+ ## [v0.8.0](https://github.com/reenhanced/gitreflow/tree/v0.8.0) (2016-05-26)
138
+ [Full Changelog](https://github.com/reenhanced/gitreflow/compare/v0.7.5...v0.8.0)
139
+
140
+ **Implemented enhancements:**
141
+
142
+ - Upgrade RSpec [\#162](https://github.com/reenhanced/gitreflow/issues/162)
143
+
144
+ **Closed issues:**
145
+
146
+ - Setup doesn't work with GH two-factor turned on [\#175](https://github.com/reenhanced/gitreflow/issues/175)
147
+ - --base switch does not work? [\#174](https://github.com/reenhanced/gitreflow/issues/174)
148
+ - Idea: git reflow promote \<promotion branch\> [\#168](https://github.com/reenhanced/gitreflow/issues/168)
149
+ - add changelog support [\#100](https://github.com/reenhanced/gitreflow/issues/100)
150
+ - Always have reflow start create a branch from master [\#66](https://github.com/reenhanced/gitreflow/issues/66)
151
+
152
+ **Merged pull requests:**
153
+
154
+ - Cleanup new Github merge for next release [\#172](https://github.com/reenhanced/gitreflow/pull/172) ([codenamev](https://github.com/codenamev))
155
+ - Bug Fix for Merging "reenhanced:master" instead of "master" [\#171](https://github.com/reenhanced/gitreflow/pull/171) ([simonzhu24](https://github.com/simonzhu24))
156
+ - Sz issue/149 fix commit message to merge instead of close [\#170](https://github.com/reenhanced/gitreflow/pull/170) ([simonzhu24](https://github.com/simonzhu24))
157
+ - Fixing Refresh to take in parameter for "base" instead of "branch" [\#169](https://github.com/reenhanced/gitreflow/pull/169) ([simonzhu24](https://github.com/simonzhu24))
158
+ - \[Issue \#66\] Always have reflow start create a branch from master [\#167](https://github.com/reenhanced/gitreflow/pull/167) ([simonzhu24](https://github.com/simonzhu24))
159
+ - \[162\] Updating Rspec Version to 3.3.0 [\#165](https://github.com/reenhanced/gitreflow/pull/165) ([simonzhu24](https://github.com/simonzhu24))
160
+ - \[Issue \#66 + \#74\] Implementing "Git Reflow Refresh" [\#164](https://github.com/reenhanced/gitreflow/pull/164) ([simonzhu24](https://github.com/simonzhu24))
161
+ - \[issue: 162\] Updating Rspecs: Use "Allow" instead of "Stub" [\#163](https://github.com/reenhanced/gitreflow/pull/163) ([simonzhu24](https://github.com/simonzhu24))
162
+
163
+ ## [v0.7.5](https://github.com/reenhanced/gitreflow/tree/v0.7.5) (2016-04-14)
164
+ [Full Changelog](https://github.com/reenhanced/gitreflow/compare/v0.7.4...v0.7.5)
165
+
166
+ **Implemented enhancements:**
167
+
168
+ - Modernize gem file structure [\#158](https://github.com/reenhanced/gitreflow/issues/158)
169
+
170
+ **Closed issues:**
171
+
172
+ - Remove unused gitreflow-common [\#154](https://github.com/reenhanced/gitreflow/issues/154)
173
+ - Option to require LGTM from only one person? [\#141](https://github.com/reenhanced/gitreflow/issues/141)
174
+
175
+ **Merged pull requests:**
176
+
177
+ - \[Issue \#141\] Fixing Issues and Adding Configurable Nx LGTM and LGTM Regex Options, Adding Rspec Tests [\#161](https://github.com/reenhanced/gitreflow/pull/161) ([simonzhu24](https://github.com/simonzhu24))
178
+ - modernize gem structure; Fixes \#158 [\#159](https://github.com/reenhanced/gitreflow/pull/159) ([pboling](https://github.com/pboling))
179
+ - Remove unused gitreflow-common [\#155](https://github.com/reenhanced/gitreflow/pull/155) ([pboling](https://github.com/pboling))
180
+
181
+ ## [v0.7.4](https://github.com/reenhanced/gitreflow/tree/v0.7.4) (2016-04-08)
182
+ [Full Changelog](https://github.com/reenhanced/gitreflow/compare/v0.7.3...v0.7.4)
183
+
184
+ **Fixed bugs:**
185
+
186
+ - Deliver command doesn't sync feature branch before merge [\#152](https://github.com/reenhanced/gitreflow/issues/152)
187
+ - SSL Verification is turned off [\#151](https://github.com/reenhanced/gitreflow/issues/151)
188
+
189
+ ## [v0.7.3](https://github.com/reenhanced/gitreflow/tree/v0.7.3) (2016-03-24)
190
+ [Full Changelog](https://github.com/reenhanced/gitreflow/compare/v0.7.2...v0.7.3)
191
+
192
+ **Fixed bugs:**
193
+
194
+ - Setting title is ignored from review [\#127](https://github.com/reenhanced/gitreflow/issues/127)
195
+ - Don't open EDITOR if there is an existing PR for this branch [\#123](https://github.com/reenhanced/gitreflow/issues/123)
196
+
197
+ **Closed issues:**
198
+
199
+ - add "Created With Reflow" [\#101](https://github.com/reenhanced/gitreflow/issues/101)
200
+ - Store OAuth token somewhere else? [\#54](https://github.com/reenhanced/gitreflow/issues/54)
201
+
202
+ ## [v0.7.2](https://github.com/reenhanced/gitreflow/tree/v0.7.2) (2016-02-22)
203
+ [Full Changelog](https://github.com/reenhanced/gitreflow/compare/v0.7.1...v0.7.2)
204
+
205
+ **Closed issues:**
206
+
207
+ - git: 'reflow' is not a git command. See 'git --help' [\#146](https://github.com/reenhanced/gitreflow/issues/146)
208
+ - option to use non-master branch by default everywhere [\#145](https://github.com/reenhanced/gitreflow/issues/145)
209
+ - Deliver to custom branch? [\#144](https://github.com/reenhanced/gitreflow/issues/144)
210
+
211
+ ## [v0.7.1](https://github.com/reenhanced/gitreflow/tree/v0.7.1) (2015-10-27)
212
+ [Full Changelog](https://github.com/reenhanced/gitreflow/compare/v0.7.0...v0.7.1)
213
+
214
+ **Merged pull requests:**
215
+
216
+ - Fix the ask to open in browser dialog on Mac. [\#143](https://github.com/reenhanced/gitreflow/pull/143) ([squaresurf](https://github.com/squaresurf))
217
+
218
+ ## [v0.7.0](https://github.com/reenhanced/gitreflow/tree/v0.7.0) (2015-10-14)
219
+ [Full Changelog](https://github.com/reenhanced/gitreflow/compare/v0.6.7...v0.7.0)
220
+
221
+ **Fixed bugs:**
222
+
223
+ - Hide author's name from list of LGTMs we need to get [\#126](https://github.com/reenhanced/gitreflow/issues/126)
224
+
225
+ **Closed issues:**
226
+
227
+ - Command Injection in append\_to\_squashed\_commit\_message. [\#134](https://github.com/reenhanced/gitreflow/issues/134)
228
+
229
+ ## [v0.6.7](https://github.com/reenhanced/gitreflow/tree/v0.6.7) (2015-09-29)
230
+ [Full Changelog](https://github.com/reenhanced/gitreflow/compare/v0.6.6...v0.6.7)
231
+
232
+ ## [v0.6.6](https://github.com/reenhanced/gitreflow/tree/v0.6.6) (2015-09-28)
233
+ [Full Changelog](https://github.com/reenhanced/gitreflow/compare/v0.6.5...v0.6.6)
234
+
235
+ **Merged pull requests:**
236
+
237
+ - Fix review message parsing from editor failed [\#133](https://github.com/reenhanced/gitreflow/pull/133) ([francois](https://github.com/francois))
238
+
239
+ ## [v0.6.5](https://github.com/reenhanced/gitreflow/tree/v0.6.5) (2015-08-31)
240
+ [Full Changelog](https://github.com/reenhanced/gitreflow/compare/v0.6.4...v0.6.5)
241
+
242
+ **Closed issues:**
243
+
244
+ - Request: git reflow review --quick or --update [\#129](https://github.com/reenhanced/gitreflow/issues/129)
245
+ - Feature Request: command to cleanly land a contributor's PR [\#128](https://github.com/reenhanced/gitreflow/issues/128)
246
+
247
+ ## [v0.6.4](https://github.com/reenhanced/gitreflow/tree/v0.6.4) (2015-08-04)
248
+ [Full Changelog](https://github.com/reenhanced/gitreflow/compare/v0.6.3...v0.6.4)
249
+
250
+ **Fixed bugs:**
251
+
252
+ - reflow needs an lgtm from myself [\#116](https://github.com/reenhanced/gitreflow/issues/116)
253
+
254
+ ## [v0.6.3](https://github.com/reenhanced/gitreflow/tree/v0.6.3) (2015-08-03)
255
+ [Full Changelog](https://github.com/reenhanced/gitreflow/compare/v0.6.2...v0.6.3)
256
+
257
+ **Closed issues:**
258
+
259
+ - Github pre-receive hook to ensure review is not skipped [\#121](https://github.com/reenhanced/gitreflow/issues/121)
260
+ - Error: \#\<NameError: wrong constant name \> [\#120](https://github.com/reenhanced/gitreflow/issues/120)
261
+
262
+ ## [v0.6.2](https://github.com/reenhanced/gitreflow/tree/v0.6.2) (2015-08-03)
263
+ [Full Changelog](https://github.com/reenhanced/gitreflow/compare/v0.6.1...v0.6.2)
264
+
265
+ **Fixed bugs:**
266
+
267
+ - GIT\_REFLOW\_PR\_MSG: Permission denied [\#115](https://github.com/reenhanced/gitreflow/issues/115)
268
+ - Git reflow setup undefined method `body` [\#96](https://github.com/reenhanced/gitreflow/issues/96)
269
+
270
+ **Closed issues:**
271
+
272
+ - deliver halted because lgtm not detected, but lgtm exists [\#119](https://github.com/reenhanced/gitreflow/issues/119)
273
+ - Clarify when I would want to install reflow or git\_reflow [\#113](https://github.com/reenhanced/gitreflow/issues/113)
274
+ - Clarify when I would want to install reflow or git\_reflow [\#112](https://github.com/reenhanced/gitreflow/issues/112)
275
+ - Error when running git reflow review [\#107](https://github.com/reenhanced/gitreflow/issues/107)
276
+ - Default PR title from branch name rather than last commit [\#89](https://github.com/reenhanced/gitreflow/issues/89)
277
+
278
+ **Merged pull requests:**
279
+
280
+ - Clarify how to pick which gem [\#114](https://github.com/reenhanced/gitreflow/pull/114) ([sethladd](https://github.com/sethladd))
281
+ - Add number attribute to Base:PullRequest [\#110](https://github.com/reenhanced/gitreflow/pull/110) ([tanin47](https://github.com/tanin47))
282
+
283
+ ## [v0.6.1](https://github.com/reenhanced/gitreflow/tree/v0.6.1) (2015-06-02)
284
+ [Full Changelog](https://github.com/reenhanced/gitreflow/compare/v0.6.0...v0.6.1)
285
+
286
+ **Closed issues:**
287
+
288
+ - git reflow setup not working [\#106](https://github.com/reenhanced/gitreflow/issues/106)
289
+
290
+ ## [v0.6.0](https://github.com/reenhanced/gitreflow/tree/v0.6.0) (2015-05-15)
291
+ [Full Changelog](https://github.com/reenhanced/gitreflow/compare/v0.5.3...v0.6.0)
292
+
293
+ **Merged pull requests:**
294
+
295
+ - new functionality for review [\#99](https://github.com/reenhanced/gitreflow/pull/99) ([meesterdude](https://github.com/meesterdude))
296
+
297
+ ## [v0.5.3](https://github.com/reenhanced/gitreflow/tree/v0.5.3) (2015-05-15)
298
+ [Full Changelog](https://github.com/reenhanced/gitreflow/compare/v0.5.2...v0.5.3)
299
+
300
+ **Closed issues:**
301
+
302
+ - rescue/allow retry on review submit [\#102](https://github.com/reenhanced/gitreflow/issues/102)
303
+ - tmp\_squash\_msg can be improved [\#97](https://github.com/reenhanced/gitreflow/issues/97)
304
+ - Getting following error while setting up GitHub with reflow [\#94](https://github.com/reenhanced/gitreflow/issues/94)
305
+
306
+ **Merged pull requests:**
307
+
308
+ - tmp\_squash\_msh is not removed if we use git reflow in other directories than root. [\#98](https://github.com/reenhanced/gitreflow/pull/98) ([tanin47](https://github.com/tanin47))
309
+
310
+ ## [v0.5.2](https://github.com/reenhanced/gitreflow/tree/v0.5.2) (2015-04-03)
311
+ [Full Changelog](https://github.com/reenhanced/gitreflow/compare/v0.5.1...v0.5.2)
312
+
313
+ ## [v0.5.1](https://github.com/reenhanced/gitreflow/tree/v0.5.1) (2015-03-26)
314
+ [Full Changelog](https://github.com/reenhanced/gitreflow/compare/v0.5.0...v0.5.1)
315
+
316
+ ## [v0.5.0](https://github.com/reenhanced/gitreflow/tree/v0.5.0) (2015-03-26)
317
+ [Full Changelog](https://github.com/reenhanced/gitreflow/compare/v0.4.2...v0.5.0)
318
+
319
+ **Fixed bugs:**
320
+
321
+ - bad URI on git reflow status [\#88](https://github.com/reenhanced/gitreflow/issues/88)
322
+
323
+ **Closed issues:**
324
+
325
+ - Changing remote url in \reponame\.git\config to make reflow deliver work [\#75](https://github.com/reenhanced/gitreflow/issues/75)
326
+
327
+ ## [v0.4.2](https://github.com/reenhanced/gitreflow/tree/v0.4.2) (2015-02-10)
328
+ [Full Changelog](https://github.com/reenhanced/gitreflow/compare/v0.4.1...v0.4.2)
329
+
330
+ **Fixed bugs:**
331
+
332
+ - Allow for non-ssh origin urls [\#71](https://github.com/reenhanced/gitreflow/issues/71)
333
+
334
+ **Closed issues:**
335
+
336
+ - 404 error on all PR functions [\#77](https://github.com/reenhanced/gitreflow/issues/77)
337
+ - Show an error message when trying to use the `http` url [\#72](https://github.com/reenhanced/gitreflow/issues/72)
338
+ - Setup does not work when 2-factor authentication is enabled [\#57](https://github.com/reenhanced/gitreflow/issues/57)
339
+ - Github Enterprise Compatibility [\#42](https://github.com/reenhanced/gitreflow/issues/42)
340
+
341
+ ## [v0.4.1](https://github.com/reenhanced/gitreflow/tree/v0.4.1) (2014-10-28)
342
+ [Full Changelog](https://github.com/reenhanced/gitreflow/compare/v0.4.0...v0.4.1)
343
+
344
+ **Closed issues:**
345
+
346
+ - License does not have year and name filled in [\#69](https://github.com/reenhanced/gitreflow/issues/69)
347
+
348
+ ## [v0.4.0](https://github.com/reenhanced/gitreflow/tree/v0.4.0) (2014-10-16)
349
+ [Full Changelog](https://github.com/reenhanced/gitreflow/compare/v0.3.5...v0.4.0)
350
+
351
+ **Merged pull requests:**
352
+
353
+ - Make sure to create feature branch with current branch as base [\#64](https://github.com/reenhanced/gitreflow/pull/64) ([esposito](https://github.com/esposito))
354
+ - \[fix\] Show delivery halted message properly [\#63](https://github.com/reenhanced/gitreflow/pull/63) ([shirshendu](https://github.com/shirshendu))
355
+
356
+ ## [v0.3.5](https://github.com/reenhanced/gitreflow/tree/v0.3.5) (2014-03-05)
357
+ [Full Changelog](https://github.com/reenhanced/gitreflow/compare/v0.3.4...v0.3.5)
358
+
359
+ **Closed issues:**
360
+
361
+ - Getting a 'error: POST https://api.github.com/authorizations: 422' when entering correct user/password [\#60](https://github.com/reenhanced/gitreflow/issues/60)
362
+ - Why is squashed merging your preferred workflow? [\#52](https://github.com/reenhanced/gitreflow/issues/52)
363
+ - Commit editor prints last commit line twice on top on deliver [\#49](https://github.com/reenhanced/gitreflow/issues/49)
364
+ - `git reflow status` does not open in browser when answering 'y' [\#48](https://github.com/reenhanced/gitreflow/issues/48)
365
+ - Setup fails [\#47](https://github.com/reenhanced/gitreflow/issues/47)
366
+
367
+ **Merged pull requests:**
368
+
369
+ - Add CI build status integration if present [\#58](https://github.com/reenhanced/gitreflow/pull/58) ([shirshendu](https://github.com/shirshendu))
370
+ - Add note to created oauth token so users can find them on their tokens page [\#55](https://github.com/reenhanced/gitreflow/pull/55) ([marten](https://github.com/marten))
371
+
372
+ ## [v0.3.4](https://github.com/reenhanced/gitreflow/tree/v0.3.4) (2013-11-01)
373
+ [Full Changelog](https://github.com/reenhanced/gitreflow/compare/v0.3.3...v0.3.4)
374
+
375
+ **Fixed bugs:**
376
+
377
+ - Skip lgtm not functional [\#41](https://github.com/reenhanced/gitreflow/issues/41)
378
+
379
+ **Closed issues:**
380
+
381
+ - Syntax for `review` [\#44](https://github.com/reenhanced/gitreflow/issues/44)
382
+ - Print all git commands [\#43](https://github.com/reenhanced/gitreflow/issues/43)
383
+
384
+ ## [v0.3.3](https://github.com/reenhanced/gitreflow/tree/v0.3.3) (2013-10-16)
385
+ [Full Changelog](https://github.com/reenhanced/gitreflow/compare/v0.3.2...v0.3.3)
386
+
387
+ **Closed issues:**
388
+
389
+ - License missing from gemspec [\#40](https://github.com/reenhanced/gitreflow/issues/40)
390
+
391
+ **Merged pull requests:**
392
+
393
+ - Fix --skip-lgtm option was never passed to the `\#deliver` method [\#45](https://github.com/reenhanced/gitreflow/pull/45) ([francois](https://github.com/francois))
394
+
395
+ ## [v0.3.2](https://github.com/reenhanced/gitreflow/tree/v0.3.2) (2013-07-25)
396
+ [Full Changelog](https://github.com/reenhanced/gitreflow/compare/v0.3.1...v0.3.2)
397
+
398
+ ## [v0.3.1](https://github.com/reenhanced/gitreflow/tree/v0.3.1) (2013-07-12)
399
+ [Full Changelog](https://github.com/reenhanced/gitreflow/compare/v0.3...v0.3.1)
400
+
401
+ ## [v0.3](https://github.com/reenhanced/gitreflow/tree/v0.3) (2013-07-12)
402
+ [Full Changelog](https://github.com/reenhanced/gitreflow/compare/v0.2.5...v0.3)
403
+
404
+ ## [v0.2.5](https://github.com/reenhanced/gitreflow/tree/v0.2.5) (2013-03-04)
405
+ [Full Changelog](https://github.com/reenhanced/gitreflow/compare/v0.2.5-with-tests...v0.2.5)
406
+
407
+ ## [v0.2.5-with-tests](https://github.com/reenhanced/gitreflow/tree/v0.2.5-with-tests) (2013-03-04)
408
+ [Full Changelog](https://github.com/reenhanced/gitreflow/compare/v0.2.4...v0.2.5-with-tests)
409
+
410
+ ## [v0.2.4](https://github.com/reenhanced/gitreflow/tree/v0.2.4) (2012-09-21)
411
+ [Full Changelog](https://github.com/reenhanced/gitreflow/compare/v0.2.2...v0.2.4)
412
+
413
+ ## [v0.2.2](https://github.com/reenhanced/gitreflow/tree/v0.2.2) (2012-09-17)
414
+ [Full Changelog](https://github.com/reenhanced/gitreflow/compare/v0.2.1...v0.2.2)
415
+
416
+ ## [v0.2.1](https://github.com/reenhanced/gitreflow/tree/v0.2.1) (2012-08-30)
417
+ [Full Changelog](https://github.com/reenhanced/gitreflow/compare/v0.2...v0.2.1)
418
+
419
+ ## [v0.2](https://github.com/reenhanced/gitreflow/tree/v0.2) (2012-08-28)
420
+ **Merged pull requests:**
421
+
422
+ - Adds documentation to reflow [\#13](https://github.com/reenhanced/gitreflow/pull/13) ([nhance](https://github.com/nhance))
423
+
424
+
425
+
426
+ \* *This Change Log was automatically generated by [github_changelog_generator](https://github.com/skywinder/Github-Changelog-Generator)*