@oclif/plugin-update 3.0.0 → 3.0.1
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.
- package/oclif.manifest.json +1 -1
- package/package.json +4 -4
- package/CHANGELOG.md +0 -504
package/oclif.manifest.json
CHANGED
@@ -1 +1 @@
|
|
1
|
-
{"version":"3.0.
|
1
|
+
{"version":"3.0.1","commands":{"update":{"id":"update","description":"update the <%= config.bin %> CLI","strict":true,"pluginName":"@oclif/plugin-update","pluginAlias":"@oclif/plugin-update","pluginType":"core","aliases":[],"examples":[{"description":"Update to the stable channel:","command":"<%= config.bin %> <%= command.id %> stable"},{"description":"Update to a specific version:","command":"<%= config.bin %> <%= command.id %> --version 1.0.0"},{"description":"Interactively select version:","command":"<%= config.bin %> <%= command.id %> --interactive"},{"description":"See available versions:","command":"<%= config.bin %> <%= command.id %> --available"}],"flags":{"autoupdate":{"name":"autoupdate","type":"boolean","hidden":true,"allowNo":false},"available":{"name":"available","type":"boolean","char":"a","description":"Install a specific version.","allowNo":false},"version":{"name":"version","type":"option","char":"v","description":"Install a specific version.","multiple":false,"exclusive":["interactive"]},"interactive":{"name":"interactive","type":"boolean","char":"i","description":"Interactively select version to install. This is ignored if a channel is provided.","allowNo":false,"exclusive":["version"]},"force":{"name":"force","type":"boolean","description":"Force a re-download of the requested version.","allowNo":false}},"args":[{"name":"channel"}]}}}
|
package/package.json
CHANGED
@@ -1,11 +1,11 @@
|
|
1
1
|
{
|
2
2
|
"name": "@oclif/plugin-update",
|
3
|
-
"version": "3.0.
|
3
|
+
"version": "3.0.1",
|
4
4
|
"author": "Salesforce",
|
5
5
|
"bugs": "https://github.com/oclif/plugin-update/issues",
|
6
6
|
"dependencies": {
|
7
7
|
"@oclif/color": "^1.0.0",
|
8
|
-
"@oclif/core": "^1.
|
8
|
+
"@oclif/core": "^1.16.4",
|
9
9
|
"cross-spawn": "^7.0.3",
|
10
10
|
"debug": "^4.3.1",
|
11
11
|
"filesize": "^6.1.0",
|
@@ -28,7 +28,7 @@
|
|
28
28
|
"@types/inquirer": "^8.2.0",
|
29
29
|
"@types/lodash.throttle": "^4.1.6",
|
30
30
|
"@types/mocha": "^9",
|
31
|
-
"@types/node": "^14.
|
31
|
+
"@types/node": "^14.18.30",
|
32
32
|
"@types/semver": "^7.3.4",
|
33
33
|
"@types/supports-color": "^7.2.0",
|
34
34
|
"@types/write-json-file": "^3.2.1",
|
@@ -81,4 +81,4 @@
|
|
81
81
|
"build": "rm -rf lib && tsc"
|
82
82
|
},
|
83
83
|
"main": "lib/index.js"
|
84
|
-
}
|
84
|
+
}
|
package/CHANGELOG.md
DELETED
@@ -1,504 +0,0 @@
|
|
1
|
-
# Changelog
|
2
|
-
|
3
|
-
All notable changes to this project will be documented in this file. See [standard-version](https://github.com/conventional-changelog/standard-version) for commit guidelines.
|
4
|
-
|
5
|
-
## [3.0.0](https://github.com/oclif/plugin-update/compare/v2.2.0...v3.0.0) (2022-02-11)
|
6
|
-
|
7
|
-
|
8
|
-
### ⚠ BREAKING CHANGES
|
9
|
-
|
10
|
-
* rename --from-local to --local
|
11
|
-
|
12
|
-
* chore: update examples
|
13
|
-
|
14
|
-
* feat!: remove --local flag
|
15
|
-
* remove --local flag
|
16
|
-
|
17
|
-
* refactor: Updater
|
18
|
-
|
19
|
-
* fix: handle non-existent version index
|
20
|
-
|
21
|
-
* chore: code review
|
22
|
-
|
23
|
-
* chore: update test
|
24
|
-
|
25
|
-
* fix: skip preupdate hook if using --hard
|
26
|
-
|
27
|
-
* fix: update root after hard update
|
28
|
-
|
29
|
-
* fix: works with sf
|
30
|
-
|
31
|
-
* fix: replace --hard with --force
|
32
|
-
|
33
|
-
* chore: update examples
|
34
|
-
|
35
|
-
* chore: bump to 3.0.0
|
36
|
-
|
37
|
-
* BREAKING CHANGE: add new update features (#368) ([091c176](https://github.com/oclif/plugin-update/commit/091c176ef639a7a0c991ab1b726e832783670324)), closes [#368](https://github.com/oclif/plugin-update/issues/368)
|
38
|
-
|
39
|
-
## [2.2.0](https://github.com/oclif/plugin-update/compare/v2.1.5...v2.2.0) (2022-01-28)
|
40
|
-
|
41
|
-
|
42
|
-
### Features
|
43
|
-
|
44
|
-
* remove cli-ux ([#364](https://github.com/oclif/plugin-update/issues/364)) ([980c612](https://github.com/oclif/plugin-update/commit/980c6121846a9201da4071f6edc2afc0219751f6))
|
45
|
-
|
46
|
-
### [2.1.5](https://github.com/oclif/plugin-update/compare/v2.1.4...v2.1.5) (2022-01-06)
|
47
|
-
|
48
|
-
|
49
|
-
### Bug Fixes
|
50
|
-
|
51
|
-
* add main to package.json ([#361](https://github.com/oclif/plugin-update/issues/361)) ([9daade3](https://github.com/oclif/plugin-update/commit/9daade340a102a8e0a57ae8a278b3803daf32117))
|
52
|
-
|
53
|
-
### [2.1.4](https://github.com/oclif/plugin-update/compare/v2.1.3...v2.1.4) (2022-01-06)
|
54
|
-
|
55
|
-
|
56
|
-
### Bug Fixes
|
57
|
-
|
58
|
-
* bump @oclif/core ([#360](https://github.com/oclif/plugin-update/issues/360)) ([749b949](https://github.com/oclif/plugin-update/commit/749b949e8127a5b594f28fe7468c1e13440f9817))
|
59
|
-
|
60
|
-
### [2.1.3](https://github.com/oclif/plugin-update/compare/v2.1.2...v2.1.3) (2021-12-09)
|
61
|
-
|
62
|
-
### [2.1.2](https://github.com/oclif/plugin-update/compare/v2.1.1...v2.1.2) (2021-12-08)
|
63
|
-
|
64
|
-
|
65
|
-
### Bug Fixes
|
66
|
-
|
67
|
-
* bump deps-main ([#343](https://github.com/oclif/plugin-update/issues/343)) ([8f110df](https://github.com/oclif/plugin-update/commit/8f110dfe7a69931466cd30510014c99eee624e50))
|
68
|
-
|
69
|
-
### [2.1.1](https://github.com/oclif/plugin-update/compare/v2.1.0...v2.1.1) (2021-12-02)
|
70
|
-
|
71
|
-
|
72
|
-
### Bug Fixes
|
73
|
-
|
74
|
-
* apply v2 deps ([#342](https://github.com/oclif/plugin-update/issues/342)) ([ea1abfa](https://github.com/oclif/plugin-update/commit/ea1abfab9840523636dbf55f183cbf8b6e46d501))
|
75
|
-
|
76
|
-
## [2.1.0](https://github.com/oclif/plugin-update/compare/v2.0.0...v2.1.0) (2021-11-23)
|
77
|
-
|
78
|
-
|
79
|
-
### Features
|
80
|
-
|
81
|
-
* remove legacy update logic ([#314](https://github.com/oclif/plugin-update/issues/314)) ([5241c20](https://github.com/oclif/plugin-update/commit/5241c20dc4eea215bfdedfccecc2e4acf3d3465b))
|
82
|
-
|
83
|
-
## [1.5.0](https://github.com/oclif/plugin-update/compare/v1.4.0...v1.5.0) (2021-08-05)
|
84
|
-
|
85
|
-
## [1.4.0](https://github.com/oclif/plugin-update/compare/v1.4.0-3...v1.4.0) (2021-08-05)
|
86
|
-
|
87
|
-
|
88
|
-
### Bug Fixes
|
89
|
-
|
90
|
-
* allow 6 weeks before deleting CLIs ([#286](https://github.com/oclif/plugin-update/issues/286)) ([2ffc92a](https://github.com/oclif/plugin-update/commit/2ffc92a3687fd8e9ed939c59c6721d08ec7e6fa1))
|
91
|
-
|
92
|
-
## [1.3.9](https://github.com/oclif/plugin-update/compare/v1.3.8...v1.3.9) (2018-11-26)
|
93
|
-
|
94
|
-
|
95
|
-
### Bug Fixes
|
96
|
-
|
97
|
-
* clarify ([e19392f](https://github.com/oclif/plugin-update/commit/e19392f))
|
98
|
-
|
99
|
-
## [1.3.8](https://github.com/oclif/plugin-update/compare/v1.3.7...v1.3.8) (2018-11-26)
|
100
|
-
|
101
|
-
|
102
|
-
### Bug Fixes
|
103
|
-
|
104
|
-
* Parse update manifests if the response is a string ([#48](https://github.com/oclif/plugin-update/issues/48)) ([757b5a5](https://github.com/oclif/plugin-update/commit/757b5a5))
|
105
|
-
|
106
|
-
## [1.3.7](https://github.com/oclif/plugin-update/compare/v1.3.6...v1.3.7) (2018-11-12)
|
107
|
-
|
108
|
-
|
109
|
-
### Bug Fixes
|
110
|
-
|
111
|
-
* warn if not updatable ([#44](https://github.com/oclif/plugin-update/issues/44)) ([947d454](https://github.com/oclif/plugin-update/commit/947d454))
|
112
|
-
|
113
|
-
## [1.3.6](https://github.com/oclif/plugin-update/compare/v1.3.5...v1.3.6) (2018-10-26)
|
114
|
-
|
115
|
-
|
116
|
-
### Bug Fixes
|
117
|
-
|
118
|
-
* add basedir template vars ([f11ab5a](https://github.com/oclif/plugin-update/commit/f11ab5a))
|
119
|
-
|
120
|
-
## [1.3.5](https://github.com/oclif/plugin-update/compare/v1.3.4...v1.3.5) (2018-10-24)
|
121
|
-
|
122
|
-
|
123
|
-
### Bug Fixes
|
124
|
-
|
125
|
-
* Fallback to templates for s3 gz url and baseDir ([#46](https://github.com/oclif/plugin-update/issues/46)) ([bd7ab36](https://github.com/oclif/plugin-update/commit/bd7ab36))
|
126
|
-
|
127
|
-
## [1.3.4](https://github.com/oclif/plugin-update/compare/v1.3.3...v1.3.4) (2018-10-13)
|
128
|
-
|
129
|
-
|
130
|
-
### Bug Fixes
|
131
|
-
|
132
|
-
* remove greenkeeper badge ([0083b70](https://github.com/oclif/plugin-update/commit/0083b70))
|
133
|
-
|
134
|
-
## [1.3.3](https://github.com/oclif/plugin-update/compare/v1.3.2...v1.3.3) (2018-10-08)
|
135
|
-
|
136
|
-
|
137
|
-
### Bug Fixes
|
138
|
-
|
139
|
-
* Add preupdate hook ([#45](https://github.com/oclif/plugin-update/issues/45)) ([a0eb4dd](https://github.com/oclif/plugin-update/commit/a0eb4dd))
|
140
|
-
|
141
|
-
## [1.3.2](https://github.com/oclif/plugin-update/compare/v1.3.1...v1.3.2) (2018-09-14)
|
142
|
-
|
143
|
-
|
144
|
-
### Bug Fixes
|
145
|
-
|
146
|
-
* updated deps ([c4ec1eb](https://github.com/oclif/plugin-update/commit/c4ec1eb))
|
147
|
-
|
148
|
-
## [1.3.1](https://github.com/oclif/plugin-update/compare/v1.3.0...v1.3.1) (2018-08-17)
|
149
|
-
|
150
|
-
|
151
|
-
### Bug Fixes
|
152
|
-
|
153
|
-
* updated semver ([0ed2213](https://github.com/oclif/plugin-update/commit/0ed2213))
|
154
|
-
* use greenkeeper-lockfile@2 ([c945949](https://github.com/oclif/plugin-update/commit/c945949))
|
155
|
-
|
156
|
-
# [1.3.0](https://github.com/oclif/plugin-update/compare/v1.2.14...v1.3.0) (2018-08-17)
|
157
|
-
|
158
|
-
|
159
|
-
### Bug Fixes
|
160
|
-
|
161
|
-
* lint issue ([3ed8ed1](https://github.com/oclif/plugin-update/commit/3ed8ed1))
|
162
|
-
|
163
|
-
|
164
|
-
### Features
|
165
|
-
|
166
|
-
* typescript 3.0 ([5af67f5](https://github.com/oclif/plugin-update/commit/5af67f5))
|
167
|
-
|
168
|
-
## [1.2.14](https://github.com/oclif/plugin-update/compare/v1.2.13...v1.2.14) (2018-06-29)
|
169
|
-
|
170
|
-
|
171
|
-
### Bug Fixes
|
172
|
-
|
173
|
-
* switch to [@oclif](https://github.com/oclif)/color ([7d103d3](https://github.com/oclif/plugin-update/commit/7d103d3))
|
174
|
-
|
175
|
-
## [1.2.13](https://github.com/oclif/plugin-update/compare/v1.2.12...v1.2.13) (2018-06-19)
|
176
|
-
|
177
|
-
|
178
|
-
### Bug Fixes
|
179
|
-
|
180
|
-
* updated dev-cli ([17efe31](https://github.com/oclif/plugin-update/commit/17efe31))
|
181
|
-
|
182
|
-
## [1.2.12](https://github.com/oclif/plugin-update/compare/v1.2.11...v1.2.12) (2018-06-19)
|
183
|
-
|
184
|
-
|
185
|
-
### Bug Fixes
|
186
|
-
|
187
|
-
* use OCLIF_CLIENT_HOME if exists ([#25](https://github.com/oclif/plugin-update/issues/25)) ([8b761b6](https://github.com/oclif/plugin-update/commit/8b761b6))
|
188
|
-
|
189
|
-
## [1.2.11](https://github.com/oclif/plugin-update/compare/v1.2.10...v1.2.11) (2018-06-12)
|
190
|
-
|
191
|
-
|
192
|
-
### Bug Fixes
|
193
|
-
|
194
|
-
* touch update before tidying ([df4d75f](https://github.com/oclif/plugin-update/commit/df4d75f))
|
195
|
-
|
196
|
-
## [1.2.10](https://github.com/oclif/plugin-update/compare/v1.2.9...v1.2.10) (2018-06-12)
|
197
|
-
|
198
|
-
|
199
|
-
### Bug Fixes
|
200
|
-
|
201
|
-
* updated deps ([aee668c](https://github.com/oclif/plugin-update/commit/aee668c))
|
202
|
-
|
203
|
-
## [1.2.9](https://github.com/oclif/plugin-update/compare/v1.2.8...v1.2.9) (2018-06-12)
|
204
|
-
|
205
|
-
|
206
|
-
### Bug Fixes
|
207
|
-
|
208
|
-
* updated deps ([11a059f](https://github.com/oclif/plugin-update/commit/11a059f))
|
209
|
-
|
210
|
-
<a name="1.2.8"></a>
|
211
|
-
## [1.2.8](https://github.com/oclif/plugin-update/compare/v1.2.7...v1.2.8) (2018-06-01)
|
212
|
-
|
213
|
-
|
214
|
-
### Bug Fixes
|
215
|
-
|
216
|
-
* typescript 2.9 ([dfac3c3](https://github.com/oclif/plugin-update/commit/dfac3c3))
|
217
|
-
|
218
|
-
<a name="1.2.7"></a>
|
219
|
-
## [1.2.7](https://github.com/oclif/plugin-update/compare/v1.2.6...v1.2.7) (2018-05-29)
|
220
|
-
|
221
|
-
|
222
|
-
### Bug Fixes
|
223
|
-
|
224
|
-
* update beta daily and stable bi-weekly ([66aa6f2](https://github.com/oclif/plugin-update/commit/66aa6f2))
|
225
|
-
|
226
|
-
<a name="1.2.6"></a>
|
227
|
-
## [1.2.6](https://github.com/oclif/plugin-update/compare/v1.2.5...v1.2.6) (2018-05-24)
|
228
|
-
|
229
|
-
|
230
|
-
### Bug Fixes
|
231
|
-
|
232
|
-
* ensure client directory is not a file ([665c6e0](https://github.com/oclif/plugin-update/commit/665c6e0))
|
233
|
-
|
234
|
-
<a name="1.2.5"></a>
|
235
|
-
## [1.2.5](https://github.com/oclif/plugin-update/compare/v1.2.4...v1.2.5) (2018-05-24)
|
236
|
-
|
237
|
-
|
238
|
-
### Bug Fixes
|
239
|
-
|
240
|
-
* updated deps ([62bb88e](https://github.com/oclif/plugin-update/commit/62bb88e))
|
241
|
-
|
242
|
-
<a name="1.2.4"></a>
|
243
|
-
## [1.2.4](https://github.com/oclif/plugin-update/compare/v1.2.3...v1.2.4) (2018-05-14)
|
244
|
-
|
245
|
-
|
246
|
-
### Bug Fixes
|
247
|
-
|
248
|
-
* updated deps ([d9f96fd](https://github.com/oclif/plugin-update/commit/d9f96fd))
|
249
|
-
|
250
|
-
<a name="1.2.3"></a>
|
251
|
-
## [1.2.3](https://github.com/oclif/plugin-update/compare/v1.2.2...v1.2.3) (2018-05-10)
|
252
|
-
|
253
|
-
|
254
|
-
### Bug Fixes
|
255
|
-
|
256
|
-
* updated cli-ux ([4b3d500](https://github.com/oclif/plugin-update/commit/4b3d500))
|
257
|
-
|
258
|
-
<a name="1.2.2"></a>
|
259
|
-
## [1.2.2](https://github.com/oclif/plugin-update/compare/v1.2.1...v1.2.2) (2018-05-09)
|
260
|
-
|
261
|
-
|
262
|
-
### Bug Fixes
|
263
|
-
|
264
|
-
* disable autoupdates entirely when env var is set ([8328b4f](https://github.com/oclif/plugin-update/commit/8328b4f))
|
265
|
-
|
266
|
-
<a name="1.2.1"></a>
|
267
|
-
## [1.2.1](https://github.com/oclif/plugin-update/compare/v1.2.0...v1.2.1) (2018-05-04)
|
268
|
-
|
269
|
-
|
270
|
-
### Bug Fixes
|
271
|
-
|
272
|
-
* check UPDATE_INSTRUCTIONS env var ([459e9f2](https://github.com/oclif/plugin-update/commit/459e9f2))
|
273
|
-
|
274
|
-
<a name="1.2.0"></a>
|
275
|
-
# [1.2.0](https://github.com/oclif/plugin-update/compare/v1.1.21...v1.2.0) (2018-05-04)
|
276
|
-
|
277
|
-
|
278
|
-
### Features
|
279
|
-
|
280
|
-
* add current directory for debugging ([9776dcc](https://github.com/oclif/plugin-update/commit/9776dcc))
|
281
|
-
|
282
|
-
<a name="1.1.21"></a>
|
283
|
-
## [1.1.21](https://github.com/oclif/plugin-update/compare/v1.1.20...v1.1.21) (2018-05-03)
|
284
|
-
|
285
|
-
|
286
|
-
### Bug Fixes
|
287
|
-
|
288
|
-
* manifest ([d0d55b9](https://github.com/oclif/plugin-update/commit/d0d55b9))
|
289
|
-
* manifest ([def2bbf](https://github.com/oclif/plugin-update/commit/def2bbf))
|
290
|
-
* updated deps ([b7f8076](https://github.com/oclif/plugin-update/commit/b7f8076))
|
291
|
-
* updated deps ([52a4094](https://github.com/oclif/plugin-update/commit/52a4094))
|
292
|
-
|
293
|
-
<a name="1.1.20"></a>
|
294
|
-
## [1.1.20](https://github.com/oclif/plugin-update/compare/v1.1.19...v1.1.20) (2018-05-01)
|
295
|
-
|
296
|
-
|
297
|
-
### Bug Fixes
|
298
|
-
|
299
|
-
* updated deps ([0c8b7f9](https://github.com/oclif/plugin-update/commit/0c8b7f9))
|
300
|
-
|
301
|
-
<a name="1.1.19"></a>
|
302
|
-
## [1.1.19](https://github.com/oclif/plugin-update/compare/v1.1.18...v1.1.19) (2018-04-25)
|
303
|
-
|
304
|
-
|
305
|
-
### Bug Fixes
|
306
|
-
|
307
|
-
* increase update check time ([49c4b1f](https://github.com/oclif/plugin-update/commit/49c4b1f))
|
308
|
-
|
309
|
-
<a name="1.1.18"></a>
|
310
|
-
## [1.1.18](https://github.com/oclif/plugin-update/compare/v1.1.17...v1.1.18) (2018-04-24)
|
311
|
-
|
312
|
-
|
313
|
-
### Bug Fixes
|
314
|
-
|
315
|
-
* default to config.bin if no binPath ([914e0e1](https://github.com/oclif/plugin-update/commit/914e0e1))
|
316
|
-
|
317
|
-
<a name="1.1.17"></a>
|
318
|
-
## [1.1.17](https://github.com/oclif/plugin-update/compare/v1.1.16...v1.1.17) (2018-04-21)
|
319
|
-
|
320
|
-
|
321
|
-
### Bug Fixes
|
322
|
-
|
323
|
-
* only show waiting message once ([5c75700](https://github.com/oclif/plugin-update/commit/5c75700))
|
324
|
-
|
325
|
-
<a name="1.1.16"></a>
|
326
|
-
## [1.1.16](https://github.com/oclif/plugin-update/compare/v1.1.15...v1.1.16) (2018-04-21)
|
327
|
-
|
328
|
-
|
329
|
-
### Bug Fixes
|
330
|
-
|
331
|
-
* improve filesize output ([966756e](https://github.com/oclif/plugin-update/commit/966756e))
|
332
|
-
|
333
|
-
<a name="1.1.15"></a>
|
334
|
-
## [1.1.15](https://github.com/oclif/plugin-update/compare/v1.1.14...v1.1.15) (2018-04-20)
|
335
|
-
|
336
|
-
|
337
|
-
### Bug Fixes
|
338
|
-
|
339
|
-
* enable tidy script ([08eb1b0](https://github.com/oclif/plugin-update/commit/08eb1b0))
|
340
|
-
|
341
|
-
<a name="1.1.14"></a>
|
342
|
-
## [1.1.14](https://github.com/oclif/plugin-update/compare/v1.1.13...v1.1.14) (2018-04-20)
|
343
|
-
|
344
|
-
|
345
|
-
### Bug Fixes
|
346
|
-
|
347
|
-
* debounce fix ([241646d](https://github.com/oclif/plugin-update/commit/241646d))
|
348
|
-
|
349
|
-
<a name="1.1.13"></a>
|
350
|
-
## [1.1.13](https://github.com/oclif/plugin-update/compare/v1.1.12...v1.1.13) (2018-04-20)
|
351
|
-
|
352
|
-
|
353
|
-
### Bug Fixes
|
354
|
-
|
355
|
-
* setlocal ([d17e2b4](https://github.com/oclif/plugin-update/commit/d17e2b4))
|
356
|
-
* setlocal ([665dda9](https://github.com/oclif/plugin-update/commit/665dda9))
|
357
|
-
|
358
|
-
<a name="1.1.12"></a>
|
359
|
-
## [1.1.12](https://github.com/oclif/plugin-update/compare/v1.1.11...v1.1.12) (2018-04-20)
|
360
|
-
|
361
|
-
|
362
|
-
### Bug Fixes
|
363
|
-
|
364
|
-
* set binpath ([371bc32](https://github.com/oclif/plugin-update/commit/371bc32))
|
365
|
-
|
366
|
-
<a name="1.1.11"></a>
|
367
|
-
## [1.1.11](https://github.com/oclif/plugin-update/compare/v1.1.10...v1.1.11) (2018-04-19)
|
368
|
-
|
369
|
-
|
370
|
-
### Bug Fixes
|
371
|
-
|
372
|
-
* pause/resume stream ([b937c61](https://github.com/oclif/plugin-update/commit/b937c61))
|
373
|
-
* synchronously check for path exists ([357ea6f](https://github.com/oclif/plugin-update/commit/357ea6f))
|
374
|
-
|
375
|
-
<a name="1.1.10"></a>
|
376
|
-
## [1.1.10](https://github.com/oclif/plugin-update/compare/v1.1.9...v1.1.10) (2018-04-19)
|
377
|
-
|
378
|
-
|
379
|
-
### Bug Fixes
|
380
|
-
|
381
|
-
* use unix output format ([2b8c765](https://github.com/oclif/plugin-update/commit/2b8c765))
|
382
|
-
|
383
|
-
<a name="1.1.9"></a>
|
384
|
-
## [1.1.9](https://github.com/oclif/plugin-update/compare/v1.1.8...v1.1.9) (2018-04-19)
|
385
|
-
|
386
|
-
|
387
|
-
### Bug Fixes
|
388
|
-
|
389
|
-
* updated deps ([c598e29](https://github.com/oclif/plugin-update/commit/c598e29))
|
390
|
-
|
391
|
-
<a name="1.1.8"></a>
|
392
|
-
## [1.1.8](https://github.com/oclif/plugin-update/compare/v1.1.7...v1.1.8) (2018-04-10)
|
393
|
-
|
394
|
-
|
395
|
-
### Bug Fixes
|
396
|
-
|
397
|
-
* bump circle cache to fix postpack step ([5bd3194](https://github.com/oclif/plugin-update/commit/5bd3194))
|
398
|
-
|
399
|
-
<a name="1.1.7"></a>
|
400
|
-
## [1.1.7](https://github.com/oclif/plugin-update/compare/v1.1.6...v1.1.7) (2018-04-10)
|
401
|
-
|
402
|
-
|
403
|
-
### Bug Fixes
|
404
|
-
|
405
|
-
* updated deps ([6ca6677](https://github.com/oclif/plugin-update/commit/6ca6677))
|
406
|
-
|
407
|
-
<a name="1.1.6"></a>
|
408
|
-
## [1.1.6](https://github.com/oclif/plugin-update/compare/v1.1.5...v1.1.6) (2018-04-10)
|
409
|
-
|
410
|
-
|
411
|
-
### Bug Fixes
|
412
|
-
|
413
|
-
* updated dev-cli ([06b455d](https://github.com/oclif/plugin-update/commit/06b455d))
|
414
|
-
* updated dev-cli ([0fd606b](https://github.com/oclif/plugin-update/commit/0fd606b))
|
415
|
-
* use target tarball ([701e8c7](https://github.com/oclif/plugin-update/commit/701e8c7))
|
416
|
-
|
417
|
-
<a name="1.1.5"></a>
|
418
|
-
## [1.1.5](https://github.com/oclif/plugin-update/compare/v1.1.4...v1.1.5) (2018-04-09)
|
419
|
-
|
420
|
-
|
421
|
-
### Bug Fixes
|
422
|
-
|
423
|
-
* updated deps ([652c354](https://github.com/oclif/plugin-update/commit/652c354))
|
424
|
-
|
425
|
-
<a name="1.1.4"></a>
|
426
|
-
## [1.1.4](https://github.com/oclif/plugin-update/compare/v1.1.3...v1.1.4) (2018-04-09)
|
427
|
-
|
428
|
-
|
429
|
-
### Bug Fixes
|
430
|
-
|
431
|
-
* do not allow updates when binPath is not set ([939a321](https://github.com/oclif/plugin-update/commit/939a321))
|
432
|
-
|
433
|
-
<a name="1.1.3"></a>
|
434
|
-
## [1.1.3](https://github.com/oclif/plugin-update/compare/v1.1.2...v1.1.3) (2018-04-09)
|
435
|
-
|
436
|
-
|
437
|
-
### Bug Fixes
|
438
|
-
|
439
|
-
* add baseDir templates ([f354979](https://github.com/oclif/plugin-update/commit/f354979))
|
440
|
-
|
441
|
-
<a name="1.1.2"></a>
|
442
|
-
## [1.1.2](https://github.com/oclif/plugin-update/compare/v1.1.1...v1.1.2) (2018-04-09)
|
443
|
-
|
444
|
-
|
445
|
-
### Bug Fixes
|
446
|
-
|
447
|
-
* use version string for channel ([f0095c3](https://github.com/oclif/plugin-update/commit/f0095c3))
|
448
|
-
|
449
|
-
<a name="1.1.1"></a>
|
450
|
-
## [1.1.1](https://github.com/oclif/plugin-update/compare/v1.1.0...v1.1.1) (2018-04-09)
|
451
|
-
|
452
|
-
|
453
|
-
### Bug Fixes
|
454
|
-
|
455
|
-
* add targets ([68f6fa8](https://github.com/oclif/plugin-update/commit/68f6fa8))
|
456
|
-
* npm pack on circle ([9ca2c9c](https://github.com/oclif/plugin-update/commit/9ca2c9c))
|
457
|
-
* updater fixes ([c65c556](https://github.com/oclif/plugin-update/commit/c65c556))
|
458
|
-
* updater seems to be working ([9b3e33b](https://github.com/oclif/plugin-update/commit/9b3e33b))
|
459
|
-
|
460
|
-
<a name="1.1.0"></a>
|
461
|
-
# [1.1.0](https://github.com/oclif/plugin-update/compare/v1.0.5...v1.1.0) (2018-04-07)
|
462
|
-
|
463
|
-
|
464
|
-
### Bug Fixes
|
465
|
-
|
466
|
-
* fixed github check ([7fe3d42](https://github.com/oclif/plugin-update/commit/7fe3d42))
|
467
|
-
|
468
|
-
|
469
|
-
### Features
|
470
|
-
|
471
|
-
* added github updater ([cbd2a4f](https://github.com/oclif/plugin-update/commit/cbd2a4f))
|
472
|
-
|
473
|
-
<a name="1.0.5"></a>
|
474
|
-
## [1.0.5](https://github.com/oclif/plugin-update/compare/v1.0.4...v1.0.5) (2018-04-07)
|
475
|
-
|
476
|
-
|
477
|
-
### Bug Fixes
|
478
|
-
|
479
|
-
* added test stub ([b2b25aa](https://github.com/oclif/plugin-update/commit/b2b25aa))
|
480
|
-
* ran generator ([0b308d1](https://github.com/oclif/plugin-update/commit/0b308d1))
|
481
|
-
|
482
|
-
<a name="1.0.4"></a>
|
483
|
-
## [1.0.4](https://github.com/oclif/plugin-update/compare/e8dd1e98a7806d1a67f5294034fb5b99d6012222...v1.0.4) (2018-04-07)
|
484
|
-
|
485
|
-
|
486
|
-
### Bug Fixes
|
487
|
-
|
488
|
-
* updated deps ([f652abd](https://github.com/oclif/plugin-update/commit/f652abd))
|
489
|
-
|
490
|
-
<a name="1.0.3"></a>
|
491
|
-
## [1.0.3](https://github.com/oclif/plugin-update/compare/bd0256816d53dd4b56618871741d56c7b3b1d7ca...v1.0.3) (2018-02-28)
|
492
|
-
|
493
|
-
|
494
|
-
### Bug Fixes
|
495
|
-
|
496
|
-
* updated deps ([e8dd1e9](https://github.com/oclif/plugin-update/commit/e8dd1e9))
|
497
|
-
|
498
|
-
<a name="1.0.2"></a>
|
499
|
-
## [1.0.2](https://github.com/oclif/plugin-update/compare/v1.0.1...v1.0.2) (2018-02-13)
|
500
|
-
|
501
|
-
|
502
|
-
### Bug Fixes
|
503
|
-
|
504
|
-
* use pjson channel ([bd02568](https://github.com/oclif/plugin-update/commit/bd02568))
|