From 61049a15cbc83ef1972ed3aca598c5d8d40981fd Mon Sep 17 00:00:00 2001 From: Mauricio Poppe Date: Tue, 23 Aug 2022 21:35:35 +0000 Subject: [PATCH] Release notes for v1.1.2 --- CHANGELOG/CHANGELOG-1.1.2.md | 26 ++++++++++++++++++++++++++ pkg/server/filesystem/server.go | 2 +- 2 files changed, 27 insertions(+), 1 deletion(-) create mode 100644 CHANGELOG/CHANGELOG-1.1.2.md diff --git a/CHANGELOG/CHANGELOG-1.1.2.md b/CHANGELOG/CHANGELOG-1.1.2.md new file mode 100644 index 00000000..7c27b275 --- /dev/null +++ b/CHANGELOG/CHANGELOG-1.1.2.md @@ -0,0 +1,26 @@ +# Changelog since v1.1.1 + +## Urgent Upgrade Notes + +### (No, really, you MUST read this before you upgrade) + +- None + +## Changes by Kind + +### Feature + +- Add klog statement when a request is fulfilled [\#211](https://github.com/kubernetes-csi/csi-proxy/pull/211) ([Kartik494](https://github.com/Kartik494)) + +### API + +- None + +### Bug or Regression + +- Try to fix issue with 'Multiple connections to a server' [\#210](https://github.com/kubernetes-csi/csi-proxy/pull/210) ([vitaliy-leschenko](https://github.com/vitaliy-leschenko)) + +### Other (Cleanup or Flake) + +- master: update release-tools [\#209](https://github.com/kubernetes-csi/csi-proxy/pull/209) ([pohly](https://github.com/pohly)) +- master: update release-tools [\#205](https://github.com/kubernetes-csi/csi-proxy/pull/205) ([pohly](https://github.com/pohly)) diff --git a/pkg/server/filesystem/server.go b/pkg/server/filesystem/server.go index 453a6394..2f2512c1 100644 --- a/pkg/server/filesystem/server.go +++ b/pkg/server/filesystem/server.go @@ -127,7 +127,7 @@ func (s *Server) PathExists(ctx context.Context, request *internal.PathExistsReq }, err } -// PathValid checks if the given path is accessiable. +// PathValid checks if the given path is accessible. func (s *Server) PathValid(ctx context.Context, path string) (bool, error) { klog.V(2).Infof("Request: PathValid with path %q", path) return s.hostAPI.PathValid(path)