From 54959b5add34c2050a72b8e7df19106ea5621a8c Mon Sep 17 00:00:00 2001 From: Eugene Burmakin Date: Fri, 25 Oct 2024 08:59:19 +0200 Subject: [PATCH] Fix data migration that prevented the application from starting. --- .app_version | 2 +- CHANGELOG.md | 6 ++++++ db/data/20240610170930_remove_points_without_coordinates.rb | 2 +- 3 files changed, 8 insertions(+), 2 deletions(-) diff --git a/.app_version b/.app_version index bc300b99..8b7217f9 100644 --- a/.app_version +++ b/.app_version @@ -1 +1 @@ -0.15.9 +0.15.10 diff --git a/CHANGELOG.md b/CHANGELOG.md index 49aee73e..000b5896 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -5,6 +5,12 @@ All notable changes to this project will be documented in this file. The format is based on [Keep a Changelog](http://keepachangelog.com/) and this project adheres to [Semantic Versioning](http://semver.org/). +# 0.15.10 - 2024-10-25 + +### Fixed + +- Data migration that prevented the application from starting. + # 0.15.9 - 2024-10-24 ### Fixed diff --git a/db/data/20240610170930_remove_points_without_coordinates.rb b/db/data/20240610170930_remove_points_without_coordinates.rb index b38e72ff..b8647672 100644 --- a/db/data/20240610170930_remove_points_without_coordinates.rb +++ b/db/data/20240610170930_remove_points_without_coordinates.rb @@ -12,7 +12,7 @@ class RemovePointsWithoutCoordinates < ActiveRecord::Migration[7.1] Rails.logger.info 'Points without coordinates removed.' - StatCreatingJob.perform_later(User.pluck(:id)) + BulkStatsCalculatingJob.perform_later(User.pluck(:id)) end def down