Skip to content

Commit 08e93d1

Browse files
committed
Update patches and overrides
1 parent a696439 commit 08e93d1

30 files changed

+2858
-3403
lines changed

LICENSE

Lines changed: 3 additions & 15 deletions
Original file line numberDiff line numberDiff line change
@@ -2,20 +2,8 @@ MIT License
22

33
Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved.
44

5-
Permission is hereby granted, free of charge, to any person obtaining a copy of
6-
this software and associated documentation files (the "Software"), to deal in
7-
the Software without restriction, including without limitation the rights to
8-
use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of
9-
the Software, and to permit persons to whom the Software is furnished to do so,
10-
subject to the following conditions:
5+
Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions:
116

12-
The above copyright notice and this permission notice shall be included in all
13-
copies or substantial portions of the Software.
14-
15-
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
16-
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS
17-
FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR
18-
COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER
19-
IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN
20-
CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
7+
The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software.
218

9+
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.

LICENSE-THIRD-PARTY

Lines changed: 69 additions & 607 deletions
Large diffs are not rendered by default.
Lines changed: 27 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,29 @@
11
{
2-
"stringPatterns": [
3-
"Error that can be ignored - string"
4-
],
5-
"regexPatterns": [
6-
"Error that can be ignored - regex pattern"
7-
]
2+
// Use a JSONC parser to support syntax highlighting for this file.
3+
// The comments are for reference and will be stripped out during build time.
4+
"stringPatterns": [
5+
// Normal webview initialization checking if a service worker is already controlling the page.
6+
"No service worker controller found. Waiting for controllerchange.",
7+
// getKeyValues is called after close() has been called on the database, the transaction is aborted, or temporary performance issue
8+
"IndexedDB getKeyValues(): Connection is closing.",
9+
"IndexedDB getKeyValues(): The transaction was aborted, so the request cannot be fulfilled.",
10+
"IndexedDB getKeyValues(): Database deleted by request of the user",
11+
"IndexedDB getKeyValues(): Transaction timed out due to inactivity.",
12+
// Private browser does not support service workers
13+
"TypeError: navigator.serviceWorker is undefined",
14+
"Error: Service Workers are not enabled. Webviews will not work. Try disabling private/incognito mode."
15+
],
16+
"regexPatterns": [
17+
// Error shows up for embedded VSCode hosted in an iFrame
18+
"An iframe which has both allow-scripts and allow-same-origin for its sandbox attribute can (?:remove|escape) its sandboxing\\.",
19+
// Async extension host disconnect and disposal is not supported on browser
20+
"\\[lifecycle\\] Long running operations during shutdown are unsupported in the web \\(id: join\\.stopExtensionHosts\\)",
21+
// When switching to another tab from 'Code' tab when Code OSS is hosted in an iFrame. There are promises waiting to do work inside code editor iframes,
22+
// but as we switch away the iframe is gone. Because of the hanging promise on 'Code' tab that we already move away from, we ignore related errors
23+
"Error: Trying to add a disposable to a Disposable.+ that has already been disposed of. The added object will be leaked!",
24+
// tab/page navigation can lead to the IndexedDB connection and transactions becoming invalid.
25+
"Failed to execute 'abort' on 'IDBTransaction': The transaction has finished\\.",
26+
// Failed to fetch JSON configuration file for syntax highlighting in Code OSS loaded from TangerineBox CDN
27+
"(?=.*Unable to load and parse grammar for scope).*"
28+
]
829
}

0 commit comments

Comments
 (0)