@atlaskit/editor-plugin-text-formatting 0.4.0 → 0.4.2

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (2) hide show
  1. package/CHANGELOG.md +22 -0
  2. package/package.json +3 -3
package/CHANGELOG.md CHANGED
@@ -1,5 +1,27 @@
1
1
  # @atlaskit/editor-plugin-text-formatting
2
2
 
3
+ ## 0.4.2
4
+
5
+ ### Patch Changes
6
+
7
+ - [`1b66c23221e`](https://bitbucket.org/atlassian/atlassian-frontend/commits/1b66c23221e) - Fix missing analytics parameter in media plugin.
8
+
9
+ ## 0.4.1
10
+
11
+ ### Patch Changes
12
+
13
+ - [`6acf9830b36`](https://bitbucket.org/atlassian/atlassian-frontend/commits/6acf9830b36) - Update feature flags plugin
14
+ (@atlaskit/editor-plugin-feature-flags) to use a named export
15
+ rather than default export to match other plugins.
16
+
17
+ ```ts
18
+ // Before
19
+ import featureFlagsPlugin from '@atlaskit/editor-plugin-feature-flags';
20
+
21
+ // After
22
+ import { featureFlagsPlugin } from '@atlaskit/editor-plugin-feature-flags';
23
+ ```
24
+
3
25
  ## 0.4.0
4
26
 
5
27
  ### Minor Changes
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@atlaskit/editor-plugin-text-formatting",
3
- "version": "0.4.0",
3
+ "version": "0.4.2",
4
4
  "description": "Text-formatting plugin for @atlaskit/editor-core",
5
5
  "author": "Atlassian Pty Ltd",
6
6
  "license": "Apache-2.0",
@@ -32,7 +32,7 @@
32
32
  },
33
33
  "dependencies": {
34
34
  "@atlaskit/adf-schema": "28.1.2",
35
- "@atlaskit/editor-common": "^74.55.0",
35
+ "@atlaskit/editor-common": "^74.56.0",
36
36
  "@atlaskit/editor-plugin-analytics": "^0.2.0",
37
37
  "@atlaskit/editor-prosemirror": "1.1.0",
38
38
  "@atlaskit/editor-shared-styles": "^2.5.0",
@@ -49,7 +49,7 @@
49
49
  "devDependencies": {
50
50
  "@atlaskit/editor-plugin-composition": "^0.1.0",
51
51
  "@atlaskit/editor-plugin-decorations": "^0.2.0",
52
- "@atlaskit/editor-plugin-feature-flags": "^0.2.0",
52
+ "@atlaskit/editor-plugin-feature-flags": "^1.0.0",
53
53
  "@atlassian/atlassian-frontend-prettier-config-1.0.0": "npm:@atlassian/atlassian-frontend-prettier-config@1.0.0",
54
54
  "@testing-library/react": "^12.1.5",
55
55
  "typescript": "~4.9.5"