fastapi-rocket-boilerplate
fastapi-rocket-boilerplate copied to clipboard
Use mock db fixture
https://pytest-mock-resources.readthedocs.io/en/latest/
- The
devDependency
babel-eslint was updated from8.2.6
to10.0.0
.
Update to this version instead 🚀
Release Notes for v10.0.0
v10.0.0
Small breaking change: add a peerDependency starting from the ESLint version that added a parser feature that we were monkeypatching before (and drop that code). If already using ESLint 5 shouldn't be any different.
- Bugfix for
TypeAlias
: #584
/* @flow */
type Node<T> = { head: T; tail: Node<T> }
// or
type File = {chunks: Array<Chunk>}
type Chunk = {file: File}
- The
devDependency
babel-eslint was updated from8.2.6
to10.0.1
.
Update to this version instead 🚀
Release Notes for v10.0.1
v10.0.1
- Reverting #584
The TypeAlias
"conversion" to a function has issues. Sounds like we need to rethink the change, most likely we can just actually change the scoping rather than hardcode an AST change.
- The
devDependency
babel-eslint was updated from8.2.6
to10.0.2
.
Update to this version instead 🚀
Release Notes for v10.0.2
Fixes #772