From 66a3fcacffb0355a53774db958453a7acd326b7e Mon Sep 17 00:00:00 2001 From: gabriel-tessier Date: Wed, 22 Jul 2020 18:32:11 +0900 Subject: [PATCH] Update CHANGELOG.md Split in two tables. --- CHANGELOG.md | 14 ++++++++++---- 1 file changed, 10 insertions(+), 4 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index db33bc92..ac9c5d3a 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -6,11 +6,21 @@ The following import changes: +#### Elastic + | Old import path | New import path | | -------------------------------------------------------------------| --------------------------------------------------------------| | `from diagrams.onprem.logging import Logstash` | `from diagrams.elastic.elasticsearch import Logstash` | | `from diagrams.onprem.monitoring import Kibana` | `from diagrams.elastic.elasticsearch import Kibana` | | `from diagrams.onprem.search import Elasticsearch` | `from diagrams.elastic.elasticsearch import Elasticsearch` | + +> About `from diagrams.onprem.search import Elasticsearch` the previous icon was the company icon, not the elasticsearch product. +> +> For the company icon use: `from diagrams.elastic.saas import Elastic` + +#### OCI + +| Old import path | New import path | | -------------------------------------------------------------------| --------------------------------------------------------------| | `from diagrams.oci.compute import AutoScale` | `from diagrams.oci.compute import Autoscale` | | `from diagrams.oci.compute import AutoScaleWhite` | `from diagrams.oci.compute import AutoscaleWhite` | @@ -95,10 +105,6 @@ The following import changes: | `from diagrams.oci.storage import Storagegateway` | `from diagrams.oci.storage import StorageGateway` | | `from diagrams.oci.storage import StoragegatewayWhite` | `from diagrams.oci.storage import StorageGatewayWhite` | -> About `from diagrams.onprem.search import Elasticsearch` the previous icon was the company icon, not the elasticsearch product. -> -> For the company icon: `from diagrams.elastic.saas import Elastic` - ### Added - Docker local development setup: [#210](https://github.com/mingrammer/diagrams/pull/210)