settings: Deprecate base64 in fs backed settings

Encoding of values with use of base64 has been marked as deprecated and
will be removed in future releases.

Signed-off-by: Dominik Ermel <dominik.ermel@nordicsemi.no>
This commit is contained in:
Dominik Ermel 2020-01-14 12:06:48 +00:00 committed by Anas Nashif
commit 2addfb4696
2 changed files with 7 additions and 2 deletions

View file

@ -24,6 +24,10 @@ API Changes
Deprecated in this release
==========================
* Settings
* SETTINGS_USE_BASE64, encoding values in base64 is marked for removal.
Stable API changes in this release
==================================
@ -300,4 +304,3 @@ release:
.. comment List derived from GitHub Issue query: ...
* :github:`issuenumber` - issue title

View file

@ -34,10 +34,12 @@ config SETTINGS_ENCODE_LEN
bool
config SETTINGS_USE_BASE64
bool "encoding value using base64"
bool "encoding value using base64 (deprecated)"
depends on SETTINGS
select BASE64
help
This option has been deprecated and will not be supported
in future releases.
Enables values encoding using Base64.
choice