@verdaccio/types 9.7.2 → 11.0.0-6-next.9
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/.eslintrc.json +8 -7
- package/CHANGELOG.md +326 -279
- package/README.md +1 -2
- package/index.d.ts +146 -102
- package/package.json +24 -13
- package/tsconfig.json +0 -19
package/CHANGELOG.md
CHANGED
|
@@ -1,264 +1,389 @@
|
|
|
1
1
|
# Change Log
|
|
2
2
|
|
|
3
|
-
|
|
4
|
-
See [Conventional Commits](https://conventionalcommits.org) for commit guidelines.
|
|
3
|
+
## 11.0.0-6-next.9
|
|
5
4
|
|
|
6
|
-
|
|
5
|
+
### Major Changes
|
|
7
6
|
|
|
7
|
+
- 794af76c: Remove Node 12 support
|
|
8
8
|
|
|
9
|
-
|
|
9
|
+
- We need move to the new `undici` and does not support Node.js 12
|
|
10
10
|
|
|
11
|
-
|
|
11
|
+
### Minor Changes
|
|
12
12
|
|
|
13
|
+
- 154b2ecd: refactor: remove @verdaccio/commons-api in favor @verdaccio/core and remove duplications
|
|
13
14
|
|
|
15
|
+
## 11.0.0-6-next.8
|
|
14
16
|
|
|
17
|
+
### Major Changes
|
|
15
18
|
|
|
19
|
+
- 459b6fa7: refactor: search v1 endpoint and local-database
|
|
16
20
|
|
|
17
|
-
|
|
21
|
+
- refactor search `api v1` endpoint, improve performance
|
|
22
|
+
- remove usage of `async` dependency https://github.com/verdaccio/verdaccio/issues/1225
|
|
23
|
+
- refactor method storage class
|
|
24
|
+
- create new module `core` to reduce the ammount of modules with utilities
|
|
25
|
+
- use `undici` instead `node-fetch`
|
|
26
|
+
- use `fastify` instead `express` for functional test
|
|
18
27
|
|
|
28
|
+
### Breaking changes
|
|
19
29
|
|
|
20
|
-
|
|
30
|
+
- plugin storage API changes
|
|
31
|
+
- remove old search endpoint (return 404)
|
|
32
|
+
- filter local private packages at plugin level
|
|
21
33
|
|
|
22
|
-
|
|
34
|
+
The storage api changes for methods `get`, `add`, `remove` as promise base. The `search` methods also changes and recieves a `query` object that contains all query params from the client.
|
|
23
35
|
|
|
36
|
+
```ts
|
|
37
|
+
export interface IPluginStorage<T> extends IPlugin {
|
|
38
|
+
add(name: string): Promise<void>;
|
|
39
|
+
remove(name: string): Promise<void>;
|
|
40
|
+
get(): Promise<any>;
|
|
41
|
+
init(): Promise<void>;
|
|
42
|
+
getSecret(): Promise<string>;
|
|
43
|
+
setSecret(secret: string): Promise<any>;
|
|
44
|
+
getPackageStorage(packageInfo: string): IPackageStorage;
|
|
45
|
+
search(query: searchUtils.SearchQuery): Promise<searchUtils.SearchItem[]>;
|
|
46
|
+
saveToken(token: Token): Promise<any>;
|
|
47
|
+
deleteToken(user: string, tokenKey: string): Promise<any>;
|
|
48
|
+
readTokens(filter: TokenFilter): Promise<Token[]>;
|
|
49
|
+
}
|
|
50
|
+
```
|
|
24
51
|
|
|
52
|
+
## 11.0.0-6-next.7
|
|
25
53
|
|
|
54
|
+
### Minor Changes
|
|
26
55
|
|
|
56
|
+
- 0da7031e: allow disable login on ui and endpoints
|
|
27
57
|
|
|
28
|
-
|
|
58
|
+
To be able disable the login, set `login: false`, anything else would enable login. This flag will disable access via UI and web endpoints.
|
|
29
59
|
|
|
60
|
+
```yml
|
|
61
|
+
web:
|
|
62
|
+
title: verdaccio
|
|
63
|
+
login: false
|
|
64
|
+
```
|
|
30
65
|
|
|
31
|
-
|
|
66
|
+
## 11.0.0-6-next.6
|
|
32
67
|
|
|
33
|
-
|
|
68
|
+
### Minor Changes
|
|
34
69
|
|
|
70
|
+
- aecbd226: web: allow ui hide package managers on sidebar
|
|
35
71
|
|
|
72
|
+
If there is a package manager of preference over others, you can define the package managers to be displayed on the detail page and sidebar, just define in the `config.yaml` and web section the list of package managers to be displayed.
|
|
36
73
|
|
|
74
|
+
```
|
|
75
|
+
web:
|
|
76
|
+
title: Verdaccio
|
|
77
|
+
sort_packages: asc
|
|
78
|
+
primary_color: #cccccc
|
|
79
|
+
pkgManagers:
|
|
80
|
+
- pnpm
|
|
81
|
+
- yarn
|
|
82
|
+
# - npm
|
|
83
|
+
```
|
|
37
84
|
|
|
85
|
+
To disable all package managers, just define empty:
|
|
38
86
|
|
|
39
|
-
|
|
87
|
+
```
|
|
88
|
+
web:
|
|
89
|
+
title: Verdaccio
|
|
90
|
+
sort_packages: asc
|
|
91
|
+
primary_color: #cccccc
|
|
92
|
+
pkgManagers:
|
|
93
|
+
```
|
|
40
94
|
|
|
95
|
+
and the section would be hidden.
|
|
41
96
|
|
|
42
|
-
|
|
97
|
+
## 11.0.0-6-next.5
|
|
43
98
|
|
|
44
|
-
|
|
99
|
+
### Patch Changes
|
|
45
100
|
|
|
101
|
+
- 19d272d1: fix: restore logger on init
|
|
46
102
|
|
|
103
|
+
Enable logger after parse configuration and log the very first step on startup phase.
|
|
47
104
|
|
|
105
|
+
```bash
|
|
106
|
+
warn --- experiments are enabled, it is recommended do not use experiments in production comment out this section to disable it
|
|
107
|
+
info --- support for experiment [token] is disabled
|
|
108
|
+
info --- support for experiment [search] is disabled
|
|
109
|
+
(node:50831) Warning: config.logs is deprecated, rename configuration to "config.log"
|
|
110
|
+
(Use `node --trace-warnings ...` to show where the warning was created)
|
|
111
|
+
info --- http address http://localhost:4873/
|
|
112
|
+
info --- version: 6.0.0-6-next.11
|
|
113
|
+
info --- server started
|
|
114
|
+
```
|
|
48
115
|
|
|
116
|
+
## 11.0.0-6-next.4
|
|
49
117
|
|
|
50
|
-
|
|
118
|
+
### Major Changes
|
|
51
119
|
|
|
52
|
-
|
|
120
|
+
- 5c5057fc: feat: node api new structure based on promise
|
|
53
121
|
|
|
122
|
+
```js
|
|
123
|
+
import { runServer } from '@verdaccio/node-api';
|
|
124
|
+
// or
|
|
125
|
+
import { runServer } from 'verdaccio';
|
|
54
126
|
|
|
127
|
+
const app = await runServer(); // default configuration
|
|
128
|
+
const app = await runServer('./config/config.yaml');
|
|
129
|
+
const app = await runServer({ configuration });
|
|
130
|
+
app.listen(4000, event => {
|
|
131
|
+
// do something
|
|
132
|
+
});
|
|
133
|
+
```
|
|
55
134
|
|
|
135
|
+
### Breaking Change
|
|
56
136
|
|
|
137
|
+
If you are using the node-api, the new structure is Promise based and less arguments.
|
|
57
138
|
|
|
58
|
-
##
|
|
59
|
-
|
|
60
|
-
|
|
61
|
-
### Bug Fixes
|
|
139
|
+
## 10.0.0-alpha.3
|
|
62
140
|
|
|
63
|
-
|
|
141
|
+
### Patch Changes
|
|
64
142
|
|
|
143
|
+
- fecbb9be: chore: add release step to private regisry on merge changeset pr
|
|
65
144
|
|
|
145
|
+
## 10.0.0-alpha.2
|
|
66
146
|
|
|
147
|
+
### Minor Changes
|
|
67
148
|
|
|
149
|
+
- 54c58d1e: feat: add server rate limit protection to all request
|
|
68
150
|
|
|
69
|
-
|
|
151
|
+
To modify custom values, use the server settings property.
|
|
70
152
|
|
|
153
|
+
```markdown
|
|
154
|
+
server:
|
|
71
155
|
|
|
72
|
-
|
|
156
|
+
## https://www.npmjs.com/package/express-rate-limit#configuration-options
|
|
73
157
|
|
|
74
|
-
|
|
158
|
+
rateLimit:
|
|
159
|
+
windowMs: 1000
|
|
160
|
+
max: 10000
|
|
161
|
+
```
|
|
75
162
|
|
|
163
|
+
The values are intended to be high, if you want to improve security of your server consider
|
|
164
|
+
using different values.
|
|
76
165
|
|
|
166
|
+
## 10.0.0-alpha.1
|
|
77
167
|
|
|
168
|
+
### Major Changes
|
|
78
169
|
|
|
170
|
+
- d87fa026: feat!: experiments config renamed to flags
|
|
79
171
|
|
|
80
|
-
|
|
172
|
+
- The `experiments` configuration is renamed to `flags`. The functionality is exactly the same.
|
|
81
173
|
|
|
174
|
+
```js
|
|
175
|
+
flags: token: false;
|
|
176
|
+
search: false;
|
|
177
|
+
```
|
|
82
178
|
|
|
83
|
-
|
|
179
|
+
- The `self_path` property from the config file is being removed in favor of `config_file` full path.
|
|
180
|
+
- Refactor `config` module, better types and utilities
|
|
84
181
|
|
|
85
|
-
|
|
182
|
+
- da1ee9c8: - Replace signature handler for legacy tokens by removing deprecated crypto.createDecipher by createCipheriv
|
|
86
183
|
|
|
184
|
+
- Introduce environment variables for legacy tokens
|
|
87
185
|
|
|
186
|
+
### Code Improvements
|
|
88
187
|
|
|
188
|
+
- Add debug library for improve developer experience
|
|
89
189
|
|
|
190
|
+
### Breaking change
|
|
90
191
|
|
|
91
|
-
|
|
192
|
+
- The new signature invalidates all previous tokens generated by Verdaccio 4 or previous versions.
|
|
193
|
+
- The secret key must have 32 characters long.
|
|
92
194
|
|
|
93
|
-
|
|
195
|
+
### New environment variables
|
|
94
196
|
|
|
197
|
+
- `VERDACCIO_LEGACY_ALGORITHM`: Allows to define the specific algorithm for the token signature which by default is `aes-256-ctr`
|
|
198
|
+
- `VERDACCIO_LEGACY_ENCRYPTION_KEY`: By default, the token stores in the database, but using this variable allows to get it from memory
|
|
95
199
|
|
|
200
|
+
### Minor Changes
|
|
96
201
|
|
|
202
|
+
- 26b494cb: feat: add typescript project references settings
|
|
97
203
|
|
|
204
|
+
Reading https://ebaytech.berlin/optimizing-multi-package-apps-with-typescript-project-references-d5c57a3b4440 I realized I can use project references to solve the issue to pre-compile modules on develop mode.
|
|
98
205
|
|
|
99
|
-
|
|
206
|
+
It allows to navigate (IDE) trough the packages without need compile the packages.
|
|
100
207
|
|
|
101
|
-
|
|
208
|
+
Add two `tsconfig`, one using the previous existing configuration that is able to produce declaration files (`tsconfig.build`) and a new one `tsconfig` which is enables [_projects references_](https://www.typescriptlang.org/docs/handbook/project-references.html).
|
|
102
209
|
|
|
210
|
+
### Patch Changes
|
|
103
211
|
|
|
212
|
+
- b57b4338: Enable prerelease mode with **changesets**
|
|
213
|
+
- 31af0164: ESLint Warnings Fixed
|
|
104
214
|
|
|
215
|
+
Related to issue #1461
|
|
105
216
|
|
|
217
|
+
- max-len: most of the sensible max-len errors are fixed
|
|
218
|
+
- no-unused-vars: most of these types of errors are fixed by deleting not needed declarations
|
|
219
|
+
- @typescript-eslint/no-unused-vars: same as above
|
|
106
220
|
|
|
107
|
-
|
|
221
|
+
All notable changes to this project will be documented in this file.
|
|
222
|
+
See [Conventional Commits](https://conventionalcommits.org) for commit guidelines.
|
|
108
223
|
|
|
224
|
+
## [9.7.2](https://github.com/verdaccio/monorepo/compare/v9.7.1...v9.7.2) (2020-07-20)
|
|
109
225
|
|
|
110
226
|
### Bug Fixes
|
|
111
227
|
|
|
112
|
-
|
|
113
|
-
|
|
114
|
-
|
|
228
|
+
- incorrect AuthAccessCallback and AuthCallback ([#374](https://github.com/verdaccio/monorepo/issues/374)) ([97538f8](https://github.com/verdaccio/monorepo/commit/97538f886271ccdbea7862957f65c4a17c4cd831)), closes [/github.com/verdaccio/verdaccio/blob/master/src/lib/auth.ts#L264](https://github.com//github.com/verdaccio/verdaccio/blob/master/src/lib/auth.ts/issues/L264) [/github.com/verdaccio/verdaccio/blob/master/src/lib/auth.ts#L114](https://github.com//github.com/verdaccio/verdaccio/blob/master/src/lib/auth.ts/issues/L114)
|
|
115
229
|
|
|
230
|
+
# [9.7.0](https://github.com/verdaccio/monorepo/compare/v9.6.1...v9.7.0) (2020-06-24)
|
|
116
231
|
|
|
232
|
+
### Features
|
|
117
233
|
|
|
118
|
-
|
|
234
|
+
- types for https config ([#368](https://github.com/verdaccio/monorepo/issues/368)) ([aa4aa83](https://github.com/verdaccio/monorepo/commit/aa4aa83e8a2f6a29ebe7c0b43ccc560a37fe2da9))
|
|
119
235
|
|
|
236
|
+
# [9.5.0](https://github.com/verdaccio/monorepo/compare/v9.4.1...v9.5.0) (2020-05-02)
|
|
120
237
|
|
|
121
238
|
### Features
|
|
122
239
|
|
|
123
|
-
|
|
124
|
-
|
|
240
|
+
- **types:** custom favicon ([#356](https://github.com/verdaccio/monorepo/issues/356)) ([bd78861](https://github.com/verdaccio/monorepo/commit/bd78861f46cd5189808b6689d2018a7bac6755f7))
|
|
125
241
|
|
|
242
|
+
# [9.3.0](https://github.com/verdaccio/monorepo/compare/v9.2.0...v9.3.0) (2020-01-29)
|
|
126
243
|
|
|
244
|
+
### Features
|
|
127
245
|
|
|
246
|
+
- **types:** adding tag type for auth plugins ([#318](https://github.com/verdaccio/monorepo/issues/318)) ([7f07c94](https://github.com/verdaccio/monorepo/commit/7f07c94d9dba5ac45b35aef3bd1ffd3080fb35db))
|
|
128
247
|
|
|
129
|
-
# [
|
|
248
|
+
# [9.0.0](https://github.com/verdaccio/monorepo/compare/v8.5.3...v9.0.0) (2020-01-07)
|
|
130
249
|
|
|
131
250
|
**Note:** Version bump only for package @verdaccio/types
|
|
132
251
|
|
|
252
|
+
## [8.5.2](https://github.com/verdaccio/monorepo/compare/v8.5.1...v8.5.2) (2019-12-25)
|
|
133
253
|
|
|
254
|
+
### Bug Fixes
|
|
134
255
|
|
|
256
|
+
- add types for storage handler ([#307](https://github.com/verdaccio/monorepo/issues/307)) ([c35746e](https://github.com/verdaccio/monorepo/commit/c35746ebba071900db172608dedff66a7d27c23d))
|
|
135
257
|
|
|
258
|
+
## [8.5.1](https://github.com/verdaccio/monorepo/compare/v8.5.0...v8.5.1) (2019-12-24)
|
|
136
259
|
|
|
137
|
-
|
|
260
|
+
### Bug Fixes
|
|
138
261
|
|
|
139
|
-
|
|
262
|
+
- add new types for local storage ([#306](https://github.com/verdaccio/monorepo/issues/306)) ([e715e24](https://github.com/verdaccio/monorepo/commit/e715e24ec7b7e7b3dca31a3321714ebccadf2a8d))
|
|
140
263
|
|
|
264
|
+
# [8.5.0](https://github.com/verdaccio/monorepo/compare/v8.4.2...v8.5.0) (2019-12-22)
|
|
141
265
|
|
|
266
|
+
### Bug Fixes
|
|
142
267
|
|
|
268
|
+
- **types:** add allow_unpublish generic ([#305](https://github.com/verdaccio/monorepo/issues/305)) ([aeaf64c](https://github.com/verdaccio/monorepo/commit/aeaf64c67cafb9ec16fa5a66aad9c4912f2a3710))
|
|
143
269
|
|
|
270
|
+
## [8.4.2](https://github.com/verdaccio/monorepo/compare/v8.4.1...v8.4.2) (2019-11-23)
|
|
144
271
|
|
|
145
|
-
|
|
272
|
+
**Note:** Version bump only for package @verdaccio/types
|
|
273
|
+
|
|
274
|
+
## [8.4.1](https://github.com/verdaccio/monorepo/compare/v8.4.0...v8.4.1) (2019-11-22)
|
|
146
275
|
|
|
147
276
|
**Note:** Version bump only for package @verdaccio/types
|
|
148
277
|
|
|
278
|
+
# [8.4.0](https://github.com/verdaccio/monorepo/compare/v8.3.0...v8.4.0) (2019-11-22)
|
|
149
279
|
|
|
280
|
+
### Bug Fixes
|
|
150
281
|
|
|
282
|
+
- adds sort_packages in WebConf Interface ([#227](https://github.com/verdaccio/monorepo/issues/227)) ([5b60ade](https://github.com/verdaccio/monorepo/commit/5b60adef5da49d7d1b62aa9f484b27c9fa319bdd))
|
|
151
283
|
|
|
284
|
+
# [8.3.0](https://github.com/verdaccio/monorepo/compare/v8.2.0...v8.3.0) (2019-10-27)
|
|
152
285
|
|
|
153
|
-
|
|
286
|
+
### Features
|
|
154
287
|
|
|
155
|
-
|
|
288
|
+
- improve auth callback TS types ([#225](https://github.com/verdaccio/monorepo/issues/225)) ([ee442a0](https://github.com/verdaccio/monorepo/commit/ee442a0))
|
|
156
289
|
|
|
290
|
+
# [8.1.0](https://github.com/verdaccio/monorepo/compare/v8.0.1-next.1...v8.1.0) (2019-09-07)
|
|
157
291
|
|
|
292
|
+
**Note:** Version bump only for package @verdaccio/types
|
|
158
293
|
|
|
294
|
+
## [8.0.1-next.1](https://github.com/verdaccio/monorepo/compare/v8.0.1-next.0...v8.0.1-next.1) (2019-08-29)
|
|
159
295
|
|
|
296
|
+
**Note:** Version bump only for package @verdaccio/types
|
|
160
297
|
|
|
161
|
-
|
|
298
|
+
## [8.0.1-next.0](https://github.com/verdaccio/monorepo/compare/v8.0.0...v8.0.1-next.0) (2019-08-29)
|
|
162
299
|
|
|
163
300
|
**Note:** Version bump only for package @verdaccio/types
|
|
164
301
|
|
|
302
|
+
# [8.0.0](https://github.com/verdaccio/monorepo/compare/v8.0.0-next.4...v8.0.0) (2019-08-22)
|
|
165
303
|
|
|
304
|
+
**Note:** Version bump only for package @verdaccio/types
|
|
166
305
|
|
|
306
|
+
# [8.0.0-next.4](https://github.com/verdaccio/monorepo/compare/v8.0.0-next.3...v8.0.0-next.4) (2019-08-18)
|
|
167
307
|
|
|
308
|
+
**Note:** Version bump only for package @verdaccio/types
|
|
168
309
|
|
|
169
310
|
# [8.0.0-next.2](https://github.com/verdaccio/monorepo/compare/v8.0.0-next.1...v8.0.0-next.2) (2019-08-03)
|
|
170
311
|
|
|
171
|
-
|
|
172
312
|
### Bug Fixes
|
|
173
313
|
|
|
174
|
-
|
|
175
|
-
|
|
176
|
-
|
|
177
|
-
|
|
178
|
-
|
|
314
|
+
- update types for tokens ([9734fa8](https://github.com/verdaccio/monorepo/commit/9734fa8))
|
|
179
315
|
|
|
180
316
|
# [8.0.0-next.1](https://github.com/verdaccio/monorepo/compare/v8.0.0-next.0...v8.0.0-next.1) (2019-08-01)
|
|
181
317
|
|
|
182
318
|
**Note:** Version bump only for package @verdaccio/types
|
|
183
319
|
|
|
184
|
-
|
|
185
|
-
|
|
186
|
-
|
|
187
|
-
|
|
188
320
|
# [8.0.0-next.0](https://github.com/verdaccio/monorepo/compare/v2.0.0...v8.0.0-next.0) (2019-08-01)
|
|
189
321
|
|
|
190
|
-
|
|
191
322
|
### Bug Fixes
|
|
192
323
|
|
|
193
|
-
|
|
194
|
-
|
|
195
|
-
|
|
196
|
-
|
|
197
|
-
|
|
198
|
-
|
|
199
|
-
|
|
200
|
-
|
|
201
|
-
|
|
202
|
-
|
|
203
|
-
|
|
204
|
-
|
|
205
|
-
|
|
206
|
-
|
|
207
|
-
|
|
208
|
-
|
|
209
|
-
|
|
210
|
-
|
|
211
|
-
|
|
212
|
-
|
|
213
|
-
|
|
214
|
-
|
|
215
|
-
|
|
216
|
-
|
|
217
|
-
|
|
218
|
-
|
|
219
|
-
|
|
324
|
+
- add \_autogenerated to UpLinkConf ([436bd91](https://github.com/verdaccio/monorepo/commit/436bd91))
|
|
325
|
+
- add config prop to IBasicAuth ([2481d6f](https://github.com/verdaccio/monorepo/commit/2481d6f))
|
|
326
|
+
- add missing adduser method ([22cdb4e](https://github.com/verdaccio/monorepo/commit/22cdb4e))
|
|
327
|
+
- add missing properties ([973c5e4](https://github.com/verdaccio/monorepo/commit/973c5e4))
|
|
328
|
+
- allow extend config ([0aea94f](https://github.com/verdaccio/monorepo/commit/0aea94f))
|
|
329
|
+
- allow sub types on allow auth methods ([7325f74](https://github.com/verdaccio/monorepo/commit/7325f74))
|
|
330
|
+
- deprecated methods are optional ([b77155a](https://github.com/verdaccio/monorepo/commit/b77155a))
|
|
331
|
+
- entry point [#14](https://github.com/verdaccio/monorepo/issues/14) ([7575e75](https://github.com/verdaccio/monorepo/commit/7575e75))
|
|
332
|
+
- export Author type ([bf7115b](https://github.com/verdaccio/monorepo/commit/bf7115b))
|
|
333
|
+
- fix/token i local package manager ([#61](https://github.com/verdaccio/monorepo/issues/61)) ([a7e0fc8](https://github.com/verdaccio/monorepo/commit/a7e0fc8))
|
|
334
|
+
- fixes for storage plugin types per code review ([#59](https://github.com/verdaccio/monorepo/issues/59)) ([04fccb8](https://github.com/verdaccio/monorepo/commit/04fccb8))
|
|
335
|
+
- getPackageStorage allowed to return undefined ([8a859d0](https://github.com/verdaccio/monorepo/commit/8a859d0))
|
|
336
|
+
- improvements config interface ([1dac321](https://github.com/verdaccio/monorepo/commit/1dac321))
|
|
337
|
+
- methods return Stream ([22e0672](https://github.com/verdaccio/monorepo/commit/22e0672))
|
|
338
|
+
- remove options from get package metadata ([2bfc048](https://github.com/verdaccio/monorepo/commit/2bfc048))
|
|
339
|
+
- remove wrong definition ([acba624](https://github.com/verdaccio/monorepo/commit/acba624))
|
|
340
|
+
- remove wrong imports ([c82f51c](https://github.com/verdaccio/monorepo/commit/c82f51c))
|
|
341
|
+
- restore missing type on RemoteUser ([b596896](https://github.com/verdaccio/monorepo/commit/b596896))
|
|
342
|
+
- storage types ([1285675](https://github.com/verdaccio/monorepo/commit/1285675))
|
|
343
|
+
- tokens are accesible also in local-storage ([08b342d](https://github.com/verdaccio/monorepo/commit/08b342d))
|
|
344
|
+
- update https ([c93c3fc](https://github.com/verdaccio/monorepo/commit/c93c3fc))
|
|
345
|
+
- update readTarball with right parameters ([8cbc7d1](https://github.com/verdaccio/monorepo/commit/8cbc7d1))
|
|
346
|
+
- update streams type ([7fa7be5](https://github.com/verdaccio/monorepo/commit/7fa7be5))
|
|
347
|
+
- update types for local data ([6706770](https://github.com/verdaccio/monorepo/commit/6706770))
|
|
348
|
+
- update utils types ([7c37133](https://github.com/verdaccio/monorepo/commit/7c37133))
|
|
349
|
+
- wrong signature for auth plugin ([e3e2508](https://github.com/verdaccio/monorepo/commit/e3e2508))
|
|
220
350
|
|
|
221
351
|
### Features
|
|
222
352
|
|
|
223
|
-
|
|
224
|
-
|
|
225
|
-
|
|
226
|
-
|
|
227
|
-
|
|
228
|
-
|
|
229
|
-
|
|
230
|
-
|
|
231
|
-
|
|
232
|
-
|
|
233
|
-
|
|
234
|
-
|
|
235
|
-
|
|
236
|
-
|
|
237
|
-
|
|
238
|
-
|
|
239
|
-
|
|
240
|
-
|
|
241
|
-
|
|
242
|
-
|
|
243
|
-
|
|
244
|
-
|
|
245
|
-
|
|
246
|
-
|
|
247
|
-
|
|
353
|
+
- add AuthPluginPackage type ([f0e1cea](https://github.com/verdaccio/monorepo/commit/f0e1cea))
|
|
354
|
+
- add callback to database methods ([d0d55e9](https://github.com/verdaccio/monorepo/commit/d0d55e9))
|
|
355
|
+
- add config file types ([188a3e5](https://github.com/verdaccio/monorepo/commit/188a3e5))
|
|
356
|
+
- add gravatar prop for web config ([b3ac873](https://github.com/verdaccio/monorepo/commit/b3ac873))
|
|
357
|
+
- add interface for middleware and storage plugin ([2b18e22](https://github.com/verdaccio/monorepo/commit/2b18e22))
|
|
358
|
+
- add IStorageManager for middleware plugin ([0ac1cc4](https://github.com/verdaccio/monorepo/commit/0ac1cc4))
|
|
359
|
+
- Add locking library on typings ([7f7ab67](https://github.com/verdaccio/monorepo/commit/7f7ab67))
|
|
360
|
+
- add RemoteUser type ([7d11892](https://github.com/verdaccio/monorepo/commit/7d11892))
|
|
361
|
+
- add search method BREAKING CHANGE: search method must be implemented to allow search functionality ([b6d94e6](https://github.com/verdaccio/monorepo/commit/b6d94e6))
|
|
362
|
+
- add secret gateway methods ([5300147](https://github.com/verdaccio/monorepo/commit/5300147))
|
|
363
|
+
- add Security configuration ([0cdc0dd](https://github.com/verdaccio/monorepo/commit/0cdc0dd))
|
|
364
|
+
- add types for auth plugin ([6378186](https://github.com/verdaccio/monorepo/commit/6378186))
|
|
365
|
+
- add types for PackageUsers ([ad5f917](https://github.com/verdaccio/monorepo/commit/ad5f917))
|
|
366
|
+
- add types for search class ([e23782d](https://github.com/verdaccio/monorepo/commit/e23782d))
|
|
367
|
+
- callback does not return ([fd78bfc](https://github.com/verdaccio/monorepo/commit/fd78bfc))
|
|
368
|
+
- merge changes from 5.x ([5f61009](https://github.com/verdaccio/monorepo/commit/5f61009))
|
|
369
|
+
- package access props are not optional ([61708e2](https://github.com/verdaccio/monorepo/commit/61708e2))
|
|
370
|
+
- remove flow [#70](https://github.com/verdaccio/monorepo/issues/70) ([2218b74](https://github.com/verdaccio/monorepo/commit/2218b74))
|
|
371
|
+
- remove sync method ([f60f81c](https://github.com/verdaccio/monorepo/commit/f60f81c))
|
|
372
|
+
- secret methods are async ([d5eacf5](https://github.com/verdaccio/monorepo/commit/d5eacf5))
|
|
373
|
+
- support for an IPluginStorageFilter ([#58](https://github.com/verdaccio/monorepo/issues/58)) ([eab219e](https://github.com/verdaccio/monorepo/commit/eab219e))
|
|
374
|
+
- token types ([#60](https://github.com/verdaccio/monorepo/issues/60)) @Eomm ([6e74da6](https://github.com/verdaccio/monorepo/commit/6e74da6))
|
|
375
|
+
- **auth:** add method to update password ([e257c3a](https://github.com/verdaccio/monorepo/commit/e257c3a))
|
|
376
|
+
- **storage:** path is not mandatory ([2c42931](https://github.com/verdaccio/monorepo/commit/2c42931))
|
|
248
377
|
|
|
249
378
|
### BREAKING CHANGES
|
|
250
379
|
|
|
251
|
-
|
|
252
|
-
|
|
253
|
-
|
|
254
|
-
* add: token types
|
|
255
|
-
|
|
256
|
-
* add: typescripts types
|
|
257
|
-
* **auth:** it will affect all auth plugins
|
|
258
|
-
|
|
259
|
-
|
|
380
|
+
- remove flow definitions
|
|
381
|
+
- storage needs to add new methods
|
|
260
382
|
|
|
383
|
+
- add: token types
|
|
261
384
|
|
|
385
|
+
- add: typescripts types
|
|
386
|
+
- **auth:** it will affect all auth plugins
|
|
262
387
|
|
|
263
388
|
# Changelog
|
|
264
389
|
|
|
@@ -266,400 +391,322 @@ All notable changes to this project will be documented in this file. See [standa
|
|
|
266
391
|
|
|
267
392
|
## [7.0.0](https://github.com/verdaccio/flow-types/compare/v6.2.0...v7.0.0) (2019-07-25)
|
|
268
393
|
|
|
269
|
-
|
|
270
394
|
### Bug Fixes
|
|
271
395
|
|
|
272
|
-
|
|
273
|
-
|
|
274
|
-
|
|
275
|
-
|
|
396
|
+
- add \_autogenerated to UpLinkConf ([971e52e](https://github.com/verdaccio/flow-types/commit/971e52e))
|
|
397
|
+
- **IPluginAuth:** adduser, changePassword optional ([40d4e7a](https://github.com/verdaccio/flow-types/commit/40d4e7a)), closes [/github.com/verdaccio/verdaccio/blob/66f4197236d9d71af149314aae15102b336f45e1/src/lib/auth.ts#L67-L71](https://github.com/verdaccio/flow-types/issues/L67-L71) [/github.com/verdaccio/verdaccio/blob/66f4197236d9d71af149314aae15102b336f45e1/src/lib/auth.ts#L138-L166](https://github.com/verdaccio/flow-types/issues/L138-L166)
|
|
398
|
+
- **IPluginAuth:** remove `login_url` ([1663c07](https://github.com/verdaccio/flow-types/commit/1663c07)), closes [#69](https://github.com/verdaccio/flow-types/issues/69)
|
|
276
399
|
|
|
277
400
|
### Features
|
|
278
401
|
|
|
279
|
-
|
|
280
|
-
|
|
281
|
-
|
|
402
|
+
- merge changes from 5.x ([7d2d526](https://github.com/verdaccio/flow-types/commit/7d2d526))
|
|
403
|
+
- remove flow [#70](https://github.com/verdaccio/flow-types/issues/70) ([826d5fe](https://github.com/verdaccio/flow-types/commit/826d5fe))
|
|
282
404
|
|
|
283
405
|
### BREAKING CHANGES
|
|
284
406
|
|
|
285
|
-
|
|
286
|
-
|
|
287
|
-
|
|
407
|
+
- remove flow definitions
|
|
288
408
|
|
|
289
409
|
<a name="6.2.0"></a>
|
|
290
|
-
# [6.2.0](https://github.com/verdaccio/flow-types/compare/v6.1.0...v6.2.0) (2019-05-28)
|
|
291
410
|
|
|
411
|
+
# [6.2.0](https://github.com/verdaccio/flow-types/compare/v6.1.0...v6.2.0) (2019-05-28)
|
|
292
412
|
|
|
293
413
|
### Features
|
|
294
414
|
|
|
295
|
-
|
|
296
|
-
|
|
297
|
-
|
|
415
|
+
- add types for Version ([900861d](https://github.com/verdaccio/flow-types/commit/900861d))
|
|
298
416
|
|
|
299
417
|
<a name="6.1.0"></a>
|
|
300
|
-
# [6.1.0](https://github.com/verdaccio/flow-types/compare/v6.0.2...v6.1.0) (2019-05-14)
|
|
301
418
|
|
|
419
|
+
# [6.1.0](https://github.com/verdaccio/flow-types/compare/v6.0.2...v6.1.0) (2019-05-14)
|
|
302
420
|
|
|
303
421
|
### Bug Fixes
|
|
304
422
|
|
|
305
|
-
|
|
306
|
-
|
|
423
|
+
- revert token signature ([59a03e7](https://github.com/verdaccio/flow-types/commit/59a03e7))
|
|
307
424
|
|
|
308
425
|
### Features
|
|
309
426
|
|
|
310
|
-
|
|
311
|
-
|
|
312
|
-
|
|
427
|
+
- moved token api signature ([e51991c](https://github.com/verdaccio/flow-types/commit/e51991c))
|
|
313
428
|
|
|
314
429
|
<a name="6.0.2"></a>
|
|
315
|
-
## [6.0.2](https://github.com/verdaccio/flow-types/compare/v6.0.1...v6.0.2) (2019-05-06)
|
|
316
430
|
|
|
431
|
+
## [6.0.2](https://github.com/verdaccio/flow-types/compare/v6.0.1...v6.0.2) (2019-05-06)
|
|
317
432
|
|
|
318
433
|
### Bug Fixes
|
|
319
434
|
|
|
320
|
-
|
|
321
|
-
|
|
322
|
-
|
|
435
|
+
- fix/token i local package manager ([#61](https://github.com/verdaccio/flow-types/issues/61)) ([14adfb2](https://github.com/verdaccio/flow-types/commit/14adfb2))
|
|
323
436
|
|
|
324
437
|
<a name="6.0.1"></a>
|
|
325
|
-
## [6.0.1](https://github.com/verdaccio/flow-types/compare/v6.0.0...v6.0.1) (2019-05-04)
|
|
326
438
|
|
|
439
|
+
## [6.0.1](https://github.com/verdaccio/flow-types/compare/v6.0.0...v6.0.1) (2019-05-04)
|
|
327
440
|
|
|
328
441
|
### Bug Fixes
|
|
329
442
|
|
|
330
|
-
|
|
331
|
-
|
|
332
|
-
|
|
443
|
+
- tokens are accesible also in local-storage ([56551cf](https://github.com/verdaccio/flow-types/commit/56551cf))
|
|
333
444
|
|
|
334
445
|
<a name="6.0.0"></a>
|
|
335
|
-
# [6.0.0](https://github.com/verdaccio/flow-types/compare/v5.0.2...v6.0.0) (2019-04-30)
|
|
336
446
|
|
|
447
|
+
# [6.0.0](https://github.com/verdaccio/flow-types/compare/v5.0.2...v6.0.0) (2019-04-30)
|
|
337
448
|
|
|
338
449
|
### Bug Fixes
|
|
339
450
|
|
|
340
|
-
|
|
341
|
-
|
|
451
|
+
- remove wrong imports ([a75476a](https://github.com/verdaccio/flow-types/commit/a75476a))
|
|
342
452
|
|
|
343
453
|
### Features
|
|
344
454
|
|
|
345
|
-
|
|
346
|
-
|
|
455
|
+
- token types ([#60](https://github.com/verdaccio/flow-types/issues/60)) @Eomm ([7b74982](https://github.com/verdaccio/flow-types/commit/7b74982))
|
|
347
456
|
|
|
348
457
|
### BREAKING CHANGES
|
|
349
458
|
|
|
350
|
-
|
|
351
|
-
|
|
352
|
-
* add: token types
|
|
353
|
-
|
|
354
|
-
* add: typescripts types
|
|
459
|
+
- storage needs to add new methods
|
|
355
460
|
|
|
461
|
+
- add: token types
|
|
356
462
|
|
|
463
|
+
- add: typescripts types
|
|
357
464
|
|
|
358
465
|
<a name="5.0.2"></a>
|
|
359
|
-
## [5.0.2](https://github.com/verdaccio/flow-types/compare/v5.0.1...v5.0.2) (2019-04-22)
|
|
360
466
|
|
|
467
|
+
## [5.0.2](https://github.com/verdaccio/flow-types/compare/v5.0.1...v5.0.2) (2019-04-22)
|
|
361
468
|
|
|
362
469
|
### Bug Fixes
|
|
363
470
|
|
|
364
|
-
|
|
365
|
-
|
|
366
|
-
|
|
471
|
+
- fixes for storage plugin types per code review ([#59](https://github.com/verdaccio/flow-types/issues/59)) ([c2ea90b](https://github.com/verdaccio/flow-types/commit/c2ea90b))
|
|
367
472
|
|
|
368
473
|
<a name="5.0.1"></a>
|
|
369
|
-
## [5.0.1](https://github.com/verdaccio/flow-types/compare/v5.0.0...v5.0.1) (2019-04-18)
|
|
370
|
-
|
|
371
474
|
|
|
475
|
+
## [5.0.1](https://github.com/verdaccio/flow-types/compare/v5.0.0...v5.0.1) (2019-04-18)
|
|
372
476
|
|
|
373
477
|
<a name="5.0.0"></a>
|
|
374
|
-
# [5.0.0](https://github.com/verdaccio/flow-types/compare/v5.0.0-beta.4...v5.0.0) (2019-04-18)
|
|
375
478
|
|
|
479
|
+
# [5.0.0](https://github.com/verdaccio/flow-types/compare/v5.0.0-beta.4...v5.0.0) (2019-04-18)
|
|
376
480
|
|
|
377
481
|
### Features
|
|
378
482
|
|
|
379
|
-
|
|
380
|
-
|
|
381
|
-
|
|
483
|
+
- support for an IPluginStorageFilter ([#58](https://github.com/verdaccio/flow-types/issues/58)) ([e67559f](https://github.com/verdaccio/flow-types/commit/e67559f))
|
|
382
484
|
|
|
383
485
|
<a name="5.0.0-beta.4"></a>
|
|
384
|
-
# [5.0.0-beta.4](https://github.com/verdaccio/flow-types/compare/v5.0.0-beta.3...v5.0.0-beta.4) (2019-03-29)
|
|
385
486
|
|
|
487
|
+
# [5.0.0-beta.4](https://github.com/verdaccio/flow-types/compare/v5.0.0-beta.3...v5.0.0-beta.4) (2019-03-29)
|
|
386
488
|
|
|
387
489
|
### Features
|
|
388
490
|
|
|
389
|
-
|
|
390
|
-
|
|
391
|
-
|
|
491
|
+
- **storage:** path is not mandatory ([784f1bb](https://github.com/verdaccio/flow-types/commit/784f1bb))
|
|
392
492
|
|
|
393
493
|
<a name="5.0.0-beta.3"></a>
|
|
394
|
-
# [5.0.0-beta.3](https://github.com/verdaccio/flow-types/compare/v5.0.0-beta.2...v5.0.0-beta.3) (2019-03-09)
|
|
395
494
|
|
|
495
|
+
# [5.0.0-beta.3](https://github.com/verdaccio/flow-types/compare/v5.0.0-beta.2...v5.0.0-beta.3) (2019-03-09)
|
|
396
496
|
|
|
397
497
|
### Features
|
|
398
498
|
|
|
399
|
-
|
|
400
|
-
|
|
401
|
-
|
|
499
|
+
- add types for PackageUsers ([9bb3c26](https://github.com/verdaccio/flow-types/commit/9bb3c26))
|
|
402
500
|
|
|
403
501
|
<a name="5.0.0-beta.2"></a>
|
|
404
|
-
# [5.0.0-beta.2](https://github.com/verdaccio/flow-types/compare/v5.0.0-beta.1...v5.0.0-beta.2) (2019-02-03)
|
|
405
502
|
|
|
503
|
+
# [5.0.0-beta.2](https://github.com/verdaccio/flow-types/compare/v5.0.0-beta.1...v5.0.0-beta.2) (2019-02-03)
|
|
406
504
|
|
|
407
505
|
### Features
|
|
408
506
|
|
|
409
|
-
|
|
410
|
-
|
|
411
|
-
|
|
507
|
+
- allow_access and allow_publish are optional for auth plugin ([0d5a53c](https://github.com/verdaccio/flow-types/commit/0d5a53c))
|
|
412
508
|
|
|
413
509
|
<a name="5.0.0-beta.1"></a>
|
|
414
|
-
# [5.0.0-beta.1](https://github.com/verdaccio/flow-types/compare/v5.0.0-beta.0...v5.0.0-beta.1) (2019-02-01)
|
|
415
|
-
|
|
416
510
|
|
|
511
|
+
# [5.0.0-beta.1](https://github.com/verdaccio/flow-types/compare/v5.0.0-beta.0...v5.0.0-beta.1) (2019-02-01)
|
|
417
512
|
|
|
418
513
|
<a name="5.0.0-beta.0"></a>
|
|
419
|
-
# [5.0.0-beta.0](https://github.com/verdaccio/flow-types/compare/v4.3.0...v5.0.0-beta.0) (2019-01-27)
|
|
420
|
-
|
|
421
514
|
|
|
515
|
+
# [5.0.0-beta.0](https://github.com/verdaccio/flow-types/compare/v4.3.0...v5.0.0-beta.0) (2019-01-27)
|
|
422
516
|
|
|
423
517
|
<a name="4.3.0"></a>
|
|
424
|
-
# [4.3.0](https://github.com/verdaccio/flow-types/compare/v4.2.0...v4.3.0) (2019-01-12)
|
|
425
518
|
|
|
519
|
+
# [4.3.0](https://github.com/verdaccio/flow-types/compare/v4.2.0...v4.3.0) (2019-01-12)
|
|
426
520
|
|
|
427
521
|
### Features
|
|
428
522
|
|
|
429
|
-
|
|
430
|
-
|
|
431
|
-
|
|
523
|
+
- add gravatar prop for web config ([99ceae9](https://github.com/verdaccio/flow-types/commit/99ceae9))
|
|
432
524
|
|
|
433
525
|
<a name="4.2.0"></a>
|
|
434
|
-
# [4.2.0](https://github.com/verdaccio/flow-types/compare/v4.1.2...v4.2.0) (2019-01-12)
|
|
435
526
|
|
|
527
|
+
# [4.2.0](https://github.com/verdaccio/flow-types/compare/v4.1.2...v4.2.0) (2019-01-12)
|
|
436
528
|
|
|
437
529
|
### Features
|
|
438
530
|
|
|
439
|
-
|
|
440
|
-
|
|
441
|
-
|
|
531
|
+
- add AuthPluginPackage type ([0e46b04](https://github.com/verdaccio/flow-types/commit/0e46b04))
|
|
442
532
|
|
|
443
533
|
<a name="4.1.2"></a>
|
|
444
|
-
## [4.1.2](https://github.com/verdaccio/flow-types/compare/v4.1.1...v4.1.2) (2018-11-11)
|
|
445
534
|
|
|
535
|
+
## [4.1.2](https://github.com/verdaccio/flow-types/compare/v4.1.1...v4.1.2) (2018-11-11)
|
|
446
536
|
|
|
447
537
|
### Bug Fixes
|
|
448
538
|
|
|
449
|
-
|
|
450
|
-
|
|
451
|
-
|
|
539
|
+
- remove wrong definition ([9bc53fc](https://github.com/verdaccio/flow-types/commit/9bc53fc))
|
|
452
540
|
|
|
453
541
|
<a name="4.1.1"></a>
|
|
454
|
-
## [4.1.1](https://github.com/verdaccio/flow-types/compare/v4.1.0...v4.1.1) (2018-10-06)
|
|
455
542
|
|
|
543
|
+
## [4.1.1](https://github.com/verdaccio/flow-types/compare/v4.1.0...v4.1.1) (2018-10-06)
|
|
456
544
|
|
|
457
545
|
### Bug Fixes
|
|
458
546
|
|
|
459
|
-
|
|
460
|
-
|
|
461
|
-
|
|
547
|
+
- deprecated methods are optional ([4c96e89](https://github.com/verdaccio/flow-types/commit/4c96e89))
|
|
462
548
|
|
|
463
549
|
<a name="4.1.0"></a>
|
|
464
|
-
# [4.1.0](https://github.com/verdaccio/flow-types/compare/v4.0.0...v4.1.0) (2018-10-06)
|
|
465
550
|
|
|
551
|
+
# [4.1.0](https://github.com/verdaccio/flow-types/compare/v4.0.0...v4.1.0) (2018-10-06)
|
|
466
552
|
|
|
467
553
|
### Features
|
|
468
554
|
|
|
469
|
-
|
|
470
|
-
|
|
471
|
-
|
|
555
|
+
- package access props are not optional ([afabaf1](https://github.com/verdaccio/flow-types/commit/afabaf1))
|
|
472
556
|
|
|
473
557
|
<a name="4.0.0"></a>
|
|
474
|
-
# [4.0.0](https://github.com/verdaccio/flow-types/compare/v3.7.2...v4.0.0) (2018-09-30)
|
|
475
558
|
|
|
559
|
+
# [4.0.0](https://github.com/verdaccio/flow-types/compare/v3.7.2...v4.0.0) (2018-09-30)
|
|
476
560
|
|
|
477
561
|
### Features
|
|
478
562
|
|
|
479
|
-
|
|
480
|
-
|
|
563
|
+
- **auth:** add method to update password ([21fc43f](https://github.com/verdaccio/flow-types/commit/21fc43f))
|
|
481
564
|
|
|
482
565
|
### BREAKING CHANGES
|
|
483
566
|
|
|
484
|
-
|
|
485
|
-
|
|
486
|
-
|
|
567
|
+
- **auth:** it will affect all auth plugins
|
|
487
568
|
|
|
488
569
|
<a name="3.7.2"></a>
|
|
489
|
-
## [3.7.2](https://github.com/verdaccio/flow-types/compare/v3.7.1...v3.7.2) (2018-09-27)
|
|
490
570
|
|
|
571
|
+
## [3.7.2](https://github.com/verdaccio/flow-types/compare/v3.7.1...v3.7.2) (2018-09-27)
|
|
491
572
|
|
|
492
573
|
### Bug Fixes
|
|
493
574
|
|
|
494
|
-
|
|
495
|
-
|
|
496
|
-
|
|
497
|
-
|
|
575
|
+
- entry point [#14](https://github.com/verdaccio/flow-types/issues/14) ([f7b8982](https://github.com/verdaccio/flow-types/commit/f7b8982))
|
|
576
|
+
- export Author type ([7869dde](https://github.com/verdaccio/flow-types/commit/7869dde))
|
|
498
577
|
|
|
499
578
|
<a name="3.7.1"></a>
|
|
500
|
-
## [3.7.1](https://github.com/verdaccio/flow-types/compare/v3.7.0...v3.7.1) (2018-08-11)
|
|
501
579
|
|
|
580
|
+
## [3.7.1](https://github.com/verdaccio/flow-types/compare/v3.7.0...v3.7.1) (2018-08-11)
|
|
502
581
|
|
|
503
582
|
### Bug Fixes
|
|
504
583
|
|
|
505
|
-
|
|
506
|
-
|
|
507
|
-
|
|
584
|
+
- restore missing type on RemoteUser ([88d809e](https://github.com/verdaccio/flow-types/commit/88d809e))
|
|
508
585
|
|
|
509
586
|
<a name="3.7.0"></a>
|
|
510
|
-
# [3.7.0](https://github.com/verdaccio/flow-types/compare/v3.6.0...v3.7.0) (2018-08-05)
|
|
511
587
|
|
|
588
|
+
# [3.7.0](https://github.com/verdaccio/flow-types/compare/v3.6.0...v3.7.0) (2018-08-05)
|
|
512
589
|
|
|
513
590
|
### Features
|
|
514
591
|
|
|
515
|
-
|
|
516
|
-
|
|
517
|
-
|
|
592
|
+
- add Security configuration ([0d9aece](https://github.com/verdaccio/flow-types/commit/0d9aece))
|
|
518
593
|
|
|
519
594
|
<a name="3.6.0"></a>
|
|
520
|
-
# [3.6.0](https://github.com/verdaccio/flow-types/compare/v3.5.1...v3.6.0) (2018-07-30)
|
|
521
595
|
|
|
596
|
+
# [3.6.0](https://github.com/verdaccio/flow-types/compare/v3.5.1...v3.6.0) (2018-07-30)
|
|
522
597
|
|
|
523
598
|
### Features
|
|
524
599
|
|
|
525
|
-
|
|
526
|
-
|
|
527
|
-
|
|
600
|
+
- changes max_users type to number ([1fa6e73](https://github.com/verdaccio/flow-types/commit/1fa6e73))
|
|
528
601
|
|
|
529
602
|
<a name="3.5.1"></a>
|
|
530
|
-
## [3.5.1](https://github.com/verdaccio/flow-types/compare/v3.5.0...v3.5.1) (2018-07-21)
|
|
531
603
|
|
|
604
|
+
## [3.5.1](https://github.com/verdaccio/flow-types/compare/v3.5.0...v3.5.1) (2018-07-21)
|
|
532
605
|
|
|
533
606
|
### Bug Fixes
|
|
534
607
|
|
|
535
|
-
|
|
536
|
-
|
|
537
|
-
|
|
608
|
+
- login_url should be an optional property ([0fcfb9c](https://github.com/verdaccio/flow-types/commit/0fcfb9c))
|
|
538
609
|
|
|
539
610
|
<a name="3.5.0"></a>
|
|
540
|
-
# [3.5.0](https://github.com/verdaccio/flow-types/compare/v3.4.3...v3.5.0) (2018-07-21)
|
|
541
611
|
|
|
612
|
+
# [3.5.0](https://github.com/verdaccio/flow-types/compare/v3.4.3...v3.5.0) (2018-07-21)
|
|
542
613
|
|
|
543
614
|
### Features
|
|
544
615
|
|
|
545
|
-
|
|
546
|
-
|
|
547
|
-
|
|
616
|
+
- add `login_url` to verdaccio\$IPluginAuth ([6e03209](https://github.com/verdaccio/flow-types/commit/6e03209)), closes [verdaccio/verdaccio#834](https://github.com/verdaccio/verdaccio/issues/834)
|
|
548
617
|
|
|
549
618
|
<a name="3.4.3"></a>
|
|
550
|
-
## [3.4.3](https://github.com/verdaccio/flow-types/compare/v3.4.2...v3.4.3) (2018-07-19)
|
|
551
619
|
|
|
620
|
+
## [3.4.3](https://github.com/verdaccio/flow-types/compare/v3.4.2...v3.4.3) (2018-07-19)
|
|
552
621
|
|
|
553
622
|
### Bug Fixes
|
|
554
623
|
|
|
555
|
-
|
|
556
|
-
|
|
557
|
-
|
|
624
|
+
- allow extend config ([06e810f](https://github.com/verdaccio/flow-types/commit/06e810f))
|
|
558
625
|
|
|
559
626
|
<a name="3.4.2"></a>
|
|
560
|
-
## [3.4.2](https://github.com/verdaccio/flow-types/compare/v3.4.1...v3.4.2) (2018-07-17)
|
|
561
|
-
|
|
562
627
|
|
|
628
|
+
## [3.4.2](https://github.com/verdaccio/flow-types/compare/v3.4.1...v3.4.2) (2018-07-17)
|
|
563
629
|
|
|
564
630
|
<a name="3.4.1"></a>
|
|
565
|
-
## [3.4.1](https://github.com/verdaccio/flow-types/compare/v3.4.0...v3.4.1) (2018-07-16)
|
|
566
631
|
|
|
632
|
+
## [3.4.1](https://github.com/verdaccio/flow-types/compare/v3.4.0...v3.4.1) (2018-07-16)
|
|
567
633
|
|
|
568
634
|
### Bug Fixes
|
|
569
635
|
|
|
570
|
-
|
|
571
|
-
|
|
572
|
-
|
|
636
|
+
- allow sub types on allow auth methods ([fa8125b](https://github.com/verdaccio/flow-types/commit/fa8125b))
|
|
573
637
|
|
|
574
638
|
<a name="3.4.0"></a>
|
|
575
|
-
# [3.4.0](https://github.com/verdaccio/flow-types/compare/v3.3.3...v3.4.0) (2018-07-16)
|
|
576
639
|
|
|
640
|
+
# [3.4.0](https://github.com/verdaccio/flow-types/compare/v3.3.3...v3.4.0) (2018-07-16)
|
|
577
641
|
|
|
578
642
|
### Features
|
|
579
643
|
|
|
580
|
-
|
|
581
|
-
|
|
582
|
-
|
|
644
|
+
- add RemoteUser type ([aa83839](https://github.com/verdaccio/flow-types/commit/aa83839))
|
|
583
645
|
|
|
584
646
|
<a name="3.3.3"></a>
|
|
585
|
-
## [3.3.3](https://github.com/verdaccio/flow-types/compare/v3.3.2...v3.3.3) (2018-07-16)
|
|
586
647
|
|
|
648
|
+
## [3.3.3](https://github.com/verdaccio/flow-types/compare/v3.3.2...v3.3.3) (2018-07-16)
|
|
587
649
|
|
|
588
650
|
### Bug Fixes
|
|
589
651
|
|
|
590
|
-
|
|
591
|
-
|
|
592
|
-
|
|
652
|
+
- wrong signature for auth plugin ([11a0ce6](https://github.com/verdaccio/flow-types/commit/11a0ce6))
|
|
593
653
|
|
|
594
654
|
<a name="3.3.2"></a>
|
|
595
|
-
## [3.3.2](https://github.com/verdaccio/flow-types/compare/v3.3.1...v3.3.2) (2018-07-16)
|
|
596
655
|
|
|
656
|
+
## [3.3.2](https://github.com/verdaccio/flow-types/compare/v3.3.1...v3.3.2) (2018-07-16)
|
|
597
657
|
|
|
598
658
|
### Bug Fixes
|
|
599
659
|
|
|
600
|
-
|
|
601
|
-
|
|
602
|
-
|
|
660
|
+
- add missing adduser method ([0b54fe7](https://github.com/verdaccio/flow-types/commit/0b54fe7))
|
|
603
661
|
|
|
604
662
|
<a name="3.3.1"></a>
|
|
605
|
-
## [3.3.1](https://github.com/verdaccio/flow-types/compare/v3.3.0...v3.3.1) (2018-07-15)
|
|
606
663
|
|
|
664
|
+
## [3.3.1](https://github.com/verdaccio/flow-types/compare/v3.3.0...v3.3.1) (2018-07-15)
|
|
607
665
|
|
|
608
666
|
### Bug Fixes
|
|
609
667
|
|
|
610
|
-
|
|
611
|
-
|
|
612
|
-
|
|
668
|
+
- add config prop to IBasicAuth ([0714316](https://github.com/verdaccio/flow-types/commit/0714316))
|
|
613
669
|
|
|
614
670
|
<a name="3.3.0"></a>
|
|
615
|
-
# [3.3.0](https://github.com/verdaccio/flow-types/compare/v3.2.0...v3.3.0) (2018-07-15)
|
|
616
671
|
|
|
672
|
+
# [3.3.0](https://github.com/verdaccio/flow-types/compare/v3.2.0...v3.3.0) (2018-07-15)
|
|
617
673
|
|
|
618
674
|
### Features
|
|
619
675
|
|
|
620
|
-
|
|
621
|
-
|
|
622
|
-
|
|
676
|
+
- add IStorageManager for middleware plugin ([d473b4c](https://github.com/verdaccio/flow-types/commit/d473b4c))
|
|
623
677
|
|
|
624
678
|
<a name="3.2.0"></a>
|
|
625
|
-
# [3.2.0](https://github.com/verdaccio/flow-types/compare/v3.1.0...v3.2.0) (2018-07-15)
|
|
626
679
|
|
|
680
|
+
# [3.2.0](https://github.com/verdaccio/flow-types/compare/v3.1.0...v3.2.0) (2018-07-15)
|
|
627
681
|
|
|
628
682
|
### Features
|
|
629
683
|
|
|
630
|
-
|
|
631
|
-
|
|
632
|
-
|
|
684
|
+
- add interface for middleware and storage plugin ([0028085](https://github.com/verdaccio/flow-types/commit/0028085))
|
|
633
685
|
|
|
634
686
|
<a name="3.1.0"></a>
|
|
635
|
-
# [3.1.0](https://github.com/verdaccio/flow-types/compare/v3.0.1...v3.1.0) (2018-07-14)
|
|
636
687
|
|
|
688
|
+
# [3.1.0](https://github.com/verdaccio/flow-types/compare/v3.0.1...v3.1.0) (2018-07-14)
|
|
637
689
|
|
|
638
690
|
### Features
|
|
639
691
|
|
|
640
|
-
|
|
641
|
-
|
|
642
|
-
|
|
692
|
+
- add types for auth plugin ([a9b7bc9](https://github.com/verdaccio/flow-types/commit/a9b7bc9))
|
|
643
693
|
|
|
644
694
|
<a name="3.0.1"></a>
|
|
645
|
-
## [3.0.1](https://github.com/verdaccio/flow-types/compare/v3.0.0...v3.0.1) (2018-07-02)
|
|
646
695
|
|
|
696
|
+
## [3.0.1](https://github.com/verdaccio/flow-types/compare/v3.0.0...v3.0.1) (2018-07-02)
|
|
647
697
|
|
|
648
698
|
### Bug Fixes
|
|
649
699
|
|
|
650
|
-
|
|
651
|
-
|
|
652
|
-
|
|
700
|
+
- improvements config interface ([8ea6276](https://github.com/verdaccio/flow-types/commit/8ea6276))
|
|
653
701
|
|
|
654
702
|
<a name="3.0.0"></a>
|
|
655
|
-
# [3.0.0](https://github.com/verdaccio/flow-types/compare/v2.2.2...v3.0.0) (2018-06-08)
|
|
656
703
|
|
|
704
|
+
# [3.0.0](https://github.com/verdaccio/flow-types/compare/v2.2.2...v3.0.0) (2018-06-08)
|
|
657
705
|
|
|
658
706
|
### Features
|
|
659
707
|
|
|
660
|
-
|
|
661
|
-
|
|
708
|
+
- add search method ([2cf3ce9](https://github.com/verdaccio/flow-types/commit/2cf3ce9))
|
|
662
709
|
|
|
663
710
|
### BREAKING CHANGES
|
|
664
711
|
|
|
665
|
-
|
|
712
|
+
- search method must be implemented to allow search functionality
|