-
Notifications
You must be signed in to change notification settings - Fork 85
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
[deps]: Update lowdb to v7 #458
Open
renovate
wants to merge
1
commit into
main
Choose a base branch
from
renovate/lowdb-7.x
base: main
Could not load branches
Branch not found: {{ refName }}
Loading
Could not load tags
Nothing to show
Loading
Are you sure you want to change the base?
Some commits from the old base branch may be removed from the timeline,
and old review comments may become outdated.
Open
Conversation
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
bitwarden-bot
changed the title
[deps]: Update lowdb to v7
[AC-2225] [deps]: Update lowdb to v7
Feb 17, 2024
Internal tracking:
|
No New Or Fixed Issues Found |
renovate
bot
changed the title
[AC-2225] [deps]: Update lowdb to v7
[deps]: Update lowdb to v7
Feb 17, 2024
renovate
bot
force-pushed
the
renovate/lowdb-7.x
branch
2 times, most recently
from
March 6, 2024 13:04
600635d
to
283d4fd
Compare
renovate
bot
force-pushed
the
renovate/lowdb-7.x
branch
4 times, most recently
from
March 18, 2024 17:39
e0dcbc4
to
4610e16
Compare
renovate
bot
force-pushed
the
renovate/lowdb-7.x
branch
2 times, most recently
from
March 25, 2024 14:19
e16f2c3
to
acaaca8
Compare
renovate
bot
force-pushed
the
renovate/lowdb-7.x
branch
2 times, most recently
from
March 27, 2024 17:10
e44d791
to
319faf5
Compare
renovate
bot
force-pushed
the
renovate/lowdb-7.x
branch
3 times, most recently
from
April 29, 2024 14:01
93fbbac
to
570bbb0
Compare
renovate
bot
force-pushed
the
renovate/lowdb-7.x
branch
3 times, most recently
from
May 13, 2024 13:27
37289e6
to
c7f768b
Compare
renovate
bot
force-pushed
the
renovate/lowdb-7.x
branch
3 times, most recently
from
May 27, 2024 21:36
b862986
to
2887ff9
Compare
renovate
bot
force-pushed
the
renovate/lowdb-7.x
branch
3 times, most recently
from
June 3, 2024 18:13
a2952b3
to
ae8f4bf
Compare
renovate
bot
force-pushed
the
renovate/lowdb-7.x
branch
2 times, most recently
from
July 1, 2024 17:18
71685b1
to
1152bfa
Compare
renovate
bot
force-pushed
the
renovate/lowdb-7.x
branch
from
July 3, 2024 10:55
1152bfa
to
c3cc165
Compare
renovate
bot
force-pushed
the
renovate/lowdb-7.x
branch
3 times, most recently
from
July 23, 2024 09:50
175c5ec
to
1eac00a
Compare
renovate
bot
force-pushed
the
renovate/lowdb-7.x
branch
from
August 5, 2024 16:16
1eac00a
to
6e77679
Compare
Quality Gate passedIssues Measures |
renovate
bot
force-pushed
the
renovate/lowdb-7.x
branch
from
August 26, 2024 20:17
6e77679
to
dc70c2a
Compare
renovate
bot
force-pushed
the
renovate/lowdb-7.x
branch
from
September 4, 2024 22:13
dc70c2a
to
f377629
Compare
renovate
bot
force-pushed
the
renovate/lowdb-7.x
branch
2 times, most recently
from
October 11, 2024 13:25
165d549
to
d2e8b29
Compare
renovate
bot
force-pushed
the
renovate/lowdb-7.x
branch
from
November 1, 2024 03:00
d2e8b29
to
d243f72
Compare
renovate
bot
changed the title
[deps]: Update lowdb to v7
[deps]: Update lowdb to v7 - autoclosed
Dec 8, 2024
renovate
bot
changed the title
[deps]: Update lowdb to v7 - autoclosed
[deps]: Update lowdb to v7
Dec 9, 2024
renovate
bot
force-pushed
the
renovate/lowdb-7.x
branch
from
December 17, 2024 16:47
d243f72
to
c32e05a
Compare
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
This PR contains the following updates:
1.0.0
->7.0.1
Release Notes
typicode/lowdb (lowdb)
v7.0.1
Compare Source
v7.0.0
Compare Source
🚀 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
db.update
for easier updates and writes.DataFile
adapters for supporting various formats likeYAML
,JSON5
, ... and adding features like encryption with minimal code.Breaking Changes
JSONPreset
toJSONFilePreset
JSONSyncPreset
toJSONFileSyncPreset
.Code Examples
If you were using the
JSONPreset
, please rename itEnjoy the simplified syntax with
db.update
Easily support other formats:
Sponsors
Special thanks to lowdb's current sponsor: Mockend.
Your support is essential, you can sponsor this project on GitHub Sponsors ❤️
v6.1.1
Compare Source
JSONPreset
andJSONSyncPreset
v6.1.0
Compare Source
New presets
Before
Now
This will also use the
Memory
adapter automatically whenNODE_ENV=test
making tests faster.TypeScript
Lowdb now supports the broader
fs.PathLike
type which lets you useURL
type in addition tostring
. This is useful for ESM.v6.0.1
Compare Source
What's Changed
New Contributors
Full Changelog: typicode/lowdb@v6.0.0...v6.0.1
v6.0.0
Compare Source
What's Changed
defaultData
parameter forLow
andLowSync
constructors to improve TypeScript experienceHow to upgrade:
If you like lowdb, please sponsor my work. If you cannot, a star or tweet is always appreciated.
Thank you!
v5.1.0
Compare Source
What's Changed
New Contributors
Full Changelog: typicode/lowdb@v5.0.4...v5.1.0
v5.0.5
Compare Source
v5.0.3
Compare Source
v5.0.2
Compare Source
v5.0.1
Compare Source
v5.0.0
Compare Source
Better support for front-end tools like Vite, CodeSandbox, ...
To achieve this, Node and Browser (localStorage) adapters are now split in two.
Besides that, there are no other breaking changes.
Node
lowdb/node
exportsJSONFile
,JSONFileSync
,TextFile
andTextFileSync
.Browser
lowdb/browser
exportsLocalStorage
.v4.0.1
Compare Source
v4.0.0
Compare Source
v3.0.0
Compare Source
#
instead of TypeScriptprivate
keyword for adaptersMany thanks to Mockend and everyone on GitHub Sponsors for supporting this project ❤️ 🦉
v2.1.0
Compare Source
TextFile
andTextFileSync
adapters to simplify writing to different formats (YAML, XML, ...) and make encryption easier.v2.0.3
Compare Source
v2.0.2
Compare Source
v2.0.1
Compare Source
v2.0.0
Compare Source
db.data
To help with OSS funding, lowdb v2 is released under Parity license for a limited time. It'll be released under MIT license once the goal of 100 sponsors is reached (currently at 55) or in five months. See README for complete explanation.
You can sponsor me on GitHub Sponsors.
Thank you!
Migrate
Lowdb v1
Lowdb v2
If you're using TypeScript, data can now be typed:
To continue using lodash with lowdb:
Breaking changes
The following methods and properties have been removed:
db.getState
(usedb.data
instead)db.setState
(usedb.data = ...
instead)db._
Configuration
📅 Schedule: Branch creation - "every 2nd week starting on the 2 week of the year before 4am on Monday" (UTC), Automerge - At any time (no schedule defined).
🚦 Automerge: Disabled by config. Please merge this manually once you are satisfied.
♻ Rebasing: Whenever PR becomes conflicted, or you tick the rebase/retry checkbox.
🔕 Ignore: Close this PR and you won't be reminded about this update again.
This PR was generated by Mend Renovate. View the repository job log.