Skip to content

Commit c634af8

Browse files
Merge branch 'main' into ide/code-stable
2 parents fd06461 + 537d9cf commit c634af8

File tree

39 files changed

+139
-56
lines changed

39 files changed

+139
-56
lines changed

WORKSPACE.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@ defaultArgs:
77
publishToNPM: true
88
publishToJBMarketplace: true
99
localAppVersion: unknown
10-
codeCommit: 6abdb44c9aef41158d03011b21635e5977413941
10+
codeCommit: df9057e10ad761c6a8378b72b37554c1458256e3
1111
codeVersion: 1.94.2
1212
codeQuality: stable
1313
codeWebExtensionCommit: 7ff72a2938a7a06cbdf3964590f7e9b7525958f3

components/blobserve/leeway.Dockerfile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
# Licensed under the GNU Affero General Public License (AGPL).
33
# See License.AGPL.txt in the project root for license information.
44

5-
FROM cgr.dev/chainguard/wolfi-base:latest@sha256:28f57f6a9fb2478f3a3dd160794831bd0099ec92d0d7b81cd203fae67bcb5339
5+
FROM cgr.dev/chainguard/wolfi-base:latest@sha256:1e1f283d9d69a2b08bc6da47f53dc29d64b975dcb1c3d4276a22ff30543142ea
66

77
# Ensure latest packages are present, like security updates.
88
RUN apk upgrade --no-cache \

components/content-service/leeway.Dockerfile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
# Licensed under the GNU Affero General Public License (AGPL).
33
# See License.AGPL.txt in the project root for license information.
44

5-
FROM cgr.dev/chainguard/wolfi-base:latest@sha256:28f57f6a9fb2478f3a3dd160794831bd0099ec92d0d7b81cd203fae67bcb5339
5+
FROM cgr.dev/chainguard/wolfi-base:latest@sha256:1e1f283d9d69a2b08bc6da47f53dc29d64b975dcb1c3d4276a22ff30543142ea
66

77
# Ensure latest packages are present, like security updates.
88
RUN apk upgrade --no-cache \

components/dashboard/leeway.Dockerfile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
# Licensed under the GNU Affero General Public License (AGPL).
33
# See License.AGPL.txt in the project root for license information.
44

5-
FROM cgr.dev/chainguard/wolfi-base:latest@sha256:28f57f6a9fb2478f3a3dd160794831bd0099ec92d0d7b81cd203fae67bcb5339 as compress
5+
FROM cgr.dev/chainguard/wolfi-base:latest@sha256:1e1f283d9d69a2b08bc6da47f53dc29d64b975dcb1c3d4276a22ff30543142ea as compress
66

77
RUN apk add brotli gzip
88

components/dashboard/src/components/podkit/combobox/Combobox.tsx

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -84,11 +84,14 @@ export const Combobox: FunctionComponent<ComboboxProps> = ({
8484

8585
const setActiveElement = useCallback(
8686
(element: string) => {
87+
if (!filteredOptions.find((el) => element === el.id)?.isSelectable) {
88+
return;
89+
}
8790
setSelectedElementTemp(element);
8891
const el = document.getElementById(element);
8992
el?.scrollIntoView({ block: "nearest" });
9093
},
91-
[setSelectedElementTemp],
94+
[filteredOptions],
9295
);
9396

9497
const handleOpenChange = useCallback(

components/dashboard/src/prebuilds/detail/PrebuildDetailPage.tsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -296,7 +296,7 @@ export const PrebuildDetailPage: FC = () => {
296296
<div className="py-4 px-6 flex flex-col gap-1">
297297
<PrebuildStatus prebuild={prebuild} />
298298
{prebuild?.status?.message && (
299-
<div className="text-pk-content-secondary truncate">
299+
<div className="text-pk-content-secondary line-clamp-2">
300300
{prebuild?.status.message}
301301
</div>
302302
)}

components/dashboard/src/start/StartWorkspace.tsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -822,7 +822,7 @@ function ImageBuildView(props: ImageBuildViewProps) {
822822
💡 You can use the <code>gp validate</code> command to validate the workspace configuration
823823
from the editor terminal. &nbsp;
824824
<a
825-
href="https://www.gitpod.io/docs/configure/workspaces/workspace-image#trying-out-changes-to-your-dockerfile"
825+
href="https://www.gitpod.io/docs/configure/workspaces#validate-your-gitpod-configuration"
826826
target="_blank"
827827
rel="noopener noreferrer"
828828
className="gp-link"

components/ee/agent-smith/leeway.Dockerfile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44

55

66

7-
FROM cgr.dev/chainguard/wolfi-base:latest@sha256:28f57f6a9fb2478f3a3dd160794831bd0099ec92d0d7b81cd203fae67bcb5339
7+
FROM cgr.dev/chainguard/wolfi-base:latest@sha256:1e1f283d9d69a2b08bc6da47f53dc29d64b975dcb1c3d4276a22ff30543142ea
88

99
RUN apk add --no-cache git bash ca-certificates
1010
COPY components-ee-agent-smith--app/agent-smith /app/

components/ide-metrics/leeway.Dockerfile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
# Licensed under the GNU Affero General Public License (AGPL).
33
# See License.AGPL.txt in the project root for license information.
44

5-
FROM cgr.dev/chainguard/wolfi-base:latest@sha256:28f57f6a9fb2478f3a3dd160794831bd0099ec92d0d7b81cd203fae67bcb5339
5+
FROM cgr.dev/chainguard/wolfi-base:latest@sha256:1e1f283d9d69a2b08bc6da47f53dc29d64b975dcb1c3d4276a22ff30543142ea
66

77
# Ensure latest packages are present, like security updates.
88
RUN apk upgrade --no-cache \

components/ide-proxy/Dockerfile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
# Licensed under the GNU Affero General Public License (AGPL).
33
# See License.AGPL.txt in the project root for license information.
44

5-
FROM cgr.dev/chainguard/wolfi-base:latest@sha256:28f57f6a9fb2478f3a3dd160794831bd0099ec92d0d7b81cd203fae67bcb5339 as compress
5+
FROM cgr.dev/chainguard/wolfi-base:latest@sha256:1e1f283d9d69a2b08bc6da47f53dc29d64b975dcb1c3d4276a22ff30543142ea as compress
66

77
RUN apk add brotli gzip curl
88

0 commit comments

Comments
 (0)