Today, we are excited to release Meltano version 1.40.0, which lets you customize how your custom extractors show up in Meltano UI using a new logo_url
property and existing label
and description
properties:
Before
# meltano.yml
extractors:
- name: tap-covid-19
namespace: tap_covid_19
# ...

After
# meltano.yml
extractors:
- name: tap-covid-19
label: COVID-19
logo_url: https://maxcdn.icons8.com/Share/icon/Healthcare/coronavirus1600.png
description: COVID-19 data extracted from various GitHub repos
namespace: tap_covid_19
# ...

Excited to try it out?
To upgrade Meltano and your Meltano project to the latest version, navigate to your project directory, activate the appropriate virtual environment, and run meltano upgrade
. This will upgrade the meltano
package and apply any necessary changes to your project.
What else is new?
The list below (copied from the changelog) covers all of the changes made to Meltano since the release of v1.39.1 on July 9:
New
- #2153 Add
logo_url
property to custom extractor and loader definitions to show a custom logo in Meltano UI