Skip to content
This repository has been archived by the owner on Aug 4, 2024. It is now read-only.

[pull] master from thecodingmachine:master #22

Open
wants to merge 5,462 commits into
base: master
Choose a base branch
from

Conversation

pull[bot]
Copy link

@pull pull bot commented Jan 6, 2022

See Commits and Changes for more details.


Created by pull[bot]

Can you help keep this open source service alive? 💖 Please sponsor : )

@pull pull bot added the ⤵️ pull label Jan 6, 2022
@gparant gparant force-pushed the master branch 2 times, most recently from d08749e to a99815a Compare April 11, 2022 23:25
@gparant gparant force-pushed the master branch 2 times, most recently from 14462bf to 2cc19f0 Compare May 19, 2022 15:02
image.alt = name;
image.classList.add("tw-mt-2");
image.id = id;
image.src = this.link;

Check warning

Code scanning / CodeQL

DOM text reinterpreted as HTML

[DOM text](1) is reinterpreted as HTML without escaping meta-characters.
video.controls = true;

const source = document.createElement("source");
source.src = this.link;

Check warning

Code scanning / CodeQL

DOM text reinterpreted as HTML

[DOM text](1) is reinterpreted as HTML without escaping meta-characters.
audio.classList.add("tw-mt-2");
audio.id = id;
audio.controls = true;
audio.src = this.link;

Check warning

Code scanning / CodeQL

DOM text reinterpreted as HTML

[DOM text](1) is reinterpreted as HTML without escaping meta-characters.
div.appendChild(this.getHyperLinkHTMLElement(false));

const link = document.createElement("a");
link.href = this.link;

Check warning

Code scanning / CodeQL

DOM text reinterpreted as HTML

[DOM text](1) is reinterpreted as HTML without escaping meta-characters.

if (imageUrl != undefined) {
const image = document.createElement("img");
image.src = HtmlUtils.htmlDecode(imageUrl);

Check warning

Code scanning / CodeQL

DOM text reinterpreted as HTML

[DOM text](1) is reinterpreted as HTML without escaping meta-characters.
}
private getHyperLinkHTMLElement(withEmbedly: boolean = true): HTMLAnchorElement {
const link = document.createElement("a");
link.href = this.link;

Check warning

Code scanning / CodeQL

DOM text reinterpreted as HTML

[DOM text](1) is reinterpreted as HTML without escaping meta-characters.

public goTo(type: string, playUri: string, uuid: string) {
if (type === "room") {
window.parent.postMessage({ type: "goToPage", data: { url: `${playUri}#moveToUser=${uuid}` } }, "*");

Check warning

Code scanning / CodeQL

Cross-window communication with unrestricted target origin

[Sensitive data](1) is sent to another window without origin restriction.
if (type === "room") {
window.parent.postMessage({ type: "goToPage", data: { url: `${playUri}#moveToUser=${uuid}` } }, "*");
} else if (type === "user") {
window.parent.postMessage({ type: "askPosition", data: { uuid, playUri } }, "*");

Check warning

Code scanning / CodeQL

Cross-window communication with unrestricted target origin

[Sensitive data](1) is sent to another window without origin restriction.

sendToParent(message: lookingLikeIframeEventWrapper) {
debug(`iFrameListener => message sent to parent => ${JSON.stringify(message)}`);
window.parent.postMessage(message, "*");

Check warning

Code scanning / CodeQL

Cross-window communication with unrestricted target origin

[Sensitive data](1) is sent to another window without origin restriction. [Sensitive data](2) is sent to another window without origin restriction.
moufmouf and others added 30 commits November 26, 2024 22:52
Upgrading play container to Node 20.18
* Be able to add restriction for Speaker zone and Attendee zone from external module
Adding "allow" option in WA.ui.registerMenuCommand
During the deploy process, you can now set up a pre-download of the images on all the node using:

```values.yaml
prepullImages: true
```

This will reduce the overall downtime because each node will have the images when it starts it.
Adding a Helm hook to predownload images
This version contains a performance fix for Typescript 5.1+.

See stephenh/ts-proto#1142
We need to call destroy of the external module and clean the store.
Migrating to ts-proto version 2.4.2
Upgrading play to Typescript 5.7
* remove jitsiRoomAdminTag from JitsiRoomConfigData

* update docs wam schema

* fix back and play typecheck

* V1 to V2 wam migration

* Create schema 2.0 and create version folder if it doesn’t exist.

* create WamFileMigration

* recreate docs schema folder

* mapValidator and wamMigration tests

* Apply changes based on PR review

* fix lint map storage

* restore wam.json 1.0

---------

Co-authored-by: yannisdia <[email protected]>
…-warning

Avoid initializing MatrixChatConnection when the user is not connected
…er. (#4462)

* Fix the regression regarding the highlight of entities for map explorer.
Error when we open the CoWebsite to the max and close it.
Error:
phaser.js:193129  Uncaught Error: Framebuffer status: Incomplete Attachment
    at initialize.createResource (phaser.js:193129:19)
    at new initialize (phaser.js:193090:14)
    at initialize.createFramebuffer (phaser.js:181628:27)
    at initialize.resize (phaser.js:176295:41)
    at a.emit (phaser.js:220:33)
    at initialize.resize (phaser.js:180812:14)
    at initialize.onResize (phaser.js:180737:18)
    at a.emit (phaser.js:227:27)
    at initialize.refresh (phaser.js:194945:14)
    at initialize.resize (phaser.js:194833:21)
    at OUA.applyNewSize (WaScaleManager.ts:51:31)
    at A._next (svelte.ts:202:20)
    at A.__tryOrUnsub (Subscriber.js:192:16)
    at A.next (Subscriber.js:130:22)
    at A._next (Subscriber.js:76:26)
    at A.next (Subscriber.js:53:18)
    at A.next (Subject.js:47:25)
    at FUA.fire (CoWebsiteManager.ts:800:24)
    at FUA.closeCoWebsite (CoWebsiteManager.ts:757:18)
    at HTMLButtonElement.<anonymous> (CoWebsiteManager.ts:160:22)
Sign up for free to subscribe to this conversation on GitHub. Already have an account? Sign in.
Projects
None yet
Development

Successfully merging this pull request may close these issues.

10 participants