@atlaskit/editor-plugin-local-id 6.0.8 → 6.0.9
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.
package/CHANGELOG.md
CHANGED
|
@@ -21,6 +21,7 @@ var generateShortUUID = exports.generateShortUUID = function generateShortUUID()
|
|
|
21
21
|
var maxRetries = 10;
|
|
22
22
|
for (var attempt = 0; attempt < maxRetries; attempt++) {
|
|
23
23
|
try {
|
|
24
|
+
// eslint-disable-next-line @atlassian/perf-linting/no-expensive-split-replace -- Ignored via go/ees017 (to be fixed)
|
|
24
25
|
var shortUUID = crypto.randomUUID().split('-')[4];
|
|
25
26
|
if (!generatedShortUUIDs.has(shortUUID)) {
|
|
26
27
|
generatedShortUUIDs.add(shortUUID);
|
|
@@ -16,6 +16,7 @@ export const generateShortUUID = () => {
|
|
|
16
16
|
const maxRetries = 10;
|
|
17
17
|
for (let attempt = 0; attempt < maxRetries; attempt++) {
|
|
18
18
|
try {
|
|
19
|
+
// eslint-disable-next-line @atlassian/perf-linting/no-expensive-split-replace -- Ignored via go/ees017 (to be fixed)
|
|
19
20
|
const shortUUID = crypto.randomUUID().split('-')[4];
|
|
20
21
|
if (!generatedShortUUIDs.has(shortUUID)) {
|
|
21
22
|
generatedShortUUIDs.add(shortUUID);
|
|
@@ -16,6 +16,7 @@ export var generateShortUUID = function generateShortUUID() {
|
|
|
16
16
|
var maxRetries = 10;
|
|
17
17
|
for (var attempt = 0; attempt < maxRetries; attempt++) {
|
|
18
18
|
try {
|
|
19
|
+
// eslint-disable-next-line @atlassian/perf-linting/no-expensive-split-replace -- Ignored via go/ees017 (to be fixed)
|
|
19
20
|
var shortUUID = crypto.randomUUID().split('-')[4];
|
|
20
21
|
if (!generatedShortUUIDs.has(shortUUID)) {
|
|
21
22
|
generatedShortUUIDs.add(shortUUID);
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@atlaskit/editor-plugin-local-id",
|
|
3
|
-
"version": "6.0.
|
|
3
|
+
"version": "6.0.9",
|
|
4
4
|
"description": "LocalId plugin for @atlaskit/editor-core",
|
|
5
5
|
"author": "Atlassian Pty Ltd",
|
|
6
6
|
"license": "Apache-2.0",
|
|
@@ -34,7 +34,7 @@
|
|
|
34
34
|
"@atlaskit/editor-plugin-limited-mode": "^5.0.0",
|
|
35
35
|
"@atlaskit/editor-prosemirror": "^7.3.0",
|
|
36
36
|
"@atlaskit/platform-feature-flags": "^1.1.0",
|
|
37
|
-
"@atlaskit/tmp-editor-statsig": "^
|
|
37
|
+
"@atlaskit/tmp-editor-statsig": "^44.0.0",
|
|
38
38
|
"@babel/runtime": "^7.0.0",
|
|
39
39
|
"raf-schd": "^4.0.3"
|
|
40
40
|
},
|