VOL-4925 - Build and release components.

VERSION
-------
  o Bump version file for release.

Misc/
-----
  o Update copyright notice to force a release build.

Change-Id: I49f5c11b24f5b0e7fd9ab1eee1a98fef271a2a52
diff --git a/vendor/github.com/go-redis/redis/v8/internal/util/safe.go b/vendor/github.com/go-redis/redis/v8/internal/util/safe.go
new file mode 100644
index 0000000..1b3060e
--- /dev/null
+++ b/vendor/github.com/go-redis/redis/v8/internal/util/safe.go
@@ -0,0 +1,11 @@
+// +build appengine
+
+package util
+
+func BytesToString(b []byte) string {
+	return string(b)
+}
+
+func StringToBytes(s string) []byte {
+	return []byte(s)
+}