From 84608dc503bbacef4a0bdc2e0419bee096f300ac Mon Sep 17 00:00:00 2001 From: confused-Techie Date: Mon, 15 Apr 2024 17:02:01 -0700 Subject: [PATCH 1/3] bump version --- package.json | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/package.json b/package.json index b82305dbe..e52ab2b68 100644 --- a/package.json +++ b/package.json @@ -2,7 +2,7 @@ "name": "pulsar", "author": "Pulsar-Edit ", "productName": "Pulsar", - "version": "1.115.0-dev", + "version": "1.116.0", "description": "A Community-led Hyper-Hackable Text Editor", "branding": { "id": "pulsar", From 31d7d8460e40b5684be59324aec4c7767e7f9626 Mon Sep 17 00:00:00 2001 From: confused-Techie Date: Mon, 15 Apr 2024 17:45:48 -0700 Subject: [PATCH 2/3] Last minute bug fix in `StyleManager` Changes Odd this wasn't caught in our initial specs. But this issue only effects specs, as the actual production code is able to assign the callback with a function reference rather than a string which is then used to assign the callback itself. --- src/style-manager.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/style-manager.js b/src/style-manager.js index 3ba0b4dbe..f50baa5c8 100644 --- a/src/style-manager.js +++ b/src/style-manager.js @@ -237,7 +237,7 @@ module.exports = class StyleManager { // Allows us to utilize a direct callback, or if calling from outside // StyleManager we can define a string that works if (upgradeName === "math") { - cb = upgradeDeprecatedMathUsageForStyleSheet; + cb = transformDeprecatedMathUsage; } else if (upgradeName === "selector") { cb = transformDeprecatedShadowDOMSelectors; } else if (typeof upgradeName === "function") { From 68cedf0977ae4029bdfbba7b9e2a5f3f0935d7c9 Mon Sep 17 00:00:00 2001 From: confused-Techie Date: Mon, 15 Apr 2024 20:39:32 -0700 Subject: [PATCH 3/3] Add back `-dev` --- package.json | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/package.json b/package.json index e52ab2b68..c48ff6149 100644 --- a/package.json +++ b/package.json @@ -2,7 +2,7 @@ "name": "pulsar", "author": "Pulsar-Edit ", "productName": "Pulsar", - "version": "1.116.0", + "version": "1.116.0-dev", "description": "A Community-led Hyper-Hackable Text Editor", "branding": { "id": "pulsar",