Skip to content

Commit 60633a9

Browse files
committed
Merge branch 'develop' into release/delete-old-timeline
2 parents 1dcda2b + 480ae21 commit 60633a9

63 files changed

Lines changed: 5248 additions & 269 deletions

File tree

Some content is hidden

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

.docker/nginx.conf

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -34,3 +34,4 @@ http {
3434

3535
include /etc/nginx/conf.d/*.conf;
3636
}
37+

.docker/templates/default.conf.template

Lines changed: 10 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -86,6 +86,16 @@ server {
8686
fastcgi_pass ${NGINX_FPM_SERVICE};
8787
}
8888

89+
# Define which paths to protect
90+
location ~ ^/(flag/flag|admin|user/login) {
91+
# Block bots on these paths only
92+
if ($http_user_agent ~* (bot|crawler|spider|scraper)) {
93+
return 403;
94+
}
95+
96+
try_files $uri /index.php?$query_string;
97+
}
98+
8999
# Enforce clean URLs
90100
#
91101
# Removes index.php from urls like www.example.com/index.php/my-page --> www.example.com/my-page

CHANGELOG.md

Lines changed: 34 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,6 +8,33 @@ Versioning](https://semver.org/spec/v2.0.0.html).
88

99
* [PR-590](https://github.com/itk-dev/deltag.aarhus.dk/pull/590)
1010
Deleted old timeline.
11+
12+
## [4.14.7] - 2026-02-19
13+
14+
* [PR-631](https://github.com/itk-dev/deltag.aarhus.dk/pull/631)
15+
Updated citizen proposal view. Added “All citizen proposal supporters” view.
16+
17+
## [4.14.6] - 2026-01-29
18+
19+
* [PR-626](https://github.com/itk-dev/deltag.aarhus.dk/pull/623)
20+
Invalidate node cache when node is flagged.
21+
22+
## [4.14.5] - 2026-01-29
23+
24+
* [PR-623](https://github.com/itk-dev/deltag.aarhus.dk/pull/623)
25+
Add nginx block of bots to flags
26+
* [PR-624](https://github.com/itk-dev/deltag.aarhus.dk/pull/624)
27+
Fixed issue with project status
28+
* [PR-625](https://github.com/itk-dev/deltag.aarhus.dk/pull/625)
29+
Updated paragraph layout
30+
31+
## [4.14.4] - 2026-01-27
32+
33+
* [PR-588](https://github.com/itk-dev/deltag.aarhus.dk/pull/588)
34+
Added area and age span selection to dialogue proposal form
35+
* [PR-591](https://github.com/itk-dev/deltag.aarhus.dk/pull/591)
36+
* Cleaned up local OIDC setup
37+
* Added test server OIDC setup
1138
* [PR-587](https://github.com/itk-dev/deltag.aarhus.dk/pull/587)
1239
Cleaned up translations
1340
* [PR-586](https://github.com/itk-dev/hoeringsportal/pull/586)
@@ -635,7 +662,13 @@ Updated drupal core 8.6.16
635662

636663
Initial release
637664

638-
[Unreleased]: https://github.com/itk-dev/hoeringsportal/compare/4.14.1...HEAD
665+
[Unreleased]: https://github.com/itk-dev/hoeringsportal/compare/4.14.7...HEAD
666+
[4.14.7]: https://github.com/itk-dev/hoeringsportal/compare/4.14.6...4.14.7
667+
[4.14.6]: https://github.com/itk-dev/hoeringsportal/compare/4.14.5...4.14.6
668+
[4.14.5]: https://github.com/itk-dev/hoeringsportal/compare/4.14.4...4.14.5
669+
[4.14.4]: https://github.com/itk-dev/hoeringsportal/compare/4.14.3...4.14.4
670+
[4.14.3]: https://github.com/itk-dev/hoeringsportal/compare/4.14.2...4.14.3
671+
[4.14.2]: https://github.com/itk-dev/hoeringsportal/compare/4.14.1...4.14.2
639672
[4.14.1]: https://github.com/itk-dev/hoeringsportal/compare/4.14.0...4.14.1
640673
[4.14.0]: https://github.com/itk-dev/hoeringsportal/compare/4.13.2...4.14.0
641674
[4.13.2]: https://github.com/itk-dev/hoeringsportal/compare/4.13.1...4.13.2

0 commit comments

Comments
 (0)