Skip to content

Commit 0dc6d70

Browse files
authored
Merge pull request #1629 from shlinkio/develop
Release 4.5.0
2 parents 4eab3b6 + fcdb720 commit 0dc6d70

15 files changed

+942
-1068
lines changed

CHANGELOG.md

Lines changed: 24 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -4,6 +4,30 @@ All notable changes to this project will be documented in this file.
44

55
The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/), and this project adheres to [Semantic Versioning](https://semver.org).
66

7+
## [4.5.0] - 2025-08-08
8+
### Added
9+
* [shlink-web-component#755](https://github.com/shlinkio/shlink-web-component/issues/755) Add support for `any-value-query-param` and `valueless-query-param` redirect conditions when using Shlink >=4.5.0.
10+
* [shlink-web-component#756](https://github.com/shlinkio/shlink-web-component/issues/756) Add support for desktop device types on device redirect conditions, when using Shlink >=4.5.0.
11+
* [shlink-web-component#713](https://github.com/shlinkio/shlink-web-component/issues/713) Expose a new `ShlinkSidebarToggleButton` component that can be used to customize the location of the sidebar toggle, rather than making it assume there's a header bar and position it there.
12+
* [shlink-web-component#657](https://github.com/shlinkio/shlink-web-component/issues/657) Allow visits table columns to be customized via settings, and add a new optional "Region" column.
13+
14+
As a side effect, the "Show user agent" toggle has been removed from the list, as this can now be globally configured in the settings.
15+
16+
### Changed
17+
* Update to FontAwesome 7
18+
* Update to Recharts 3
19+
* Update to `@shlinkio/shlink-web-component` 0.16.1
20+
21+
### Deprecated
22+
* *Nothing*
23+
24+
### Removed
25+
* *Nothing*
26+
27+
### Fixed
28+
* [shlink-web-component#698](https://github.com/shlinkio/shlink-web-component/issues/698) Fix line chart selection triggering after clicking a dot in the chart. It now works only when dragging while the mouse is clicked.
29+
30+
731
## [4.4.1] - 2025-06-23
832
### Added
933
* *Nothing*

Dockerfile

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,10 +1,10 @@
1-
FROM node:24.2-alpine AS node
1+
FROM node:24.4-alpine AS node
22
COPY . /shlink-web-client
33
ARG VERSION="latest"
44
ENV VERSION=${VERSION}
55
RUN cd /shlink-web-client && npm ci && node --run build
66

7-
FROM nginxinc/nginx-unprivileged:1.27-alpine
7+
FROM nginxinc/nginx-unprivileged:1.29-alpine
88
ARG UID=101
99
LABEL maintainer="Alejandro Celaya <alejandro@alejandrocelaya.com>"
1010

dev.Dockerfile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
FROM mcr.microsoft.com/playwright:v1.53.1-noble
1+
FROM mcr.microsoft.com/playwright:v1.54.2-noble
22

33
ENV NODE_VERSION 22.14
44
ENV TINI_VERSION v0.19.0

0 commit comments

Comments
 (0)