g3w-suite / g3w-admin

Server module for G3W-SUITE
https://g3w-suite.readthedocs.io/en/latest/g3wsuite_administration.html
Mozilla Public License 2.0
39 stars 30 forks source link

Fix field filter for comma separated values ​​requests (e.g. `"field" IN('value1', 'value2')`). #876

Closed wlorenzetti closed 3 weeks ago

wlorenzetti commented 3 weeks ago

Closes: #874

github-actions[bot] commented 3 weeks ago

The backport to v.3.7.x failed:

The process '/usr/bin/git' failed with exit code 1

To backport manually, run these commands in your terminal:

# Fetch latest updates from GitHub
git fetch
# Create a new working tree
git worktree add .worktrees/backport-v.3.7.x v.3.7.x
# Navigate to the new working tree
cd .worktrees/backport-v.3.7.x
# Create a new branch
git switch --create backport-876-to-v.3.7.x
# Cherry-pick the merged commit of this pull request and resolve the conflicts
git cherry-pick -x --mainline 1 e78c93aa959266343d538c35a6d354ec1fce7305
# Push it to GitHub
git push --set-upstream origin backport-876-to-v.3.7.x
# Go back to the original working tree
cd ../..
# Delete the working tree
git worktree remove .worktrees/backport-v.3.7.x

Then, create a pull request where the base branch is v.3.7.x and the compare/head branch is backport-876-to-v.3.7.x.