diff --git a/docs/pages/blog/october-2019-update.js b/docs/pages/blog/october-2019-update.js
new file mode 100644
index 00000000000000..8a5c70c109dd21
--- /dev/null
+++ b/docs/pages/blog/october-2019-update.js
@@ -0,0 +1,7 @@
+import React from 'react';
+import MarkdownDocs from 'docs/src/modules/components/MarkdownDocs';
+import markdown from './october-2019-update.md';
+
+export default function Page() {
+  return <MarkdownDocs markdown={markdown} blog disableAd disableToc disableEdit />;
+}
diff --git a/docs/pages/blog/october-2019-update.md b/docs/pages/blog/october-2019-update.md
new file mode 100644
index 00000000000000..8f1e55e9d29683
--- /dev/null
+++ b/docs/pages/blog/october-2019-update.md
@@ -0,0 +1,47 @@
+---
+description: Here are the most significant improvements in October.
+---
+
+# October 2019 Update
+
+**Olivier Tassinari**
+
+*November 8, 2019*
+
+Here are the most significant improvements in October:
+
+- 🔍 We have introduced a new autocomplete / combo box / multi-select component [in the lab](/components/autocomplete/).
+
+  ![combobox](/static/blog/september-2019-update/combobox.png)
+
+  <p class="blog-description">Combo box (limited options)</p>
+
+- 📚 We have changed the demos to automatically inline a small code preview when possible.
+
+  ![code preview](/static/blog/october-2019-update/preview.png)
+
+- ♿️ We have fixed 9 accessibility issues ([#18141](https://github.com/mui-org/material-ui/pull/18141), [#18142](https://github.com/mui-org/material-ui/pull/18142), [#17972](https://github.com/mui-org/material-ui/pull/17972), [#18146](https://github.com/mui-org/material-ui/pull/18146), [#17939](https://github.com/mui-org/material-ui/pull/17939), [#17892](https://github.com/mui-org/material-ui/pull/17892), [#17897](https://github.com/mui-org/material-ui/pull/17897), [#17870](https://github.com/mui-org/material-ui/pull/17870), [#18204](https://github.com/mui-org/material-ui/pull/18204)).
+
+- 📦 We have introduced [codesandbox-ci](https://ci.codesandbox.io/status/mui-org/material-ui/pr/18238). It can be useful when you want to live on the edge. For instance, you might want to rely on an unreleased commit that contains a bug fix.
+
+But this summary is just scratching the surface. We have accepted 182 commits from 68 different contributors. We have changed 1,157 files with 31,312 additions and 9,771 deletions.
+
+## Our roadmap intent for November
+
+*(We'll do our best, no guarantee!)*
+
+- 💅 We will initiate an update of our styling solution.
+It should cover styled-component [#6115](https://github.com/mui-org/material-ui/pull/#6115), the system [#15561](https://github.com/mui-org/material-ui/issues/15561), dynamic props [#15573](https://github.com/mui-org/material-ui/issues/15573) and an unstyled version [#6218](https://github.com/mui-org/material-ui/pull/6218).
+
+- 📅 We will start to work on a [major upgrade](https://github.com/mui-org/material-ui-pickers/issues/1293) of the date/time picker components.
+
+- 🧮 We will start to work on a data table component. The core will be open-source. The advanced features of the data grid will be behind an enterprise subscription ⭐️.
+This is an effort [of our roadmap](/discover-more/roadmap/) to better answer enterprise needs. To get a rough idea of what's coming, you can read: https://uxdesign.cc/design-better-data-tables-4ecc99d23356.
+
+- ❓ Please upvote our [GitHub issues](https://github.com/mui-org/material-ui/issues) if you want something specific. The number of 👍 helps us to prioritize.
+
+These are three major efforts, we will likely need the whole quarter (Q4) to make significant progress. Stay tuned.
+
+<hr />
+
+Material-UI is an MIT-licensed open source project. It’s an independent project with ongoing development helped by the support of these awesome [backers](/discover-more/backers/). Please join them ✨.
diff --git a/docs/src/pages.js b/docs/src/pages.js
index cabe95c39873df..340c7361c4ca7c 100644
--- a/docs/src/pages.js
+++ b/docs/src/pages.js
@@ -214,6 +214,7 @@ const pages = [
   {
     pathname: '/blog',
     children: [
+      { pathname: '/blog/october-2019-update' },
       { pathname: '/blog/september-2019-update' },
       { pathname: '/blog/august-2019-update' },
       { pathname: '/blog/july-2019-update' },
diff --git a/docs/static/blog/october-2019-update/preview.png b/docs/static/blog/october-2019-update/preview.png
new file mode 100644
index 00000000000000..570a37ed4c96f4
Binary files /dev/null and b/docs/static/blog/october-2019-update/preview.png differ