UNPKG

1.98 kBMarkdownView Raw
1# Changelog
2
3All notable changes to this project will be documented in this file. See [standard-version](https://github.com/conventional-changelog/standard-version) for commit guidelines.
4
5### [4.0.4](https://github.com/nathanbuchar/electron-settings/compare/v4.0.2...v4.0.4) (2024-04-23)
6
7
8### Bug Fixes
9
10* security issue with lodash ([6d15e65](https://github.com/nathanbuchar/electron-settings/commit/6d15e6502084264dc8c2d76b4c3905020216679a))
11
12### [4.0.3](https://github.com/nathanbuchar/electron-settings/compare/v4.0.2...v4.0.3) (2024-04-11)
13
14
15### Bug Fixes
16
17* security issue with lodash ([6d15e65](https://github.com/nathanbuchar/electron-settings/commit/6d15e6502084264dc8c2d76b4c3905020216679a))
18
19### [4.0.2](https://github.com/nathanbuchar/electron-settings/compare/v4.0.1...v4.0.2) (2020-06-27)
20
21
22### Bug Fixes
23
24* Fix module export for node ([9064b0f](https://github.com/nathanbuchar/electron-settings/commit/9064b0f71f9a508add7b7a76b0c9a830697beb80))
25
26### [4.0.1](https://github.com/nathanbuchar/electron-settings/compare/v4.0.0...v4.0.1) (2020-06-20)
27
28## [4.0.0](https://github.com/nathanbuchar/electron-settings/compare/v3.1.4...v4.0.0) (2020-06-07)
29
30
31### ⚠ BREAKING CHANGES
32
33* `has()` is now async. Use `hasSync()` for sync.
34* `get()` is now async. Use `getSync()` for sync.
35* `set()` is now async. Use `setSync()` for sync.
36* `delete()` has been removed. Use `unset()` instead, or
37`unsetSync()` for sync.
38* `setPath()` has been removed. Use `configure()`
39instead.
40* `clearPath()` has been removed. Use `configure()`
41instead.
42* `getAll()` has been removed. Use `get()` instead.
43* `setAll()` has been removed. Use `set()` instead.
44* `deleteAll()` has been removed. Use `unset()` instead.
45* The default settings file name has been changed from
46`Settings` to `settings.json`.
47* Key path observers have been removed.
48
49### Features
50
51* Electron Settings v4 ([6199f8b](https://github.com/nathanbuchar/electron-settings/commit/6199f8b2ce27adaac1d1f5b57e03d8550fa2d565))