Skip to content

Commit e514924

Browse files
committed
Version 0.2.2 created and documented.
1 parent feeba87 commit e514924

File tree

4 files changed

+45
-1
lines changed

4 files changed

+45
-1
lines changed

.npmignore

+20
Original file line numberDiff line numberDiff line change
@@ -1,2 +1,22 @@
1+
# IDE, OS
2+
.DS_Store
3+
/.idea
4+
15
# Source files are not needed for distribution.
26
src/
7+
__tests__/
8+
9+
# Generated files.
10+
/cc-test-reporter
11+
/coverage/
12+
/out/
13+
node_modules/
14+
npm-debug.log
15+
yarn-error.log
16+
# NPM Pack
17+
filog*.tgz
18+
19+
# Version lock files
20+
npm-shrinkwrap.json
21+
package-lock.json
22+
yarn.lock

CHANGELOG.md

+7
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,13 @@
11
# FiLog changelog
22

33
## 0.2 series
4+
### 0.2.2
5+
6+
* Meteor 1.9 support. Dropped pre-1.9 support. Node 12.* required.
7+
* No significant code changes
8+
* The `doc` NPM script now works, using TypeDoc instead of JSDoc
9+
* TypeScript 4.1, TSLint 6, TypeDoc 0.2, Jest 26, Sinon 9, Axios 0.21 (security release)
10+
411
### 0.2.1
512

613
* Split context by side (client/server).

SECURITY.md

+17
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,17 @@
1+
# Security Policy
2+
3+
## Supported Versions
4+
5+
| Version | Supported |
6+
| --------- | ------------------ |
7+
| 0.2.2 | :white_check_mark: |
8+
| any other | :x: |
9+
10+
## Reporting a Vulnerability
11+
12+
To report a security issue, please:
13+
14+
- do NOT create an issue here
15+
- do contact OSInet support at https://osinet.fr/contact
16+
17+
Once you sent a message on that page, you should receive a human acknownledgment within 2 work days, with details on how the fix will proceed.

package.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -85,5 +85,5 @@
8585
"cover": "meteor npm run test-compile && time -p jest --coverage __tests__/**/test.*"
8686
},
8787
"typings": "lib/index.d.ts",
88-
"version": "0.2.1"
88+
"version": "0.2.2"
8989
}

0 commit comments

Comments
 (0)