git_reflow 0.9.0 → 0.9.5
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- checksums.yaml +4 -4
- data/.github/workflows/multi-ruby-tests.yml +24 -0
- data/.ruby-version +1 -1
- data/CHANGELOG.md +109 -10
- data/Gemfile.lock +140 -66
- data/README.md +9 -5
- data/Rakefile +8 -1
- data/Workflow +3 -0
- data/exe/git-reflow +5 -0
- data/git_reflow.gemspec +28 -26
- data/lib/git_reflow/config.rb +30 -4
- data/lib/git_reflow/git_server/git_hub.rb +53 -40
- data/lib/git_reflow/git_server/git_hub/pull_request.rb +22 -6
- data/lib/git_reflow/git_server/pull_request.rb +15 -1
- data/lib/git_reflow/rspec/command_line_helpers.rb +17 -8
- data/lib/git_reflow/sandbox.rb +15 -6
- data/lib/git_reflow/version.rb +1 -1
- data/lib/git_reflow/workflow.rb +31 -4
- data/spec/fixtures/authentication_failure.json +3 -0
- data/spec/fixtures/users/user.json +32 -0
- data/spec/lib/git_reflow/git_server/git_hub/pull_request_spec.rb +1 -1
- data/spec/lib/git_reflow/git_server/git_hub_spec.rb +77 -3
- data/spec/lib/git_reflow/git_server/pull_request_spec.rb +33 -5
- data/spec/lib/git_reflow/workflow_spec.rb +69 -3
- data/spec/lib/git_reflow_spec.rb +0 -1
- data/spec/spec_helper.rb +1 -1
- metadata +58 -40
- data/circle.yml +0 -26
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA256:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: 0e834acddb09b38d8cf8514276ffffb362686ab63e207a2ee12d86c1e0d1d9a5
|
4
|
+
data.tar.gz: cb8b074c0b5a54d4dc6c5924d07c1ea0b3361f9fafa4f1f6e79ac5bd63be144d
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: f1e43bfcc3e2ca7d6df9ebfcb87a52ed27088023ea0aed9554e7c49cd6c418a0a7e96f1cb2579e115265849b28fbec16bc01b531a9ffa8d19f49a1a6f062ef21
|
7
|
+
data.tar.gz: 3e6cced31705172b348ec8c6a29d5ab5ab033288d61e8ef8854ee48a31094d475b128f11cb19f4f7068596dde71202c3c8c96ac96698479e1823bf4cec3dbda9
|
@@ -0,0 +1,24 @@
|
|
1
|
+
name: Tests
|
2
|
+
|
3
|
+
on:
|
4
|
+
push:
|
5
|
+
branches: [ master ]
|
6
|
+
pull_request:
|
7
|
+
branches: [ master ]
|
8
|
+
|
9
|
+
jobs:
|
10
|
+
test:
|
11
|
+
strategy:
|
12
|
+
fail-fast: true
|
13
|
+
matrix:
|
14
|
+
os: [ ubuntu-latest, macos-latest ]
|
15
|
+
ruby: ['2.6.6', '2.7.2', '3.0.0 ']
|
16
|
+
runs-on: ${{ matrix.os }}
|
17
|
+
steps:
|
18
|
+
- uses: actions/checkout@v2
|
19
|
+
- uses: ruby/setup-ruby@v1
|
20
|
+
with:
|
21
|
+
ruby-version: ${{ matrix.ruby }}
|
22
|
+
bundler-cache: true
|
23
|
+
- name: Run Tests for Ruby ${{ matrix.ruby }} on ${{ matrix.os }}
|
24
|
+
run: bundle exec rake
|
data/.ruby-version
CHANGED
@@ -1 +1 @@
|
|
1
|
-
|
1
|
+
3.0.0
|
data/CHANGELOG.md
CHANGED
@@ -1,4 +1,61 @@
|
|
1
|
-
#
|
1
|
+
# Changelog
|
2
|
+
|
3
|
+
## [Unreleased](https://github.com/reenhanced/gitreflow/tree/HEAD)
|
4
|
+
|
5
|
+
[Full Changelog](https://github.com/reenhanced/gitreflow/compare/v0.9.4...HEAD)
|
6
|
+
|
7
|
+
**Fixed bugs:**
|
8
|
+
|
9
|
+
- Deprecation warnings with Ruby 2.7.0 [\#239](https://github.com/reenhanced/gitreflow/issues/239)
|
10
|
+
|
11
|
+
## [v0.9.4](https://github.com/reenhanced/gitreflow/tree/v0.9.4) (2020-11-10)
|
12
|
+
|
13
|
+
[Full Changelog](https://github.com/reenhanced/gitreflow/compare/v0.9.3...v0.9.4)
|
14
|
+
|
15
|
+
**Merged pull requests:**
|
16
|
+
|
17
|
+
- Fix critical issue, and update deps [\#245](https://github.com/reenhanced/gitreflow/pull/245) ([codenamev](https://github.com/codenamev))
|
18
|
+
- Fixed typo [\#244](https://github.com/reenhanced/gitreflow/pull/244) ([hsbt](https://github.com/hsbt))
|
19
|
+
|
20
|
+
## [v0.9.3](https://github.com/reenhanced/gitreflow/tree/v0.9.3) (2020-06-02)
|
21
|
+
|
22
|
+
[Full Changelog](https://github.com/reenhanced/gitreflow/compare/v0.9.2...v0.9.3)
|
23
|
+
|
24
|
+
**Implemented enhancements:**
|
25
|
+
|
26
|
+
- Add documention for GitReflow::Config [\#237](https://github.com/reenhanced/gitreflow/issues/237)
|
27
|
+
- Add documentation [\#157](https://github.com/reenhanced/gitreflow/issues/157)
|
28
|
+
|
29
|
+
**Closed issues:**
|
30
|
+
|
31
|
+
- GitHub authentication issues [\#193](https://github.com/reenhanced/gitreflow/issues/193)
|
32
|
+
|
33
|
+
**Merged pull requests:**
|
34
|
+
|
35
|
+
- Upgrade dependencies [\#242](https://github.com/reenhanced/gitreflow/pull/242) ([codenamev](https://github.com/codenamev))
|
36
|
+
- Creates multi-ruby-tests.yml [\#241](https://github.com/reenhanced/gitreflow/pull/241) ([codenamev](https://github.com/codenamev))
|
37
|
+
- Documention for GitReflow::Config [\#238](https://github.com/reenhanced/gitreflow/pull/238) ([PuZZleDucK](https://github.com/PuZZleDucK))
|
38
|
+
- Fixes several issues related to git-reflow setup [\#236](https://github.com/reenhanced/gitreflow/pull/236) ([codenamev](https://github.com/codenamev))
|
39
|
+
|
40
|
+
## [v0.9.2](https://github.com/reenhanced/gitreflow/tree/v0.9.2) (2019-09-10)
|
41
|
+
|
42
|
+
[Full Changelog](https://github.com/reenhanced/gitreflow/compare/v0.9.1...v0.9.2)
|
43
|
+
|
44
|
+
**Closed issues:**
|
45
|
+
|
46
|
+
- Rebase when refreshing? [\#234](https://github.com/reenhanced/gitreflow/issues/234)
|
47
|
+
|
48
|
+
**Merged pull requests:**
|
49
|
+
|
50
|
+
- Update dependencies and trap INT signal [\#235](https://github.com/reenhanced/gitreflow/pull/235) ([codenamev](https://github.com/codenamev))
|
51
|
+
|
52
|
+
## [v0.9.1](https://github.com/reenhanced/gitreflow/tree/v0.9.1) (2019-04-17)
|
53
|
+
|
54
|
+
[Full Changelog](https://github.com/reenhanced/gitreflow/compare/v0.9.0...v0.9.1)
|
55
|
+
|
56
|
+
**Closed issues:**
|
57
|
+
|
58
|
+
- Purpose of core `stage` command? [\#232](https://github.com/reenhanced/gitreflow/issues/232)
|
2
59
|
|
3
60
|
## [v0.9.0](https://github.com/reenhanced/gitreflow/tree/v0.9.0) (2018-11-09)
|
4
61
|
|
@@ -15,6 +72,9 @@
|
|
15
72
|
|
16
73
|
**Closed issues:**
|
17
74
|
|
75
|
+
- ear [\#225](https://github.com/reenhanced/gitreflow/issues/225)
|
76
|
+
- Nokogiri not getting installed:- [\#220](https://github.com/reenhanced/gitreflow/issues/220)
|
77
|
+
- git reflow status returns with 401 - Bad credentials [\#219](https://github.com/reenhanced/gitreflow/issues/219)
|
18
78
|
- No help from git reflow --help [\#118](https://github.com/reenhanced/gitreflow/issues/118)
|
19
79
|
- f has already been specified as a switch in the command deliver \(ArgumentError\) [\#59](https://github.com/reenhanced/gitreflow/issues/59)
|
20
80
|
- Command to edit default commit format [\#51](https://github.com/reenhanced/gitreflow/issues/51)
|
@@ -28,17 +88,19 @@
|
|
28
88
|
- Allow for custom commit/merge message templates [\#223](https://github.com/reenhanced/gitreflow/pull/223) ([codenamev](https://github.com/codenamev))
|
29
89
|
|
30
90
|
## [v0.8.10](https://github.com/reenhanced/gitreflow/tree/v0.8.10) (2018-04-19)
|
91
|
+
|
31
92
|
[Full Changelog](https://github.com/reenhanced/gitreflow/compare/v0.8.9...v0.8.10)
|
32
93
|
|
33
94
|
**Merged pull requests:**
|
34
95
|
|
35
96
|
- Updates rubies and gems [\#221](https://github.com/reenhanced/gitreflow/pull/221) ([codenamev](https://github.com/codenamev))
|
36
|
-
- Remove lingering `
|
97
|
+
- Remove lingering `skip_lgtm` options in favor of `force` option [\#218](https://github.com/reenhanced/gitreflow/pull/218) ([codenamev](https://github.com/codenamev))
|
37
98
|
- Remove dead code [\#217](https://github.com/reenhanced/gitreflow/pull/217) ([codenamev](https://github.com/codenamev))
|
38
99
|
- Updates REAME to Markdown [\#216](https://github.com/reenhanced/gitreflow/pull/216) ([codenamev](https://github.com/codenamev))
|
39
100
|
- Updates readme with details on customization [\#214](https://github.com/reenhanced/gitreflow/pull/214) ([codenamev](https://github.com/codenamev))
|
40
101
|
|
41
102
|
## [v0.8.9](https://github.com/reenhanced/gitreflow/tree/v0.8.9) (2017-04-26)
|
103
|
+
|
42
104
|
[Full Changelog](https://github.com/reenhanced/gitreflow/compare/v0.8.8...v0.8.9)
|
43
105
|
|
44
106
|
**Fixed bugs:**
|
@@ -51,9 +113,11 @@
|
|
51
113
|
- Adds checks for new GH reviews when delivering [\#215](https://github.com/reenhanced/gitreflow/pull/215) ([codenamev](https://github.com/codenamev))
|
52
114
|
|
53
115
|
## [v0.8.8](https://github.com/reenhanced/gitreflow/tree/v0.8.8) (2017-04-24)
|
116
|
+
|
54
117
|
[Full Changelog](https://github.com/reenhanced/gitreflow/compare/v0.8.7...v0.8.8)
|
55
118
|
|
56
119
|
## [v0.8.7](https://github.com/reenhanced/gitreflow/tree/v0.8.7) (2017-04-21)
|
120
|
+
|
57
121
|
[Full Changelog](https://github.com/reenhanced/gitreflow/compare/v0.8.4...v0.8.7)
|
58
122
|
|
59
123
|
**Implemented enhancements:**
|
@@ -71,7 +135,7 @@
|
|
71
135
|
**Merged pull requests:**
|
72
136
|
|
73
137
|
- 0.8.7 [\#213](https://github.com/reenhanced/gitreflow/pull/213) ([nhance](https://github.com/nhance))
|
74
|
-
- Updates Github merge request to use new `
|
138
|
+
- Updates Github merge request to use new `merge_method` param [\#211](https://github.com/reenhanced/gitreflow/pull/211) ([codenamev](https://github.com/codenamev))
|
75
139
|
- Adds a logger to log command runs [\#210](https://github.com/reenhanced/gitreflow/pull/210) ([codenamev](https://github.com/codenamev))
|
76
140
|
- 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
141
|
- Fix loading of PR template from '.github' directory [\#208](https://github.com/reenhanced/gitreflow/pull/208) ([codenamev](https://github.com/codenamev))
|
@@ -80,6 +144,7 @@
|
|
80
144
|
- \[53\] Allow workflows to be loaded from git config [\#199](https://github.com/reenhanced/gitreflow/pull/199) ([codenamev](https://github.com/codenamev))
|
81
145
|
|
82
146
|
## [v0.8.4](https://github.com/reenhanced/gitreflow/tree/v0.8.4) (2016-08-22)
|
147
|
+
|
83
148
|
[Full Changelog](https://github.com/reenhanced/gitreflow/compare/v0.8.3...v0.8.4)
|
84
149
|
|
85
150
|
**Closed issues:**
|
@@ -92,9 +157,11 @@
|
|
92
157
|
- \[53\] Create core workflow module to consolidate commands [\#198](https://github.com/reenhanced/gitreflow/pull/198) ([codenamev](https://github.com/codenamev))
|
93
158
|
|
94
159
|
## [v0.8.3](https://github.com/reenhanced/gitreflow/tree/v0.8.3) (2016-08-04)
|
160
|
+
|
95
161
|
[Full Changelog](https://github.com/reenhanced/gitreflow/compare/v0.8.2...v0.8.3)
|
96
162
|
|
97
163
|
## [v0.8.2](https://github.com/reenhanced/gitreflow/tree/v0.8.2) (2016-08-01)
|
164
|
+
|
98
165
|
[Full Changelog](https://github.com/reenhanced/gitreflow/compare/v0.8.1...v0.8.2)
|
99
166
|
|
100
167
|
**Fixed bugs:**
|
@@ -103,7 +170,6 @@
|
|
103
170
|
|
104
171
|
**Closed issues:**
|
105
172
|
|
106
|
-
- GitHub authentication issues [\#193](https://github.com/reenhanced/gitreflow/issues/193)
|
107
173
|
- non-master base branch does not work for the deliver command [\#192](https://github.com/reenhanced/gitreflow/issues/192)
|
108
174
|
- git-reflow fork command [\#188](https://github.com/reenhanced/gitreflow/issues/188)
|
109
175
|
- Bitbucket setup not working [\#186](https://github.com/reenhanced/gitreflow/issues/186)
|
@@ -123,6 +189,7 @@
|
|
123
189
|
- Respect GitHub pull request template [\#179](https://github.com/reenhanced/gitreflow/pull/179) ([timraasveld](https://github.com/timraasveld))
|
124
190
|
|
125
191
|
## [v0.8.1](https://github.com/reenhanced/gitreflow/tree/v0.8.1) (2016-05-26)
|
192
|
+
|
126
193
|
[Full Changelog](https://github.com/reenhanced/gitreflow/compare/v0.8.0...v0.8.1)
|
127
194
|
|
128
195
|
**Closed issues:**
|
@@ -135,6 +202,7 @@
|
|
135
202
|
- Support for non-master branch [\#73](https://github.com/reenhanced/gitreflow/issues/73)
|
136
203
|
|
137
204
|
## [v0.8.0](https://github.com/reenhanced/gitreflow/tree/v0.8.0) (2016-05-26)
|
205
|
+
|
138
206
|
[Full Changelog](https://github.com/reenhanced/gitreflow/compare/v0.7.5...v0.8.0)
|
139
207
|
|
140
208
|
**Implemented enhancements:**
|
@@ -161,6 +229,7 @@
|
|
161
229
|
- \[issue: 162\] Updating Rspecs: Use "Allow" instead of "Stub" [\#163](https://github.com/reenhanced/gitreflow/pull/163) ([simonzhu24](https://github.com/simonzhu24))
|
162
230
|
|
163
231
|
## [v0.7.5](https://github.com/reenhanced/gitreflow/tree/v0.7.5) (2016-04-14)
|
232
|
+
|
164
233
|
[Full Changelog](https://github.com/reenhanced/gitreflow/compare/v0.7.4...v0.7.5)
|
165
234
|
|
166
235
|
**Implemented enhancements:**
|
@@ -179,6 +248,7 @@
|
|
179
248
|
- Remove unused gitreflow-common [\#155](https://github.com/reenhanced/gitreflow/pull/155) ([pboling](https://github.com/pboling))
|
180
249
|
|
181
250
|
## [v0.7.4](https://github.com/reenhanced/gitreflow/tree/v0.7.4) (2016-04-08)
|
251
|
+
|
182
252
|
[Full Changelog](https://github.com/reenhanced/gitreflow/compare/v0.7.3...v0.7.4)
|
183
253
|
|
184
254
|
**Fixed bugs:**
|
@@ -187,6 +257,7 @@
|
|
187
257
|
- SSL Verification is turned off [\#151](https://github.com/reenhanced/gitreflow/issues/151)
|
188
258
|
|
189
259
|
## [v0.7.3](https://github.com/reenhanced/gitreflow/tree/v0.7.3) (2016-03-24)
|
260
|
+
|
190
261
|
[Full Changelog](https://github.com/reenhanced/gitreflow/compare/v0.7.2...v0.7.3)
|
191
262
|
|
192
263
|
**Fixed bugs:**
|
@@ -200,6 +271,7 @@
|
|
200
271
|
- Store OAuth token somewhere else? [\#54](https://github.com/reenhanced/gitreflow/issues/54)
|
201
272
|
|
202
273
|
## [v0.7.2](https://github.com/reenhanced/gitreflow/tree/v0.7.2) (2016-02-22)
|
274
|
+
|
203
275
|
[Full Changelog](https://github.com/reenhanced/gitreflow/compare/v0.7.1...v0.7.2)
|
204
276
|
|
205
277
|
**Closed issues:**
|
@@ -209,6 +281,7 @@
|
|
209
281
|
- Deliver to custom branch? [\#144](https://github.com/reenhanced/gitreflow/issues/144)
|
210
282
|
|
211
283
|
## [v0.7.1](https://github.com/reenhanced/gitreflow/tree/v0.7.1) (2015-10-27)
|
284
|
+
|
212
285
|
[Full Changelog](https://github.com/reenhanced/gitreflow/compare/v0.7.0...v0.7.1)
|
213
286
|
|
214
287
|
**Merged pull requests:**
|
@@ -216,6 +289,7 @@
|
|
216
289
|
- Fix the ask to open in browser dialog on Mac. [\#143](https://github.com/reenhanced/gitreflow/pull/143) ([squaresurf](https://github.com/squaresurf))
|
217
290
|
|
218
291
|
## [v0.7.0](https://github.com/reenhanced/gitreflow/tree/v0.7.0) (2015-10-14)
|
292
|
+
|
219
293
|
[Full Changelog](https://github.com/reenhanced/gitreflow/compare/v0.6.7...v0.7.0)
|
220
294
|
|
221
295
|
**Fixed bugs:**
|
@@ -227,9 +301,11 @@
|
|
227
301
|
- Command Injection in append\_to\_squashed\_commit\_message. [\#134](https://github.com/reenhanced/gitreflow/issues/134)
|
228
302
|
|
229
303
|
## [v0.6.7](https://github.com/reenhanced/gitreflow/tree/v0.6.7) (2015-09-29)
|
304
|
+
|
230
305
|
[Full Changelog](https://github.com/reenhanced/gitreflow/compare/v0.6.6...v0.6.7)
|
231
306
|
|
232
307
|
## [v0.6.6](https://github.com/reenhanced/gitreflow/tree/v0.6.6) (2015-09-28)
|
308
|
+
|
233
309
|
[Full Changelog](https://github.com/reenhanced/gitreflow/compare/v0.6.5...v0.6.6)
|
234
310
|
|
235
311
|
**Merged pull requests:**
|
@@ -237,6 +313,7 @@
|
|
237
313
|
- Fix review message parsing from editor failed [\#133](https://github.com/reenhanced/gitreflow/pull/133) ([francois](https://github.com/francois))
|
238
314
|
|
239
315
|
## [v0.6.5](https://github.com/reenhanced/gitreflow/tree/v0.6.5) (2015-08-31)
|
316
|
+
|
240
317
|
[Full Changelog](https://github.com/reenhanced/gitreflow/compare/v0.6.4...v0.6.5)
|
241
318
|
|
242
319
|
**Closed issues:**
|
@@ -245,6 +322,7 @@
|
|
245
322
|
- Feature Request: command to cleanly land a contributor's PR [\#128](https://github.com/reenhanced/gitreflow/issues/128)
|
246
323
|
|
247
324
|
## [v0.6.4](https://github.com/reenhanced/gitreflow/tree/v0.6.4) (2015-08-04)
|
325
|
+
|
248
326
|
[Full Changelog](https://github.com/reenhanced/gitreflow/compare/v0.6.3...v0.6.4)
|
249
327
|
|
250
328
|
**Fixed bugs:**
|
@@ -252,6 +330,7 @@
|
|
252
330
|
- reflow needs an lgtm from myself [\#116](https://github.com/reenhanced/gitreflow/issues/116)
|
253
331
|
|
254
332
|
## [v0.6.3](https://github.com/reenhanced/gitreflow/tree/v0.6.3) (2015-08-03)
|
333
|
+
|
255
334
|
[Full Changelog](https://github.com/reenhanced/gitreflow/compare/v0.6.2...v0.6.3)
|
256
335
|
|
257
336
|
**Closed issues:**
|
@@ -260,6 +339,7 @@
|
|
260
339
|
- Error: \#\<NameError: wrong constant name \> [\#120](https://github.com/reenhanced/gitreflow/issues/120)
|
261
340
|
|
262
341
|
## [v0.6.2](https://github.com/reenhanced/gitreflow/tree/v0.6.2) (2015-08-03)
|
342
|
+
|
263
343
|
[Full Changelog](https://github.com/reenhanced/gitreflow/compare/v0.6.1...v0.6.2)
|
264
344
|
|
265
345
|
**Fixed bugs:**
|
@@ -281,6 +361,7 @@
|
|
281
361
|
- Add number attribute to Base:PullRequest [\#110](https://github.com/reenhanced/gitreflow/pull/110) ([tanin47](https://github.com/tanin47))
|
282
362
|
|
283
363
|
## [v0.6.1](https://github.com/reenhanced/gitreflow/tree/v0.6.1) (2015-06-02)
|
364
|
+
|
284
365
|
[Full Changelog](https://github.com/reenhanced/gitreflow/compare/v0.6.0...v0.6.1)
|
285
366
|
|
286
367
|
**Closed issues:**
|
@@ -288,13 +369,11 @@
|
|
288
369
|
- git reflow setup not working [\#106](https://github.com/reenhanced/gitreflow/issues/106)
|
289
370
|
|
290
371
|
## [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
372
|
|
293
|
-
|
294
|
-
|
295
|
-
- new functionality for review [\#99](https://github.com/reenhanced/gitreflow/pull/99) ([meesterdude](https://github.com/meesterdude))
|
373
|
+
[Full Changelog](https://github.com/reenhanced/gitreflow/compare/v0.5.3...v0.6.0)
|
296
374
|
|
297
375
|
## [v0.5.3](https://github.com/reenhanced/gitreflow/tree/v0.5.3) (2015-05-15)
|
376
|
+
|
298
377
|
[Full Changelog](https://github.com/reenhanced/gitreflow/compare/v0.5.2...v0.5.3)
|
299
378
|
|
300
379
|
**Closed issues:**
|
@@ -308,12 +387,15 @@
|
|
308
387
|
- 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
388
|
|
310
389
|
## [v0.5.2](https://github.com/reenhanced/gitreflow/tree/v0.5.2) (2015-04-03)
|
390
|
+
|
311
391
|
[Full Changelog](https://github.com/reenhanced/gitreflow/compare/v0.5.1...v0.5.2)
|
312
392
|
|
313
393
|
## [v0.5.1](https://github.com/reenhanced/gitreflow/tree/v0.5.1) (2015-03-26)
|
394
|
+
|
314
395
|
[Full Changelog](https://github.com/reenhanced/gitreflow/compare/v0.5.0...v0.5.1)
|
315
396
|
|
316
397
|
## [v0.5.0](https://github.com/reenhanced/gitreflow/tree/v0.5.0) (2015-03-26)
|
398
|
+
|
317
399
|
[Full Changelog](https://github.com/reenhanced/gitreflow/compare/v0.4.2...v0.5.0)
|
318
400
|
|
319
401
|
**Fixed bugs:**
|
@@ -325,6 +407,7 @@
|
|
325
407
|
- Changing remote url in \reponame\.git\config to make reflow deliver work [\#75](https://github.com/reenhanced/gitreflow/issues/75)
|
326
408
|
|
327
409
|
## [v0.4.2](https://github.com/reenhanced/gitreflow/tree/v0.4.2) (2015-02-10)
|
410
|
+
|
328
411
|
[Full Changelog](https://github.com/reenhanced/gitreflow/compare/v0.4.1...v0.4.2)
|
329
412
|
|
330
413
|
**Fixed bugs:**
|
@@ -339,6 +422,7 @@
|
|
339
422
|
- Github Enterprise Compatibility [\#42](https://github.com/reenhanced/gitreflow/issues/42)
|
340
423
|
|
341
424
|
## [v0.4.1](https://github.com/reenhanced/gitreflow/tree/v0.4.1) (2014-10-28)
|
425
|
+
|
342
426
|
[Full Changelog](https://github.com/reenhanced/gitreflow/compare/v0.4.0...v0.4.1)
|
343
427
|
|
344
428
|
**Closed issues:**
|
@@ -346,6 +430,7 @@
|
|
346
430
|
- License does not have year and name filled in [\#69](https://github.com/reenhanced/gitreflow/issues/69)
|
347
431
|
|
348
432
|
## [v0.4.0](https://github.com/reenhanced/gitreflow/tree/v0.4.0) (2014-10-16)
|
433
|
+
|
349
434
|
[Full Changelog](https://github.com/reenhanced/gitreflow/compare/v0.3.5...v0.4.0)
|
350
435
|
|
351
436
|
**Merged pull requests:**
|
@@ -354,6 +439,7 @@
|
|
354
439
|
- \[fix\] Show delivery halted message properly [\#63](https://github.com/reenhanced/gitreflow/pull/63) ([shirshendu](https://github.com/shirshendu))
|
355
440
|
|
356
441
|
## [v0.3.5](https://github.com/reenhanced/gitreflow/tree/v0.3.5) (2014-03-05)
|
442
|
+
|
357
443
|
[Full Changelog](https://github.com/reenhanced/gitreflow/compare/v0.3.4...v0.3.5)
|
358
444
|
|
359
445
|
**Closed issues:**
|
@@ -370,6 +456,7 @@
|
|
370
456
|
- 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
457
|
|
372
458
|
## [v0.3.4](https://github.com/reenhanced/gitreflow/tree/v0.3.4) (2013-11-01)
|
459
|
+
|
373
460
|
[Full Changelog](https://github.com/reenhanced/gitreflow/compare/v0.3.3...v0.3.4)
|
374
461
|
|
375
462
|
**Fixed bugs:**
|
@@ -382,6 +469,7 @@
|
|
382
469
|
- Print all git commands [\#43](https://github.com/reenhanced/gitreflow/issues/43)
|
383
470
|
|
384
471
|
## [v0.3.3](https://github.com/reenhanced/gitreflow/tree/v0.3.3) (2013-10-16)
|
472
|
+
|
385
473
|
[Full Changelog](https://github.com/reenhanced/gitreflow/compare/v0.3.2...v0.3.3)
|
386
474
|
|
387
475
|
**Closed issues:**
|
@@ -390,37 +478,48 @@
|
|
390
478
|
|
391
479
|
**Merged pull requests:**
|
392
480
|
|
393
|
-
- Fix --skip-lgtm option was never passed to the
|
481
|
+
- 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
482
|
|
395
483
|
## [v0.3.2](https://github.com/reenhanced/gitreflow/tree/v0.3.2) (2013-07-25)
|
484
|
+
|
396
485
|
[Full Changelog](https://github.com/reenhanced/gitreflow/compare/v0.3.1...v0.3.2)
|
397
486
|
|
398
487
|
## [v0.3.1](https://github.com/reenhanced/gitreflow/tree/v0.3.1) (2013-07-12)
|
488
|
+
|
399
489
|
[Full Changelog](https://github.com/reenhanced/gitreflow/compare/v0.3...v0.3.1)
|
400
490
|
|
401
491
|
## [v0.3](https://github.com/reenhanced/gitreflow/tree/v0.3) (2013-07-12)
|
492
|
+
|
402
493
|
[Full Changelog](https://github.com/reenhanced/gitreflow/compare/v0.2.5...v0.3)
|
403
494
|
|
404
495
|
## [v0.2.5](https://github.com/reenhanced/gitreflow/tree/v0.2.5) (2013-03-04)
|
496
|
+
|
405
497
|
[Full Changelog](https://github.com/reenhanced/gitreflow/compare/v0.2.5-with-tests...v0.2.5)
|
406
498
|
|
407
499
|
## [v0.2.5-with-tests](https://github.com/reenhanced/gitreflow/tree/v0.2.5-with-tests) (2013-03-04)
|
500
|
+
|
408
501
|
[Full Changelog](https://github.com/reenhanced/gitreflow/compare/v0.2.4...v0.2.5-with-tests)
|
409
502
|
|
410
503
|
## [v0.2.4](https://github.com/reenhanced/gitreflow/tree/v0.2.4) (2012-09-21)
|
504
|
+
|
411
505
|
[Full Changelog](https://github.com/reenhanced/gitreflow/compare/v0.2.2...v0.2.4)
|
412
506
|
|
413
507
|
## [v0.2.2](https://github.com/reenhanced/gitreflow/tree/v0.2.2) (2012-09-17)
|
508
|
+
|
414
509
|
[Full Changelog](https://github.com/reenhanced/gitreflow/compare/v0.2.1...v0.2.2)
|
415
510
|
|
416
511
|
## [v0.2.1](https://github.com/reenhanced/gitreflow/tree/v0.2.1) (2012-08-30)
|
512
|
+
|
417
513
|
[Full Changelog](https://github.com/reenhanced/gitreflow/compare/v0.2...v0.2.1)
|
418
514
|
|
419
515
|
## [v0.2](https://github.com/reenhanced/gitreflow/tree/v0.2) (2012-08-28)
|
516
|
+
|
517
|
+
[Full Changelog](https://github.com/reenhanced/gitreflow/compare/e84b48641d5ec6f5d87674c9152830e08ffe1b76...v0.2)
|
518
|
+
|
420
519
|
**Merged pull requests:**
|
421
520
|
|
422
521
|
- Adds documentation to reflow [\#13](https://github.com/reenhanced/gitreflow/pull/13) ([nhance](https://github.com/nhance))
|
423
522
|
|
424
523
|
|
425
524
|
|
426
|
-
\* *This
|
525
|
+
\* *This Changelog was automatically generated by [github_changelog_generator](https://github.com/github-changelog-generator/github-changelog-generator)*
|
data/Gemfile.lock
CHANGED
@@ -1,111 +1,185 @@
|
|
1
1
|
PATH
|
2
2
|
remote: .
|
3
3
|
specs:
|
4
|
-
git_reflow (0.9.
|
5
|
-
|
6
|
-
|
4
|
+
git_reflow (0.9.5)
|
5
|
+
bundler (>= 1.10.0)
|
6
|
+
codenamev_bitbucket_api (= 0.4.1)
|
7
|
+
colorize (>= 0.8.1)
|
8
|
+
github_api (= 0.19)
|
7
9
|
highline
|
8
10
|
httpclient
|
9
|
-
reenhanced_bitbucket_api (= 0.3.2)
|
10
11
|
|
11
12
|
GEM
|
12
13
|
remote: https://rubygems.org/
|
13
14
|
specs:
|
14
|
-
|
15
|
-
|
15
|
+
activesupport (6.1.3)
|
16
|
+
concurrent-ruby (~> 1.0, >= 1.0.2)
|
17
|
+
i18n (>= 1.6, < 2)
|
18
|
+
minitest (>= 5.1)
|
19
|
+
tzinfo (~> 2.0)
|
20
|
+
zeitwerk (~> 2.3)
|
21
|
+
addressable (2.7.0)
|
22
|
+
public_suffix (>= 2.0.2, < 5.0)
|
23
|
+
appraisal (2.4.0)
|
16
24
|
bundler
|
17
25
|
rake
|
18
26
|
thor (>= 0.14.0)
|
19
|
-
|
27
|
+
async (1.28.9)
|
28
|
+
console (~> 1.10)
|
29
|
+
nio4r (~> 2.3)
|
30
|
+
timers (~> 4.1)
|
31
|
+
async-http (0.54.1)
|
32
|
+
async (~> 1.25)
|
33
|
+
async-io (~> 1.28)
|
34
|
+
async-pool (~> 0.2)
|
35
|
+
protocol-http (~> 0.21.0)
|
36
|
+
protocol-http1 (~> 0.13.0)
|
37
|
+
protocol-http2 (~> 0.14.0)
|
38
|
+
async-http-faraday (0.9.0)
|
39
|
+
async-http (~> 0.42)
|
40
|
+
faraday
|
41
|
+
async-io (1.30.2)
|
42
|
+
async (~> 1.14)
|
43
|
+
async-pool (0.3.5)
|
44
|
+
async (~> 1.25)
|
45
|
+
byebug (11.1.3)
|
20
46
|
chronic (0.10.2)
|
21
|
-
|
47
|
+
codenamev_bitbucket_api (0.4.1)
|
48
|
+
faraday (< 2.0)
|
49
|
+
faraday_middleware (< 2.0)
|
50
|
+
hashie
|
51
|
+
multi_json (< 2.0)
|
52
|
+
nokogiri (>= 1.5.2)
|
53
|
+
simple_oauth (>= 0.3.0)
|
54
|
+
coderay (1.1.3)
|
22
55
|
colorize (0.8.1)
|
23
|
-
|
24
|
-
|
56
|
+
concurrent-ruby (1.1.8)
|
57
|
+
console (1.10.1)
|
58
|
+
fiber-local
|
59
|
+
crack (0.4.5)
|
60
|
+
rexml
|
25
61
|
descendants_tracker (0.0.4)
|
26
62
|
thread_safe (~> 0.3, >= 0.3.1)
|
27
|
-
diff-lcs (1.
|
28
|
-
faraday (
|
63
|
+
diff-lcs (1.4.4)
|
64
|
+
faraday (1.3.0)
|
65
|
+
faraday-net_http (~> 1.0)
|
29
66
|
multipart-post (>= 1.2, < 3)
|
30
|
-
|
31
|
-
|
32
|
-
|
67
|
+
ruby2_keywords
|
68
|
+
faraday-http-cache (2.2.0)
|
69
|
+
faraday (>= 0.8)
|
70
|
+
faraday-net_http (1.0.1)
|
71
|
+
faraday_middleware (1.0.0)
|
72
|
+
faraday (~> 1.0)
|
73
|
+
fiber-local (1.0.0)
|
74
|
+
github_api (0.19.0)
|
33
75
|
addressable (~> 2.4)
|
34
76
|
descendants_tracker (~> 0.0.4)
|
35
|
-
faraday (
|
77
|
+
faraday (>= 0.8, < 2)
|
36
78
|
hashie (~> 3.5, >= 3.5.2)
|
37
79
|
oauth2 (~> 1.0)
|
38
|
-
|
80
|
+
github_changelog_generator (1.16.1)
|
81
|
+
activesupport
|
82
|
+
async (>= 1.25.0)
|
83
|
+
async-http-faraday
|
84
|
+
faraday-http-cache
|
85
|
+
multi_json
|
86
|
+
octokit (~> 4.6)
|
87
|
+
rainbow (>= 2.2.1)
|
88
|
+
rake (>= 10.0)
|
89
|
+
retriable (~> 3.0)
|
90
|
+
hashdiff (1.0.1)
|
39
91
|
hashie (3.6.0)
|
40
|
-
highline (2.0.
|
92
|
+
highline (2.0.3)
|
41
93
|
httpclient (2.8.3)
|
42
|
-
|
43
|
-
|
44
|
-
|
45
|
-
|
94
|
+
i18n (1.8.9)
|
95
|
+
concurrent-ruby (~> 1.0)
|
96
|
+
jwt (2.2.2)
|
97
|
+
method_source (1.0.0)
|
98
|
+
mini_portile2 (2.5.0)
|
99
|
+
minitest (5.14.4)
|
100
|
+
multi_json (1.15.0)
|
46
101
|
multi_xml (0.6.0)
|
47
|
-
multipart-post (2.
|
48
|
-
|
49
|
-
|
50
|
-
|
51
|
-
|
102
|
+
multipart-post (2.1.1)
|
103
|
+
nio4r (2.5.7)
|
104
|
+
nokogiri (1.11.2)
|
105
|
+
mini_portile2 (~> 2.5.0)
|
106
|
+
racc (~> 1.4)
|
107
|
+
oauth2 (1.4.7)
|
108
|
+
faraday (>= 0.8, < 2.0)
|
52
109
|
jwt (>= 1.0, < 3.0)
|
53
110
|
multi_json (~> 1.3)
|
54
111
|
multi_xml (~> 0.5)
|
55
112
|
rack (>= 1.2, < 3)
|
56
|
-
|
57
|
-
|
58
|
-
|
59
|
-
|
60
|
-
|
61
|
-
|
62
|
-
|
63
|
-
|
64
|
-
|
65
|
-
|
66
|
-
|
67
|
-
|
68
|
-
|
69
|
-
|
70
|
-
|
71
|
-
|
72
|
-
|
73
|
-
|
74
|
-
|
75
|
-
|
76
|
-
|
77
|
-
|
78
|
-
|
113
|
+
octokit (4.20.0)
|
114
|
+
faraday (>= 0.9)
|
115
|
+
sawyer (~> 0.8.0, >= 0.5.3)
|
116
|
+
protocol-hpack (1.4.2)
|
117
|
+
protocol-http (0.21.0)
|
118
|
+
protocol-http1 (0.13.2)
|
119
|
+
protocol-http (~> 0.19)
|
120
|
+
protocol-http2 (0.14.2)
|
121
|
+
protocol-hpack (~> 1.4)
|
122
|
+
protocol-http (~> 0.18)
|
123
|
+
pry (0.13.1)
|
124
|
+
coderay (~> 1.1)
|
125
|
+
method_source (~> 1.0)
|
126
|
+
public_suffix (4.0.6)
|
127
|
+
racc (1.5.2)
|
128
|
+
rack (2.2.3)
|
129
|
+
rainbow (3.0.0)
|
130
|
+
rake (13.0.3)
|
131
|
+
rdoc (6.3.0)
|
132
|
+
retriable (3.1.2)
|
133
|
+
rexml (3.2.4)
|
134
|
+
rspec (3.10.0)
|
135
|
+
rspec-core (~> 3.10.0)
|
136
|
+
rspec-expectations (~> 3.10.0)
|
137
|
+
rspec-mocks (~> 3.10.0)
|
138
|
+
rspec-core (3.10.1)
|
139
|
+
rspec-support (~> 3.10.0)
|
140
|
+
rspec-expectations (3.10.1)
|
79
141
|
diff-lcs (>= 1.2.0, < 2.0)
|
80
|
-
rspec-support (~> 3.
|
81
|
-
rspec-mocks (3.
|
142
|
+
rspec-support (~> 3.10.0)
|
143
|
+
rspec-mocks (3.10.2)
|
82
144
|
diff-lcs (>= 1.2.0, < 2.0)
|
83
|
-
rspec-support (~> 3.
|
84
|
-
rspec-support (3.
|
85
|
-
|
145
|
+
rspec-support (~> 3.10.0)
|
146
|
+
rspec-support (3.10.2)
|
147
|
+
ruby2_keywords (0.0.4)
|
148
|
+
ruby_jard (0.3.1)
|
149
|
+
byebug (>= 9.1, < 12.0)
|
150
|
+
pry (~> 0.13.0)
|
151
|
+
tty-screen (~> 0.8.1)
|
152
|
+
sawyer (0.8.2)
|
153
|
+
addressable (>= 2.3.5)
|
154
|
+
faraday (> 0.8, < 2.0)
|
86
155
|
simple_oauth (0.3.1)
|
87
|
-
thor (
|
156
|
+
thor (1.1.0)
|
88
157
|
thread_safe (0.3.6)
|
89
|
-
|
158
|
+
timers (4.3.3)
|
159
|
+
tty-screen (0.8.1)
|
160
|
+
tzinfo (2.0.4)
|
161
|
+
concurrent-ruby (~> 1.0)
|
162
|
+
webmock (3.12.1)
|
90
163
|
addressable (>= 2.3.6)
|
91
164
|
crack (>= 0.3.2)
|
92
|
-
hashdiff
|
93
|
-
wwtd (1.
|
165
|
+
hashdiff (>= 0.4.0, < 2.0.0)
|
166
|
+
wwtd (1.4.0)
|
167
|
+
zeitwerk (2.4.2)
|
94
168
|
|
95
169
|
PLATFORMS
|
96
170
|
ruby
|
97
171
|
|
98
172
|
DEPENDENCIES
|
99
|
-
appraisal (= 2.
|
100
|
-
bundler (~> 1.16)
|
173
|
+
appraisal (= 2.4.0)
|
101
174
|
chronic
|
102
175
|
git_reflow!
|
103
|
-
|
104
|
-
rake (~>
|
176
|
+
github_changelog_generator
|
177
|
+
rake (~> 13.0.3)
|
105
178
|
rdoc
|
106
|
-
rspec (~> 3.
|
179
|
+
rspec (~> 3.10)
|
180
|
+
ruby_jard
|
107
181
|
webmock
|
108
|
-
wwtd (= 1.
|
182
|
+
wwtd (= 1.4)
|
109
183
|
|
110
184
|
BUNDLED WITH
|
111
|
-
|
185
|
+
2.2.4
|