Skip to content

Commit 0ae4552

Browse files
authored
Merge pull request #783 from acelaya-forks/feature/fontawesome-react-3
Update to FontAwesome react component v3
2 parents 0a1e318 + 0be702f commit 0ae4552

File tree

9 files changed

+129
-108
lines changed

9 files changed

+129
-108
lines changed

CHANGELOG.md

Lines changed: 17 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -4,6 +4,23 @@ 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+
## [0.16.2] - 2025-08-25
8+
### Added
9+
* *Nothing*
10+
11+
### Changed
12+
* Update to FontAwesome react component v3
13+
14+
### Deprecated
15+
* *Nothing*
16+
17+
### Removed
18+
* *Nothing*
19+
20+
### Fixed
21+
* *Nothing*
22+
23+
724
## [0.16.1] - 2025-08-08
825
### Added
926
* [#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.

Dockerfile

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
1-
FROM mcr.microsoft.com/playwright:v1.54.1-noble
1+
FROM mcr.microsoft.com/playwright:v1.55.0-noble
22

3-
ENV NODE_VERSION 22.15
3+
ENV NODE_VERSION 22.18
44
ENV TINI_VERSION v0.19.0
55

66
# Install Node.js

package-lock.json

Lines changed: 33 additions & 29 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

package.json

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -44,9 +44,9 @@
4444
"@fortawesome/free-brands-svg-icons": "^7.0.0",
4545
"@fortawesome/free-regular-svg-icons": "^7.0.0",
4646
"@fortawesome/free-solid-svg-icons": "^7.0.0",
47-
"@fortawesome/react-fontawesome": "^0.2.3",
47+
"@fortawesome/react-fontawesome": "^3.0.0",
4848
"@reduxjs/toolkit": "^2.5.0",
49-
"@shlinkio/shlink-frontend-kit": "^1.1.0",
49+
"@shlinkio/shlink-frontend-kit": "^1.2.0",
5050
"@shlinkio/shlink-js-sdk": "^2.2.1",
5151
"react": "^19.1",
5252
"react-dom": "^19.1",

test/settings/components/__snapshots__/UserInterfaceSettings.test.tsx.snap

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
exports[`<UserInterfaceSettings /> > shows different icons based on theme 1`] = `
44
<svg
55
aria-hidden="true"
6-
class="svg-inline--fa fa-moon "
6+
class="svg-inline--fa fa-moon"
77
data-icon="moon"
88
data-prefix="fas"
99
role="img"
@@ -19,7 +19,7 @@ exports[`<UserInterfaceSettings /> > shows different icons based on theme 1`] =
1919
exports[`<UserInterfaceSettings /> > shows different icons based on theme 2`] = `
2020
<svg
2121
aria-hidden="true"
22-
class="svg-inline--fa fa-sun "
22+
class="svg-inline--fa fa-sun"
2323
data-icon="sun"
2424
data-prefix="fas"
2525
role="img"
@@ -35,7 +35,7 @@ exports[`<UserInterfaceSettings /> > shows different icons based on theme 2`] =
3535
exports[`<UserInterfaceSettings /> > shows different icons based on theme 3`] = `
3636
<svg
3737
aria-hidden="true"
38-
class="svg-inline--fa fa-sun "
38+
class="svg-inline--fa fa-sun"
3939
data-icon="sun"
4040
data-prefix="fas"
4141
role="img"

test/utils/components/__snapshots__/ExportBtn.test.tsx.snap

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
exports[`<ExportBtn /> > renders expected icon 1`] = `
44
<svg
55
aria-hidden="true"
6-
class="svg-inline--fa fa-file-csv "
6+
class="svg-inline--fa fa-file-csv"
77
data-icon="file-csv"
88
data-prefix="fas"
99
role="img"

0 commit comments

Comments
 (0)