Skip to content
This repository has been archived by the owner on Jun 4, 2021. It is now read-only.

Add handling for leap day birthdays #220

Merged
merged 2 commits into from
May 14, 2018
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
19 changes: 17 additions & 2 deletions .snyk
Original file line number Diff line number Diff line change
@@ -1,3 +1,18 @@
version: v1
ignore: {}
# Snyk (https://snyk.io) policy file, patches or ignores known vulnerabilities.
version: v1.12.0
# ignores vulnerabilities until expiry date; change duration by modifying expiry date
ignore:
'npm:hoek:20180212':
- gulp-less > less > request > hawk > hoek:
reason: Not prepared to do a major version upgrade at this time
expires: '2018-06-13T18:04:08.207Z'
- gulp-less > less > request > hawk > boom > hoek:
reason: Not prepared to do a major version upgrade at this time
expires: '2018-06-13T18:04:08.207Z'
- gulp-less > less > request > hawk > sntp > hoek:
reason: Not prepared to do a major version upgrade at this time
expires: '2018-06-13T18:04:08.207Z'
- gulp-less > less > request > hawk > cryptiles > boom > hoek:
reason: Not prepared to do a major version upgrade at this time
expires: '2018-06-13T18:04:08.207Z'
patch: {}
5 changes: 5 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,6 +1,11 @@
Notable changes to this project will be documented in this file.
We follow the [Semantic Versioning 2.0.0](http://semver.org/) format.

## 0.6.1
- Fix handling of Leap Day birthdays
- Used Snyk to walk through updating some dependencies with vulnerabilities
- Added `npm install -g snyk` to `frontendbuild.sh` to ensure `npm test` runs

## 0.6.0
- Update to frontend to gulp 4.
- Update linter to ESLint 4.
Expand Down
1 change: 1 addition & 0 deletions frontendbuild.sh
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,7 @@

set -ev

npm install -g snyk
npm install
bower install
gulp
Loading