@aws-amplify/core 5.8.2 → 6.0.1-console-preview.f63250a.0

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (300) hide show
  1. package/README.md +3 -0
  2. package/lib/Amplify.d.ts +18 -17
  3. package/lib/Amplify.js +9 -0
  4. package/lib/AwsClients/CognitoIdentity/base.d.ts +3 -10
  5. package/lib/AwsClients/CognitoIdentity/getCredentialsForIdentity.d.ts +3 -17
  6. package/lib/AwsClients/CognitoIdentity/getCredentialsForIdentity.js +8 -8
  7. package/lib/AwsClients/CognitoIdentity/getId.d.ts +3 -17
  8. package/lib/AwsClients/Pinpoint/base.d.ts +2 -10
  9. package/lib/AwsClients/Pinpoint/getInAppMessages.d.ts +3 -17
  10. package/lib/AwsClients/Pinpoint/getInAppMessages.js +1 -1
  11. package/lib/AwsClients/Pinpoint/putEvents.d.ts +3 -17
  12. package/lib/AwsClients/Pinpoint/putEvents.js +6 -0
  13. package/lib/AwsClients/Pinpoint/updateEndpoint.d.ts +3 -17
  14. package/lib/AwsClients/Pinpoint/updateEndpoint.js +2 -2
  15. package/lib/Cache/AsyncStorageCache.d.ts +154 -0
  16. package/lib/Cache/AsyncStorageCache.js +744 -0
  17. package/lib/Cache/BrowserStorageCache.d.ts +166 -0
  18. package/lib/Cache/BrowserStorageCache.js +469 -0
  19. package/lib/Cache/InMemoryCache.d.ts +129 -0
  20. package/lib/Cache/InMemoryCache.js +349 -0
  21. package/lib/Cache/StorageCache.d.ts +39 -0
  22. package/lib/Cache/StorageCache.js +121 -0
  23. package/lib/Cache/Utils/CacheList.d.ts +89 -0
  24. package/lib/Cache/Utils/CacheList.js +196 -0
  25. package/lib/Cache/Utils/CacheUtils.d.ts +25 -0
  26. package/lib/Cache/Utils/CacheUtils.js +88 -0
  27. package/lib/Cache/Utils/index.d.ts +2 -0
  28. package/lib/Cache/Utils/index.js +16 -0
  29. package/lib/Cache/reactnative.d.ts +3 -0
  30. package/lib/Cache/reactnative.js +8 -0
  31. package/lib/Cache/types/Cache.d.ts +55 -0
  32. package/lib/Cache/types/Cache.js +4 -0
  33. package/lib/Cache/types/index.d.ts +1 -0
  34. package/lib/Cache/types/index.js +19 -0
  35. package/lib/ClientDevice/android.js +3 -2
  36. package/lib/ClientDevice/ios.d.ts +2 -2
  37. package/lib/ClientDevice/ios.js +3 -2
  38. package/lib/ClientDevice/reactnative.js +3 -2
  39. package/lib/Credentials.d.ts +1 -1
  40. package/lib/Credentials.js +2 -1
  41. package/lib/Errors.d.ts +19 -0
  42. package/lib/Errors.js +50 -1
  43. package/lib/Hub.js +1 -0
  44. package/lib/I18n/I18n.d.ts +29 -9
  45. package/lib/I18n/I18n.js +30 -5
  46. package/lib/I18n/index.d.ts +18 -5
  47. package/lib/I18n/index.js +35 -5
  48. package/lib/I18n/types.d.ts +4 -1
  49. package/lib/I18n/types.js +3 -0
  50. package/lib/JS.d.ts +6 -6
  51. package/lib/Logger/ConsoleLogger.d.ts +11 -11
  52. package/lib/OAuthHelper/GoogleOAuth.js +2 -1
  53. package/lib/Platform/detectFramework.js +2 -1
  54. package/lib/Platform/detection/Next.d.ts +1 -1
  55. package/lib/Platform/detection/React.js +1 -0
  56. package/lib/Platform/version.d.ts +1 -1
  57. package/lib/Platform/version.js +1 -1
  58. package/lib/Providers/AWSCloudWatchProvider.d.ts +2 -2
  59. package/lib/Providers/AWSCloudWatchProvider.js +35 -12
  60. package/lib/RNComponents/index.d.ts +1 -1
  61. package/lib/RNComponents/reactnative.js +3 -2
  62. package/lib/ServiceWorker/ServiceWorker.d.ts +4 -4
  63. package/lib/ServiceWorker/ServiceWorker.js +37 -11
  64. package/lib/Signer.d.ts +14 -1
  65. package/lib/StorageHelper/cookieStorage.d.ts +13 -0
  66. package/lib/StorageHelper/cookieStorage.js +167 -0
  67. package/lib/StorageHelper/inMemoryStorage.d.ts +10 -0
  68. package/lib/StorageHelper/inMemoryStorage.js +82 -0
  69. package/lib/StorageHelper/index.d.ts +7 -3
  70. package/lib/StorageHelper/index.js +9 -1
  71. package/lib/StorageHelper/localStorage.d.ts +32 -0
  72. package/lib/StorageHelper/localStorage.js +114 -0
  73. package/lib/StorageHelper/reactnative.d.ts +71 -1
  74. package/lib/StorageHelper/reactnative.js +154 -10
  75. package/lib/StorageHelper/sessionStorage.d.ts +32 -0
  76. package/lib/StorageHelper/sessionStorage.js +114 -0
  77. package/lib/UniversalStorage/index.d.ts +2 -2
  78. package/lib/Util/BackgroundProcessManager.d.ts +2 -2
  79. package/lib/Util/BackgroundProcessManager.js +1 -0
  80. package/lib/Util/DateUtils.d.ts +12 -1
  81. package/lib/Util/Reachability.js +7 -5
  82. package/lib/Util/Reachability.native.d.ts +3 -2
  83. package/lib/Util/StringUtils.js +3 -10
  84. package/lib/Util/errors/AssertError.d.ts +2 -0
  85. package/lib/Util/errors/AssertError.js +11 -0
  86. package/lib/clients/middleware/retry/defaultRetryDecider.d.ts +1 -1
  87. package/lib/clients/middleware/retry/defaultRetryDecider.js +17 -13
  88. package/lib/clients/middleware/retry/isClockSkewError.js +1 -1
  89. package/lib/clients/middleware/retry/middleware.d.ts +1 -1
  90. package/lib/clients/middleware/retry/middleware.js +13 -13
  91. package/lib/clients/middleware/signing/signer/signatureV4/utils/dataHashHelpers.js +1 -1
  92. package/lib/clients/serde/responseInfo.js +1 -1
  93. package/lib/clients/types/aws.d.ts +4 -0
  94. package/lib/clients/types/index.d.ts +1 -1
  95. package/lib/constants.d.ts +7 -0
  96. package/lib/constants.js +9 -1
  97. package/lib/index.d.ts +18 -4
  98. package/lib/index.js +32 -5
  99. package/lib/parseAWSExports.d.ts +1 -1
  100. package/lib/singleton/Auth/index.d.ts +30 -0
  101. package/lib/singleton/Auth/index.js +133 -0
  102. package/lib/singleton/Auth/types.d.ts +95 -0
  103. package/lib/singleton/Auth/types.js +6 -0
  104. package/lib/singleton/Auth/utils/index.d.ts +5 -0
  105. package/lib/singleton/Auth/utils/index.js +52 -0
  106. package/lib/singleton/Storage/types.d.ts +14 -0
  107. package/lib/singleton/Storage/types.js +4 -0
  108. package/lib/singleton/index.d.ts +46 -0
  109. package/lib/singleton/index.js +147 -0
  110. package/lib/singleton/types.d.ts +21 -0
  111. package/lib/singleton/types.js +4 -0
  112. package/lib/tsconfig.tsbuildinfo +1 -1
  113. package/lib/types/types.d.ts +31 -1
  114. package/lib/types/types.js +2 -0
  115. package/lib-esm/Amplify.d.ts +18 -17
  116. package/lib-esm/Amplify.js +9 -0
  117. package/lib-esm/AwsClients/CognitoIdentity/base.d.ts +3 -10
  118. package/lib-esm/AwsClients/CognitoIdentity/getCredentialsForIdentity.d.ts +3 -17
  119. package/lib-esm/AwsClients/CognitoIdentity/getCredentialsForIdentity.js +8 -8
  120. package/lib-esm/AwsClients/CognitoIdentity/getId.d.ts +3 -17
  121. package/lib-esm/AwsClients/Pinpoint/base.d.ts +2 -10
  122. package/lib-esm/AwsClients/Pinpoint/getInAppMessages.d.ts +3 -17
  123. package/lib-esm/AwsClients/Pinpoint/getInAppMessages.js +1 -1
  124. package/lib-esm/AwsClients/Pinpoint/putEvents.d.ts +3 -17
  125. package/lib-esm/AwsClients/Pinpoint/putEvents.js +6 -0
  126. package/lib-esm/AwsClients/Pinpoint/updateEndpoint.d.ts +3 -17
  127. package/lib-esm/AwsClients/Pinpoint/updateEndpoint.js +2 -2
  128. package/lib-esm/Cache/AsyncStorageCache.d.ts +154 -0
  129. package/lib-esm/Cache/AsyncStorageCache.js +737 -0
  130. package/lib-esm/Cache/BrowserStorageCache.d.ts +166 -0
  131. package/lib-esm/Cache/BrowserStorageCache.js +466 -0
  132. package/lib-esm/Cache/InMemoryCache.d.ts +129 -0
  133. package/lib-esm/Cache/InMemoryCache.js +346 -0
  134. package/lib-esm/Cache/StorageCache.d.ts +39 -0
  135. package/lib-esm/Cache/StorageCache.js +118 -0
  136. package/lib-esm/Cache/Utils/CacheList.d.ts +89 -0
  137. package/lib-esm/Cache/Utils/CacheList.js +194 -0
  138. package/lib-esm/Cache/Utils/CacheUtils.d.ts +25 -0
  139. package/lib-esm/Cache/Utils/CacheUtils.js +81 -0
  140. package/lib-esm/Cache/Utils/index.d.ts +2 -0
  141. package/lib-esm/Cache/Utils/index.js +4 -0
  142. package/lib-esm/Cache/reactnative.d.ts +3 -0
  143. package/lib-esm/Cache/reactnative.js +6 -0
  144. package/lib-esm/Cache/types/Cache.d.ts +55 -0
  145. package/lib-esm/Cache/types/Cache.js +3 -0
  146. package/lib-esm/Cache/types/index.d.ts +1 -0
  147. package/lib-esm/Cache/types/index.js +3 -0
  148. package/lib-esm/ClientDevice/android.js +1 -0
  149. package/lib-esm/ClientDevice/ios.d.ts +2 -2
  150. package/lib-esm/ClientDevice/ios.js +1 -0
  151. package/lib-esm/ClientDevice/reactnative.js +1 -0
  152. package/lib-esm/Credentials.d.ts +1 -1
  153. package/lib-esm/Credentials.js +2 -1
  154. package/lib-esm/Errors.d.ts +19 -0
  155. package/lib-esm/Errors.js +49 -0
  156. package/lib-esm/Hub.js +1 -0
  157. package/lib-esm/I18n/I18n.d.ts +29 -9
  158. package/lib-esm/I18n/I18n.js +30 -5
  159. package/lib-esm/I18n/index.d.ts +18 -5
  160. package/lib-esm/I18n/index.js +35 -5
  161. package/lib-esm/I18n/types.d.ts +4 -1
  162. package/lib-esm/I18n/types.js +3 -0
  163. package/lib-esm/JS.d.ts +6 -6
  164. package/lib-esm/Logger/ConsoleLogger.d.ts +11 -11
  165. package/lib-esm/OAuthHelper/GoogleOAuth.js +2 -1
  166. package/lib-esm/Platform/detectFramework.js +2 -1
  167. package/lib-esm/Platform/detection/Next.d.ts +1 -1
  168. package/lib-esm/Platform/detection/React.js +1 -0
  169. package/lib-esm/Platform/version.d.ts +1 -1
  170. package/lib-esm/Platform/version.js +1 -1
  171. package/lib-esm/Providers/AWSCloudWatchProvider.d.ts +2 -2
  172. package/lib-esm/Providers/AWSCloudWatchProvider.js +33 -10
  173. package/lib-esm/RNComponents/index.d.ts +1 -1
  174. package/lib-esm/RNComponents/reactnative.js +1 -0
  175. package/lib-esm/ServiceWorker/ServiceWorker.d.ts +4 -4
  176. package/lib-esm/ServiceWorker/ServiceWorker.js +37 -11
  177. package/lib-esm/Signer.d.ts +14 -1
  178. package/lib-esm/StorageHelper/cookieStorage.d.ts +13 -0
  179. package/lib-esm/StorageHelper/cookieStorage.js +141 -0
  180. package/lib-esm/StorageHelper/inMemoryStorage.d.ts +10 -0
  181. package/lib-esm/StorageHelper/inMemoryStorage.js +79 -0
  182. package/lib-esm/StorageHelper/index.d.ts +7 -3
  183. package/lib-esm/StorageHelper/index.js +4 -0
  184. package/lib-esm/StorageHelper/localStorage.d.ts +32 -0
  185. package/lib-esm/StorageHelper/localStorage.js +111 -0
  186. package/lib-esm/StorageHelper/reactnative.d.ts +71 -1
  187. package/lib-esm/StorageHelper/reactnative.js +153 -9
  188. package/lib-esm/StorageHelper/sessionStorage.d.ts +32 -0
  189. package/lib-esm/StorageHelper/sessionStorage.js +111 -0
  190. package/lib-esm/UniversalStorage/index.d.ts +2 -2
  191. package/lib-esm/Util/BackgroundProcessManager.d.ts +2 -2
  192. package/lib-esm/Util/BackgroundProcessManager.js +1 -0
  193. package/lib-esm/Util/DateUtils.d.ts +12 -1
  194. package/lib-esm/Util/Reachability.js +5 -3
  195. package/lib-esm/Util/Reachability.native.d.ts +3 -2
  196. package/lib-esm/Util/StringUtils.js +3 -10
  197. package/lib-esm/Util/errors/AssertError.d.ts +2 -0
  198. package/lib-esm/Util/errors/AssertError.js +7 -0
  199. package/lib-esm/clients/middleware/retry/defaultRetryDecider.d.ts +1 -1
  200. package/lib-esm/clients/middleware/retry/defaultRetryDecider.js +17 -13
  201. package/lib-esm/clients/middleware/retry/isClockSkewError.js +1 -1
  202. package/lib-esm/clients/middleware/retry/middleware.d.ts +1 -1
  203. package/lib-esm/clients/middleware/retry/middleware.js +13 -13
  204. package/lib-esm/clients/middleware/signing/signer/signatureV4/utils/dataHashHelpers.js +1 -1
  205. package/lib-esm/clients/serde/responseInfo.js +1 -1
  206. package/lib-esm/clients/types/aws.d.ts +4 -0
  207. package/lib-esm/clients/types/index.d.ts +1 -1
  208. package/lib-esm/constants.d.ts +7 -0
  209. package/lib-esm/constants.js +8 -0
  210. package/lib-esm/index.d.ts +18 -4
  211. package/lib-esm/index.js +15 -3
  212. package/lib-esm/parseAWSExports.d.ts +1 -1
  213. package/lib-esm/singleton/Auth/index.d.ts +30 -0
  214. package/lib-esm/singleton/Auth/index.js +129 -0
  215. package/lib-esm/singleton/Auth/types.d.ts +95 -0
  216. package/lib-esm/singleton/Auth/types.js +5 -0
  217. package/lib-esm/singleton/Auth/utils/index.d.ts +5 -0
  218. package/lib-esm/singleton/Auth/utils/index.js +45 -0
  219. package/lib-esm/singleton/Storage/types.d.ts +14 -0
  220. package/lib-esm/singleton/Storage/types.js +3 -0
  221. package/lib-esm/singleton/index.d.ts +46 -0
  222. package/lib-esm/singleton/index.js +143 -0
  223. package/lib-esm/singleton/types.d.ts +21 -0
  224. package/lib-esm/singleton/types.js +3 -0
  225. package/lib-esm/tsconfig.tsbuildinfo +1 -1
  226. package/lib-esm/types/types.d.ts +31 -1
  227. package/lib-esm/types/types.js +2 -0
  228. package/package.json +38 -15
  229. package/src/Amplify.ts +9 -3
  230. package/src/AwsClients/CognitoIdentity/base.ts +2 -1
  231. package/src/AwsClients/CognitoIdentity/getCredentialsForIdentity.ts +13 -6
  232. package/src/AwsClients/Pinpoint/base.ts +6 -2
  233. package/src/AwsClients/Pinpoint/getInAppMessages.ts +1 -1
  234. package/src/AwsClients/Pinpoint/putEvents.ts +6 -0
  235. package/src/AwsClients/Pinpoint/updateEndpoint.ts +2 -2
  236. package/src/Cache/AsyncStorageCache.ts +500 -0
  237. package/src/Cache/BrowserStorageCache.ts +517 -0
  238. package/src/Cache/CHANGELOG.md +1227 -0
  239. package/src/Cache/InMemoryCache.ts +354 -0
  240. package/src/Cache/StorageCache.ts +157 -0
  241. package/src/Cache/Utils/CacheList.ts +198 -0
  242. package/src/Cache/Utils/CacheUtils.ts +92 -0
  243. package/src/Cache/Utils/index.ts +11 -0
  244. package/src/Cache/reactnative.ts +9 -0
  245. package/src/Cache/types/Cache.ts +75 -0
  246. package/src/Cache/types/index.ts +4 -0
  247. package/src/ClientDevice/android.ts +1 -1
  248. package/src/ClientDevice/ios.ts +2 -2
  249. package/src/ClientDevice/reactnative.ts +1 -1
  250. package/src/Credentials.ts +19 -17
  251. package/src/Errors.ts +41 -0
  252. package/src/Hub.ts +1 -0
  253. package/src/I18n/I18n.ts +40 -12
  254. package/src/I18n/index.ts +45 -12
  255. package/src/I18n/types.ts +3 -0
  256. package/src/JS.ts +24 -17
  257. package/src/Logger/ConsoleLogger.ts +10 -10
  258. package/src/OAuthHelper/FacebookOAuth.ts +2 -2
  259. package/src/OAuthHelper/GoogleOAuth.ts +9 -6
  260. package/src/Platform/detectFramework.ts +1 -1
  261. package/src/Platform/detection/React.ts +5 -3
  262. package/src/Platform/version.ts +1 -1
  263. package/src/Providers/AWSCloudWatchProvider.ts +39 -14
  264. package/src/RNComponents/index.ts +1 -1
  265. package/src/RNComponents/reactnative.ts +1 -1
  266. package/src/ServiceWorker/ServiceWorker.ts +58 -18
  267. package/src/Signer.ts +22 -3
  268. package/src/StorageHelper/cookieStorage.ts +99 -0
  269. package/src/StorageHelper/inMemoryStorage.ts +32 -0
  270. package/src/StorageHelper/index.ts +6 -1
  271. package/src/StorageHelper/localStorage.ts +60 -0
  272. package/src/StorageHelper/reactnative.ts +94 -14
  273. package/src/StorageHelper/sessionStorage.ts +60 -0
  274. package/src/Util/BackgroundProcessManager.ts +33 -9
  275. package/src/Util/DateUtils.ts +14 -5
  276. package/src/Util/Reachability.native.ts +3 -2
  277. package/src/Util/Reachability.ts +9 -7
  278. package/src/Util/Retry.ts +2 -1
  279. package/src/Util/StringUtils.ts +3 -10
  280. package/src/Util/errors/AssertError.ts +11 -0
  281. package/src/clients/handlers/fetch.ts +2 -2
  282. package/src/clients/middleware/retry/defaultRetryDecider.ts +12 -6
  283. package/src/clients/middleware/retry/isClockSkewError.ts +1 -1
  284. package/src/clients/middleware/retry/middleware.ts +9 -9
  285. package/src/clients/middleware/signing/middleware.ts +1 -1
  286. package/src/clients/middleware/signing/signer/signatureV4/utils/dataHashHelpers.ts +1 -1
  287. package/src/clients/serde/responseInfo.ts +2 -1
  288. package/src/clients/types/aws.ts +10 -0
  289. package/src/clients/types/index.ts +1 -0
  290. package/src/constants.ts +16 -0
  291. package/src/global.d.ts +11 -0
  292. package/src/index.ts +66 -4
  293. package/src/parseAWSExports.ts +1 -1
  294. package/src/singleton/Auth/index.ts +113 -0
  295. package/src/singleton/Auth/types.ts +129 -0
  296. package/src/singleton/Auth/utils/index.ts +68 -0
  297. package/src/singleton/Storage/types.ts +21 -0
  298. package/src/singleton/index.ts +131 -0
  299. package/src/singleton/types.ts +48 -0
  300. package/src/types/types.ts +38 -1
@@ -0,0 +1,1227 @@
1
+ # Change Log
2
+
3
+ All notable changes to this project will be documented in this file.
4
+ See [Conventional Commits](https://conventionalcommits.org) for commit guidelines.
5
+
6
+ ## 5.1.7 (2023-08-10)
7
+
8
+ **Note:** Version bump only for package @aws-amplify/cache
9
+
10
+ ## [5.1.6](https://github.com/aws-amplify/amplify-js/compare/@aws-amplify/cache@5.1.5...@aws-amplify/cache@5.1.6) (2023-07-31)
11
+
12
+ **Note:** Version bump only for package @aws-amplify/cache
13
+
14
+ ## [5.1.5](https://github.com/aws-amplify/amplify-js/compare/@aws-amplify/cache@5.1.4...@aws-amplify/cache@5.1.5) (2023-07-20)
15
+
16
+ **Note:** Version bump only for package @aws-amplify/cache
17
+
18
+ ## [5.1.4](https://github.com/aws-amplify/amplify-js/compare/@aws-amplify/cache@5.1.3...@aws-amplify/cache@5.1.4) (2023-07-13)
19
+
20
+ **Note:** Version bump only for package @aws-amplify/cache
21
+
22
+ ## [5.1.3](https://github.com/aws-amplify/amplify-js/compare/@aws-amplify/cache@5.1.2...@aws-amplify/cache@5.1.3) (2023-06-28)
23
+
24
+ **Note:** Version bump only for package @aws-amplify/cache
25
+
26
+ ## [5.1.2](https://github.com/aws-amplify/amplify-js/compare/@aws-amplify/cache@5.1.1...@aws-amplify/cache@5.1.2) (2023-06-21)
27
+
28
+ **Note:** Version bump only for package @aws-amplify/cache
29
+
30
+ ## [5.1.1](https://github.com/aws-amplify/amplify-js/compare/@aws-amplify/cache@5.1.0...@aws-amplify/cache@5.1.1) (2023-06-20)
31
+
32
+ **Note:** Version bump only for package @aws-amplify/cache
33
+
34
+ # [5.1.0](https://github.com/aws-amplify/amplify-js/compare/@aws-amplify/cache@5.0.33...@aws-amplify/cache@5.1.0) (2023-06-05)
35
+
36
+ ### Features
37
+
38
+ - **clients:** support CN partition by adding DNS suffix resolver ([#11311](https://github.com/aws-amplify/amplify-js/issues/11311)) ([9de2975](https://github.com/aws-amplify/amplify-js/commit/9de297519fdbaaf1e9b4ae98f12aed4137400222))
39
+
40
+ ## [5.0.33](https://github.com/aws-amplify/amplify-js/compare/@aws-amplify/cache@5.0.32...@aws-amplify/cache@5.0.33) (2023-05-27)
41
+
42
+ **Note:** Version bump only for package @aws-amplify/cache
43
+
44
+ ## [5.0.32](https://github.com/aws-amplify/amplify-js/compare/@aws-amplify/cache@5.0.31...@aws-amplify/cache@5.0.32) (2023-05-12)
45
+
46
+ **Note:** Version bump only for package @aws-amplify/cache
47
+
48
+ ## [5.0.31](https://github.com/aws-amplify/amplify-js/compare/@aws-amplify/cache@5.0.30...@aws-amplify/cache@5.0.31) (2023-05-04)
49
+
50
+ **Note:** Version bump only for package @aws-amplify/cache
51
+
52
+ ## [5.0.30](https://github.com/aws-amplify/amplify-js/compare/@aws-amplify/cache@5.0.29...@aws-amplify/cache@5.0.30) (2023-04-27)
53
+
54
+ **Note:** Version bump only for package @aws-amplify/cache
55
+
56
+ ## [5.0.29](https://github.com/aws-amplify/amplify-js/compare/@aws-amplify/cache@5.0.28...@aws-amplify/cache@5.0.29) (2023-04-20)
57
+
58
+ **Note:** Version bump only for package @aws-amplify/cache
59
+
60
+ ## [5.0.28](https://github.com/aws-amplify/amplify-js/compare/@aws-amplify/cache@5.0.27...@aws-amplify/cache@5.0.28) (2023-04-18)
61
+
62
+ **Note:** Version bump only for package @aws-amplify/cache
63
+
64
+ ## [5.0.27](https://github.com/aws-amplify/amplify-js/compare/@aws-amplify/cache@5.0.26...@aws-amplify/cache@5.0.27) (2023-04-13)
65
+
66
+ **Note:** Version bump only for package @aws-amplify/cache
67
+
68
+ ## [5.0.26](https://github.com/aws-amplify/amplify-js/compare/@aws-amplify/cache@5.0.25...@aws-amplify/cache@5.0.26) (2023-04-12)
69
+
70
+ **Note:** Version bump only for package @aws-amplify/cache
71
+
72
+ ## [5.0.25](https://github.com/aws-amplify/amplify-js/compare/@aws-amplify/cache@5.0.24...@aws-amplify/cache@5.0.25) (2023-04-06)
73
+
74
+ **Note:** Version bump only for package @aws-amplify/cache
75
+
76
+ ## [5.0.24](https://github.com/aws-amplify/amplify-js/compare/@aws-amplify/cache@5.0.23...@aws-amplify/cache@5.0.24) (2023-04-04)
77
+
78
+ **Note:** Version bump only for package @aws-amplify/cache
79
+
80
+ ## [5.0.23](https://github.com/aws-amplify/amplify-js/compare/@aws-amplify/cache@5.0.22...@aws-amplify/cache@5.0.23) (2023-03-30)
81
+
82
+ **Note:** Version bump only for package @aws-amplify/cache
83
+
84
+ ## [5.0.22](https://github.com/aws-amplify/amplify-js/compare/@aws-amplify/cache@5.0.21...@aws-amplify/cache@5.0.22) (2023-03-23)
85
+
86
+ **Note:** Version bump only for package @aws-amplify/cache
87
+
88
+ ## [5.0.21](https://github.com/aws-amplify/amplify-js/compare/@aws-amplify/cache@5.0.20...@aws-amplify/cache@5.0.21) (2023-03-21)
89
+
90
+ **Note:** Version bump only for package @aws-amplify/cache
91
+
92
+ ## [5.0.20](https://github.com/aws-amplify/amplify-js/compare/@aws-amplify/cache@5.0.19...@aws-amplify/cache@5.0.20) (2023-03-16)
93
+
94
+ **Note:** Version bump only for package @aws-amplify/cache
95
+
96
+ ## [5.0.19](https://github.com/aws-amplify/amplify-js/compare/@aws-amplify/cache@5.0.18...@aws-amplify/cache@5.0.19) (2023-03-13)
97
+
98
+ ### Bug Fixes
99
+
100
+ - Run ts coverage check with test ([#11047](https://github.com/aws-amplify/amplify-js/issues/11047)) ([430bedf](https://github.com/aws-amplify/amplify-js/commit/430bedfd0d0618bd0093b488233521356feef787))
101
+
102
+ ## [5.0.18](https://github.com/aws-amplify/amplify-js/compare/@aws-amplify/cache@5.0.17...@aws-amplify/cache@5.0.18) (2023-03-08)
103
+
104
+ **Note:** Version bump only for package @aws-amplify/cache
105
+
106
+ ## [5.0.17](https://github.com/aws-amplify/amplify-js/compare/@aws-amplify/cache@5.0.16...@aws-amplify/cache@5.0.17) (2023-03-06)
107
+
108
+ **Note:** Version bump only for package @aws-amplify/cache
109
+
110
+ ## [5.0.16](https://github.com/aws-amplify/amplify-js/compare/@aws-amplify/cache@5.0.15...@aws-amplify/cache@5.0.16) (2023-02-24)
111
+
112
+ **Note:** Version bump only for package @aws-amplify/cache
113
+
114
+ ## [5.0.15](https://github.com/aws-amplify/amplify-js/compare/@aws-amplify/cache@5.0.14...@aws-amplify/cache@5.0.15) (2023-02-16)
115
+
116
+ **Note:** Version bump only for package @aws-amplify/cache
117
+
118
+ ## [5.0.14](https://github.com/aws-amplify/amplify-js/compare/@aws-amplify/cache@5.0.13...@aws-amplify/cache@5.0.14) (2023-02-09)
119
+
120
+ **Note:** Version bump only for package @aws-amplify/cache
121
+
122
+ ## [5.0.13](https://github.com/aws-amplify/amplify-js/compare/@aws-amplify/cache@5.0.12...@aws-amplify/cache@5.0.13) (2023-02-08)
123
+
124
+ **Note:** Version bump only for package @aws-amplify/cache
125
+
126
+ ## [5.0.12](https://github.com/aws-amplify/amplify-js/compare/@aws-amplify/cache@5.0.11...@aws-amplify/cache@5.0.12) (2023-01-30)
127
+
128
+ **Note:** Version bump only for package @aws-amplify/cache
129
+
130
+ ## [5.0.11](https://github.com/aws-amplify/amplify-js/compare/@aws-amplify/cache@5.0.10...@aws-amplify/cache@5.0.11) (2023-01-19)
131
+
132
+ **Note:** Version bump only for package @aws-amplify/cache
133
+
134
+ ## [5.0.10](https://github.com/aws-amplify/amplify-js/compare/@aws-amplify/cache@5.0.9...@aws-amplify/cache@5.0.10) (2023-01-13)
135
+
136
+ **Note:** Version bump only for package @aws-amplify/cache
137
+
138
+ ## [5.0.9](https://github.com/aws-amplify/amplify-js/compare/@aws-amplify/cache@5.0.8...@aws-amplify/cache@5.0.9) (2023-01-10)
139
+
140
+ **Note:** Version bump only for package @aws-amplify/cache
141
+
142
+ ## [5.0.8](https://github.com/aws-amplify/amplify-js/compare/@aws-amplify/cache@5.0.7...@aws-amplify/cache@5.0.8) (2022-12-27)
143
+
144
+ **Note:** Version bump only for package @aws-amplify/cache
145
+
146
+ ## [5.0.7](https://github.com/aws-amplify/amplify-js/compare/@aws-amplify/cache@5.0.6...@aws-amplify/cache@5.0.7) (2022-12-16)
147
+
148
+ **Note:** Version bump only for package @aws-amplify/cache
149
+
150
+ ## [5.0.6](https://github.com/aws-amplify/amplify-js/compare/@aws-amplify/cache@5.0.5...@aws-amplify/cache@5.0.6) (2022-12-15)
151
+
152
+ **Note:** Version bump only for package @aws-amplify/cache
153
+
154
+ ## [5.0.5](https://github.com/aws-amplify/amplify-js/compare/@aws-amplify/cache@5.0.4...@aws-amplify/cache@5.0.5) (2022-12-06)
155
+
156
+ **Note:** Version bump only for package @aws-amplify/cache
157
+
158
+ ## [5.0.4](https://github.com/aws-amplify/amplify-js/compare/@aws-amplify/cache@5.0.3...@aws-amplify/cache@5.0.4) (2022-11-23)
159
+
160
+ **Note:** Version bump only for package @aws-amplify/cache
161
+
162
+ ## [5.0.3](https://github.com/aws-amplify/amplify-js/compare/@aws-amplify/cache@5.0.2...@aws-amplify/cache@5.0.3) (2022-11-19)
163
+
164
+ **Note:** Version bump only for package @aws-amplify/cache
165
+
166
+ ## [5.0.2](https://github.com/aws-amplify/amplify-js/compare/@aws-amplify/cache@5.0.1...@aws-amplify/cache@5.0.2) (2022-11-16)
167
+
168
+ **Note:** Version bump only for package @aws-amplify/cache
169
+
170
+ ## [5.0.1](https://github.com/aws-amplify/amplify-js/compare/@aws-amplify/cache@5.0.0...@aws-amplify/cache@5.0.1) (2022-11-11)
171
+
172
+ **Note:** Version bump only for package @aws-amplify/cache
173
+
174
+ # [5.0.0](https://github.com/aws-amplify/amplify-js/compare/@aws-amplify/cache@4.0.63...@aws-amplify/cache@5.0.0) (2022-11-09)
175
+
176
+ ### Bug Fixes
177
+
178
+ - Standardize `cache` named export to preserve interoperability with RN ([#10546](https://github.com/aws-amplify/amplify-js/issues/10546)) ([20b096b](https://github.com/aws-amplify/amplify-js/commit/20b096b1a34e6a102d08dabcedb38772f3a6caf7))
179
+
180
+ ### Features
181
+
182
+ - Setup tslib & importHelpers to improve bundle size ([#10435](https://github.com/aws-amplify/amplify-js/pull/10435))
183
+ - Remove (most) default exports ([10461](https://github.com/aws-amplify/amplify-js/pull/10461))
184
+ - Expand \* exports to optimize tree-shaking ([#10555](https://github.com/aws-amplify/amplify-js/pull/10555))
185
+ - Move cache sideEffects to align with other packages ([#10562](https://github.com/aws-amplify/amplify-js/pull/10562))
186
+ - add a typescript coverage report mechanism ([#10551](https://github.com/aws-amplify/amplify-js/issues/10551)) ([8e8df55](https://github.com/aws-amplify/amplify-js/commit/8e8df55b449f8bae2fe962fe282613d1b818cc5a)), closes [#10379](https://github.com/aws-amplify/amplify-js/issues/10379)
187
+
188
+ ## [4.0.62](https://github.com/aws-amplify/amplify-js/compare/@aws-amplify/cache@4.0.61...@aws-amplify/cache@4.0.62) (2022-10-27)
189
+
190
+ **Note:** Version bump only for package @aws-amplify/cache
191
+
192
+ ## [4.0.61](https://github.com/aws-amplify/amplify-js/compare/@aws-amplify/cache@4.0.60...@aws-amplify/cache@4.0.61) (2022-10-26)
193
+
194
+ **Note:** Version bump only for package @aws-amplify/cache
195
+
196
+ ## [4.0.60](https://github.com/aws-amplify/amplify-js/compare/@aws-amplify/cache@4.0.59...@aws-amplify/cache@4.0.60) (2022-10-25)
197
+
198
+ **Note:** Version bump only for package @aws-amplify/cache
199
+
200
+ ## [4.0.59](https://github.com/aws-amplify/amplify-js/compare/@aws-amplify/cache@4.0.58...@aws-amplify/cache@4.0.59) (2022-10-14)
201
+
202
+ **Note:** Version bump only for package @aws-amplify/cache
203
+
204
+ ## [4.0.58](https://github.com/aws-amplify/amplify-js/compare/@aws-amplify/cache@4.0.57...@aws-amplify/cache@4.0.58) (2022-10-14)
205
+
206
+ **Note:** Version bump only for package @aws-amplify/cache
207
+
208
+ ## [4.0.57](https://github.com/aws-amplify/amplify-js/compare/@aws-amplify/cache@4.0.55...@aws-amplify/cache@4.0.57) (2022-09-30)
209
+
210
+ **Note:** Version bump only for package @aws-amplify/cache
211
+
212
+ ## [4.0.56](https://github.com/aws-amplify/amplify-js/compare/@aws-amplify/cache@4.0.55...@aws-amplify/cache@4.0.56) (2022-09-20)
213
+
214
+ **Note:** Version bump only for package @aws-amplify/cache
215
+
216
+ ## [4.0.55](https://github.com/aws-amplify/amplify-js/compare/@aws-amplify/cache@4.0.54...@aws-amplify/cache@4.0.55) (2022-09-08)
217
+
218
+ **Note:** Version bump only for package @aws-amplify/cache
219
+
220
+ ## [4.0.54](https://github.com/aws-amplify/amplify-js/compare/@aws-amplify/cache@4.0.53...@aws-amplify/cache@4.0.54) (2022-09-01)
221
+
222
+ **Note:** Version bump only for package @aws-amplify/cache
223
+
224
+ ## [4.0.53](https://github.com/aws-amplify/amplify-js/compare/@aws-amplify/cache@4.0.52...@aws-amplify/cache@4.0.53) (2022-08-23)
225
+
226
+ **Note:** Version bump only for package @aws-amplify/cache
227
+
228
+ ## [4.0.52](https://github.com/aws-amplify/amplify-js/compare/@aws-amplify/cache@4.0.51...@aws-amplify/cache@4.0.52) (2022-08-18)
229
+
230
+ **Note:** Version bump only for package @aws-amplify/cache
231
+
232
+ ## [4.0.51](https://github.com/aws-amplify/amplify-js/compare/@aws-amplify/cache@4.0.50...@aws-amplify/cache@4.0.51) (2022-08-16)
233
+
234
+ **Note:** Version bump only for package @aws-amplify/cache
235
+
236
+ ## [4.0.50](https://github.com/aws-amplify/amplify-js/compare/@aws-amplify/cache@4.0.49...@aws-amplify/cache@4.0.50) (2022-08-01)
237
+
238
+ **Note:** Version bump only for package @aws-amplify/cache
239
+
240
+ ## [4.0.49](https://github.com/aws-amplify/amplify-js/compare/@aws-amplify/cache@4.0.48...@aws-amplify/cache@4.0.49) (2022-07-28)
241
+
242
+ **Note:** Version bump only for package @aws-amplify/cache
243
+
244
+ ## [4.0.48](https://github.com/aws-amplify/amplify-js/compare/@aws-amplify/cache@4.0.47...@aws-amplify/cache@4.0.48) (2022-07-21)
245
+
246
+ **Note:** Version bump only for package @aws-amplify/cache
247
+
248
+ ## [4.0.47](https://github.com/aws-amplify/amplify-js/compare/@aws-amplify/cache@4.0.46...@aws-amplify/cache@4.0.47) (2022-07-07)
249
+
250
+ **Note:** Version bump only for package @aws-amplify/cache
251
+
252
+ ## [4.0.46](https://github.com/aws-amplify/amplify-js/compare/@aws-amplify/cache@4.0.45...@aws-amplify/cache@4.0.46) (2022-06-18)
253
+
254
+ **Note:** Version bump only for package @aws-amplify/cache
255
+
256
+ ## [4.0.45](https://github.com/aws-amplify/amplify-js/compare/@aws-amplify/cache@4.0.44...@aws-amplify/cache@4.0.45) (2022-06-15)
257
+
258
+ **Note:** Version bump only for package @aws-amplify/cache
259
+
260
+ ## [4.0.44](https://github.com/aws-amplify/amplify-js/compare/@aws-amplify/cache@4.0.43...@aws-amplify/cache@4.0.44) (2022-05-24)
261
+
262
+ **Note:** Version bump only for package @aws-amplify/cache
263
+
264
+ ## [4.0.43](https://github.com/aws-amplify/amplify-js/compare/@aws-amplify/cache@4.0.42...@aws-amplify/cache@4.0.43) (2022-05-23)
265
+
266
+ **Note:** Version bump only for package @aws-amplify/cache
267
+
268
+ ## [4.0.42](https://github.com/aws-amplify/amplify-js/compare/@aws-amplify/cache@4.0.41...@aws-amplify/cache@4.0.42) (2022-05-12)
269
+
270
+ **Note:** Version bump only for package @aws-amplify/cache
271
+
272
+ ## [4.0.41](https://github.com/aws-amplify/amplify-js/compare/@aws-amplify/cache@4.0.40...@aws-amplify/cache@4.0.41) (2022-05-03)
273
+
274
+ **Note:** Version bump only for package @aws-amplify/cache
275
+
276
+ ## [4.0.40](https://github.com/aws-amplify/amplify-js/compare/@aws-amplify/cache@4.0.39...@aws-amplify/cache@4.0.40) (2022-04-14)
277
+
278
+ **Note:** Version bump only for package @aws-amplify/cache
279
+
280
+ ## [4.0.39](https://github.com/aws-amplify/amplify-js/compare/@aws-amplify/cache@4.0.38...@aws-amplify/cache@4.0.39) (2022-04-04)
281
+
282
+ **Note:** Version bump only for package @aws-amplify/cache
283
+
284
+ ## [4.0.38](https://github.com/aws-amplify/amplify-js/compare/@aws-amplify/cache@4.0.37...@aws-amplify/cache@4.0.38) (2022-03-28)
285
+
286
+ **Note:** Version bump only for package @aws-amplify/cache
287
+
288
+ ## [4.0.37](https://github.com/aws-amplify/amplify-js/compare/@aws-amplify/cache@4.0.36...@aws-amplify/cache@4.0.37) (2022-03-22)
289
+
290
+ **Note:** Version bump only for package @aws-amplify/cache
291
+
292
+ ## [4.0.36](https://github.com/aws-amplify/amplify-js/compare/@aws-amplify/cache@4.0.35...@aws-amplify/cache@4.0.36) (2022-03-10)
293
+
294
+ **Note:** Version bump only for package @aws-amplify/cache
295
+
296
+ ## [4.0.35](https://github.com/aws-amplify/amplify-js/compare/@aws-amplify/cache@4.0.34...@aws-amplify/cache@4.0.35) (2022-02-28)
297
+
298
+ **Note:** Version bump only for package @aws-amplify/cache
299
+
300
+ ## [4.0.34](https://github.com/aws-amplify/amplify-js/compare/@aws-amplify/cache@4.0.33...@aws-amplify/cache@4.0.34) (2022-02-03)
301
+
302
+ **Note:** Version bump only for package @aws-amplify/cache
303
+
304
+ ## [4.0.33](https://github.com/aws-amplify/amplify-js/compare/@aws-amplify/cache@4.0.32...@aws-amplify/cache@4.0.33) (2022-01-27)
305
+
306
+ **Note:** Version bump only for package @aws-amplify/cache
307
+
308
+ ## [4.0.32](https://github.com/aws-amplify/amplify-js/compare/@aws-amplify/cache@4.0.31...@aws-amplify/cache@4.0.32) (2022-01-07)
309
+
310
+ **Note:** Version bump only for package @aws-amplify/cache
311
+
312
+ ## [4.0.31](https://github.com/aws-amplify/amplify-js/compare/@aws-amplify/cache@4.0.30...@aws-amplify/cache@4.0.31) (2021-12-16)
313
+
314
+ **Note:** Version bump only for package @aws-amplify/cache
315
+
316
+ ## [4.0.30](https://github.com/aws-amplify/amplify-js/compare/@aws-amplify/cache@4.0.29...@aws-amplify/cache@4.0.30) (2021-12-03)
317
+
318
+ **Note:** Version bump only for package @aws-amplify/cache
319
+
320
+ ## [4.0.29](https://github.com/aws-amplify/amplify-js/compare/@aws-amplify/cache@4.0.28...@aws-amplify/cache@4.0.29) (2021-12-02)
321
+
322
+ **Note:** Version bump only for package @aws-amplify/cache
323
+
324
+ ## [4.0.28](https://github.com/aws-amplify/amplify-js/compare/@aws-amplify/cache@4.0.27...@aws-amplify/cache@4.0.28) (2021-11-18)
325
+
326
+ **Note:** Version bump only for package @aws-amplify/cache
327
+
328
+ ## [4.0.27](https://github.com/aws-amplify/amplify-js/compare/@aws-amplify/cache@4.0.26...@aws-amplify/cache@4.0.27) (2021-11-16)
329
+
330
+ **Note:** Version bump only for package @aws-amplify/cache
331
+
332
+ ## [4.0.26](https://github.com/aws-amplify/amplify-js/compare/@aws-amplify/cache@4.0.25...@aws-amplify/cache@4.0.26) (2021-11-12)
333
+
334
+ **Note:** Version bump only for package @aws-amplify/cache
335
+
336
+ ## [4.0.25](https://github.com/aws-amplify/amplify-js/compare/@aws-amplify/cache@4.0.24...@aws-amplify/cache@4.0.25) (2021-11-09)
337
+
338
+ **Note:** Version bump only for package @aws-amplify/cache
339
+
340
+ ## [4.0.24](https://github.com/aws-amplify/amplify-js/compare/@aws-amplify/cache@4.0.23...@aws-amplify/cache@4.0.24) (2021-10-28)
341
+
342
+ **Note:** Version bump only for package @aws-amplify/cache
343
+
344
+ ## [4.0.23](https://github.com/aws-amplify/amplify-js/compare/@aws-amplify/cache@4.0.22...@aws-amplify/cache@4.0.23) (2021-10-21)
345
+
346
+ **Note:** Version bump only for package @aws-amplify/cache
347
+
348
+ ## [4.0.22](https://github.com/aws-amplify/amplify-js/compare/@aws-amplify/cache@4.0.21...@aws-amplify/cache@4.0.22) (2021-10-07)
349
+
350
+ **Note:** Version bump only for package @aws-amplify/cache
351
+
352
+ ## [4.0.21](https://github.com/aws-amplify/amplify-js/compare/@aws-amplify/cache@4.0.20...@aws-amplify/cache@4.0.21) (2021-09-30)
353
+
354
+ **Note:** Version bump only for package @aws-amplify/cache
355
+
356
+ ## [4.0.20](https://github.com/aws-amplify/amplify-js/compare/@aws-amplify/cache@4.0.19...@aws-amplify/cache@4.0.20) (2021-09-24)
357
+
358
+ **Note:** Version bump only for package @aws-amplify/cache
359
+
360
+ ## [4.0.19](https://github.com/aws-amplify/amplify-js/compare/@aws-amplify/cache@4.0.18...@aws-amplify/cache@4.0.19) (2021-09-22)
361
+
362
+ **Note:** Version bump only for package @aws-amplify/cache
363
+
364
+ ## [4.0.18](https://github.com/aws-amplify/amplify-js/compare/@aws-amplify/cache@4.0.17...@aws-amplify/cache@4.0.18) (2021-09-17)
365
+
366
+ **Note:** Version bump only for package @aws-amplify/cache
367
+
368
+ ## [4.0.17](https://github.com/aws-amplify/amplify-js/compare/@aws-amplify/cache@4.0.16...@aws-amplify/cache@4.0.17) (2021-09-09)
369
+
370
+ **Note:** Version bump only for package @aws-amplify/cache
371
+
372
+ ## [4.0.16](https://github.com/aws-amplify/amplify-js/compare/@aws-amplify/cache@4.0.15...@aws-amplify/cache@4.0.16) (2021-09-07)
373
+
374
+ **Note:** Version bump only for package @aws-amplify/cache
375
+
376
+ ## [4.0.15](https://github.com/aws-amplify/amplify-js/compare/@aws-amplify/cache@4.0.14...@aws-amplify/cache@4.0.15) (2021-09-04)
377
+
378
+ **Note:** Version bump only for package @aws-amplify/cache
379
+
380
+ ## [4.0.14](https://github.com/aws-amplify/amplify-js/compare/@aws-amplify/cache@4.0.13...@aws-amplify/cache@4.0.14) (2021-09-02)
381
+
382
+ **Note:** Version bump only for package @aws-amplify/cache
383
+
384
+ ## [4.0.13](https://github.com/aws-amplify/amplify-js/compare/@aws-amplify/cache@4.0.12...@aws-amplify/cache@4.0.13) (2021-08-26)
385
+
386
+ **Note:** Version bump only for package @aws-amplify/cache
387
+
388
+ ## [4.0.12](https://github.com/aws-amplify/amplify-js/compare/@aws-amplify/cache@4.0.11...@aws-amplify/cache@4.0.12) (2021-08-19)
389
+
390
+ **Note:** Version bump only for package @aws-amplify/cache
391
+
392
+ ## [4.0.11](https://github.com/aws-amplify/amplify-js/compare/@aws-amplify/cache@4.0.10...@aws-amplify/cache@4.0.11) (2021-08-12)
393
+
394
+ **Note:** Version bump only for package @aws-amplify/cache
395
+
396
+ ## [4.0.10](https://github.com/aws-amplify/amplify-js/compare/@aws-amplify/cache@4.0.9...@aws-amplify/cache@4.0.10) (2021-07-28)
397
+
398
+ **Note:** Version bump only for package @aws-amplify/cache
399
+
400
+ ## [4.0.9](https://github.com/aws-amplify/amplify-js/compare/@aws-amplify/cache@4.0.8...@aws-amplify/cache@4.0.9) (2021-07-22)
401
+
402
+ **Note:** Version bump only for package @aws-amplify/cache
403
+
404
+ ## [4.0.8](https://github.com/aws-amplify/amplify-js/compare/@aws-amplify/cache@4.0.7...@aws-amplify/cache@4.0.8) (2021-07-16)
405
+
406
+ **Note:** Version bump only for package @aws-amplify/cache
407
+
408
+ ## [4.0.7](https://github.com/aws-amplify/amplify-js/compare/@aws-amplify/cache@4.0.6...@aws-amplify/cache@4.0.7) (2021-07-08)
409
+
410
+ **Note:** Version bump only for package @aws-amplify/cache
411
+
412
+ ## [4.0.6](https://github.com/aws-amplify/amplify-js/compare/@aws-amplify/cache@4.0.5...@aws-amplify/cache@4.0.6) (2021-06-24)
413
+
414
+ **Note:** Version bump only for package @aws-amplify/cache
415
+
416
+ ## [4.0.5](https://github.com/aws-amplify/amplify-js/compare/@aws-amplify/cache@4.0.4...@aws-amplify/cache@4.0.5) (2021-06-18)
417
+
418
+ **Note:** Version bump only for package @aws-amplify/cache
419
+
420
+ ## [4.0.4](https://github.com/aws-amplify/amplify-js/compare/@aws-amplify/cache@4.0.3...@aws-amplify/cache@4.0.4) (2021-06-10)
421
+
422
+ **Note:** Version bump only for package @aws-amplify/cache
423
+
424
+ ## [4.0.3](https://github.com/aws-amplify/amplify-js/compare/@aws-amplify/cache@4.0.1...@aws-amplify/cache@4.0.3) (2021-05-26)
425
+
426
+ **Note:** Version bump only for package @aws-amplify/cache
427
+
428
+ ## [4.0.1](https://github.com/aws-amplify/amplify-js/compare/@aws-amplify/cache@4.0.0...@aws-amplify/cache@4.0.1) (2021-05-14)
429
+
430
+ **Note:** Version bump only for package @aws-amplify/cache
431
+
432
+ # [4.0.0](https://github.com/aws-amplify/amplify-js/compare/@aws-amplify/cache@3.1.56...@aws-amplify/cache@4.0.0) (2021-05-11)
433
+
434
+ - chore!: Upgrade to @react-native-async-storage/async-storage (#8250) ([1de4853](https://github.com/aws-amplify/amplify-js/commit/1de48531b68e3c53c3b7dbf4487da4578cb79888)), closes [#8250](https://github.com/aws-amplify/amplify-js/issues/8250)
435
+
436
+ ### BREAKING CHANGES
437
+
438
+ - Upgrade from React Native AsyncStorage to @react-native-async-storage/async-storage
439
+
440
+ Co-authored-by: Ashish Nanda <ashish.nanda.5591@gmail.com>
441
+ Co-authored-by: Ivan Artemiev <29709626+iartemiev@users.noreply.github.com>
442
+
443
+ ## [3.1.56](https://github.com/aws-amplify/amplify-js/compare/@aws-amplify/cache@3.1.55...@aws-amplify/cache@3.1.56) (2021-05-06)
444
+
445
+ **Note:** Version bump only for package @aws-amplify/cache
446
+
447
+ ## [3.1.55](https://github.com/aws-amplify/amplify-js/compare/@aws-amplify/cache@3.1.54...@aws-amplify/cache@3.1.55) (2021-04-15)
448
+
449
+ **Note:** Version bump only for package @aws-amplify/cache
450
+
451
+ ## [3.1.54](https://github.com/aws-amplify/amplify-js/compare/@aws-amplify/cache@3.1.53...@aws-amplify/cache@3.1.54) (2021-03-25)
452
+
453
+ **Note:** Version bump only for package @aws-amplify/cache
454
+
455
+ ## [3.1.53](https://github.com/aws-amplify/amplify-js/compare/@aws-amplify/cache@3.1.52...@aws-amplify/cache@3.1.53) (2021-03-18)
456
+
457
+ **Note:** Version bump only for package @aws-amplify/cache
458
+
459
+ ## [3.1.52](https://github.com/aws-amplify/amplify-js/compare/@aws-amplify/cache@3.1.51...@aws-amplify/cache@3.1.52) (2021-03-12)
460
+
461
+ **Note:** Version bump only for package @aws-amplify/cache
462
+
463
+ ## [3.1.51](https://github.com/aws-amplify/amplify-js/compare/@aws-amplify/cache@3.1.50...@aws-amplify/cache@3.1.51) (2021-03-08)
464
+
465
+ **Note:** Version bump only for package @aws-amplify/cache
466
+
467
+ ## [3.1.50](https://github.com/aws-amplify/amplify-js/compare/@aws-amplify/cache@3.1.49...@aws-amplify/cache@3.1.50) (2021-03-03)
468
+
469
+ **Note:** Version bump only for package @aws-amplify/cache
470
+
471
+ ## [3.1.49](https://github.com/aws-amplify/amplify-js/compare/@aws-amplify/cache@3.1.48...@aws-amplify/cache@3.1.49) (2021-02-25)
472
+
473
+ **Note:** Version bump only for package @aws-amplify/cache
474
+
475
+ ## [3.1.48](https://github.com/aws-amplify/amplify-js/compare/@aws-amplify/cache@3.1.47...@aws-amplify/cache@3.1.48) (2021-02-18)
476
+
477
+ **Note:** Version bump only for package @aws-amplify/cache
478
+
479
+ ## [3.1.47](https://github.com/aws-amplify/amplify-js/compare/@aws-amplify/cache@3.1.46...@aws-amplify/cache@3.1.47) (2021-02-15)
480
+
481
+ **Note:** Version bump only for package @aws-amplify/cache
482
+
483
+ ## [3.1.46](https://github.com/aws-amplify/amplify-js/compare/@aws-amplify/cache@3.1.45...@aws-amplify/cache@3.1.46) (2021-02-09)
484
+
485
+ **Note:** Version bump only for package @aws-amplify/cache
486
+
487
+ ## [3.1.45](https://github.com/aws-amplify/amplify-js/compare/@aws-amplify/cache@3.1.44...@aws-amplify/cache@3.1.45) (2021-02-03)
488
+
489
+ **Note:** Version bump only for package @aws-amplify/cache
490
+
491
+ ## [3.1.44](https://github.com/aws-amplify/amplify-js/compare/@aws-amplify/cache@3.1.43...@aws-amplify/cache@3.1.44) (2021-02-01)
492
+
493
+ **Note:** Version bump only for package @aws-amplify/cache
494
+
495
+ ## [3.1.43](https://github.com/aws-amplify/amplify-js/compare/@aws-amplify/cache@3.1.42...@aws-amplify/cache@3.1.43) (2021-01-29)
496
+
497
+ **Note:** Version bump only for package @aws-amplify/cache
498
+
499
+ ## [3.1.42](https://github.com/aws-amplify/amplify-js/compare/@aws-amplify/cache@3.1.41...@aws-amplify/cache@3.1.42) (2021-01-07)
500
+
501
+ **Note:** Version bump only for package @aws-amplify/cache
502
+
503
+ ## [3.1.41](https://github.com/aws-amplify/amplify-js/compare/@aws-amplify/cache@3.1.40...@aws-amplify/cache@3.1.41) (2020-12-17)
504
+
505
+ **Note:** Version bump only for package @aws-amplify/cache
506
+
507
+ ## [3.1.40](https://github.com/aws-amplify/amplify-js/compare/@aws-amplify/cache@3.1.39...@aws-amplify/cache@3.1.40) (2020-12-10)
508
+
509
+ **Note:** Version bump only for package @aws-amplify/cache
510
+
511
+ ## [3.1.39](https://github.com/aws-amplify/amplify-js/compare/@aws-amplify/cache@3.1.38...@aws-amplify/cache@3.1.39) (2020-11-30)
512
+
513
+ **Note:** Version bump only for package @aws-amplify/cache
514
+
515
+ ## [3.1.38](https://github.com/aws-amplify/amplify-js/compare/@aws-amplify/cache@3.1.37...@aws-amplify/cache@3.1.38) (2020-11-23)
516
+
517
+ **Note:** Version bump only for package @aws-amplify/cache
518
+
519
+ ## [3.1.37](https://github.com/aws-amplify/amplify-js/compare/@aws-amplify/cache@3.1.36...@aws-amplify/cache@3.1.37) (2020-11-20)
520
+
521
+ **Note:** Version bump only for package @aws-amplify/cache
522
+
523
+ ## [3.1.36](https://github.com/aws-amplify/amplify-js/compare/@aws-amplify/cache@3.1.35...@aws-amplify/cache@3.1.36) (2020-11-13)
524
+
525
+ **Note:** Version bump only for package @aws-amplify/cache
526
+
527
+ ## [3.1.35](https://github.com/aws-amplify/amplify-js/compare/@aws-amplify/cache@3.1.34...@aws-amplify/cache@3.1.35) (2020-11-03)
528
+
529
+ **Note:** Version bump only for package @aws-amplify/cache
530
+
531
+ ## [3.1.34](https://github.com/aws-amplify/amplify-js/compare/@aws-amplify/cache@3.1.33...@aws-amplify/cache@3.1.34) (2020-10-31)
532
+
533
+ ### Bug Fixes
534
+
535
+ - **amazon-cognito-identity-js:** update random implementation ([#7090](https://github.com/aws-amplify/amplify-js/issues/7090)) ([7048453](https://github.com/aws-amplify/amplify-js/commit/70484532da8a9953384b00b223b2b3ba0c0e845e))
536
+
537
+ ## [3.1.33](https://github.com/aws-amplify/amplify-js/compare/@aws-amplify/cache@3.1.32...@aws-amplify/cache@3.1.33) (2020-10-29)
538
+
539
+ **Note:** Version bump only for package @aws-amplify/cache
540
+
541
+ ## [3.1.32](https://github.com/aws-amplify/amplify-js/compare/@aws-amplify/cache@3.1.31...@aws-amplify/cache@3.1.32) (2020-10-15)
542
+
543
+ **Note:** Version bump only for package @aws-amplify/cache
544
+
545
+ ## [3.1.31](https://github.com/aws-amplify/amplify-js/compare/@aws-amplify/cache@3.1.30...@aws-amplify/cache@3.1.31) (2020-10-01)
546
+
547
+ **Note:** Version bump only for package @aws-amplify/cache
548
+
549
+ ## [3.1.30](https://github.com/aws-amplify/amplify-js/compare/@aws-amplify/cache@3.1.29...@aws-amplify/cache@3.1.30) (2020-09-25)
550
+
551
+ ### Bug Fixes
552
+
553
+ - Add files with Amplify.register to sideEffects array ([#6867](https://github.com/aws-amplify/amplify-js/issues/6867)) ([58ddbf8](https://github.com/aws-amplify/amplify-js/commit/58ddbf8811e44695d97b6ab8be8f7cd2a2242921))
554
+
555
+ ## [3.1.29](https://github.com/aws-amplify/amplify-js/compare/@aws-amplify/cache@3.1.28...@aws-amplify/cache@3.1.29) (2020-09-16)
556
+
557
+ **Note:** Version bump only for package @aws-amplify/cache
558
+
559
+ ## [3.1.28](https://github.com/aws-amplify/amplify-js/compare/@aws-amplify/cache@3.1.27...@aws-amplify/cache@3.1.28) (2020-09-15)
560
+
561
+ **Note:** Version bump only for package @aws-amplify/cache
562
+
563
+ ## [3.1.27](https://github.com/aws-amplify/amplify-js/compare/@aws-amplify/cache@3.1.26...@aws-amplify/cache@3.1.27) (2020-09-10)
564
+
565
+ **Note:** Version bump only for package @aws-amplify/cache
566
+
567
+ ## [3.1.26](https://github.com/aws-amplify/amplify-js/compare/@aws-amplify/cache@3.1.25...@aws-amplify/cache@3.1.26) (2020-09-03)
568
+
569
+ **Note:** Version bump only for package @aws-amplify/cache
570
+
571
+ ## [3.1.25](https://github.com/aws-amplify/amplify-js/compare/@aws-amplify/cache@3.1.24...@aws-amplify/cache@3.1.25) (2020-09-03)
572
+
573
+ **Note:** Version bump only for package @aws-amplify/cache
574
+
575
+ ## [3.1.24](https://github.com/aws-amplify/amplify-js/compare/@aws-amplify/cache@3.1.23...@aws-amplify/cache@3.1.24) (2020-09-01)
576
+
577
+ **Note:** Version bump only for package @aws-amplify/cache
578
+
579
+ ## [3.1.23](https://github.com/aws-amplify/amplify-js/compare/@aws-amplify/cache@3.1.22...@aws-amplify/cache@3.1.23) (2020-08-19)
580
+
581
+ **Note:** Version bump only for package @aws-amplify/cache
582
+
583
+ ## [3.1.22](https://github.com/aws-amplify/amplify-js/compare/@aws-amplify/cache@3.1.21...@aws-amplify/cache@3.1.22) (2020-08-06)
584
+
585
+ **Note:** Version bump only for package @aws-amplify/cache
586
+
587
+ ## [3.1.21](https://github.com/aws-amplify/amplify-js/compare/@aws-amplify/cache@3.1.20...@aws-amplify/cache@3.1.21) (2020-07-27)
588
+
589
+ **Note:** Version bump only for package @aws-amplify/cache
590
+
591
+ ## [3.1.20](https://github.com/aws-amplify/amplify-js/compare/@aws-amplify/cache@3.1.19...@aws-amplify/cache@3.1.20) (2020-07-22)
592
+
593
+ **Note:** Version bump only for package @aws-amplify/cache
594
+
595
+ ## [3.1.19](https://github.com/aws-amplify/amplify-js/compare/@aws-amplify/cache@3.1.18...@aws-amplify/cache@3.1.19) (2020-07-09)
596
+
597
+ **Note:** Version bump only for package @aws-amplify/cache
598
+
599
+ ## [3.1.18](https://github.com/aws-amplify/amplify-js/compare/@aws-amplify/cache@3.1.17...@aws-amplify/cache@3.1.18) (2020-07-07)
600
+
601
+ **Note:** Version bump only for package @aws-amplify/cache
602
+
603
+ ## [3.1.17](https://github.com/aws-amplify/amplify-js/compare/@aws-amplify/cache@3.1.16...@aws-amplify/cache@3.1.17) (2020-06-18)
604
+
605
+ **Note:** Version bump only for package @aws-amplify/cache
606
+
607
+ ## [3.1.16](https://github.com/aws-amplify/amplify-js/compare/@aws-amplify/cache@3.1.15...@aws-amplify/cache@3.1.16) (2020-06-09)
608
+
609
+ **Note:** Version bump only for package @aws-amplify/cache
610
+
611
+ ## [3.1.15](https://github.com/aws-amplify/amplify-js/compare/@aws-amplify/cache@3.1.14...@aws-amplify/cache@3.1.15) (2020-06-04)
612
+
613
+ **Note:** Version bump only for package @aws-amplify/cache
614
+
615
+ ## [3.1.14](https://github.com/aws-amplify/amplify-js/compare/@aws-amplify/cache@3.1.13...@aws-amplify/cache@3.1.14) (2020-06-03)
616
+
617
+ **Note:** Version bump only for package @aws-amplify/cache
618
+
619
+ ## [3.1.13](https://github.com/aws-amplify/amplify-js/compare/@aws-amplify/cache@3.1.12...@aws-amplify/cache@3.1.13) (2020-06-02)
620
+
621
+ **Note:** Version bump only for package @aws-amplify/cache
622
+
623
+ ## [3.1.12](https://github.com/aws-amplify/amplify-js/compare/@aws-amplify/cache@3.1.11...@aws-amplify/cache@3.1.12) (2020-05-26)
624
+
625
+ **Note:** Version bump only for package @aws-amplify/cache
626
+
627
+ ## [3.1.11](https://github.com/aws-amplify/amplify-js/compare/@aws-amplify/cache@3.1.10...@aws-amplify/cache@3.1.11) (2020-05-22)
628
+
629
+ **Note:** Version bump only for package @aws-amplify/cache
630
+
631
+ ## [3.1.10](https://github.com/aws-amplify/amplify-js/compare/@aws-amplify/cache@3.1.9...@aws-amplify/cache@3.1.10) (2020-05-14)
632
+
633
+ **Note:** Version bump only for package @aws-amplify/cache
634
+
635
+ ## [3.1.9](https://github.com/aws-amplify/amplify-js/compare/@aws-amplify/cache@3.1.8...@aws-amplify/cache@3.1.9) (2020-04-30)
636
+
637
+ **Note:** Version bump only for package @aws-amplify/cache
638
+
639
+ ## [3.1.8](https://github.com/aws-amplify/amplify-js/compare/@aws-amplify/cache@3.1.7...@aws-amplify/cache@3.1.8) (2020-04-24)
640
+
641
+ **Note:** Version bump only for package @aws-amplify/cache
642
+
643
+ ## [3.1.7](https://github.com/aws-amplify/amplify-js/compare/@aws-amplify/cache@3.1.6...@aws-amplify/cache@3.1.7) (2020-04-14)
644
+
645
+ **Note:** Version bump only for package @aws-amplify/cache
646
+
647
+ ## [3.1.6](https://github.com/aws-amplify/amplify-js/compare/@aws-amplify/cache@3.1.5...@aws-amplify/cache@3.1.6) (2020-04-08)
648
+
649
+ **Note:** Version bump only for package @aws-amplify/cache
650
+
651
+ ## [3.1.5](https://github.com/aws-amplify/amplify-js/compare/@aws-amplify/cache@3.1.4...@aws-amplify/cache@3.1.5) (2020-04-07)
652
+
653
+ **Note:** Version bump only for package @aws-amplify/cache
654
+
655
+ ## [3.1.4](https://github.com/aws-amplify/amplify-js/compare/@aws-amplify/cache@3.1.3...@aws-amplify/cache@3.1.4) (2020-04-03)
656
+
657
+ **Note:** Version bump only for package @aws-amplify/cache
658
+
659
+ ## [3.1.3](https://github.com/aws-amplify/amplify-js/compare/@aws-amplify/cache@3.1.2...@aws-amplify/cache@3.1.3) (2020-04-02)
660
+
661
+ **Note:** Version bump only for package @aws-amplify/cache
662
+
663
+ ## [3.1.2](https://github.com/aws-amplify/amplify-js/compare/@aws-amplify/cache@3.1.1...@aws-amplify/cache@3.1.2) (2020-04-01)
664
+
665
+ **Note:** Version bump only for package @aws-amplify/cache
666
+
667
+ ## [3.1.1](https://github.com/aws-amplify/amplify-js/compare/@aws-amplify/cache@3.1.0...@aws-amplify/cache@3.1.1) (2020-04-01)
668
+
669
+ **Note:** Version bump only for package @aws-amplify/cache
670
+
671
+ # [3.1.0](https://github.com/aws-amplify/amplify-js/compare/@aws-amplify/cache@2.1.8...@aws-amplify/cache@3.1.0) (2020-03-31)
672
+
673
+ ### Bug Fixes
674
+
675
+ - **@aws-amplify/cache:** expose tree-shaking for Webpack ([32061ac](https://github.com/aws-amplify/amplify-js/commit/32061ac8cdd16f0b0a675912b29e0dbfc44513fb))
676
+
677
+ ### Features
678
+
679
+ - **@aws-amplify/cache:** publish ES2015/ESM artifacts ([22da40e](https://github.com/aws-amplify/amplify-js/commit/22da40e4a72827bce51059b34fa45e5ea3f2367c))
680
+
681
+ ### Reverts
682
+
683
+ - Revert "Publish" ([1319d31](https://github.com/aws-amplify/amplify-js/commit/1319d319b69717e76660fbfa6f1a845195c6d635))
684
+
685
+ ## [2.1.8](https://github.com/aws-amplify/amplify-js/compare/@aws-amplify/cache@2.1.7...@aws-amplify/cache@2.1.8) (2020-03-30)
686
+
687
+ **Note:** Version bump only for package @aws-amplify/cache
688
+
689
+ ## [2.1.7](https://github.com/aws-amplify/amplify-js/compare/@aws-amplify/cache@2.1.6...@aws-amplify/cache@2.1.7) (2020-03-25)
690
+
691
+ **Note:** Version bump only for package @aws-amplify/cache
692
+
693
+ ## [2.1.6](https://github.com/aws-amplify/amplify-js/compare/@aws-amplify/cache@2.1.5...@aws-amplify/cache@2.1.6) (2020-02-28)
694
+
695
+ **Note:** Version bump only for package @aws-amplify/cache
696
+
697
+ ## [2.1.5](https://github.com/aws-amplify/amplify-js/compare/@aws-amplify/cache@2.1.3...@aws-amplify/cache@2.1.5) (2020-02-07)
698
+
699
+ ### Bug Fixes
700
+
701
+ - **cache:** export correct module for RN ([#4786](https://github.com/aws-amplify/amplify-js/issues/4786)) ([a15730c](https://github.com/aws-amplify/amplify-js/commit/a15730cc50692d9d31a0f586c3544b3dcdbea659))
702
+
703
+ ## [2.1.3](https://github.com/aws-amplify/amplify-js/compare/@aws-amplify/cache@2.1.2...@aws-amplify/cache@2.1.3) (2020-01-10)
704
+
705
+ ### Bug Fixes
706
+
707
+ - [#4311](https://github.com/aws-amplify/amplify-js/issues/4311) Update main entry field to point to CJS builds instead of webpack bundles ([#4678](https://github.com/aws-amplify/amplify-js/issues/4678)) ([54fbdf4](https://github.com/aws-amplify/amplify-js/commit/54fbdf4b1393567735fb7b5f4144db273f1a5f6a))
708
+
709
+ ## [2.1.2](https://github.com/aws-amplify/amplify-js/compare/@aws-amplify/cache@2.1.1...@aws-amplify/cache@2.1.2) (2019-12-18)
710
+
711
+ **Note:** Version bump only for package @aws-amplify/cache
712
+
713
+ ## [2.1.1](https://github.com/aws-amplify/amplify-js/compare/@aws-amplify/cache@2.1.0...@aws-amplify/cache@2.1.1) (2019-12-03)
714
+
715
+ **Note:** Version bump only for package @aws-amplify/cache
716
+
717
+ # [2.1.0](https://github.com/aws-amplify/amplify-js/compare/@aws-amplify/cache@1.1.4...@aws-amplify/cache@2.1.0) (2019-11-15)
718
+
719
+ ### Features
720
+
721
+ - enable watch mode for builds ([#4358](https://github.com/aws-amplify/amplify-js/issues/4358)) ([055e530](https://github.com/aws-amplify/amplify-js/commit/055e5308efc308ae6beee78f8963bb2f812e1f85))
722
+
723
+ ## [1.1.4](https://github.com/aws-amplify/amplify-js/compare/@aws-amplify/cache@1.1.3...@aws-amplify/cache@1.1.4) (2019-10-29)
724
+
725
+ **Note:** Version bump only for package @aws-amplify/cache
726
+
727
+ ## [1.1.3](https://github.com/aws-amplify/amplify-js/compare/@aws-amplify/cache@1.1.2...@aws-amplify/cache@1.1.3) (2019-10-23)
728
+
729
+ **Note:** Version bump only for package @aws-amplify/cache
730
+
731
+ ## [1.1.2](https://github.com/aws/aws-amplify/compare/@aws-amplify/cache@1.1.0...@aws-amplify/cache@1.1.2) (2019-10-10)
732
+
733
+ **Note:** Version bump only for package @aws-amplify/cache
734
+
735
+ # [1.1.0](https://github.com/aws/aws-amplify/compare/@aws-amplify/cache@1.0.34...@aws-amplify/cache@1.1.0) (2019-10-10)
736
+
737
+ ### Features
738
+
739
+ - Added Prettier formatting ([4dfd9aa](https://github.com/aws/aws-amplify/commit/4dfd9aa9ab900307c9d17c68448a6ca4aa08fd5a))
740
+
741
+ ## [1.0.34](https://github.com/aws/aws-amplify/compare/@aws-amplify/cache@1.0.33...@aws-amplify/cache@1.0.34) (2019-09-05)
742
+
743
+ **Note:** Version bump only for package @aws-amplify/cache
744
+
745
+ ## [1.0.33](https://github.com/aws/aws-amplify/compare/@aws-amplify/cache@1.0.32...@aws-amplify/cache@1.0.33) (2019-09-04)
746
+
747
+ **Note:** Version bump only for package @aws-amplify/cache
748
+
749
+ ## [1.0.32](https://github.com/aws/aws-amplify/compare/@aws-amplify/cache@1.0.31...@aws-amplify/cache@1.0.32) (2019-08-05)
750
+
751
+ **Note:** Version bump only for package @aws-amplify/cache
752
+
753
+ ## [1.0.31](https://github.com/aws/aws-amplify/compare/@aws-amplify/cache@1.0.30...@aws-amplify/cache@1.0.31) (2019-07-31)
754
+
755
+ **Note:** Version bump only for package @aws-amplify/cache
756
+
757
+ ## [1.0.30](https://github.com/aws/aws-amplify/compare/@aws-amplify/cache@1.0.29...@aws-amplify/cache@1.0.30) (2019-07-30)
758
+
759
+ **Note:** Version bump only for package @aws-amplify/cache
760
+
761
+ ## [1.0.29](https://github.com/aws/aws-amplify/compare/@aws-amplify/cache@1.0.28...@aws-amplify/cache@1.0.29) (2019-07-18)
762
+
763
+ **Note:** Version bump only for package @aws-amplify/cache
764
+
765
+ <a name="1.0.28"></a>
766
+
767
+ ## [1.0.28](https://github.com/aws/aws-amplify/compare/@aws-amplify/cache@1.0.28-unstable.2...@aws-amplify/cache@1.0.28) (2019-06-17)
768
+
769
+ **Note:** Version bump only for package @aws-amplify/cache
770
+
771
+ <a name="1.0.28-unstable.2"></a>
772
+
773
+ ## [1.0.28-unstable.2](https://github.com/aws/aws-amplify/compare/@aws-amplify/cache@1.0.28-unstable.1...@aws-amplify/cache@1.0.28-unstable.2) (2019-06-14)
774
+
775
+ **Note:** Version bump only for package @aws-amplify/cache
776
+
777
+ <a name="1.0.28-unstable.1"></a>
778
+
779
+ ## [1.0.28-unstable.1](https://github.com/aws/aws-amplify/compare/@aws-amplify/cache@1.0.27...@aws-amplify/cache@1.0.28-unstable.1) (2019-05-24)
780
+
781
+ ### Bug Fixes
782
+
783
+ - **aws-amplify:** manual version bumps for lerna issue ([9ce5a72](https://github.com/aws/aws-amplify/commit/9ce5a72))
784
+
785
+ <a name="1.0.27"></a>
786
+
787
+ ## [1.0.27](https://github.com/aws/aws-amplify/compare/@aws-amplify/cache@1.0.27-unstable.0...@aws-amplify/cache@1.0.27) (2019-05-14)
788
+
789
+ **Note:** Version bump only for package @aws-amplify/cache
790
+
791
+ <a name="1.0.27-unstable.0"></a>
792
+
793
+ ## [1.0.27-unstable.0](https://github.com/aws/aws-amplify/compare/@aws-amplify/cache@1.0.26...@aws-amplify/cache@1.0.27-unstable.0) (2019-05-13)
794
+
795
+ **Note:** Version bump only for package @aws-amplify/cache
796
+
797
+ <a name="1.0.26"></a>
798
+
799
+ ## [1.0.26](https://github.com/aws/aws-amplify/compare/@aws-amplify/cache@1.0.26-unstable.2...@aws-amplify/cache@1.0.26) (2019-05-06)
800
+
801
+ **Note:** Version bump only for package @aws-amplify/cache
802
+
803
+ <a name="1.0.26-unstable.2"></a>
804
+
805
+ ## [1.0.26-unstable.2](https://github.com/aws/aws-amplify/compare/@aws-amplify/cache@1.0.26-unstable.1...@aws-amplify/cache@1.0.26-unstable.2) (2019-05-06)
806
+
807
+ **Note:** Version bump only for package @aws-amplify/cache
808
+
809
+ <a name="1.0.26-unstable.1"></a>
810
+
811
+ ## [1.0.26-unstable.1](https://github.com/aws/aws-amplify/compare/@aws-amplify/cache@1.0.26-unstable.0...@aws-amplify/cache@1.0.26-unstable.1) (2019-04-17)
812
+
813
+ **Note:** Version bump only for package @aws-amplify/cache
814
+
815
+ <a name="1.0.26-unstable.0"></a>
816
+
817
+ ## [1.0.26-unstable.0](https://github.com/aws/aws-amplify/compare/@aws-amplify/cache@1.0.25...@aws-amplify/cache@1.0.26-unstable.0) (2019-04-12)
818
+
819
+ **Note:** Version bump only for package @aws-amplify/cache
820
+
821
+ <a name="1.0.25"></a>
822
+
823
+ ## [1.0.25](https://github.com/aws/aws-amplify/compare/@aws-amplify/cache@1.0.25-unstable.1...@aws-amplify/cache@1.0.25) (2019-04-04)
824
+
825
+ **Note:** Version bump only for package @aws-amplify/cache
826
+
827
+ <a name="1.0.25-unstable.1"></a>
828
+
829
+ ## [1.0.25-unstable.1](https://github.com/aws/aws-amplify/compare/@aws-amplify/cache@1.0.25-unstable.0...@aws-amplify/cache@1.0.25-unstable.1) (2019-04-04)
830
+
831
+ **Note:** Version bump only for package @aws-amplify/cache
832
+
833
+ <a name="1.0.25-unstable.0"></a>
834
+
835
+ ## [1.0.25-unstable.0](https://github.com/aws/aws-amplify/compare/@aws-amplify/cache@1.0.24...@aws-amplify/cache@1.0.25-unstable.0) (2019-04-02)
836
+
837
+ **Note:** Version bump only for package @aws-amplify/cache
838
+
839
+ <a name="1.0.24"></a>
840
+
841
+ ## [1.0.24](https://github.com/aws/aws-amplify/compare/@aws-amplify/cache@1.0.24-unstable.1...@aws-amplify/cache@1.0.24) (2019-03-28)
842
+
843
+ **Note:** Version bump only for package @aws-amplify/cache
844
+
845
+ <a name="1.0.24-unstable.1"></a>
846
+
847
+ ## [1.0.24-unstable.1](https://github.com/aws/aws-amplify/compare/@aws-amplify/cache@1.0.24-unstable.0...@aws-amplify/cache@1.0.24-unstable.1) (2019-03-28)
848
+
849
+ **Note:** Version bump only for package @aws-amplify/cache
850
+
851
+ <a name="1.0.24-unstable.0"></a>
852
+
853
+ ## [1.0.24-unstable.0](https://github.com/aws/aws-amplify/compare/@aws-amplify/cache@1.0.23...@aws-amplify/cache@1.0.24-unstable.0) (2019-03-22)
854
+
855
+ **Note:** Version bump only for package @aws-amplify/cache
856
+
857
+ <a name="1.0.23"></a>
858
+
859
+ ## [1.0.23](https://github.com/aws/aws-amplify/compare/@aws-amplify/cache@1.0.23-unstable.3...@aws-amplify/cache@1.0.23) (2019-03-04)
860
+
861
+ **Note:** Version bump only for package @aws-amplify/cache
862
+
863
+ <a name="1.0.23-unstable.3"></a>
864
+
865
+ ## [1.0.23-unstable.3](https://github.com/aws/aws-amplify/compare/@aws-amplify/cache@1.0.23-unstable.2...@aws-amplify/cache@1.0.23-unstable.3) (2019-03-04)
866
+
867
+ **Note:** Version bump only for package @aws-amplify/cache
868
+
869
+ <a name="1.0.23-unstable.2"></a>
870
+
871
+ ## [1.0.23-unstable.2](https://github.com/aws/aws-amplify/compare/@aws-amplify/cache@1.0.23-unstable.1...@aws-amplify/cache@1.0.23-unstable.2) (2019-02-27)
872
+
873
+ **Note:** Version bump only for package @aws-amplify/cache
874
+
875
+ <a name="1.0.23-unstable.1"></a>
876
+
877
+ ## [1.0.23-unstable.1](https://github.com/aws/aws-amplify/compare/@aws-amplify/cache@1.0.23-unstable.0...@aws-amplify/cache@1.0.23-unstable.1) (2019-02-27)
878
+
879
+ **Note:** Version bump only for package @aws-amplify/cache
880
+
881
+ <a name="1.0.23-unstable.0"></a>
882
+
883
+ ## [1.0.23-unstable.0](https://github.com/aws/aws-amplify/compare/@aws-amplify/cache@1.0.22...@aws-amplify/cache@1.0.23-unstable.0) (2019-01-10)
884
+
885
+ **Note:** Version bump only for package @aws-amplify/cache
886
+
887
+ <a name="1.0.22"></a>
888
+
889
+ ## [1.0.22](https://github.com/aws/aws-amplify/compare/@aws-amplify/cache@1.0.22-unstable.0...@aws-amplify/cache@1.0.22) (2019-01-10)
890
+
891
+ **Note:** Version bump only for package @aws-amplify/cache
892
+
893
+ <a name="1.0.22-unstable.0"></a>
894
+
895
+ ## [1.0.22-unstable.0](https://github.com/aws/aws-amplify/compare/@aws-amplify/cache@1.0.21...@aws-amplify/cache@1.0.22-unstable.0) (2018-12-26)
896
+
897
+ **Note:** Version bump only for package @aws-amplify/cache
898
+
899
+ <a name="1.0.21"></a>
900
+
901
+ ## [1.0.21](https://github.com/aws/aws-amplify/compare/@aws-amplify/cache@1.0.21-unstable.0...@aws-amplify/cache@1.0.21) (2018-12-26)
902
+
903
+ **Note:** Version bump only for package @aws-amplify/cache
904
+
905
+ <a name="1.0.21-unstable.0"></a>
906
+
907
+ ## [1.0.21-unstable.0](https://github.com/aws/aws-amplify/compare/@aws-amplify/cache@1.0.20...@aws-amplify/cache@1.0.21-unstable.0) (2018-12-22)
908
+
909
+ **Note:** Version bump only for package @aws-amplify/cache
910
+
911
+ <a name="1.0.20"></a>
912
+
913
+ ## [1.0.20](https://github.com/aws/aws-amplify/compare/@aws-amplify/cache@1.0.20-unstable.0...@aws-amplify/cache@1.0.20) (2018-12-13)
914
+
915
+ **Note:** Version bump only for package @aws-amplify/cache
916
+
917
+ <a name="1.0.20-unstable.0"></a>
918
+
919
+ ## [1.0.20-unstable.0](https://github.com/aws/aws-amplify/compare/@aws-amplify/cache@1.0.19...@aws-amplify/cache@1.0.20-unstable.0) (2018-12-07)
920
+
921
+ **Note:** Version bump only for package @aws-amplify/cache
922
+
923
+ <a name="1.0.19"></a>
924
+
925
+ ## [1.0.19](https://github.com/aws/aws-amplify/compare/@aws-amplify/cache@1.0.19-unstable.4...@aws-amplify/cache@1.0.19) (2018-12-03)
926
+
927
+ **Note:** Version bump only for package @aws-amplify/cache
928
+
929
+ <a name="1.0.19-unstable.4"></a>
930
+
931
+ ## [1.0.19-unstable.4](https://github.com/aws/aws-amplify/compare/@aws-amplify/cache@1.0.19-unstable.3...@aws-amplify/cache@1.0.19-unstable.4) (2018-11-27)
932
+
933
+ **Note:** Version bump only for package @aws-amplify/cache
934
+
935
+ <a name="1.0.19-unstable.3"></a>
936
+
937
+ ## [1.0.19-unstable.3](https://github.com/aws/aws-amplify/compare/@aws-amplify/cache@1.0.19-unstable.2...@aws-amplify/cache@1.0.19-unstable.3) (2018-11-26)
938
+
939
+ **Note:** Version bump only for package @aws-amplify/cache
940
+
941
+ <a name="1.0.19-unstable.2"></a>
942
+
943
+ ## [1.0.19-unstable.2](https://github.com/aws/aws-amplify/compare/@aws-amplify/cache@1.0.19-unstable.1...@aws-amplify/cache@1.0.19-unstable.2) (2018-11-20)
944
+
945
+ **Note:** Version bump only for package @aws-amplify/cache
946
+
947
+ <a name="1.0.19-unstable.1"></a>
948
+
949
+ ## [1.0.19-unstable.1](https://github.com/aws/aws-amplify/compare/@aws-amplify/cache@1.0.19-unstable.0...@aws-amplify/cache@1.0.19-unstable.1) (2018-11-19)
950
+
951
+ **Note:** Version bump only for package @aws-amplify/cache
952
+
953
+ <a name="1.0.19-unstable.0"></a>
954
+
955
+ ## [1.0.19-unstable.0](https://github.com/aws/aws-amplify/compare/@aws-amplify/cache@1.0.18...@aws-amplify/cache@1.0.19-unstable.0) (2018-11-15)
956
+
957
+ **Note:** Version bump only for package @aws-amplify/cache
958
+
959
+ <a name="1.0.18"></a>
960
+
961
+ ## [1.0.18](https://github.com/aws/aws-amplify/compare/@aws-amplify/cache@1.0.18-unstable.0...@aws-amplify/cache@1.0.18) (2018-11-12)
962
+
963
+ **Note:** Version bump only for package @aws-amplify/cache
964
+
965
+ <a name="1.0.18-unstable.0"></a>
966
+
967
+ ## [1.0.18-unstable.0](https://github.com/aws/aws-amplify/compare/@aws-amplify/cache@1.0.17...@aws-amplify/cache@1.0.18-unstable.0) (2018-11-06)
968
+
969
+ **Note:** Version bump only for package @aws-amplify/cache
970
+
971
+ <a name="1.0.17"></a>
972
+
973
+ ## [1.0.17](https://github.com/aws/aws-amplify/compare/@aws-amplify/cache@1.0.17-unstable.0...@aws-amplify/cache@1.0.17) (2018-11-01)
974
+
975
+ **Note:** Version bump only for package @aws-amplify/cache
976
+
977
+ <a name="1.0.17-unstable.0"></a>
978
+
979
+ ## [1.0.17-unstable.0](https://github.com/aws/aws-amplify/compare/@aws-amplify/cache@1.0.16...@aws-amplify/cache@1.0.17-unstable.0) (2018-10-30)
980
+
981
+ **Note:** Version bump only for package @aws-amplify/cache
982
+
983
+ <a name="1.0.16"></a>
984
+
985
+ ## [1.0.16](https://github.com/aws/aws-amplify/compare/@aws-amplify/cache@1.0.16-unstable.3...@aws-amplify/cache@1.0.16) (2018-10-17)
986
+
987
+ **Note:** Version bump only for package @aws-amplify/cache
988
+
989
+ <a name="1.0.16-unstable.3"></a>
990
+
991
+ ## [1.0.16-unstable.3](https://github.com/aws/aws-amplify/compare/@aws-amplify/cache@1.0.16-unstable.2...@aws-amplify/cache@1.0.16-unstable.3) (2018-10-16)
992
+
993
+ **Note:** Version bump only for package @aws-amplify/cache
994
+
995
+ <a name="1.0.16-unstable.2"></a>
996
+
997
+ ## [1.0.16-unstable.2](https://github.com/aws/aws-amplify/compare/@aws-amplify/cache@1.0.16-unstable.1...@aws-amplify/cache@1.0.16-unstable.2) (2018-10-08)
998
+
999
+ **Note:** Version bump only for package @aws-amplify/cache
1000
+
1001
+ <a name="1.0.16-unstable.1"></a>
1002
+
1003
+ ## [1.0.16-unstable.1](https://github.com/aws/aws-amplify/compare/@aws-amplify/cache@1.0.16-unstable.0...@aws-amplify/cache@1.0.16-unstable.1) (2018-10-05)
1004
+
1005
+ **Note:** Version bump only for package @aws-amplify/cache
1006
+
1007
+ <a name="1.0.16-unstable.0"></a>
1008
+
1009
+ ## [1.0.16-unstable.0](https://github.com/aws/aws-amplify/compare/@aws-amplify/cache@1.0.15-unstable.1...@aws-amplify/cache@1.0.16-unstable.0) (2018-10-05)
1010
+
1011
+ **Note:** Version bump only for package @aws-amplify/cache
1012
+
1013
+ <a name="1.0.15"></a>
1014
+
1015
+ ## [1.0.15](https://github.com/aws/aws-amplify/compare/@aws-amplify/cache@1.0.15-unstable.1...@aws-amplify/cache@1.0.15) (2018-10-04)
1016
+
1017
+ **Note:** Version bump only for package @aws-amplify/cache
1018
+
1019
+ <a name="1.0.15-unstable.1"></a>
1020
+
1021
+ ## [1.0.15-unstable.1](https://github.com/aws/aws-amplify/compare/@aws-amplify/cache@1.0.15-unstable.0...@aws-amplify/cache@1.0.15-unstable.1) (2018-10-03)
1022
+
1023
+ **Note:** Version bump only for package @aws-amplify/cache
1024
+
1025
+ <a name="1.0.15-unstable.0"></a>
1026
+
1027
+ ## [1.0.15-unstable.0](https://github.com/aws/aws-amplify/compare/@aws-amplify/cache@1.0.14-unstable.1...@aws-amplify/cache@1.0.15-unstable.0) (2018-10-03)
1028
+
1029
+ **Note:** Version bump only for package @aws-amplify/cache
1030
+
1031
+ <a name="1.0.14"></a>
1032
+
1033
+ ## [1.0.14](https://github.com/aws/aws-amplify/compare/@aws-amplify/cache@1.0.14-unstable.1...@aws-amplify/cache@1.0.14) (2018-10-03)
1034
+
1035
+ **Note:** Version bump only for package @aws-amplify/cache
1036
+
1037
+ <a name="1.0.14-unstable.1"></a>
1038
+
1039
+ ## [1.0.14-unstable.1](https://github.com/aws/aws-amplify/compare/@aws-amplify/cache@1.0.14-unstable.0...@aws-amplify/cache@1.0.14-unstable.1) (2018-10-01)
1040
+
1041
+ **Note:** Version bump only for package @aws-amplify/cache
1042
+
1043
+ <a name="1.0.14-unstable.0"></a>
1044
+
1045
+ ## [1.0.14-unstable.0](https://github.com/aws/aws-amplify/compare/@aws-amplify/cache@1.0.13...@aws-amplify/cache@1.0.14-unstable.0) (2018-09-28)
1046
+
1047
+ **Note:** Version bump only for package @aws-amplify/cache
1048
+
1049
+ <a name="1.0.13"></a>
1050
+
1051
+ ## [1.0.13](https://github.com/aws/aws-amplify/compare/@aws-amplify/cache@1.0.13-unstable.1...@aws-amplify/cache@1.0.13) (2018-09-27)
1052
+
1053
+ **Note:** Version bump only for package @aws-amplify/cache
1054
+
1055
+ <a name="1.0.13-unstable.1"></a>
1056
+
1057
+ ## [1.0.13-unstable.1](https://github.com/aws/aws-amplify/compare/@aws-amplify/cache@1.0.13-unstable.0...@aws-amplify/cache@1.0.13-unstable.1) (2018-09-25)
1058
+
1059
+ **Note:** Version bump only for package @aws-amplify/cache
1060
+
1061
+ <a name="1.0.13-unstable.0"></a>
1062
+
1063
+ ## [1.0.13-unstable.0](https://github.com/aws/aws-amplify/compare/@aws-amplify/cache@1.0.12...@aws-amplify/cache@1.0.13-unstable.0) (2018-09-22)
1064
+
1065
+ **Note:** Version bump only for package @aws-amplify/cache
1066
+
1067
+ <a name="1.0.12"></a>
1068
+
1069
+ ## [1.0.12](https://github.com/aws/aws-amplify/compare/@aws-amplify/cache@1.0.12-unstable.0...@aws-amplify/cache@1.0.12) (2018-09-21)
1070
+
1071
+ **Note:** Version bump only for package @aws-amplify/cache
1072
+
1073
+ <a name="1.0.12-unstable.0"></a>
1074
+
1075
+ ## [1.0.12-unstable.0](https://github.com/aws/aws-amplify/compare/@aws-amplify/cache@1.0.10...@aws-amplify/cache@1.0.12-unstable.0) (2018-09-21)
1076
+
1077
+ **Note:** Version bump only for package @aws-amplify/cache
1078
+
1079
+ <a name="1.0.11"></a>
1080
+
1081
+ ## [1.0.11](https://github.com/aws/aws-amplify/compare/@aws-amplify/cache@1.0.10...@aws-amplify/cache@1.0.11) (2018-09-21)
1082
+
1083
+ **Note:** Version bump only for package @aws-amplify/cache
1084
+
1085
+ <a name="1.0.10"></a>
1086
+
1087
+ ## [1.0.10](https://github.com/aws/aws-amplify/compare/@aws-amplify/cache@1.0.9...@aws-amplify/cache@1.0.10) (2018-09-17)
1088
+
1089
+ **Note:** Version bump only for package @aws-amplify/cache
1090
+
1091
+ <a name="1.0.9"></a>
1092
+
1093
+ ## [1.0.9](https://github.com/aws/aws-amplify/compare/@aws-amplify/cache@1.0.8...@aws-amplify/cache@1.0.9) (2018-09-12)
1094
+
1095
+ **Note:** Version bump only for package @aws-amplify/cache
1096
+
1097
+ <a name="1.0.8"></a>
1098
+
1099
+ ## [1.0.8](https://github.com/aws/aws-amplify/compare/@aws-amplify/cache@1.0.8-unstable.3...@aws-amplify/cache@1.0.8) (2018-09-09)
1100
+
1101
+ **Note:** Version bump only for package @aws-amplify/cache
1102
+
1103
+ <a name="1.0.8-unstable.3"></a>
1104
+
1105
+ ## [1.0.8-unstable.3](https://github.com/aws/aws-amplify/compare/@aws-amplify/cache@1.0.7...@aws-amplify/cache@1.0.8-unstable.3) (2018-08-31)
1106
+
1107
+ ### Bug Fixes
1108
+
1109
+ - **@aws-amplify/cache:** check if window object exists for browser usage ([988e553](https://github.com/aws/aws-amplify/commit/988e553))
1110
+
1111
+ <a name="1.0.8-unstable.2"></a>
1112
+
1113
+ ## [1.0.8-unstable.2](https://github.com/aws/aws-amplify/compare/@aws-amplify/cache@1.0.7...@aws-amplify/cache@1.0.8-unstable.2) (2018-08-30)
1114
+
1115
+ ### Bug Fixes
1116
+
1117
+ - **@aws-amplify/cache:** check if window object exists for browser usage ([988e553](https://github.com/aws/aws-amplify/commit/988e553))
1118
+
1119
+ <a name="1.0.8-unstable.1"></a>
1120
+
1121
+ ## [1.0.8-unstable.1](https://github.com/aws/aws-amplify/compare/@aws-amplify/cache@1.0.7...@aws-amplify/cache@1.0.8-unstable.1) (2018-08-30)
1122
+
1123
+ **Note:** Version bump only for package @aws-amplify/cache
1124
+
1125
+ <a name="1.0.7"></a>
1126
+
1127
+ ## [1.0.7](https://github.com/aws/aws-amplify/compare/@aws-amplify/cache@1.0.6-unstable.2...@aws-amplify/cache@1.0.7) (2018-08-28)
1128
+
1129
+ **Note:** Version bump only for package @aws-amplify/cache
1130
+
1131
+ <a name="1.0.6-unstable.2"></a>
1132
+
1133
+ ## [1.0.6-unstable.2](https://github.com/aws/aws-amplify/compare/@aws-amplify/cache@1.0.6-unstable.1...@aws-amplify/cache@1.0.6-unstable.2) (2018-08-21)
1134
+
1135
+ **Note:** Version bump only for package @aws-amplify/cache
1136
+
1137
+ <a name="1.0.6-unstable.1"></a>
1138
+
1139
+ ## [1.0.6-unstable.1](https://github.com/aws/aws-amplify/compare/@aws-amplify/cache@1.0.6-unstable.0...@aws-amplify/cache@1.0.6-unstable.1) (2018-08-20)
1140
+
1141
+ **Note:** Version bump only for package @aws-amplify/cache
1142
+
1143
+ <a name="1.0.6-unstable.0"></a>
1144
+
1145
+ ## [1.0.6-unstable.0](https://github.com/aws/aws-amplify/compare/@aws-amplify/cache@1.0.5...@aws-amplify/cache@1.0.6-unstable.0) (2018-08-19)
1146
+
1147
+ ### Bug Fixes
1148
+
1149
+ - **aws-amplify-angular:** Angular rollup ([#1441](https://github.com/aws/aws-amplify/issues/1441)) ([eb84e01](https://github.com/aws/aws-amplify/commit/eb84e01))
1150
+
1151
+ <a name="1.0.5"></a>
1152
+
1153
+ ## [1.0.5](https://github.com/aws/aws-amplify/compare/@aws-amplify/cache@1.0.5-unstable.0...@aws-amplify/cache@1.0.5) (2018-08-14)
1154
+
1155
+ **Note:** Version bump only for package @aws-amplify/cache
1156
+
1157
+ <a name="1.0.5-unstable.0"></a>
1158
+
1159
+ ## [1.0.5-unstable.0](https://github.com/aws/aws-amplify/compare/@aws-amplify/cache@1.0.4...@aws-amplify/cache@1.0.5-unstable.0) (2018-08-09)
1160
+
1161
+ **Note:** Version bump only for package @aws-amplify/cache
1162
+
1163
+ <a name="1.0.4"></a>
1164
+
1165
+ ## [1.0.4](https://github.com/aws/aws-amplify/compare/@aws-amplify/cache@1.0.3-unstable.1...@aws-amplify/cache@1.0.4) (2018-08-06)
1166
+
1167
+ **Note:** Version bump only for package @aws-amplify/cache
1168
+
1169
+ <a name="1.0.3-unstable.1"></a>
1170
+
1171
+ ## [1.0.3-unstable.1](https://github.com/aws/aws-amplify/compare/@aws-amplify/cache@1.0.3...@aws-amplify/cache@1.0.3-unstable.1) (2018-08-06)
1172
+
1173
+ **Note:** Version bump only for package @aws-amplify/cache
1174
+
1175
+ <a name="1.0.3"></a>
1176
+
1177
+ ## [1.0.3](https://github.com/aws/aws-amplify/compare/@aws-amplify/cache@1.0.3-unstable.0...@aws-amplify/cache@1.0.3) (2018-07-28)
1178
+
1179
+ **Note:** Version bump only for package @aws-amplify/cache
1180
+
1181
+ <a name="1.0.3-unstable.0"></a>
1182
+
1183
+ ## [1.0.3-unstable.0](https://github.com/aws/aws-amplify/compare/@aws-amplify/cache@1.0.2...@aws-amplify/cache@1.0.3-unstable.0) (2018-07-26)
1184
+
1185
+ **Note:** Version bump only for package @aws-amplify/cache
1186
+
1187
+ <a name="1.0.2"></a>
1188
+
1189
+ ## [1.0.2](https://github.com/aws/aws-amplify/compare/@aws-amplify/cache@1.0.2-unstable.0...@aws-amplify/cache@1.0.2) (2018-07-19)
1190
+
1191
+ **Note:** Version bump only for package @aws-amplify/cache
1192
+
1193
+ <a name="1.0.2-unstable.0"></a>
1194
+
1195
+ ## [1.0.2-unstable.0](https://github.com/aws/aws-amplify/compare/@aws-amplify/cache@1.0.1...@aws-amplify/cache@1.0.2-unstable.0) (2018-07-19)
1196
+
1197
+ **Note:** Version bump only for package @aws-amplify/cache
1198
+
1199
+ <a name="1.0.1"></a>
1200
+
1201
+ ## [1.0.1](https://github.com/aws/aws-amplify/compare/@aws-amplify/cache@1.0.1-unstable.2...@aws-amplify/cache@1.0.1) (2018-07-18)
1202
+
1203
+ **Note:** Version bump only for package @aws-amplify/cache
1204
+
1205
+ <a name="1.0.1-unstable.2"></a>
1206
+
1207
+ ## [1.0.1-unstable.2](https://github.com/aws/aws-amplify/compare/@aws-amplify/cache@1.0.1-unstable.1...@aws-amplify/cache@1.0.1-unstable.2) (2018-07-18)
1208
+
1209
+ **Note:** Version bump only for package @aws-amplify/cache
1210
+
1211
+ <a name="1.0.1-unstable.1"></a>
1212
+
1213
+ ## [1.0.1-unstable.1](https://github.com/aws/aws-amplify/compare/@aws-amplify/cache@1.0.1...@aws-amplify/cache@1.0.1-unstable.1) (2018-07-18)
1214
+
1215
+ **Note:** Version bump only for package @aws-amplify/cache
1216
+
1217
+ <a name="1.0.1-unstable.0"></a>
1218
+
1219
+ ## [1.0.1-unstable.0](https://github.com/aws/aws-amplify/compare/@aws-amplify/cache@1.0.1...@aws-amplify/cache@1.0.1-unstable.0) (2018-07-18)
1220
+
1221
+ **Note:** Version bump only for package @aws-amplify/cache
1222
+
1223
+ <a name="0.1.1-unstable.0"></a>
1224
+
1225
+ ## 0.1.1-unstable.0 (2018-06-27)
1226
+
1227
+ **Note:** Version bump only for package @aws-amplify/cache