Skip to content

Commit d11cfd8

Browse files
committed
Fix a bug that prevented data migration from working correctly
1 parent b063d80 commit d11cfd8

File tree

4 files changed

+11
-5
lines changed

4 files changed

+11
-5
lines changed

.app_version

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
0.12.0
1+
0.12.1

CHANGELOG.md

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

8+
## [0.12.1] — 2024-08-25
9+
10+
### Fixed
11+
12+
- Fixed a bug that prevented data migration from working correctly
13+
814
## [0.12.0] — 2024-08-25
915

1016
### The visit suggestion release
@@ -226,7 +232,7 @@ See the [PR](https://github.com/Freika/dawarich/pull/185) or Swagger docs (`/api
226232

227233
### Added
228234

229-
- Background jobs page. You can find it in Settings -> Backgroun Jobs.
235+
- Background jobs page. You can find it in Settings -> Background Jobs.
230236
- Queue clearing buttons. You can clear all jobs in the queue.
231237
- Reverse geocoding restart button. You can restart the reverse geocoding process for all of your points.
232238
- Reverse geocoding continue button. Click on this button will start reverse geocoding process only for points that were not processed yet.
@@ -349,7 +355,7 @@ Note, there should be no protocol prefixes in the `APPLICATION_HOSTS` variable,
349355

350356
### Fixed
351357

352-
- Support for a `location-history.json` file from Google Takeout. It turned out, this file could contain not only an object with location data history, but also an array of objets with location data history. Now Dawarich can handle both cases and import the data correctly.
358+
- Support for a `location-history.json` file from Google Takeout. It turned out, this file could contain not only an object with location data history, but also an array of objects with location data history. Now Dawarich can handle both cases and import the data correctly.
353359

354360

355361
---

app/assets/builds/tailwind.css

Lines changed: 1 addition & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

db/data/20240808133112_run_initial_visit_suggestion.rb

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ def up
55
start_at = 30.years.ago
66
end_at = Time.current
77

8-
VisitSuggestingJob.perform_in(3.minutes, start_at:, end_at:)
8+
VisitSuggestingJob.perform_later(start_at:, end_at:)
99
end
1010

1111
def down

0 commit comments

Comments
 (0)