---
title: "Upgrade Guide"
description: "Upgrade from Editor 2 to Editor 3. Please note that there are not any major breaking changes in plugin functionality or template structures."
url: https://docs.topol.io/email-editor/guide/v2-to-v3-migration.html
---

> **DANGER**
>
> Please note that Editor 2 is deprecated, use the new [Topol Plugin loader URL](https://docs.topol.io/email-editor/guide/new-topol-plugin-loader-url.html) instead.

# Upgrade from Editor v2 to Editor v3

Upgrading your Topol Plugin from Editor 2 to Editor 3 is a smooth process that usually takes about 5 minutes. There are no major changes that break your existing templates or functionality, so it’s a straightforward update.

## What Do You Need to Change?

You only need to update the script that loads the editor in your HTML.

Change this line:

```html
<script
  src="https://d5aoblv5p04cg.cloudfront.net/editor-2/loader/build.js"
  type="text/javascript"
></script>
```

to:

```html
<script
  src="https://d5aoblv5p04cg.cloudfront.net/editor-3/loader/build.js"
  type="text/javascript"
></script>
```

That’s it!

## i18n

The language codes now follow the official ISO 639-1 standard. Make sure to update your language settings accordingly if you use them.

For example:

| Old Code | New Code |
| --- | --- |
| jp  | ja  |
| se  | sv  |
| fi  | fin |
| iw  | he  |
