@signavio/i18n - 3.0.0
Breaking Change:
1. Registry and the name of the i18n package has changed
There was a cut-off between version 2
and 3
. Hence all versions <= 2.x
will always be available under signavio-i18n
and newer versions >= 3.x
will only be available under @signavio/i18n
. We also took responsibility to already deprecate the previous versions on NPM.
import { init, setLocale } from 'signavio-i18n'
will become:
import { init, setLocale } from '@signavio/i18n'
and the corresponding package.json
should then look like this:
"dependencies": {
- "signavio-i18n": "2.1.2",
+ "@signavio/i18n": "3.0.1",
}
2. Upgrade of certain dependencies
We have upgraded marked to version 0.7.0
in order to mitigate vulnerabilities therefor we had drop partial support IE11
. Usually methods are polyfilled and should not create problems.
Minor:
Upgrading of various devDependencies
in order to remove publicly disclosed vulnerabilities and furthermore looking into redesigning the development build of this project.