Skip to content

Commit 9dd2120

Browse files
authored
Release 1.0.4
Security fixes and cleaning
2 parents 6b7ca47 + 612a5f4 commit 9dd2120

File tree

11 files changed

+84
-5418
lines changed

11 files changed

+84
-5418
lines changed

.gitignore

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -20,4 +20,7 @@ yarn.lock
2020
.nyc_output
2121

2222
# Test compilation
23-
.temp
23+
.temp
24+
25+
# npm
26+
package-lock.json

.npmrc

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
registry=https://registry.npmjs.org/

CHANGELOG.md

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,12 @@
22

33
All notable changes to this library will be documented in this file.
44

5+
## 1.0.4
6+
7+
- Fix security issues
8+
- Adjustment to packages
9+
- Remove unnecessary files
10+
511
## 1.0.3
612

713
- Fix issue with autobind-decorator which must be a runtime dependency ([issue #10](https://github.com/VilledeMontreal/express-idempotency/issues/10))

Dockerfile

Lines changed: 0 additions & 18 deletions
This file was deleted.

examples/simple-use/.npmrc

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
registry=https://registry.npmjs.org/

examples/simple-use/Dockerfile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@ WORKDIR /usr/src/app
77
COPY . .
88

99
# Compile the library and link the library
10-
RUN npm install && npm run compile && npm link
10+
RUN npm install && npm run compile && npm prune --production && npm link
1111

1212
# Installation of package to run the application
1313
WORKDIR /usr/src/app/examples/simple-use

0 commit comments

Comments
 (0)