]> go.fuhry.dev Git - fsnotify.git/commitdiff
Prepare for v1.5.4 (#448)
authorICHINOSE Shogo <shogo82148@gmail.com>
Wed, 27 Apr 2022 02:06:09 +0000 (11:06 +0900)
committerGitHub <noreply@github.com>
Wed, 27 Apr 2022 02:06:09 +0000 (11:06 +0900)
* Update Changelog
* Retracted v1.5.3

CHANGELOG.md
go.mod

index a438fe4b4a5469d4e086237fd49e76738165f8cf..cc01c08f56d5a6ba643cebf3aae367884634b37e 100644 (file)
@@ -7,9 +7,27 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
 
 ## [Unreleased]
 
+## [1.5.4] - 2022-04-25
+
+* Windows: add missing defer to `Watcher.WatchList` [#447](https://github.com/fsnotify/fsnotify/pull/447)
+* go.mod: use latest x/sys [#444](https://github.com/fsnotify/fsnotify/pull/444)
+* Fix compilation for OpenBSD [#443](https://github.com/fsnotify/fsnotify/pull/443)
+
+## [1.5.3] - 2022-04-22
+
+* This version is retracted. An incorrect branch is published accidentally [#445](https://github.com/fsnotify/fsnotify/issues/445)
+
+## [1.5.2] - 2022-04-21
+
+* Add a feature to return the directories and files that are being monitored [#374](https://github.com/fsnotify/fsnotify/pull/374)
+* Fix potential crash on windows if `raw.FileNameLength` exceeds `syscall.MAX_PATH` [#361](https://github.com/fsnotify/fsnotify/pull/361)
+* Allow build on unsupported GOOS [#424](https://github.com/fsnotify/fsnotify/pull/424)
+* Don't set `poller.fd` twice in `newFdPoller` [#406](https://github.com/fsnotify/fsnotify/pull/406)
+* fix go vet warnings: call to `(*T).Fatalf` from a non-test goroutine [#416](https://github.com/fsnotify/fsnotify/pull/416)
+
 ## [1.5.1] - 2021-08-24
 
-* Revert Add AddRaw to not follow symlinks
+* Revert Add AddRaw to not follow symlinks [#394](https://github.com/fsnotify/fsnotify/pull/394)
 
 ## [1.5.0] - 2021-08-20
 
diff --git a/go.mod b/go.mod
index f50ef9483a9c7ce1cc41a3115ef4d28df09eb5cf..48cfd07fe2300937e06a0fa02d34ffcd50cb20bf 100644 (file)
--- a/go.mod
+++ b/go.mod
@@ -4,4 +4,7 @@ go 1.16
 
 require golang.org/x/sys v0.0.0-20220412211240-33da011f77ad
 
-retract v1.5.0
+retract (
+    v1.5.3 // Published an incorrect branch accidentally https://github.com/fsnotify/fsnotify/issues/445
+    v1.5.0 // Contains symlink regression https://github.com/fsnotify/fsnotify/pull/394
+)