-
Notifications
You must be signed in to change notification settings - Fork 23
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
5a3c9dc
commit 76262ea
Showing
1 changed file
with
40 additions
and
6 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,48 +1,82 @@ | ||
# Changelog | ||
|
||
All notable changes to this project will be documented in this file. | ||
|
||
The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/), | ||
and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html). | ||
|
||
## [0.6.0] - 2023-01-30 | ||
|
||
[0.6.0]: https://github.com/go-logfmt/logfmt/compare/v0.5.1...v0.6.0 | ||
|
||
### Added | ||
|
||
- NewDecoderSize by [@alexanderjophus] | ||
|
||
## [0.5.1] - 2021-08-18 | ||
|
||
[0.5.1]: https://github.com/go-logfmt/logfmt/compare/v0.5.0...v0.5.1 | ||
|
||
### Changed | ||
|
||
- Update the `go.mod` file for Go 1.17 as described in the [Go 1.17 release | ||
notes](https://golang.org/doc/go1.17#go-command) | ||
|
||
## [0.5.0] - 2020-01-03 | ||
|
||
[0.5.0]: https://github.com/go-logfmt/logfmt/compare/v0.4.0...v0.5.0 | ||
|
||
### Changed | ||
|
||
- Remove the dependency on github.com/kr/logfmt by [@ChrisHines] | ||
- Move fuzz code to github.com/go-logfmt/fuzzlogfmt by [@ChrisHines] | ||
|
||
## [0.4.0] - 2018-11-21 | ||
|
||
[0.4.0]: https://github.com/go-logfmt/logfmt/compare/v0.3.0...v0.4.0 | ||
|
||
### Added | ||
|
||
- Go module support by [@ChrisHines] | ||
- CHANGELOG by [@ChrisHines] | ||
|
||
### Changed | ||
|
||
- Drop invalid runes from keys instead of returning ErrInvalidKey by [@ChrisHines] | ||
- On panic while printing, attempt to print panic value by [@bboreham] | ||
|
||
## [0.3.0] - 2016-11-15 | ||
|
||
[0.3.0]: https://github.com/go-logfmt/logfmt/compare/v0.2.0...v0.3.0 | ||
|
||
### Added | ||
|
||
- Pool buffers for quoted strings and byte slices by [@nussjustin] | ||
|
||
### Fixed | ||
|
||
- Fuzz fix, quote invalid UTF-8 values by [@judwhite] | ||
|
||
## [0.2.0] - 2016-05-08 | ||
|
||
[0.2.0]: https://github.com/go-logfmt/logfmt/compare/v0.1.0...v0.2.0 | ||
|
||
### Added | ||
|
||
- Encoder.EncodeKeyvals by [@ChrisHines] | ||
|
||
## [0.1.0] - 2016-03-28 | ||
|
||
[0.1.0]: https://github.com/go-logfmt/logfmt/commits/v0.1.0 | ||
|
||
### Added | ||
|
||
- Encoder by [@ChrisHines] | ||
- Decoder by [@ChrisHines] | ||
- MarshalKeyvals by [@ChrisHines] | ||
|
||
[0.5.0]: https://github.com/go-logfmt/logfmt/compare/v0.4.0...v0.5.0 | ||
[0.4.0]: https://github.com/go-logfmt/logfmt/compare/v0.3.0...v0.4.0 | ||
[0.3.0]: https://github.com/go-logfmt/logfmt/compare/v0.2.0...v0.3.0 | ||
[0.2.0]: https://github.com/go-logfmt/logfmt/compare/v0.1.0...v0.2.0 | ||
[0.1.0]: https://github.com/go-logfmt/logfmt/commits/v0.1.0 | ||
|
||
[@ChrisHines]: https://github.com/ChrisHines | ||
[@bboreham]: https://github.com/bboreham | ||
[@judwhite]: https://github.com/judwhite | ||
[@nussjustin]: https://github.com/nussjustin | ||
[@alexanderjophus]: https://github.com/alexanderjophus |