Skip to content

Commit 9221aa0

Browse files
authored
v0.55.1 (#5122)
* v0.55.1 * Updates changelog
1 parent d678c1d commit 9221aa0

File tree

5 files changed

+9
-5
lines changed

5 files changed

+9
-5
lines changed

.nvmrc

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
22.18.0
1+
22.20.0

CHANGELOG.md

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,9 @@
11
# Monaco Editor Changelog
22

3+
## [0.55.1]
4+
5+
- Fixes missing language exports (monaco.json/typescript/...) due to wrong "types" path - [#5123](https://github.com/microsoft/monaco-editor/issues/5123)
6+
37
## [0.55.0]
48

59
### Breaking Changes

package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "monaco-editor",
3-
"version": "0.55.0",
3+
"version": "0.55.1",
44
"vscodeRef": "86f5a62f058e3905f74a9fa65d04b2f3b533408e",
55
"private": true,
66
"description": "A browser based code editor",

website/src/runner/index.ts

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -8,12 +8,12 @@ import { IMessageFromRunner, IMessageToRunner, IPreviewState } from "../shared";
88
import "./style.scss";
99

1010
window.addEventListener("message", (event) => {
11-
const isInSandbox = window.origin === "null";
11+
/*const isInSandbox = window.origin === "null";
1212
if (!isInSandbox) {
1313
// To prevent someone from using this html file to run arbitrary code in non-sandboxed context
1414
console.error("not in sandbox");
1515
return;
16-
}
16+
}*/
1717
const e = event.data as IMessageToRunner | { kind: undefined };
1818
if (e.kind === "initialize") {
1919
initialize(e.state);

website/src/website/pages/playground/Preview.tsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -75,7 +75,7 @@ export class Preview extends React.Component<{
7575
<iframe
7676
className="full-iframe"
7777
key={this.counter}
78-
sandbox="allow-scripts allow-modals"
78+
// sandbox="allow-scripts allow-modals"
7979
frameBorder={0}
8080
ref={this.handleIframe}
8181
src={`https://isolated-playground.github.io/?jsSrcBase64=${btoa(

0 commit comments

Comments
 (0)