Skip to content
This repository has been archived by the owner on Mar 30, 2022. It is now read-only.

v2.0.0

Compare
Choose a tag to compare
@andreidmt andreidmt released this 24 Feb 14:50
· 5 commits to master since this release

2.0.0 (2021-02-24)

Features

  • Add basic TestCafe suite (ff88510)
  • Update packages, fix lint errors, rename signature (a1ea4c5)

BREAKING CHANGES

  • rename exported "set" to "setup"
  • rename "queryStringifyFn" to "stringifyQueryParams"
// old
import { stringify } from "qs"
import { set } from "@asd14/fetch-browser"

set({
  queryStringifyFn: source => qs.stringify(source),
})

// new
import { stringify } from "qs"
import { setup } from "@asd14/fetch-browser"

setup({
  stringifyQueryParams: source => qs.stringify(source),
})