Skip to content

Update VS Code Browser to 1.82.0 #18680

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Merged
merged 4 commits into from
Sep 8, 2023
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions WORKSPACE.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -7,8 +7,8 @@ defaultArgs:
publishToNPM: true
publishToJBMarketplace: true
localAppVersion: unknown
codeCommit: 722b22e60cbc82dde713d4892eeebbbe5fc348c0
codeVersion: 1.81.1
codeCommit: be9e0586f5943994482945a8ffcb1f9a04b78aa2
codeVersion: 1.82.0
codeQuality: stable
noVerifyJBPlugin: false
intellijDownloadUrl: "https://download.jetbrains.com/idea/ideaIU-2023.2.1.tar.gz"
Expand Down
3 changes: 2 additions & 1 deletion components/ide/code/leeway.Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -54,9 +54,10 @@ RUN nameShort=$(jq --raw-output '.nameShort' product.json) && \
setQuality="setpath([\"quality\"]; \"$CODE_QUALITY\")" && \
setNameShort="setpath([\"nameShort\"]; \"$nameShort\")" && \
setNameLong="setpath([\"nameLong\"]; \"$nameLong\")" && \
setSegmentKey="setpath([\"segmentKey\"]; \"untrusted-dummy-key\")" && \
setExtensionsGalleryItemUrl="setpath([\"extensionsGallery\", \"itemUrl\"]; \"{{extensionsGalleryItemUrl}}\")" && \
addTrustedDomain=".linkProtectionTrustedDomains += [\"{{trustedDomain}}\"]" && \
jqCommands="${setQuality} | ${setNameShort} | ${setNameLong} | ${setExtensionsGalleryItemUrl} | ${addTrustedDomain}" && \
jqCommands="${setQuality} | ${setNameShort} | ${setNameLong} | ${setSegmentKey} | ${setExtensionsGalleryItemUrl} | ${addTrustedDomain}" && \
cat product.json | jq "${jqCommands}" > product.json.tmp && \
mv product.json.tmp product.json && \
jq '{quality,nameLong,nameShort}' product.json
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ package ide

const (
CodeIDEImage = "ide/code"
CodeIDEImageStableVersion = "commit-b25181a04b67fee6e2dae22e49bceaf4d9b3cd6f" // stable version that will be updated manually on demand
CodeIDEImageStableVersion = "commit-5fb4ffd2603003be6c9ff7b71910b95ab7a26b90" // stable version that will be updated manually on demand
CodeHelperIDEImage = "ide/code-codehelper"
CodeWebExtensionImage = "ide/gitpod-code-web"
CodeWebExtensionVersion = "commit-1de61b5711089287b7f27bc1223c57d6d9bb3144" // gitpod-web extension version comes from https://github.com/gitpod-io/gitpod-code
Expand Down