Title: [228449] branches/safari-605-branch/Source/WebKit
Revision
228449
Author
jmarc...@apple.com
Date
2018-02-13 20:15:50 -0800 (Tue, 13 Feb 2018)

Log Message

Cherry-pick r228415. rdar://problem/37518828

Modified Paths

Diff

Modified: branches/safari-605-branch/Source/WebKit/ChangeLog (228448 => 228449)


--- branches/safari-605-branch/Source/WebKit/ChangeLog	2018-02-14 04:15:48 UTC (rev 228448)
+++ branches/safari-605-branch/Source/WebKit/ChangeLog	2018-02-14 04:15:50 UTC (rev 228449)
@@ -1,3 +1,19 @@
+2018-02-13  Jason Marcell  <jmarc...@apple.com>
+
+        Cherry-pick r228415. rdar://problem/37518828
+
+    2018-02-12  Antti Koivisto  <an...@apple.com>
+
+            Update NetworkCache::Storage::lastStableVersion after r226349
+            https://bugs.webkit.org/show_bug.cgi?id=182723
+            <rdar://problem/37469554>
+
+            Reviewed by Ryosuke Niwa.
+
+            * NetworkProcess/cache/NetworkCacheStorage.h:
+
+            Allow deleting version 11 caches.
+
 2018-02-13  Daniel Bates  <daba...@apple.com>
 
         [safari-605-branch] Fix OS X El Capitan layout test failures following r228386

Modified: branches/safari-605-branch/Source/WebKit/NetworkProcess/cache/NetworkCacheStorage.h (228448 => 228449)


--- branches/safari-605-branch/Source/WebKit/NetworkProcess/cache/NetworkCacheStorage.h	2018-02-14 04:15:48 UTC (rev 228448)
+++ branches/safari-605-branch/Source/WebKit/NetworkProcess/cache/NetworkCacheStorage.h	2018-02-14 04:15:50 UTC (rev 228449)
@@ -87,10 +87,11 @@
     size_t capacity() const { return m_capacity; }
     size_t approximateSize() const;
 
+    // Incrementing this number will delete all existing cache content for everyone. Do you really need to do it?
     static const unsigned version = 12;
 #if PLATFORM(MAC)
     /// Allow the last stable version of the cache to co-exist with the latest development one.
-    static const unsigned lastStableVersion = 11;
+    static const unsigned lastStableVersion = 12;
 #endif
 
     String basePath() const;
_______________________________________________
webkit-changes mailing list
webkit-changes@lists.webkit.org
https://lists.webkit.org/mailman/listinfo/webkit-changes

Reply via email to