fastapi-rocket-boilerplate icon indicating copy to clipboard operation
fastapi-rocket-boilerplate copied to clipboard

Use mock db fixture

Open asacristani opened this issue 10 months ago • 0 comments

https://pytest-mock-resources.readthedocs.io/en/latest/

asacristani avatar Apr 05 '24 00:04 asacristani

  • The devDependency babel-eslint was updated from 8.2.6 to 10.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}

  • Update to test against ESLint 5, add a peerDependency: #689
  • Drop monkeypatching behavior: #690
Commits

The new version differs by 5 commits.

  • 8f78e28 10.0.0
  • 717fba7 test value should be switched
  • 020d012 Treat type alias declarationlike function declaration (#584)
  • b400cb1 Test eslint5, update peerDep (#690)
  • c333bd6 Drop old monkeypatching behavior (#689)

See the full diff

greenkeeper[bot] avatar Sep 25 '18 23:09 greenkeeper[bot]

  • The devDependency babel-eslint was updated from 8.2.6 to 10.0.1.

Update to this version instead 🚀

Release Notes for v10.0.1

v10.0.1

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.

Commits

The new version differs by 2 commits.

See the full diff

greenkeeper[bot] avatar Sep 27 '18 16:09 greenkeeper[bot]

  • The devDependency babel-eslint was updated from 8.2.6 to 10.0.2.

Update to this version instead 🚀

Release Notes for v10.0.2

Fixes #772

Commits

The new version differs by 2 commits.

See the full diff

greenkeeper[bot] avatar Jun 17 '19 14:06 greenkeeper[bot]