-
Notifications
You must be signed in to change notification settings - Fork 8
/
Copy pathCHANGELOG
82 lines (66 loc) · 2.72 KB
/
CHANGELOG
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
# Changelog
All notable changes to this project will be documented in this file.
The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/),
and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html).
## 0.2.5
### Changed
- Add support for Verdaccio 4.5
- Updated dependencies
## 0.2.4
### Changed
- Add support for Verdaccio 4.4
- Add retry mechanism on Bucket initialization
- Updated dependencies
## 0.2.3
### Changed
- Fix an error when publishing packages, with the artifact on minio being empty
- Remove the local storage (cache) so multiple instances of Verdaccio connected to the same minio backend are always in sync.
## 0.2.1
### Changed
- Fix the error code thrown by the storage ([issue #2](https://github.com/barolab/verdaccio-minio/issues/2))
- Perform acceptance checks on multiple Verdaccio versions
## 0.2.0
### Breaking changes
In order to add support for older verdaccio versions I've renamed the plugin to `minio` instead of `minio-storage`. This impact all verdaccio configuration file you may have.
You'll need to replace the `minio-storage` key in the verdaccio config file, so it'll look like this :
```yaml
plugins: /verdaccio/plugins
storage: /verdaccio/storage/data
store:
minio: # instead of minio-storage
port: 9000
region: us-east-1
endPoint: minio
accessKey: this-is-not-so-secret
secretKey: this-is-not-so-secret
useSSL: false
```
### Changed
- Changed plugin name in config file ([issue #2](https://github.com/barolab/verdaccio-minio/issues/2))
- Update Verdaccio in docker image ([issue #4](https://github.com/barolab/verdaccio-minio/issues/4))
- Update module dependencies ([issue #5](https://github.com/barolab/verdaccio-minio/issues/5))
- Fix plugin version ([issue #6](https://github.com/barolab/verdaccio-minio/issues/6))
## 0.1.5
### Changed
- Less verbose debug output
## 0.1.4
### Changed
- More documentation on the plugin usage & the associated docker image
## 0.1.3
### Changed
- Fix caching issue with Docker, not installing the latest version of the package
- Fix release scripts asking package version twice
## 0.1.2
### Added
- A new Docker image with verdaccio + minio plugin installed
- A release scripts for bumping version, publishing on NPM and on Docker Hub
## 0.1.1
### Changed
- Remove postinstall hook which may cause install to fail because of missing scripts
## 0.1.0
### Added
- This CHANGELOG file to hopefully serve as an evolving example of a standardized open source project CHANGELOG.
- A CODE OF CONDUCT to help contributors understand what's allowed and what's not
- A working build
- A working plugin for verdaccio that interacts with minio
- A working example that can be used to perform acceptance checks