Skip to content

Commit 721a6be

Browse files
authored
Merge pull request #250 from RivianTrackr/claude/update-rivian-roamer-schema-iAP9F
Bump version to 1.44.1 and update changelog
2 parents bdc49e8 + a8f83ea commit 721a6be

4 files changed

Lines changed: 14 additions & 5 deletions

File tree

CHANGELOG.md

Lines changed: 9 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -4,6 +4,15 @@ All notable changes to the Rivian Tire Guide plugin will be documented in this f
44

55
The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.1.0/).
66

7+
## [1.44.1] - 2026-04-08
8+
9+
### Fixed
10+
- **Vehicle breakdown not displaying** — Fixed parsing of the Roamer feed's `vehicle_breakdown` field which uses an array-of-pairs format (`[["Gen 1 R1T Dual", 1]]`) rather than an object. Tooltip, admin tire edit, and multi-assign merge logic all updated.
11+
- **Vehicle breakdown column not created** — The `roamer_vehicle_breakdown` TEXT column could fail to be created by dbDelta on MySQL < 8.0.13 (TEXT columns don't support DEFAULT values). Added migration 14 as a safety net to explicitly create the column via ALTER TABLE.
12+
13+
### Changed
14+
- **Plugin version** — Bumped to 1.44.1.
15+
716
## [1.44.0] - 2026-04-08
817

918
### Changed

package-lock.json

Lines changed: 2 additions & 2 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "rivian-tire-guide",
3-
"version": "1.44.0",
3+
"version": "1.44.1",
44
"private": true,
55
"description": "Interactive tire guide for Rivian vehicles — WordPress plugin",
66
"scripts": {

rivian-tire-guide.php

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
/**
33
* Plugin Name: Rivian Tire Guide
44
* Description: Interactive tire guide for Rivian vehicles with filtering, comparison, and ratings.
5-
* Version: 1.44.0
5+
* Version: 1.44.1
66
* Author: RivianTrackr
77
* Text Domain: rivian-tire-guide
88
* Requires at least: 5.8
@@ -13,7 +13,7 @@
1313
exit;
1414
}
1515

16-
define( 'RTG_VERSION', '1.44.0' );
16+
define( 'RTG_VERSION', '1.44.1' );
1717
define( 'RTG_PLUGIN_DIR', plugin_dir_path( __FILE__ ) );
1818
define( 'RTG_PLUGIN_URL', plugin_dir_url( __FILE__ ) );
1919
define( 'RTG_PLUGIN_FILE', __FILE__ );

0 commit comments

Comments
 (0)