Skip to content

Commit

Permalink
Merge branch 'release/3.2.23' into v3
Browse files Browse the repository at this point in the history
  • Loading branch information
khalwat committed Feb 12, 2025
2 parents 7446f70 + f18108f commit 26b07f3
Show file tree
Hide file tree
Showing 85 changed files with 3,011 additions and 2,503 deletions.
7 changes: 7 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,12 @@
# Retour Changelog

## 3.2.23 - 2025.02.12
### Changed
* Update buildchain to Vite 6 & Tailwind CSS 4

### Fixed
* Fixed an issue where query strings and fragments could be stripped from the destination URL ([#327](https://github.com/nystudio107/craft-retour/issues/327))

## 3.2.22 - 2025.01.27
### Fixed
* 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))
Expand Down
Empty file removed buildchain/.eslintignore
Empty file.
25 changes: 0 additions & 25 deletions buildchain/.eslintrc

This file was deleted.

19 changes: 0 additions & 19 deletions buildchain/.stylelintrc.json

This file was deleted.

2 changes: 1 addition & 1 deletion buildchain/Dockerfile
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
ARG TAG=20-alpine
ARG TAG=22-alpine
FROM node:$TAG

RUN npm install -g npm@^11.0.0
Expand Down
2 changes: 1 addition & 1 deletion buildchain/Makefile
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
MAJOR_VERSION?=3
TAG?=20-alpine
TAG?=22-alpine
CONTAINER?=$(shell basename $(dir $(CURDIR)))-v${MAJOR_VERSION}-buildchain
DEV_PORT?=300${MAJOR_VERSION}
IMAGE_INFO=$(shell docker image inspect $(CONTAINER):$(TAG))
Expand Down
15 changes: 15 additions & 0 deletions buildchain/eslint.config.js
Original file line number Diff line number Diff line change
@@ -0,0 +1,15 @@
import globals from "globals";
import pluginJs from "@eslint/js";
import tseslint from "typescript-eslint";
import pluginVue from "eslint-plugin-vue";


/** @type {import('eslint').Linter.Config[]} */
export default [
{files: ["**/*.{js,mjs,cjs,ts,vue}"]},
{languageOptions: { globals: globals.browser }},
pluginJs.configs.recommended,
...tseslint.configs.recommended,
...pluginVue.configs["flat/essential"],
{files: ["**/*.vue"], languageOptions: {parserOptions: {parser: tseslint.parser}}},
];
Loading

0 comments on commit 26b07f3

Please sign in to comment.