Skip to content

Commit 181db3a

Browse files
authored
Merge pull request #9131 from jandubois/integration-1.20
Integration into release-1.20
2 parents 4abaa3a + 8b2507e commit 181db3a

File tree

18 files changed

+25
-22
lines changed

18 files changed

+25
-22
lines changed

bats/tests/helpers/commands.bash

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -55,7 +55,10 @@ docker_exe() {
5555
"$PATH_RESOURCES/$PLATFORM/bin/docker$EXE" "$@" | no_cr
5656
}
5757
helm() {
58-
"$PATH_RESOURCES/$PLATFORM/bin/helm$EXE" "$@" | no_cr
58+
# Add path to bundled credential helpers to the front of the PATH; also
59+
# ensure that on Windows, it gets exported.
60+
PATH="$PATH_RESOURCES/$PLATFORM/bin:$PATH" WSLENV="PATH/l:${WSLENV:-}" \
61+
"$PATH_RESOURCES/$PLATFORM/bin/helm$EXE" "$@" | no_cr
5962
}
6063
kubectl() {
6164
kubectl_exe --context rancher-desktop "$@"

packaging/linux/rancher-desktop.spec

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -62,7 +62,7 @@ Requires: libdrm2
6262
Requires: libexpat1
6363
Requires: libgbm1
6464
Requires: libgcc1
65-
Requires: libgdk-pixbuf2.0-0
65+
Requires: libgdk-pixbuf-2.0-0
6666
Requires: libglib2.0-0
6767
Requires: libglib2.0-dev
6868
Requires: libgtk-3-0

pkg/rancher-desktop/assets/dependencies.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@ alpineLimaISO:
66
alpineVersion: 3.21.3
77
WSLDistro: "0.85"
88
kuberlr: 0.6.1
9-
helm: 3.18.5
9+
helm: 3.18.6
1010
dockerCLI: 28.3.3
1111
dockerBuildx: 0.26.1
1212
dockerCompose: 2.39.2

pkg/rancher-desktop/backend/containerClient/mobyClient.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -502,7 +502,7 @@ export class MobyClient implements ContainerEngineClient {
502502
dirsToAdd.push(executableDir);
503503
}
504504

505-
const opts = _.merge({ env: process.env }, options ?? {}, {
505+
const opts = _.merge({ env: _.merge({}, process.env) }, options ?? {}, {
506506
env: {
507507
DOCKER_HOST: this.endpoint,
508508
PATH: `${ process.env.PATH }${ path.delimiter }${ dirsToAdd.join(path.delimiter) }`,

pkg/rancher-desktop/components/MountTypeSelector.vue

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -115,7 +115,7 @@ export default defineComponent({
115115
let tooltip = {};
116116
117117
if (disabled) {
118-
tooltip = { content: this.t(`prefs.onlyWithVZ_${ this.arch }`) };
118+
tooltip = { content: this.t(`prefs.onlyWithVZ_${ this.arch }`, undefined, true) };
119119
}
120120
121121
return tooltip;

pkg/rancher-desktop/components/Nav.vue

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,7 @@
2020
<i
2121
v-if="item.experimental"
2222
v-tooltip="{
23-
content: t('prefs.experimental'),
23+
content: t('prefs.experimental', undefined, true),
2424
placement: 'right',
2525
}"
2626
:class="`icon icon-flask`"

pkg/rancher-desktop/components/Preferences/VirtualMachineEmulation.vue

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -73,7 +73,7 @@ export default defineComponent({
7373
let tooltip = {};
7474
7575
if (disabled) {
76-
tooltip = { content: this.t(`prefs.onlyFromVentura_${ this.arch }`) };
76+
tooltip = { content: this.t(`prefs.onlyFromVentura_${ this.arch }`, undefined, true) };
7777
}
7878
7979
return tooltip;

pkg/rancher-desktop/components/Preferences/WslProxy.vue

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -63,7 +63,7 @@ export default defineComponent({
6363
:label="t('virtualMachine.proxy.label', { }, true)"
6464
:value="preferences.experimental.virtualMachine.proxy.enabled"
6565
:is-locked="isPreferenceLocked('experimental.virtualMachine.proxy.enabled')"
66-
@input="onChange('experimental.virtualMachine.proxy.enabled', $event)"
66+
@update:value="onChange('experimental.virtualMachine.proxy.enabled', $event)"
6767
/>
6868
</rd-fieldset>
6969
<hr>

pkg/rancher-desktop/components/RdInput.vue

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -36,7 +36,7 @@ export default defineComponent({
3636
<i
3737
v-if="isLocked"
3838
v-tooltip="{
39-
content: tooltip || t('preferences.locked.tooltip'),
39+
content: tooltip || t('preferences.locked.tooltip', undefined, true),
4040
placement: 'right',
4141
}"
4242
class="icon icon-lock"

pkg/rancher-desktop/components/RdSelect.vue

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -62,7 +62,7 @@ export default defineComponent({
6262
<i
6363
v-if="isLocked"
6464
v-tooltip="{
65-
content: tooltip || t('preferences.locked.tooltip'),
65+
content: tooltip || t('preferences.locked.tooltip', undefined, true),
6666
placement: 'right',
6767
}"
6868
class="icon icon-lock"

0 commit comments

Comments
 (0)