graphql-hooks
graphql-hooks copied to clipboard
chore(deps): Bump lowdb from 6.1.1 to 7.0.1
Bumps lowdb from 6.1.1 to 7.0.1.
Release notes
Sourced from lowdb's releases.
v7.0.0
🚀 Simplified syntax with
db.update, new adapter for more file format, consistent presets, automatic write error retry, and a TS error fix!What's New
- Simplified Syntax: Introducing
db.updatefor easier updates and writes.- Flexible Adapters: Added
DataFileadapters for supporting various formats likeYAML,JSON5, ... and adding features like encryption with minimal code.- Automatic Retry: Resolves write errors, especially for Windows users.
Breaking Changes
- Node 16 Dropped: discontinued support for Node 16.
- Consistent Naming: Renamed presets for consistency:
JSONPresettoJSONFilePresetJSONSyncPresettoJSONFileSyncPreset.Code Examples
If you were using the
JSONPreset, please rename it- import { JSONPreset } from 'lowdb/node' + import { JSONFilePreset } from 'lowdb/node'Enjoy the simplified syntax with
db.update- db.data.posts.push(newPost) - await db.write() + await db.update(({ posts }) => posts.push(newPost))Easily support other formats:
const yamlAdapter = new DataFile('db.yaml', { parse: YAML.parse, stringify: YAML.stringify }) const db = new Low(yamlAdapter, { posts: [] })Sponsors
Special thanks to lowdb's current sponsor: Mockend.
Your support is essential, you can sponsor this project on GitHub Sponsors :heart:
Commits
You can trigger a rebase of this PR by commenting @dependabot rebase.
Dependabot commands and options
You can trigger Dependabot actions by commenting on this PR:
@dependabot rebasewill rebase this PR@dependabot recreatewill recreate this PR, overwriting any edits that have been made to it@dependabot mergewill merge this PR after your CI passes on it@dependabot squash and mergewill squash and merge this PR after your CI passes on it@dependabot cancel mergewill cancel a previously requested merge and block automerging@dependabot reopenwill reopen this PR if it is closed@dependabot closewill close this PR and stop Dependabot recreating it. You can achieve the same result by closing it manually@dependabot show <dependency name> ignore conditionswill show all of the ignore conditions of the specified dependency@dependabot ignore this major versionwill close this PR and stop Dependabot creating any more for this major version (unless you reopen the PR or upgrade to it yourself)@dependabot ignore this minor versionwill close this PR and stop Dependabot creating any more for this minor version (unless you reopen the PR or upgrade to it yourself)@dependabot ignore this dependencywill close this PR and stop Dependabot creating any more for this dependency (unless you reopen the PR or upgrade to it yourself)
Note Automatic rebases have been disabled on this pull request as it has been open for over 30 days.
@dependabot rebase
Looks like this PR has been edited by someone other than Dependabot. That means Dependabot can't rebase it - sorry!
If you're happy for Dependabot to recreate it from scratch, overwriting any edits, you can request @dependabot recreate.
@dependabot recreate