serverless-vpc-discovery 3.1.1 → 4.0.1
Sign up to get free protection for your applications and to get access to all the features.
- package/CHANGELOG.md +12 -0
- package/README.md +7 -5
- package/package-lock.json +1650 -5127
- package/package.json +2 -2
package/CHANGELOG.md
CHANGED
@@ -4,6 +4,18 @@ All notable changes to this project will be documented in this file.
|
|
4
4
|
The format is based on [Keep a Changelog](http://keepachangelog.com/en/1.0.0/)
|
5
5
|
and this project adheres to [Semantic Versioning](http://semver.org/spec/v2.0.0.html).
|
6
6
|
|
7
|
+
## [4.0.1] - 2022-04-08
|
8
|
+
### Changed
|
9
|
+
- Fixed audit issues. Added dependabot config.
|
10
|
+
|
11
|
+
## [4.0.0] - 2022-04-08
|
12
|
+
### Changed
|
13
|
+
- Added compability with serverless 3
|
14
|
+
|
15
|
+
## [3.1.2] - 2021-09-01
|
16
|
+
### Changed
|
17
|
+
- Fixed y18n vulnerability
|
18
|
+
|
7
19
|
## [3.1.1] - 2021-09-01
|
8
20
|
### Changed
|
9
21
|
- Added serverless schema validation. Thank you @ROSeaboyer ([53](https://github.com/amplify-education/serverless-vpc-discovery/pull/53))
|
package/README.md
CHANGED
@@ -157,18 +157,20 @@ npm test
|
|
157
157
|
```
|
158
158
|
All tests should pass.
|
159
159
|
|
160
|
-
If there is an error update the node_module inside the serverless-vpc-discovery folder:
|
161
|
-
```
|
162
|
-
npm install
|
163
|
-
```
|
164
|
-
|
165
160
|
To run integration tests, set an environment variable TEST_VPC_NAME to the VPC you will be testing for. Then,
|
166
161
|
```
|
167
162
|
export AWS_PROFILE=your_profile
|
168
163
|
export TEST_VPC_NAME=vpc_name
|
164
|
+
npm build
|
169
165
|
npm run integration-test
|
170
166
|
```
|
171
167
|
|
168
|
+
If there is an error build and install the node_module inside the serverless-vpc-discovery folder:
|
169
|
+
```
|
170
|
+
npm build
|
171
|
+
npm install .
|
172
|
+
```
|
173
|
+
|
172
174
|
## Deploying with the plugin
|
173
175
|
When deploying run:
|
174
176
|
```
|