Skip to content

Commit

Permalink
Merge branch 'release/1.0.8'
Browse files Browse the repository at this point in the history
  • Loading branch information
thetutlage committed Oct 1, 2018
2 parents ea06748 + 60ce119 commit a6a059c
Show file tree
Hide file tree
Showing 6 changed files with 22 additions and 18 deletions.
2 changes: 1 addition & 1 deletion .github/PULL_REQUEST_TEMPLATE.md
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@ _Put an `x` in the boxes that apply_

_Put an `x` in the boxes that apply. You can also fill these out after creating the PR. If you're unsure about any of them, don't hesitate to ask. We're here to help! This is simply a reminder of what we are going to look for before merging your code._

- [ ] I have read the [CONTRIBUTING](https://github.com/adonisjs/adonis-shield/CONTRIBUTING.md) doc
- [ ] I have read the [CONTRIBUTING](https://github.com/adonisjs/adonis-shield/blob/develop/CONTRIBUTING.md) doc
- [ ] Lint and unit tests pass locally with my changes
- [ ] I have added tests that prove my fix is effective or that my feature works.
- [ ] I have added necessary documentation (if appropriate)
Expand Down
5 changes: 5 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,8 @@
<a name="1.0.8"></a>
## [1.0.8](https://github.com/adonisjs/adonis-shield/compare/v1.0.7...v1.0.8) (2018-10-01)



<a name="1.0.7"></a>
## [1.0.7](https://github.com/adonisjs/adonis-shield/compare/v1.0.6...v1.0.7) (2018-07-17)

Expand Down
2 changes: 1 addition & 1 deletion LICENSE.md
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
# The MIT License

Copyright 2018 thetutlage, contributors
Copyright 2018 Harminder Virk, contributors

Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the 'Software'), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions:

Expand Down
2 changes: 1 addition & 1 deletion appveyor.yml
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ install:
test_script:
- node --version
- npm --version
- 'npm run test:win'
- npm run test
build: 'off'
clone_depth: 1
matrix:
Expand Down
6 changes: 4 additions & 2 deletions japaFile.js
Original file line number Diff line number Diff line change
@@ -1,2 +1,4 @@
const cli = require('japa/cli')
cli.run('test/**/*.spec.js')
const { configure } = require('japa')
configure({
files: ['test/**/*.spec.js']
})
23 changes: 10 additions & 13 deletions package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@adonisjs/shield",
"version": "1.0.7",
"version": "1.0.8",
"description": "Adonis shield is middleware to standard HTTP websites to protect themselves from common web attacks like xss, csp and csrf",
"main": "index.js",
"files": [
Expand All @@ -14,8 +14,7 @@
"mrm": "mrm --preset=@adonisjs/mrm-preset",
"pretest": "npm run lint",
"test:local": "FORCE_COLOR=true node bin/index.js --local",
"test": "nyc japa",
"test:win": "node ./node_modules/japa-cli/index.js",
"test": "nyc node japaFile.js",
"coverage": "nyc report --reporter=text-lcov | coveralls",
"commit": "git-cz",
"lint": "standard"
Expand All @@ -31,23 +30,22 @@
"license": "MIT",
"devDependencies": {
"@adonisjs/fold": "^4.0.9",
"@adonisjs/mrm-preset": "^1.0.9",
"@adonisjs/sink": "^1.0.16",
"@adonisjs/mrm-preset": "^1.0.13",
"@adonisjs/sink": "^1.0.17",
"commitizen": "^2.10.1",
"coveralls": "^3.0.2",
"cz-conventional-changelog": "^2.1.0",
"japa": "^1.0.6",
"japa-cli": "^1.0.1",
"japa": "^2.0.3",
"mrm": "^1.2.1",
"nyc": "^12.0.2",
"nyc": "^13.0.1",
"pkg-ok": "^2.2.0",
"semver": "^5.5.0",
"standard": "^11.0.1"
"semver": "^5.5.1",
"standard": "^12.0.1"
},
"dependencies": {
"@adonisjs/generic-exceptions": "^2.0.1",
"csrf": "^3.0.6",
"node-cookie": "^2.1.0",
"node-cookie": "^2.1.1",
"node-csp": "^1.0.1",
"node-guard": "^1.0.0",
"uuid": "^3.3.2"
Expand All @@ -57,8 +55,7 @@
"src"
],
"exclude": [
"test",
"japaFile.js"
"test"
]
},
"directories": {
Expand Down

0 comments on commit a6a059c

Please sign in to comment.