Skip to content

Tags: qAison/go-toml

Tags

v2.0.0-beta.6

Toggle v2.0.0-beta.6's commit message

Verified

This commit was signed with the committer’s verified signature.
pelletier Thomas Pelletier
readme: add docker image

v2.0.0-beta.5

Toggle v2.0.0-beta.5's commit message

Verified

This commit was created on GitHub.com and signed with GitHub’s verified signature. The key has expired.
Exclude testing PRs from release notes

v2.0.0-beta.4

Toggle v2.0.0-beta.4's commit message

Verified

This commit was signed with the committer’s verified signature.
pelletier Thomas Pelletier
Missing performance section

v1.9.4

Toggle v1.9.4's commit message

Verified

This commit was created on GitHub.com and signed with GitHub’s verified signature. The key has expired.
tomll: add multiLineArray flag to linter (pelletier#578)

v1.9.3

Toggle v1.9.3's commit message

Verified

This commit was created on GitHub.com and signed with GitHub’s verified signature. The key has expired.
Configure issues templates

Ask people to go to /discussions for anything that is not a bug report.

v2.0.0-beta.3

Toggle v2.0.0-beta.3's commit message

Verified

This commit was created on GitHub.com and signed with GitHub’s verified signature. The key has expired.
AST Tweaks (pelletier#551)

* Use pointers instead of copying around ast.Node

Node is a 56B struct that is constantly in the hot path. Passing nodes
around by copy had a cost that started to add up. This change replaces
them by pointers. Using unsafe pointer arithmetic and converting
sibling/child indexes to relative offsets, it removes the need to carry
around a pointer to the root of the tree. This saves 8B per Node. This
space will be used to store an extra []byte slice to provide contextual
error handling on all nodes, including the ones whose data is different
than the raw input (for example: strings with escaped characters), while
staying under the size of a cache line.

* Remove conditional

* Add Raw to track range in data for parsed values

* Simplify reference tracking

v1.9.2

Toggle v1.9.2's commit message

Verified

This commit was created on GitHub.com and signed with GitHub’s verified signature. The key has expired.
Suggest using go-toml v2

v2.0.0-beta.2

Toggle v2.0.0-beta.2's commit message

Verified

This commit was created on GitHub.com and signed with GitHub’s verified signature. The key has expired.
Increase test coverage (pelletier#538)

Also fix array in map bug.

v1.9.1

Toggle v1.9.1's commit message

Verified

This commit was created on GitHub.com and signed with GitHub’s verified signature. The key has expired.
Fix empty trees line counting (pelletier#539)

Refs pelletier#450

v2.0.0-beta.1

Toggle v2.0.0-beta.1's commit message

Verified

This commit was created on GitHub.com and signed with GitHub’s verified signature. The key has expired.
Readme (pelletier#535)