All Versions
12
Latest Version
Avg Release Cycle
174 days
Latest Release
1872 days ago
Changelog History
Page 1
Changelog History
Page 1
-
v1.0.4 Changes
August 08, 2018What's new in this release?
- ๐จ Several corrections and refactorings in
TomBuilder
class. The problem described in the PR #25 "fixed a bug when used the function 'in_array'" has been solved. - ๐จ The test file
TomlBuilderTest
has been refactored for readability. Added some tests. - โก๏ธ The
README.md
file has been updated with theTomlBuilder
class limitations.
- ๐จ Several corrections and refactorings in
-
v1.0.3 Changes
July 31, 2018What's new in this release?
TomlBuilder
does not throw aDumpException
anymore when the character "#" appears in a quoted key.- ๐ The method
addArrayTables
from the classTomlBuilder
has been declared as deprecated. Use the methodaddArrayOfTable
instead. - ๐ Fixed the bug #24: "Wrong array of tables implementation".
- A new class
TomlArray
has been added to handle the Toml array generation.
-
v1.0.2 Changes
June 29, 2018What's new in this release?
- ๐ Fixed the bug #23: "Unable to parse ArrayTables that contain Tables".
- A new class
KeyStore
has been added to deal with the logic of the keys (keys, tables and array of tables). - โก๏ธ Package
yosymfony/parser-utils
has been updated to 2.0.0.
-
v1.0.1 Changes
February 05, 2018 -
v1.0.0 Changes
November 18, 2017What's new in this release?
- The code has been rewritten from scratch for PHP 7.1.
- ๐ The method
parse
fromToml
class must only be applied to TOML strings.
๐ In case of parsing a TOML filename use the new methodparseFile
. - ๐ Methods
parse
andparseFile
fromToml
class accept a new argumentresultAsObject
๐ (optional) to return the parsed input as an object (an instance ofstdClass
). - The method
addGroup
ofTomlBuilder
class has been deleted. - ๐จ The exceptions have been refactored, so the classes
ExceptionInterface
,
๐LexerException
andRuntimeException
have been removed. - โ Added the inner exception when a
ParseException
is thrown in methodparse
of classToml
. - ๐ Fixed bug #13: "Inline sub-tables don't work".
- ๐ Fixed bug #12: "Does not parse a table with an array of tables".
- ๐ Better support for dates as specified in the latest TOML spec. See PR #11.
-
v0.3.3 Changes
August 24, 2015What's new in this release?
- ๐ Fixed bug #10: Cannot parse quote (") in table name.
-
v0.3.2 Changes
March 07, 2015What's new in this release?
- ๐ Fixed Issue #9: Only double-quoted strings work in arrays, contrary to spec.
-
v0.3.1 Changes
March 07, 2015What's new in this release?
- โ Added support for literal strings in TomlBuilder.
-
v0.3.0 Changes
March 06, 2015What's new in this release?
- ๐ Support for specification 0.4.0 of TOML.
- ๐ Changed to PSR-4.
- โ Added new tests.
- ๐ CS fixes.
-
v0.2.0 Changes
May 03, 2014- ๐ Support for TOML 0.2.0.
- ๐ New tests for arrays of tables.
- TomlBuilder: new methods
addTabl
e - ๐ TomlBuilder: Deprecated methods
addGroup
. - ๐ Fixtures folder in tests renamed to fixtures.
- ๐ Fixtures reorganized.