Skip to content

Commit

Permalink
Support hapi v21
Browse files Browse the repository at this point in the history
  • Loading branch information
devinivy committed Nov 28, 2022
1 parent ca7d72b commit b8a50c9
Show file tree
Hide file tree
Showing 5 changed files with 17 additions and 16 deletions.
4 changes: 2 additions & 2 deletions .travis.yml
@@ -1,3 +1,3 @@
import:
- hapipal/ci-config-travis:hapi_all.yml@master
- hapipal/ci-config-travis:node_js.yml@master
- hapipal/ci-config-travis:hapi_all.yml@hapi-v21
- hapipal/ci-config-travis:node_js.yml@hapi-v21
2 changes: 1 addition & 1 deletion CONTRIBUTING.md
Expand Up @@ -13,4 +13,4 @@ Code changes are welcome and should follow the guidelines below.
* Fix the issue ensuring that your code follows the [hapi style guide](https://hapi.dev/policies/styleguide/).
* Add tests for your new code ensuring that you have 100% code coverage (we can help you reach 100% but will not merge without it).
* Run `npm test` to generate a report of test coverage and linting results.
* [Pull requests](http://help.github.com/send-pull-requests/) should be made to the [master branch](https://github.com/hapipal/schwifty/tree/master) or in certain special cases, the branch for a relevant [milestone](https://github.com/hapipal/schwifty/milestones).
* [Pull requests](http://help.github.com/send-pull-requests/) should be made to the [main branch](https://github.com/hapipal/schwifty/tree/main) or in certain special cases, the branch for a relevant [milestone](https://github.com/hapipal/schwifty/milestones).
1 change: 1 addition & 0 deletions LICENSE
@@ -1,5 +1,6 @@
The MIT License (MIT)

Copyright (c) 2022 Devin Ivy
Copyright (c) 2016-2021 Big Room Studios and project contributors

Permission is hereby granted, free of charge, to any person obtaining a copy of
Expand Down
2 changes: 1 addition & 1 deletion README.md
Expand Up @@ -2,7 +2,7 @@

A model layer for [hapi](https://hapi.dev) integrating [Objection ORM](https://vincit.github.io/objection.js/)

[![Build Status](https://app.travis-ci.com/hapipal/schwifty.svg?branch=master)](https://app.travis-ci.com/hapipal/schwifty) [![Coverage Status](https://coveralls.io/repos/github/hapipal/schwifty/badge.svg?branch=master)](https://coveralls.io/github/hapipal/schwifty?branch=master)
[![Build Status](https://app.travis-ci.com/hapipal/schwifty.svg?branch=main)](https://app.travis-ci.com/hapipal/schwifty) [![Coverage Status](https://coveralls.io/repos/github/hapipal/schwifty/badge.svg?branch=main)](https://coveralls.io/github/hapipal/schwifty?branch=main)

Lead Maintainer - [Devin Ivy](https://github.com/devinivy)

Expand Down
24 changes: 12 additions & 12 deletions package.json
Expand Up @@ -28,25 +28,25 @@
"model"
],
"dependencies": {
"@hapi/hoek": "9.x.x",
"@hapipal/toys": "3.x.x",
"joi": "17.x.x"
"@hapi/hoek": "^9.0.0",
"@hapipal/toys": "^3.2.0",
"joi": "^17.0.0"
},
"peerDependencies": {
"@hapi/hapi": ">=19 <21",
"@hapi/hapi": ">=19 <22",
"joi": ">=17 <18",
"knex": ">=0.16",
"objection": ">=1 <4"
},
"devDependencies": {
"@hapi/code": "8.x.x",
"@hapi/hapi": "20.x.x",
"@hapi/lab": "24.x.x",
"@hapipal/ahem": "2.x.x",
"coveralls": "3.x.x",
"knex": "0.95.x",
"objection": "3.x.x",
"sqlite3": "5.x.x"
"@hapi/code": "^8.0.0",
"@hapi/hapi": "^20.0.0",
"@hapi/lab": "^24.0.0",
"@hapipal/ahem": "^2.0.0",
"coveralls": "^3.0.0",
"knex": "^0.95.0",
"objection": "^3.0.0",
"sqlite3": "^5.0.0"
},
"author": "William Woodruff and Contributors",
"license": "MIT"
Expand Down

0 comments on commit b8a50c9

Please sign in to comment.