Skip to content

Commit 68644d5

Browse files
committed
Merge branch 'release/4.1.23' into v4
2 parents beacd43 + a685a40 commit 68644d5

File tree

85 files changed

+3011
-2503
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

85 files changed

+3011
-2503
lines changed

CHANGELOG.md

Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,12 @@
11
# Retour Changelog
22

3+
## 4.1.23 - 2025.02.12
4+
### Changed
5+
* Update buildchain to Vite 6 & Tailwind CSS 4
6+
7+
### Fixed
8+
* Fixed an issue where query strings and fragments could be stripped from the destination URL ([#327](https://github.com/nystudio107/craft-retour/issues/327))
9+
310
## 4.1.22 - 2025.01.27
411
### Fixed
512
* Fixed an issue where redirects were not, in fact, redirecting with the appropriate site URL prefix as expected ([#325](https://github.com/nystudio107/craft-retour/issues/325))

buildchain/.eslintignore

Whitespace-only changes.

buildchain/.eslintrc

Lines changed: 0 additions & 25 deletions
This file was deleted.

buildchain/.stylelintrc.json

Lines changed: 0 additions & 19 deletions
This file was deleted.

buildchain/Dockerfile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
ARG TAG=20-alpine
1+
ARG TAG=22-alpine
22
FROM node:$TAG
33

44
RUN npm install -g npm@^11.0.0

buildchain/Makefile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
MAJOR_VERSION?=4
2-
TAG?=20-alpine
2+
TAG?=22-alpine
33
CONTAINER?=$(shell basename $(dir $(CURDIR)))-v${MAJOR_VERSION}-buildchain
44
DEV_PORT?=300${MAJOR_VERSION}
55
IMAGE_INFO=$(shell docker image inspect $(CONTAINER):$(TAG))

buildchain/eslint.config.js

Lines changed: 15 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,15 @@
1+
import globals from "globals";
2+
import pluginJs from "@eslint/js";
3+
import tseslint from "typescript-eslint";
4+
import pluginVue from "eslint-plugin-vue";
5+
6+
7+
/** @type {import('eslint').Linter.Config[]} */
8+
export default [
9+
{files: ["**/*.{js,mjs,cjs,ts,vue}"]},
10+
{languageOptions: { globals: globals.browser }},
11+
pluginJs.configs.recommended,
12+
...tseslint.configs.recommended,
13+
...pluginVue.configs["flat/essential"],
14+
{files: ["**/*.vue"], languageOptions: {parserOptions: {parser: tseslint.parser}}},
15+
];

0 commit comments

Comments
 (0)