github.com/forking-projects/tail@v1.2.0/CHANGELOG.md (about)

     1  # API v1 (gopkg.in/forking-projects/tail.v1)
     2  
     3  ## January, 2022
     4  
     5  * Use go modules
     6  * Remove travis.ci
     7  * Change logging to debug level
     8  
     9  ## August 2019
    10  * Change imports, add reopen check if truncated
    11  * Change os.SEEK_ to io.Seek, add ReOpenTruncated
    12  
    13  ## April, 2016
    14  
    15  * Migrated to godep, as depman is not longer supported
    16  * Introduced golang vendoring feature
    17  * Fixed issue [#57](https://github.com/forking-projects/tail/issues/57) related to reopen deleted file 
    18  
    19  ## July, 2015
    20  
    21  * Fix inotify watcher leak; remove `Cleanup` (#51)
    22  
    23  # API v0 (gopkg.in/forking-projects/tail.v0)
    24  
    25  ## June, 2015
    26  
    27  * Don't return partial lines (PR #40)
    28  * Use stable version of fsnotify (#46)
    29  
    30  ## July, 2014
    31  
    32  * Fix tail for Windows (PR #36)
    33  
    34  ## May, 2014
    35  
    36  * Improved rate limiting using leaky bucket (PR #29)
    37  * Fix odd line splitting (PR #30)
    38  
    39  ## Apr, 2014
    40  
    41  * LimitRate now discards read buffer (PR #28)
    42  * allow reading of longer lines if MaxLineSize is unset (PR #24)
    43  * updated deps.json to latest fsnotify (441bbc86b1)
    44  
    45  ## Feb, 2014
    46  
    47  * added `Config.Logger` to suppress library logging
    48  
    49  ## Nov, 2013
    50  
    51  * add Cleanup to remove leaky inotify watches (PR #20)
    52  
    53  ## Aug, 2013
    54  
    55  * redesigned Location field (PR #12)
    56  * add tail.Tell (PR #14)
    57  
    58  ## July, 2013
    59  
    60  * Rate limiting (PR #10)
    61  
    62  ## May, 2013
    63  
    64  * Detect file deletions/renames in polling file watcher (PR #1)
    65  * Detect file truncation
    66  * Fix potential race condition when reopening the file (issue 5)
    67  * Fix potential blocking of `tail.Stop` (issue 4)
    68  * Fix uncleaned up ChangeEvents goroutines after calling tail.Stop
    69  * Support Follow=false
    70  
    71  ## Feb, 2013
    72  
    73  * Initial open source release