@verdaccio/local-storage 10.0.0-next.1 → 10.0.7
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/lib/index.js +1 -1
- package/lib/index.js.map +1 -0
- package/lib/local-database.d.ts +4 -28
- package/lib/local-database.js +43 -159
- package/lib/local-database.js.map +1 -0
- package/lib/local-fs.d.ts +1 -1
- package/lib/local-fs.js +36 -72
- package/lib/local-fs.js.map +1 -0
- package/lib/pkg-utils.js +2 -2
- package/lib/pkg-utils.js.map +1 -0
- package/lib/token.d.ts +12 -0
- package/lib/token.js +116 -0
- package/lib/token.js.map +1 -0
- package/lib/utils.js +1 -1
- package/lib/utils.js.map +1 -0
- package/package.json +20 -23
- package/CHANGELOG.md +0 -437
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@verdaccio/local-storage",
|
|
3
|
-
"version": "10.0.
|
|
3
|
+
"version": "10.0.7",
|
|
4
4
|
"description": "Local storage implementation",
|
|
5
5
|
"keywords": [
|
|
6
6
|
"plugin",
|
|
@@ -31,36 +31,33 @@
|
|
|
31
31
|
"node": ">=8"
|
|
32
32
|
},
|
|
33
33
|
"dependencies": {
|
|
34
|
-
"@verdaccio/commons-api": "
|
|
35
|
-
"@verdaccio/file-locking": "
|
|
36
|
-
"@verdaccio/streams": "
|
|
34
|
+
"@verdaccio/commons-api": "10.0.1",
|
|
35
|
+
"@verdaccio/file-locking": "10.0.0",
|
|
36
|
+
"@verdaccio/streams": "10.0.0",
|
|
37
37
|
"async": "3.2.0",
|
|
38
|
-
"
|
|
39
|
-
"lodash": "4.17.
|
|
40
|
-
"
|
|
38
|
+
"debug": "4.3.1",
|
|
39
|
+
"lodash": "4.17.21",
|
|
40
|
+
"lowdb": "1.0.0",
|
|
41
|
+
"mkdirp": "1.0.4"
|
|
41
42
|
},
|
|
42
43
|
"devDependencies": {
|
|
43
44
|
"@types/minimatch": "^3.0.3",
|
|
44
|
-
"@
|
|
45
|
-
"@verdaccio/
|
|
46
|
-
"@verdaccio/types": "^9.3.0",
|
|
45
|
+
"@types/node": "^13.1.1",
|
|
46
|
+
"@verdaccio/types": "10.0.0",
|
|
47
47
|
"minimatch": "^3.0.4",
|
|
48
48
|
"rmdir-sync": "^1.0.1"
|
|
49
49
|
},
|
|
50
|
-
"scripts": {
|
|
51
|
-
"coverage:publish": "codecov --root=../../ -F plugins",
|
|
52
|
-
"build": "npm run build:types && npm run build:js",
|
|
53
|
-
"build:js": "babel src/ --out-dir lib --extensions \".ts,.tsx\" --source-maps inline",
|
|
54
|
-
"build:types": "tsc --emitDeclarationOnly",
|
|
55
|
-
"lint": "eslint \"**/*.{js,ts}\"",
|
|
56
|
-
"lint:stage": "lint-staged",
|
|
57
|
-
"test": "jest",
|
|
58
|
-
"type-check": "tsc --noEmit",
|
|
59
|
-
"type-check:watch": "npm run type-check -- --watch"
|
|
60
|
-
},
|
|
61
50
|
"funding": {
|
|
62
51
|
"type": "opencollective",
|
|
63
52
|
"url": "https://opencollective.com/verdaccio"
|
|
64
53
|
},
|
|
65
|
-
"
|
|
66
|
-
|
|
54
|
+
"scripts": {
|
|
55
|
+
"clean": "rimraf ./build",
|
|
56
|
+
"test": "cross-env NODE_ENV=test BABEL_ENV=test jest",
|
|
57
|
+
"type-check": "tsc --noEmit -p tsconfig.build.json",
|
|
58
|
+
"build:types": "tsc --emitDeclarationOnly -p tsconfig.build.json",
|
|
59
|
+
"build:js": "babel src/ --out-dir lib/ --copy-files --extensions \".ts,.tsx\" --source-maps",
|
|
60
|
+
"watch": "pnpm build:js -- --watch",
|
|
61
|
+
"build": "pnpm run build:js && pnpm run build:types"
|
|
62
|
+
}
|
|
63
|
+
}
|
package/CHANGELOG.md
DELETED
|
@@ -1,437 +0,0 @@
|
|
|
1
|
-
# Change Log
|
|
2
|
-
|
|
3
|
-
All notable changes to this project will be documented in this file.
|
|
4
|
-
See [Conventional Commits](https://conventionalcommits.org) for commit guidelines.
|
|
5
|
-
|
|
6
|
-
# [10.0.0-next.1](https://github.com/verdaccio/monorepo/compare/v10.0.0-next.0...v10.0.0-next.1) (2020-04-12)
|
|
7
|
-
|
|
8
|
-
**Note:** Version bump only for package @verdaccio/local-storage
|
|
9
|
-
|
|
10
|
-
|
|
11
|
-
|
|
12
|
-
|
|
13
|
-
|
|
14
|
-
# [10.0.0-next.0](https://github.com/verdaccio/monorepo/compare/v9.4.0...v10.0.0-next.0) (2020-03-28)
|
|
15
|
-
|
|
16
|
-
|
|
17
|
-
### chore
|
|
18
|
-
|
|
19
|
-
* update tools dependencies and deprecate Node 8 ([61e23d5](https://github.com/verdaccio/monorepo/commit/61e23d53b82c6948601f28337fdd3054b9336914))
|
|
20
|
-
|
|
21
|
-
|
|
22
|
-
### BREAKING CHANGES
|
|
23
|
-
|
|
24
|
-
* New minimum Node version supported is 10.x. Also, new Prettier minimum version is 2.0.2
|
|
25
|
-
|
|
26
|
-
|
|
27
|
-
|
|
28
|
-
|
|
29
|
-
|
|
30
|
-
# [9.4.0](https://github.com/verdaccio/monorepo/compare/v9.3.4...v9.4.0) (2020-03-21)
|
|
31
|
-
|
|
32
|
-
**Note:** Version bump only for package @verdaccio/local-storage
|
|
33
|
-
|
|
34
|
-
|
|
35
|
-
|
|
36
|
-
|
|
37
|
-
|
|
38
|
-
## [9.3.4](https://github.com/verdaccio/monorepo/compare/v9.3.3...v9.3.4) (2020-03-11)
|
|
39
|
-
|
|
40
|
-
|
|
41
|
-
### Bug Fixes
|
|
42
|
-
|
|
43
|
-
* update mkdirp@1.0.3 ([#341](https://github.com/verdaccio/monorepo/issues/341)) ([96db337](https://github.com/verdaccio/monorepo/commit/96db3378a4f2334ec89cfb113af95e9a3a6eb050))
|
|
44
|
-
|
|
45
|
-
|
|
46
|
-
|
|
47
|
-
|
|
48
|
-
|
|
49
|
-
## [9.3.2](https://github.com/verdaccio/monorepo/compare/v9.3.1...v9.3.2) (2020-03-08)
|
|
50
|
-
|
|
51
|
-
|
|
52
|
-
### Bug Fixes
|
|
53
|
-
|
|
54
|
-
* update dependencies ([#332](https://github.com/verdaccio/monorepo/issues/332)) ([b6165ae](https://github.com/verdaccio/monorepo/commit/b6165aea9b7e4012477081eae68bfa7159c58f56))
|
|
55
|
-
|
|
56
|
-
|
|
57
|
-
|
|
58
|
-
|
|
59
|
-
|
|
60
|
-
## [9.3.1](https://github.com/verdaccio/monorepo/compare/v9.3.0...v9.3.1) (2020-02-23)
|
|
61
|
-
|
|
62
|
-
**Note:** Version bump only for package @verdaccio/local-storage
|
|
63
|
-
|
|
64
|
-
|
|
65
|
-
|
|
66
|
-
|
|
67
|
-
|
|
68
|
-
# [9.3.0](https://github.com/verdaccio/monorepo/compare/v9.2.0...v9.3.0) (2020-01-29)
|
|
69
|
-
|
|
70
|
-
**Note:** Version bump only for package @verdaccio/local-storage
|
|
71
|
-
|
|
72
|
-
|
|
73
|
-
|
|
74
|
-
|
|
75
|
-
|
|
76
|
-
# [9.0.0](https://github.com/verdaccio/monorepo/compare/v8.5.3...v9.0.0) (2020-01-07)
|
|
77
|
-
|
|
78
|
-
|
|
79
|
-
### Bug Fixes
|
|
80
|
-
|
|
81
|
-
* prevent circular structure exception ([#312](https://github.com/verdaccio/monorepo/issues/312)) ([f565461](https://github.com/verdaccio/monorepo/commit/f565461f5bb2873467eeb4372a12fbf4a4974d17))
|
|
82
|
-
|
|
83
|
-
|
|
84
|
-
|
|
85
|
-
|
|
86
|
-
|
|
87
|
-
## [8.5.2](https://github.com/verdaccio/monorepo/compare/v8.5.1...v8.5.2) (2019-12-25)
|
|
88
|
-
|
|
89
|
-
**Note:** Version bump only for package @verdaccio/local-storage
|
|
90
|
-
|
|
91
|
-
|
|
92
|
-
|
|
93
|
-
|
|
94
|
-
|
|
95
|
-
## [8.5.1](https://github.com/verdaccio/monorepo/compare/v8.5.0...v8.5.1) (2019-12-24)
|
|
96
|
-
|
|
97
|
-
**Note:** Version bump only for package @verdaccio/local-storage
|
|
98
|
-
|
|
99
|
-
|
|
100
|
-
|
|
101
|
-
|
|
102
|
-
|
|
103
|
-
# [8.5.0](https://github.com/verdaccio/monorepo/compare/v8.4.2...v8.5.0) (2019-12-22)
|
|
104
|
-
|
|
105
|
-
**Note:** Version bump only for package @verdaccio/local-storage
|
|
106
|
-
|
|
107
|
-
|
|
108
|
-
|
|
109
|
-
|
|
110
|
-
|
|
111
|
-
## [8.4.2](https://github.com/verdaccio/monorepo/compare/v8.4.1...v8.4.2) (2019-11-23)
|
|
112
|
-
|
|
113
|
-
**Note:** Version bump only for package @verdaccio/local-storage
|
|
114
|
-
|
|
115
|
-
|
|
116
|
-
|
|
117
|
-
|
|
118
|
-
|
|
119
|
-
## [8.4.1](https://github.com/verdaccio/monorepo/compare/v8.4.0...v8.4.1) (2019-11-22)
|
|
120
|
-
|
|
121
|
-
**Note:** Version bump only for package @verdaccio/local-storage
|
|
122
|
-
|
|
123
|
-
|
|
124
|
-
|
|
125
|
-
|
|
126
|
-
|
|
127
|
-
# [8.4.0](https://github.com/verdaccio/monorepo/compare/v8.3.0...v8.4.0) (2019-11-22)
|
|
128
|
-
|
|
129
|
-
**Note:** Version bump only for package @verdaccio/local-storage
|
|
130
|
-
|
|
131
|
-
|
|
132
|
-
|
|
133
|
-
|
|
134
|
-
|
|
135
|
-
# [8.3.0](https://github.com/verdaccio/monorepo/compare/v8.2.0...v8.3.0) (2019-10-27)
|
|
136
|
-
|
|
137
|
-
**Note:** Version bump only for package @verdaccio/local-storage
|
|
138
|
-
|
|
139
|
-
|
|
140
|
-
|
|
141
|
-
|
|
142
|
-
|
|
143
|
-
# [8.2.0](https://github.com/verdaccio/monorepo/compare/v8.2.0-next.0...v8.2.0) (2019-10-23)
|
|
144
|
-
|
|
145
|
-
**Note:** Version bump only for package @verdaccio/local-storage
|
|
146
|
-
|
|
147
|
-
|
|
148
|
-
|
|
149
|
-
|
|
150
|
-
|
|
151
|
-
# [8.2.0-next.0](https://github.com/verdaccio/monorepo/compare/v8.1.4...v8.2.0-next.0) (2019-10-08)
|
|
152
|
-
|
|
153
|
-
|
|
154
|
-
### Bug Fixes
|
|
155
|
-
|
|
156
|
-
* fixed lint errors ([5e677f7](https://github.com/verdaccio/monorepo/commit/5e677f7))
|
|
157
|
-
|
|
158
|
-
|
|
159
|
-
|
|
160
|
-
|
|
161
|
-
|
|
162
|
-
## [8.1.2](https://github.com/verdaccio/monorepo/compare/v8.1.1...v8.1.2) (2019-09-29)
|
|
163
|
-
|
|
164
|
-
**Note:** Version bump only for package @verdaccio/local-storage
|
|
165
|
-
|
|
166
|
-
|
|
167
|
-
|
|
168
|
-
|
|
169
|
-
|
|
170
|
-
## [8.1.1](https://github.com/verdaccio/monorepo/compare/v8.1.0...v8.1.1) (2019-09-26)
|
|
171
|
-
|
|
172
|
-
**Note:** Version bump only for package @verdaccio/local-storage
|
|
173
|
-
|
|
174
|
-
|
|
175
|
-
|
|
176
|
-
|
|
177
|
-
|
|
178
|
-
# [8.1.0](https://github.com/verdaccio/monorepo/compare/v8.0.1-next.1...v8.1.0) (2019-09-07)
|
|
179
|
-
|
|
180
|
-
**Note:** Version bump only for package @verdaccio/local-storage
|
|
181
|
-
|
|
182
|
-
|
|
183
|
-
|
|
184
|
-
|
|
185
|
-
|
|
186
|
-
## [8.0.1-next.1](https://github.com/verdaccio/monorepo/compare/v8.0.1-next.0...v8.0.1-next.1) (2019-08-29)
|
|
187
|
-
|
|
188
|
-
**Note:** Version bump only for package @verdaccio/local-storage
|
|
189
|
-
|
|
190
|
-
|
|
191
|
-
|
|
192
|
-
|
|
193
|
-
|
|
194
|
-
## [8.0.1-next.0](https://github.com/verdaccio/monorepo/compare/v8.0.0...v8.0.1-next.0) (2019-08-29)
|
|
195
|
-
|
|
196
|
-
**Note:** Version bump only for package @verdaccio/local-storage
|
|
197
|
-
|
|
198
|
-
|
|
199
|
-
|
|
200
|
-
|
|
201
|
-
|
|
202
|
-
# [8.0.0](https://github.com/verdaccio/monorepo/compare/v8.0.0-next.4...v8.0.0) (2019-08-22)
|
|
203
|
-
|
|
204
|
-
**Note:** Version bump only for package @verdaccio/local-storage
|
|
205
|
-
|
|
206
|
-
|
|
207
|
-
|
|
208
|
-
|
|
209
|
-
|
|
210
|
-
# [8.0.0-next.4](https://github.com/verdaccio/monorepo/compare/v8.0.0-next.3...v8.0.0-next.4) (2019-08-18)
|
|
211
|
-
|
|
212
|
-
**Note:** Version bump only for package @verdaccio/local-storage
|
|
213
|
-
|
|
214
|
-
|
|
215
|
-
|
|
216
|
-
|
|
217
|
-
|
|
218
|
-
# [8.0.0-next.3](https://github.com/verdaccio/monorepo/compare/v8.0.0-next.2...v8.0.0-next.3) (2019-08-16)
|
|
219
|
-
|
|
220
|
-
|
|
221
|
-
### Bug Fixes
|
|
222
|
-
|
|
223
|
-
* restore closure ([32b9d7e](https://github.com/verdaccio/monorepo/commit/32b9d7e))
|
|
224
|
-
* **build:** error on types for fs callback ([cc35acb](https://github.com/verdaccio/monorepo/commit/cc35acb))
|
|
225
|
-
* Add DATE and VERSION in search result ([e352b75](https://github.com/verdaccio/monorepo/commit/e352b75))
|
|
226
|
-
* avoid open write stream if resource exist [#1191](https://github.com/verdaccio/monorepo/issues/1191) ([f041d3f](https://github.com/verdaccio/monorepo/commit/f041d3f))
|
|
227
|
-
* bug fixing integration ([6c75ac8](https://github.com/verdaccio/monorepo/commit/6c75ac8))
|
|
228
|
-
* build before publish ([cd6c7ff](https://github.com/verdaccio/monorepo/commit/cd6c7ff))
|
|
229
|
-
* check whether path exist before return result ([a4d2af1](https://github.com/verdaccio/monorepo/commit/a4d2af1))
|
|
230
|
-
* flow issues ([f42a284](https://github.com/verdaccio/monorepo/commit/f42a284))
|
|
231
|
-
* ignore flow on this one, we need it ([c8e0b2b](https://github.com/verdaccio/monorepo/commit/c8e0b2b))
|
|
232
|
-
* local storage requires package.json file for read, save and create all the time ([33c847b](https://github.com/verdaccio/monorepo/commit/33c847b))
|
|
233
|
-
* migration from main repository merge [#306](https://github.com/verdaccio/monorepo/issues/306) ([8fbe86e](https://github.com/verdaccio/monorepo/commit/8fbe86e))
|
|
234
|
-
* missing callback ([abfc422](https://github.com/verdaccio/monorepo/commit/abfc422))
|
|
235
|
-
* missing error code ([7121939](https://github.com/verdaccio/monorepo/commit/7121939))
|
|
236
|
-
* move to local storage the fs location handler ([3b12083](https://github.com/verdaccio/monorepo/commit/3b12083))
|
|
237
|
-
* mtimeMs is not backward compatible ([c6f74eb](https://github.com/verdaccio/monorepo/commit/c6f74eb))
|
|
238
|
-
* remove temp file whether is emtpy and fails ([655102f](https://github.com/verdaccio/monorepo/commit/655102f))
|
|
239
|
-
* remove uncessary async ([3e3e3a6](https://github.com/verdaccio/monorepo/commit/3e3e3a6))
|
|
240
|
-
* remove unused parameters ([554e301](https://github.com/verdaccio/monorepo/commit/554e301))
|
|
241
|
-
* restore build path ([4902042](https://github.com/verdaccio/monorepo/commit/4902042))
|
|
242
|
-
* return time as milliseconds ([15467ba](https://github.com/verdaccio/monorepo/commit/15467ba))
|
|
243
|
-
* sync after set secret ([2abae4f](https://github.com/verdaccio/monorepo/commit/2abae4f))
|
|
244
|
-
* temp files are written into the storage ([89a1dc8](https://github.com/verdaccio/monorepo/commit/89a1dc8))
|
|
245
|
-
* unit test ([995a27c](https://github.com/verdaccio/monorepo/commit/995a27c))
|
|
246
|
-
* update @verdaccio/file-locking@1.0.0 ([9bd36f0](https://github.com/verdaccio/monorepo/commit/9bd36f0))
|
|
247
|
-
* update lodash types ([184466c](https://github.com/verdaccio/monorepo/commit/184466c))
|
|
248
|
-
|
|
249
|
-
|
|
250
|
-
### Features
|
|
251
|
-
|
|
252
|
-
* token support with level.js ([#168](https://github.com/verdaccio/monorepo/issues/168)) ([ca877ff](https://github.com/verdaccio/monorepo/commit/ca877ff))
|
|
253
|
-
* **build:** standardize build ([33fe090](https://github.com/verdaccio/monorepo/commit/33fe090))
|
|
254
|
-
* change new db name to verdaccio ([#83](https://github.com/verdaccio/monorepo/issues/83)) ([edfca9f](https://github.com/verdaccio/monorepo/commit/edfca9f))
|
|
255
|
-
* drop node v6 support ([664f288](https://github.com/verdaccio/monorepo/commit/664f288))
|
|
256
|
-
* implement search ([2e2bb32](https://github.com/verdaccio/monorepo/commit/2e2bb32))
|
|
257
|
-
* migrate to typescript ([c439d25](https://github.com/verdaccio/monorepo/commit/c439d25))
|
|
258
|
-
* update database method with callbacks ([ef202a9](https://github.com/verdaccio/monorepo/commit/ef202a9))
|
|
259
|
-
* update minor dependencies ([007b026](https://github.com/verdaccio/monorepo/commit/007b026))
|
|
260
|
-
|
|
261
|
-
|
|
262
|
-
|
|
263
|
-
|
|
264
|
-
|
|
265
|
-
# Changelog
|
|
266
|
-
|
|
267
|
-
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.
|
|
268
|
-
|
|
269
|
-
## [2.3.0](https://github.com/verdaccio/local-storage/compare/v2.2.1...v2.3.0) (2019-08-13)
|
|
270
|
-
|
|
271
|
-
|
|
272
|
-
### Bug Fixes
|
|
273
|
-
|
|
274
|
-
* restore closure ([8ec27f2](https://github.com/verdaccio/local-storage/commit/8ec27f2))
|
|
275
|
-
|
|
276
|
-
|
|
277
|
-
### Features
|
|
278
|
-
|
|
279
|
-
* add logging for each method ([3c915c7](https://github.com/verdaccio/local-storage/commit/3c915c7))
|
|
280
|
-
* token support with level.js ([#168](https://github.com/verdaccio/local-storage/issues/168)) ([16727bd](https://github.com/verdaccio/local-storage/commit/16727bd))
|
|
281
|
-
|
|
282
|
-
### [2.2.1](https://github.com/verdaccio/local-storage/compare/v2.2.0...v2.2.1) (2019-06-30)
|
|
283
|
-
|
|
284
|
-
|
|
285
|
-
### Bug Fixes
|
|
286
|
-
|
|
287
|
-
* **build:** error on types for fs callback ([774d808](https://github.com/verdaccio/local-storage/commit/774d808))
|
|
288
|
-
|
|
289
|
-
|
|
290
|
-
|
|
291
|
-
## [2.2.0](https://github.com/verdaccio/local-storage/compare/v2.1.0...v2.2.0) (2019-06-30)
|
|
292
|
-
|
|
293
|
-
|
|
294
|
-
### Features
|
|
295
|
-
|
|
296
|
-
* **build:** standardize build ([eba832e](https://github.com/verdaccio/local-storage/commit/eba832e))
|
|
297
|
-
|
|
298
|
-
|
|
299
|
-
|
|
300
|
-
# [2.1.0](https://github.com/verdaccio/local-storage/compare/v2.0.0...v2.1.0) (2019-03-29)
|
|
301
|
-
|
|
302
|
-
|
|
303
|
-
### Bug Fixes
|
|
304
|
-
|
|
305
|
-
* remove uncessary async ([23a09f3](https://github.com/verdaccio/local-storage/commit/23a09f3))
|
|
306
|
-
|
|
307
|
-
|
|
308
|
-
### Features
|
|
309
|
-
|
|
310
|
-
* drop node v6 support ([ef548e0](https://github.com/verdaccio/local-storage/commit/ef548e0))
|
|
311
|
-
|
|
312
|
-
|
|
313
|
-
|
|
314
|
-
# [2.0.0](https://github.com/verdaccio/local-storage/compare/v2.0.0-beta.3...v2.0.0) (2019-03-29)
|
|
315
|
-
|
|
316
|
-
|
|
317
|
-
|
|
318
|
-
<a name="2.0.0-beta.3"></a>
|
|
319
|
-
# [2.0.0-beta.3](https://github.com/verdaccio/local-storage/compare/v2.0.0-beta.2...v2.0.0-beta.3) (2019-02-24)
|
|
320
|
-
|
|
321
|
-
|
|
322
|
-
### Bug Fixes
|
|
323
|
-
|
|
324
|
-
* update [@verdaccio](https://github.com/verdaccio)/file-locking@1.0.0 ([587245d](https://github.com/verdaccio/local-storage/commit/587245d))
|
|
325
|
-
|
|
326
|
-
|
|
327
|
-
|
|
328
|
-
<a name="2.0.0-beta.2"></a>
|
|
329
|
-
# [2.0.0-beta.2](https://github.com/verdaccio/local-storage/compare/v2.0.0-beta.1...v2.0.0-beta.2) (2019-02-24)
|
|
330
|
-
|
|
331
|
-
|
|
332
|
-
### Bug Fixes
|
|
333
|
-
|
|
334
|
-
* avoid open write stream if resource exist [#1191](https://github.com/verdaccio/local-storage/issues/1191) ([b13904a](https://github.com/verdaccio/local-storage/commit/b13904a))
|
|
335
|
-
* package.json to reduce vulnerabilities ([97e9dc3](https://github.com/verdaccio/local-storage/commit/97e9dc3))
|
|
336
|
-
|
|
337
|
-
|
|
338
|
-
|
|
339
|
-
<a name="2.0.0-beta.1"></a>
|
|
340
|
-
# [2.0.0-beta.1](https://github.com/verdaccio/local-storage/compare/v2.0.0-beta.0...v2.0.0-beta.1) (2019-02-03)
|
|
341
|
-
|
|
342
|
-
|
|
343
|
-
|
|
344
|
-
<a name="2.0.0-beta.0"></a>
|
|
345
|
-
# [2.0.0-beta.0](https://github.com/verdaccio/local-storage/compare/v1.2.0...v2.0.0-beta.0) (2019-02-01)
|
|
346
|
-
|
|
347
|
-
|
|
348
|
-
### Bug Fixes
|
|
349
|
-
|
|
350
|
-
* **deps:** update dependency lodash to v4.17.11 ([682616a](https://github.com/verdaccio/local-storage/commit/682616a))
|
|
351
|
-
|
|
352
|
-
|
|
353
|
-
### Features
|
|
354
|
-
|
|
355
|
-
* custom storage location ([b1423cd](https://github.com/verdaccio/local-storage/commit/b1423cd))
|
|
356
|
-
* migrate to typescript ([fe8344b](https://github.com/verdaccio/local-storage/commit/fe8344b))
|
|
357
|
-
|
|
358
|
-
|
|
359
|
-
### BREAKING CHANGES
|
|
360
|
-
|
|
361
|
-
* we change from boolean value to string within the config file
|
|
362
|
-
|
|
363
|
-
|
|
364
|
-
|
|
365
|
-
<a name="1.2.0"></a>
|
|
366
|
-
# [1.2.0](https://github.com/verdaccio/local-storage/compare/v1.1.3...v1.2.0) (2018-08-25)
|
|
367
|
-
|
|
368
|
-
|
|
369
|
-
### Features
|
|
370
|
-
|
|
371
|
-
* change new db name to verdaccio ([#83](https://github.com/verdaccio/local-storage/issues/83)) ([143977d](https://github.com/verdaccio/local-storage/commit/143977d))
|
|
372
|
-
|
|
373
|
-
|
|
374
|
-
|
|
375
|
-
<a name="1.1.3"></a>
|
|
376
|
-
## [1.1.3](https://github.com/verdaccio/local-storage/compare/v1.1.2...v1.1.3) (2018-07-15)
|
|
377
|
-
|
|
378
|
-
|
|
379
|
-
### Bug Fixes
|
|
380
|
-
|
|
381
|
-
* remove unused parameters ([3ce374a](https://github.com/verdaccio/local-storage/commit/3ce374a))
|
|
382
|
-
|
|
383
|
-
|
|
384
|
-
|
|
385
|
-
<a name="1.1.2"></a>
|
|
386
|
-
## [1.1.2](https://github.com/verdaccio/local-storage/compare/v1.1.1...v1.1.2) (2018-06-09)
|
|
387
|
-
|
|
388
|
-
|
|
389
|
-
### Bug Fixes
|
|
390
|
-
|
|
391
|
-
* return time as milliseconds ([c98be85](https://github.com/verdaccio/local-storage/commit/c98be85))
|
|
392
|
-
|
|
393
|
-
|
|
394
|
-
|
|
395
|
-
<a name="1.1.1"></a>
|
|
396
|
-
## [1.1.1](https://github.com/verdaccio/local-storage/compare/v1.1.0...v1.1.1) (2018-06-08)
|
|
397
|
-
|
|
398
|
-
|
|
399
|
-
### Bug Fixes
|
|
400
|
-
|
|
401
|
-
* check whether path exist before return result ([cb5d4ef](https://github.com/verdaccio/local-storage/commit/cb5d4ef))
|
|
402
|
-
|
|
403
|
-
|
|
404
|
-
|
|
405
|
-
<a name="1.1.0"></a>
|
|
406
|
-
# [1.1.0](https://github.com/verdaccio/local-storage/compare/v1.0.3...v1.1.0) (2018-06-08)
|
|
407
|
-
|
|
408
|
-
|
|
409
|
-
### Bug Fixes
|
|
410
|
-
|
|
411
|
-
* **deps:** update dependency async to v2.6.1 ([487b095](https://github.com/verdaccio/local-storage/commit/487b095))
|
|
412
|
-
|
|
413
|
-
|
|
414
|
-
### Features
|
|
415
|
-
|
|
416
|
-
* implement search ([f884a24](https://github.com/verdaccio/local-storage/commit/f884a24))
|
|
417
|
-
|
|
418
|
-
|
|
419
|
-
|
|
420
|
-
<a name="0.2.0"></a>
|
|
421
|
-
# [0.2.0](https://github.com/verdaccio/local-storage/compare/v0.1.4...v0.2.0) (2018-01-17)
|
|
422
|
-
|
|
423
|
-
|
|
424
|
-
### Features
|
|
425
|
-
|
|
426
|
-
* update minor dependencies ([92daa81](https://github.com/verdaccio/local-storage/commit/92daa81))
|
|
427
|
-
|
|
428
|
-
|
|
429
|
-
|
|
430
|
-
<a name="0.1.4"></a>
|
|
431
|
-
## [0.1.4](https://github.com/verdaccio/local-storage/compare/v0.1.3...v0.1.4) (2018-01-17)
|
|
432
|
-
|
|
433
|
-
|
|
434
|
-
### Bug Fixes
|
|
435
|
-
|
|
436
|
-
* remove temp file whether is emtpy and fails ([593e162](https://github.com/verdaccio/local-storage/commit/593e162))
|
|
437
|
-
* unit test ([2573f30](https://github.com/verdaccio/local-storage/commit/2573f30))
|