feat(wekan): update image docker.io/wekanteam/wekan v9.47 → v9.49 (#49226)

This PR contains the following updates:

| Package | Update | Change |
|---|---|---|
| [docker.io/wekanteam/wekan](https://redirect.github.com/wekan/wekan) |
minor | `70cc2d1` → `d632b48` |

---

> [!WARNING]
> Some dependencies could not be looked up. Check the [Dependency
Dashboard](../issues/18710) for more information.

Add the preset `:preserveSemverRanges` to your config if you don't want
to pin your dependencies.

---

### Release Notes

<details>
<summary>wekan/wekan (docker.io/wekanteam/wekan)</summary>

###
[`v9.49`](https://redirect.github.com/wekan/wekan/blob/HEAD/CHANGELOG.md#v949-2026-06-17-WeKan--release)

[Compare
Source](https://redirect.github.com/wekan/wekan/compare/v9.48...v9.49)

This release fixes the following bugs:

- Fix Board Table view not loading with "No such template: tableView"
error.
The `tableView.jade`, `tableView.js` and `tableView.css` files of the
new Board
Table view were never imported in `client/features/boards.js`, so the
`tableView`
template was not bundled and selecting the Table view threw a Tracker
recompute
  exception. Added the missing imports.
  Thanks to xet7.

Thanks to above GitHub users for their contributions and translators for
their translations.

###
[`v9.48`](https://redirect.github.com/wekan/wekan/blob/HEAD/CHANGELOG.md#v948-2026-06-17-WeKan--release)

[Compare
Source](https://redirect.github.com/wekan/wekan/compare/v9.47...v9.48)

This release adds the following updates:

- [Added non-experimental docker
settings](https://redirect.github.com/wekan/wekan/commit/0944f2af472c30d4d464850399ed9f5ffcca3a0f).
  Thanks to xet7.

and adds the following new features:

- Board Table view.
[Part
1](https://redirect.github.com/wekan/wekan/commit/e085e5bfeb7b1a00be6d39b413cec7078a20134b),
[Part
2](https://redirect.github.com/wekan/wekan/commit/86bf48a626e2947836ae7dc5dda65c08d0174552).
The board view menu (Swimlanes, Lists, Calendar, Gantt) gains a new
"Table" entry
below Gantt. It shows every card of the current board in a table — Card,
List,
Swimlane, Members, Labels and Due Date — using the same styling as the
My Cards
table view (the `.my-cards-board-table` CSS classes). Whereas My Cards'
table spans
all of the user's cards across boards, this is the per-board equivalent
showing all
of the current board's cards. The view is stored like the others as the
user's
`board-view-table` boardView. It also has a search box and previous/next
pagination
styled like the Admin Panel / People page, and Excel-like column
sorting: click the
Card, List, Swimlane or Due Date header to sort by it, click again to
reverse, with
an arrow showing the active column and direction. Search, sort and
pagination run
  client-side over the board's already-loaded cards.
  Thanks to xet7 and Claude.

and fixes the following bugs:

- [List scrollbar disappeared after resizing a list
width](https://redirect.github.com/wekan/wekan/commit/f621966f6143bb0d1c986507331d095ff81866d8):
Fixes
[#&#8203;6386](https://redirect.github.com/wekan/wekan/issues/6386).
When changing the width
of a list by dragging the resize handle between lists, the list's
vertical scrollbar
(used to scroll up and down through the cards in a list) disappeared.
Cause: dragging
the resize handle sets an inline `--list-width` property on the list,
which made the
resize CSS rules force `display: block` on the list permanently. That
collapsed the
flex-column layout so `.list-body` was no longer height-bounded and its
`overflow-y: auto` scrollbar never appeared. Fixed by keeping the flex
column layout
(`display: flex; flex-direction: column`) instead of `display: block`
during and after
  resize; the explicit inline width still pins the list width.
  Thanks to xet7 and Claude.
- [Login and register pages are now scrollable to the bottom of the
form](https://redirect.github.com/wekan/wekan/commit/ad2b969eb5aeea535e0392c9cf81d32a79f11657):
Tall authentication forms (many login methods, legal notice, language
selector, etc.)
could overflow the viewport without a reliable way to scroll to all
fields. The auth
pages render directly into `<body>`, which already has `overflow-y:
auto`, so the
vertical scrollbar now appears whenever the form is taller than the
viewport, with a
real draggable thumb, placed on the right for LTR and on the left for
RTL (since
`<body>` inherits `direction` from the html `dir` attribute). Two `<br>`
are added
below the dialog so the bottom of the form scrolls fully into view. An
earlier attempt
forced `overflow-y: scroll`, which left a non-draggable empty scrollbar
track in
Chromium and no scrollbar at all in Firefox when the form fit the
viewport; using the
default `overflow-y: auto` shows the scrollbar only when there is
something to scroll.
  Thanks to xet7 and Claude.
- [Drag-to-scroll (dragscroll) now works on the All Boards, My Cards,
Login and Register pages and in the board Lists
view](https://redirect.github.com/wekan/wekan/commit/da93bfbca687e4ca9b1ed8798e9f07ec0d31bab7):
Dragging empty space to scroll already worked on the board Swimlanes
view but not on
these pages. The dragscroll library scrolls whichever element carries
the `dragscroll`
class, and that element must be the actual scroll container. On All
Boards, My Cards,
Login and Register the page scroll container is `<body>` (the previous
`dragscroll`
class on `ul.board-list` only scrolled in mobile view), so a small
shared helper
(`client/lib/pageDragscroll.js`) now toggles the `dragscroll` class on
`<body>` while
those templates are mounted and calls `dragscroll.reset()`; the library
has a dedicated
`el == document.body` branch for whole-page scrolling. In the board
Lists view the
`.board-canvas` only received `dragscroll` when the board had swimlanes,
so vertical
drag-scroll failed on swimlane-less boards; the canvas now always
carries the class.
One-finger touch scrolling (client/lib/dragscrollTouch.js) covers these
too.
  Thanks to xet7 and Claude.

Thanks to above GitHub users for their contributions and translators for
their translations.

</details>

---

### Configuration

📅 **Schedule**: (UTC)

- Branch creation
  - At any time (no schedule defined)
- Automerge
  - At any time (no schedule defined)

🚦 **Automerge**: Enabled.

♻ **Rebasing**: Whenever PR becomes conflicted, or you tick the
rebase/retry checkbox.

🔕 **Ignore**: Close this PR and you won't be reminded about this update
again.

---

- [ ] <!-- rebase-check -->If you want to rebase/retry this PR, check
this box

---

This PR has been generated by [Renovate
Bot](https://redirect.github.com/renovatebot/renovate).

<!--renovate-debug:eyJjcmVhdGVkSW5WZXIiOiI0My4xMzAuMSIsInVwZGF0ZWRJblZlciI6IjQzLjEzMC4xIiwidGFyZ2V0QnJhbmNoIjoibWFzdGVyIiwibGFiZWxzIjpbImFwcC93ZWthbiIsImF1dG9tZXJnZSIsInJlbm92YXRlL2NvbnRhaW5lciIsInR5cGUvbWlub3IiXX0=-->
This commit is contained in:
TrueCharts Bot
2026-06-17 19:09:15 +02:00
committed by GitHub
parent 432b44bd0a
commit 8e98aa813c
2 changed files with 3 additions and 3 deletions
+2 -2
View File
@@ -9,7 +9,7 @@ annotations:
trueforge.org/min_helm_version: "3.14"
trueforge.org/train: stable
apiVersion: v2
appVersion: 9.47.0
appVersion: 9.49.0
dependencies:
- name: common
version: 29.5.3
@@ -44,5 +44,5 @@ sources:
- https://hub.docker.com/r/wekanteam/wekan
- https://wekan.github.io/
type: application
version: 21.24.1
version: 21.25.0
+1 -1
View File
@@ -1,7 +1,7 @@
# yaml-language-server: $schema=./values.schema.json
image:
repository: docker.io/wekanteam/wekan
tag: v9.47@sha256:70cc2d11ef69314c0a5155d647100b4df9c5c028e7bfea478bc2e947a9c78bdb
tag: v9.49@sha256:d632b489a56181ab620410b1c4e6a5975dd021913c7ba45e1496dfad12f3c605
pullPolicy: IfNotPresent
service:
main: