Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

45 lines
1.1 KiB
Markdown
Raw Normal View History

---
title: Upgrade 1.3.x to 1.4.x
slug: /deployment/upgrade/versions/130-to-140
---
# Upgrade from 1.3.x to 1.4.x
Upgrading from 1.3.x to 1.4.x can be done directly on your instances. This page will list few general details you should take into consideration when running the upgrade.
## Deprecation Notice
## Breaking Changes for 1.4.x Stable Release
### Dashboard & Pipeline Source Config Changes
We have restructured how we input the dbServiceNames field, used for creating lineage between pipeline(spline) and tables & dashboard data models and tables. This change was done in order to highlight the field on UI and improve user experience.
Please make note of changes in your yaml.
Before:
```
sourceConfig:
config:
type: DashboardMetadata # or PipelineMetadata
.....
dbServiceNames:
- redshift_prod
.....
```
After 1.4.0 Upgrade:
```
sourceConfig:
config:
type: DashboardMetadata # or PipelineMetadata
.....
lineageInformation:
dbServiceNames:
- redshift_prod
.....
```