You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
* chore: update upstream code
* patches: start patching 1.70
* fix: use correct storage type
* chore: update patches
* fix: use correct path for localeService
* fix: use correct csp hashes
* Update comment on remote authority
Also remove it from script-src since it is invalid anyway.
* Add back comment to unique db patch
Also no need to set the key since it will be in the migration (and even
if not it will be set by the next function call).
* Use absolute path for disable download patch
Just to keep it consistent with the other imports. We initially added
the patch like this so it was not part of the upgrade but might as well
fix it now.
* Implement telemetry
* Refresh patch offsets
* Fix display languages
* Fix inability to change language while code-server is running
Co-authored-by: repo-ranger[bot] <39074581+repo-ranger[bot]@users.noreply.github.com>
Co-authored-by: Asher <ash@coder.com>
@@ -419,3 +420,70 @@ export class WebClientServer {
169
+
@@ -344,7 +348,7 @@ export class WebClientServer {
170
+
'default-src \'self\';',
171
+
'img-src \'self\' https: data: blob:;',
172
+
'media-src \'self\';',
173
+
- `script-src 'self' 'unsafe-eval' ${this._getScriptCspHashes(data).join(' ')} 'sha256-fh3TwPMflhsEIpR8g1OYTIMVWhXTLcjQ9kh2tIpmv54=' http://${remoteAuthority};`, // the sha is the same as in src/vs/workbench/services/extensions/worker/webWorkerExtensionHostIframe.html
174
+
+ `script-src 'self' 'unsafe-eval' ${this._getScriptCspHashes(data).join(' ')} 'sha256-fh3TwPMflhsEIpR8g1OYTIMVWhXTLcjQ9kh2tIpmv54=';`, // the sha is the same as in src/vs/workbench/services/extensions/worker/webWorkerExtensionHostIframe.html
0 commit comments