Skip to content

Commit 55e1f4a

Browse files
authored
Merge pull request #1905 from Freika/dev
0.34.1
2 parents 8c24764 + 2ffac60 commit 55e1f4a

29 files changed

+468
-203
lines changed

.app_version

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
0.34.0
1+
0.34.1

CHANGELOG.md

Lines changed: 14 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -4,6 +4,20 @@ All notable changes to this project will be documented in this file.
44
The format is based on [Keep a Changelog](http://keepachangelog.com/)
55
and this project adheres to [Semantic Versioning](http://semver.org/).
66

7+
# [0.34.1] - 2025-10-30
8+
9+
## Fixed
10+
11+
- Broken Stats page for users with no reverse geocoding enabled. #1877
12+
13+
## Changed
14+
15+
- Date navigation on the map page is no longer shown as floating panel. It is now part of the top navigation bar to prevent overlapping with other map controls. #1894 #1881
16+
17+
## Added
18+
19+
- [Dawarich Cloud] Added support for UTM parameters during user registration. UTM parameters will be stored with the user record for marketing analytics purposes.
20+
721
# [0.34.0] - 2025-10-10
822

923
## The Family release

Gemfile

Lines changed: 12 additions & 12 deletions
Original file line numberDiff line numberDiff line change
@@ -28,8 +28,8 @@ gem 'parallel'
2828
gem 'pg'
2929
gem 'prometheus_exporter'
3030
gem 'puma'
31-
gem 'pundit'
32-
gem 'rails', '~> 8.0'
31+
gem 'pundit', '>= 2.5.1'
32+
gem 'rails', '~> 8.0', '>= 8.0.3'
3333
gem 'rails_icons'
3434
gem 'redis'
3535
gem 'rexml'
@@ -39,18 +39,18 @@ gem 'rgeo-geojson'
3939
gem 'rqrcode', '~> 3.0'
4040
gem 'rswag-api'
4141
gem 'rswag-ui'
42-
gem 'rubyzip', '~> 3.1'
43-
gem 'sentry-rails'
42+
gem 'rubyzip', '~> 3.2'
43+
gem 'sentry-rails', '>= 5.27.0'
4444
gem 'sentry-ruby'
45-
gem 'sidekiq'
46-
gem 'sidekiq-cron'
45+
gem 'sidekiq', '>= 8.0.5'
46+
gem 'sidekiq-cron', '>= 2.3.1'
4747
gem 'sidekiq-limit_fetch'
4848
gem 'sprockets-rails'
4949
gem 'stackprof'
5050
gem 'stimulus-rails'
51-
gem 'strong_migrations'
52-
gem 'tailwindcss-rails'
53-
gem 'turbo-rails'
51+
gem 'strong_migrations', '>= 2.4.0'
52+
gem 'tailwindcss-rails', '= 3.3.2'
53+
gem 'turbo-rails', '>= 2.0.17'
5454
gem 'tzinfo-data', platforms: %i[mingw mswin x64_mingw jruby]
5555

5656
group :development, :test, :staging do
@@ -62,7 +62,7 @@ group :development, :test, :staging do
6262
gem 'ffaker'
6363
gem 'pry-byebug'
6464
gem 'pry-rails'
65-
gem 'rspec-rails'
65+
gem 'rspec-rails', '>= 8.0.1'
6666
gem 'rswag-specs'
6767
end
6868

@@ -77,7 +77,7 @@ group :test do
7777
end
7878

7979
group :development do
80-
gem 'database_consistency', require: false
80+
gem 'database_consistency', '>= 2.0.5', require: false
8181
gem 'foreman'
82-
gem 'rubocop-rails', require: false
82+
gem 'rubocop-rails', '>= 2.33.4', require: false
8383
end

0 commit comments

Comments
 (0)