diff --git a/metadata/CHANGELOG.md b/metadata/CHANGELOG.md index 944b4defb7..9dbbab6fd0 100644 --- a/metadata/CHANGELOG.md +++ b/metadata/CHANGELOG.md @@ -1,4 +1,7 @@ ### Feature +* Create users in metadata backend via API ([#289](https://github.com/amundsen-io/amundsenmetadatalibrary/issues/289)) ([`eeba485`](https://github.com/amundsen-io/amundsenmetadatalibrary/commit/eeba485b5c211e6d92bbb841bfc26bca79f051e0)) +* Add Column Badge API ([#273](https://github.com/amundsen-io/amundsenmetadatalibrary/issues/273)) ([`ee0ac63`](https://github.com/amundsen-io/amundsenmetadatalibrary/commit/ee0ac63194a4286715cd32c34042443c979f4cea)) +* Column Lineage API ([#280](https://github.com/amundsen-io/amundsenmetadatalibrary/issues/280)) ([`681893f`](https://github.com/amundsen-io/amundsenmetadatalibrary/commit/681893fb47ebcfc61ed4736f535618fddb6c4631)) * Table Lineage API ([#262](https://github.com/amundsen-io/amundsenmetadatalibrary/issues/262)) ([`e306034`](https://github.com/amundsen-io/amundsenmetadatalibrary/commit/e306034043e067a2d6c24477bd197d10177d1d6d)) * Column badges in Atlas Proxy ([#263](https://github.com/amundsen-io/amundsenmetadatalibrary/issues/263)) ([`a3efb4c`](https://github.com/amundsen-io/amundsenmetadatalibrary/commit/a3efb4cb778a6a5a58b0e55874622f114fd2e7e7)) * Added get_lineage method to neo4j proxy ([#259](https://github.com/amundsen-io/amundsenmetadatalibrary/issues/259)) ([`b129cc7`](https://github.com/amundsen-io/amundsenmetadatalibrary/commit/b129cc701117871a90ae05c36bcf0f112ae36e5e)) @@ -12,6 +15,9 @@ * Data Owner Implementation of Atlas Proxy ([#156](https://github.com/amundsen-io/amundsenmetadatalibrary/issues/156)) ([`48b4c71`](https://github.com/amundsen-io/amundsenmetadatalibrary/commit/48b4c71054f7b34bca8a8f148e8b7499dfb986fc)) ### Fix +* Sort reports alphabetically ([#293](https://github.com/amundsen-io/amundsenmetadatalibrary/issues/293)) ([`c8423c6`](https://github.com/amundsen-io/amundsenmetadatalibrary/commit/c8423c62c85f94fe4407f2b42dcc176a77849645)) +* Reconcile gremlin description writes with the Databuilder ([#290](https://github.com/amundsen-io/amundsenmetadatalibrary/issues/290)) ([`18454fe`](https://github.com/amundsen-io/amundsenmetadatalibrary/commit/18454fec95a672e7d01fdbfa91e86df318246457)) +* Swagger docs don't align with common entity ([#283](https://github.com/amundsen-io/amundsenmetadatalibrary/issues/283)) ([`db33af9`](https://github.com/amundsen-io/amundsenmetadatalibrary/commit/db33af98d6ed2ba29c059b790bc7d09ce71b24c8)) * Compatibility changes to the gremlin integration ([#260](https://github.com/amundsen-io/amundsenmetadatalibrary/issues/260)) ([`a765424`](https://github.com/amundsen-io/amundsenmetadatalibrary/commit/a765424aa13c71afdb04f7457f30d8a8977974a2)) * Proxy client creation fails after adding client_kwargs ([#258](https://github.com/amundsen-io/amundsenmetadatalibrary/issues/258)) ([`1880cec`](https://github.com/amundsen-io/amundsenmetadatalibrary/commit/1880cec3bf0ed4b889c5fe3b61633228063cdfad)) * Reapply previous fix ([#245](https://github.com/amundsen-io/amundsenmetadatalibrary/issues/245)) ([`c7dc172`](https://github.com/amundsen-io/amundsenmetadatalibrary/commit/c7dc172b2b8c3b8ff4d7f145e5564474a3cb8dd8)) @@ -24,3 +30,6 @@ * Improvements to the Owned By feature ([#178](https://github.com/amundsen-io/amundsenmetadatalibrary/issues/178)) ([`0558d69`](https://github.com/amundsen-io/amundsenmetadatalibrary/commit/0558d69f619a5f9426e5839cadc06cea13366706)) * Get all tags should work for all resources ([#175](https://github.com/amundsen-io/amundsenmetadatalibrary/issues/175)) ([`cf1ab6d`](https://github.com/amundsen-io/amundsenmetadatalibrary/commit/cf1ab6d179c70c0f43156cc499332c465226cb45)) * Removing OidcConfig file and making statsd configurable through envrionment variable ([#157](https://github.com/amundsen-io/amundsenmetadatalibrary/issues/157)) ([`2752492`](https://github.com/amundsen-io/amundsenmetadatalibrary/commit/2752492e71d6f5e134cdf55c4b55e67254409a88)) + +### Documentation +* Enumeration requires newline ([#291](https://github.com/amundsen-io/amundsenmetadatalibrary/issues/291)) ([`cf6710d`](https://github.com/amundsen-io/amundsenmetadatalibrary/commit/cf6710d3ab319dbab6f6d07ba5ed1a1c3315f9fa)) diff --git a/metadata/setup.py b/metadata/setup.py index 4fea9f2dd0..307c2eecb3 100644 --- a/metadata/setup.py +++ b/metadata/setup.py @@ -5,7 +5,7 @@ from setuptools import find_packages, setup -__version__ = '3.4.0' +__version__ = '3.5.0' requirements_path = os.path.join(os.path.dirname(os.path.realpath(__file__)), 'requirements.txt')