Releases
This page documents the changes in the Python implementation of NestedText. Changes to the NestedText language are shown in Language changes.
Latest development version
v3.7 (2024-04-27)
Added ability to disable support for inlines using dialect argument to
load()
andloads()
.Added
get_keys()
,get_value()
,get_line_numbers()
, andget_location()
.Deprecated
get_value_from_keys()
,get_lines_from_keys()
,get_original_keys()
, andjoin_keys()
.Added offset argument to
Location.as_line()
.Add ability to specify source to
load()
.Clarified policy on white space in inline strings.
v3.6 (2023-05-30)
De-duplicating with the on_dup argument to
loads()
now works well for error reporting with keymaps.
Warning
The sort_keys argument to dump()
and dumps()
has changed.
When passing a call-back function to sort_keys, that call-back function
now has a second argument, parent_keys. In addition, the first argument
has changed. It is now a tuple with three members rather than two, with the
new and leading member being the mapped key rather than the original key.
v3.5 (2022-11-04)
Minor refinements and fixes.
v3.4 (2022-06-15)
Added strict argument to
join_keys()
.
Warning
Be aware that the new version of the on_dup parameter is not compatible with previous versions.
v3.3 (2022-06-07)
Added utility functions for operating on keys and keymaps:
None passed as key is now converted to an empty string rather than “None”.
v3.2 (2022-01-17)
Add circular reference detection and reporting.
v3.1 (2021-07-23)
v3.0 (2021-07-17)
Deprecate trailing commas in inline lists and dictionaries.
Implement on_dup argument to
load()
andloads()
in inline dictionaries.Apply convert and default arguments of
dump()
anddumps()
to dictionary keys.
Warning
Be aware that aspects of this version are not backward compatible.
Specifically, trailing commas are no longer supported in inline dictionaries
and lists. In addition, [ ]
now represents a list that contains an
empty string, whereas previously it represented an empty list.
v2.0 (2021-05-28)
Deprecate quoted keys.
Add multiline keys to replace quoted keys.
Add inline lists and dictionaries.
Move from renderers to converters in
dump()
anddumps()
. Both allow you to support arbitrary data types. With renderers you provide functions that are responsible for directly creating the text to be inserted in the NestedText output. This can be complicated and error prone. With converters you instead convert the object to a known NestedText data type (dict, list, string, …) and the dump function automatically formats it appropriately.Restructure documentation.
v1.3 (2021-01-02)
Move the test cases to a submodule.
Note
When cloning the NestedText repository you should use the –recursive flag to get the official_tests submodule:
git clone --recursive https://github.com/KenKundert/nestedtext.git
When updating an existing repository, you need to initialize the submodule after doing a pull:
git submodule update --init --remote tests/official_tests
This only need be done once.
v1.2 (2020-10-31)
Treat CR LF, CR, or LF as a line break.
Always quote keys that start with a quote.
v1.1 (2020-10-13)
Quoted keys are now less restricted.
Empty dictionaries and lists are rejected by
dump()
anddumps()
except as top-level object if default argument is specified as ‘strict’.
Warning
Be aware that this version is not fully backward compatible. Unlike
previous versions, this version allows you to restrict the type of the
return value of the load()
and loads()
functions, and the
default is ‘dict’. The previous behavior is still supported, but you
must explicitly specify top=’any’ as an argument.
This change results in a simpler return value from load()
and
loads()
in most cases. This substantially reduces the chance of
coding errors. It was noticed that it was common to simply assume that
the top-level was a dictionary when writing code that used these
functions, which could result in unexpected errors when users
hand-create the input data. Specifying the return value eliminates this
type of error.
There is another small change that is not backward compatible. The source argument to these functions is now a keyword only argument.
v1.0 (2020-10-03)
Production release.