diff options
author | Birte Kristina Friesel <derf@finalrewind.org> | 2025-10-15 19:05:09 +0200 |
---|---|---|
committer | Birte Kristina Friesel <derf@finalrewind.org> | 2025-10-15 19:05:09 +0200 |
commit | 67ded04f27595e44b768b911bd021184d16c6329 (patch) | |
tree | 4bc110234e42547f20d4f90e111e1466ab96c7d2 | |
parent | 686a930336636e0e0499ae749935bcdb7269cbe8 (diff) |
-rw-r--r-- | Changelog | 9 | ||||
-rwxr-xr-x | bin/efa-m | 4 | ||||
-rw-r--r-- | lib/Travel/Status/DE/EFA.pm | 4 | ||||
-rw-r--r-- | lib/Travel/Status/DE/EFA/Departure.pm | 4 | ||||
-rw-r--r-- | lib/Travel/Status/DE/EFA/Info.pm | 4 | ||||
-rw-r--r-- | lib/Travel/Status/DE/EFA/Line.pm | 4 | ||||
-rw-r--r-- | lib/Travel/Status/DE/EFA/Services.pm.PL | 2 | ||||
-rw-r--r-- | lib/Travel/Status/DE/EFA/Stop.pm | 4 | ||||
-rw-r--r-- | lib/Travel/Status/DE/EFA/Trip.pm | 4 | ||||
-rw-r--r-- | lib/Travel/Status/DE/VRR.pm | 4 |
10 files changed, 26 insertions, 17 deletions
@@ -1,3 +1,12 @@ +Travel::Status::DE::VRR 3.17 - Wed Oct 15 2025 + + * New dependency: URI::Escape + * URL-Escape umlauts in name/place parameters sent to EFA backends. + This fixes umlaut-related issues in LinzAG and VVO requests. + * EFA: Detect "invalid stop" backend errors. + * EFA(3pm): Remove efa_encoding, which has been unsupported for a long + time already. + Travel::Status::DE::VRR 3.16 - Sat Sep 20 2025 * Add AVV ("AVV Augsburg", not Aachen) service definition @@ -4,7 +4,7 @@ use warnings; use 5.010; use utf8; -our $VERSION = '3.16'; +our $VERSION = '3.17'; binmode( STDOUT, ':encoding(utf-8)' ); @@ -633,7 +633,7 @@ B<efa-m> [B<-s> I<service>] I<tripid> =head1 VERSION -version 3.16 +version 3.17 =head1 DESCRIPTION diff --git a/lib/Travel/Status/DE/EFA.pm b/lib/Travel/Status/DE/EFA.pm index bcf23cc..081923e 100644 --- a/lib/Travel/Status/DE/EFA.pm +++ b/lib/Travel/Status/DE/EFA.pm @@ -5,7 +5,7 @@ use warnings; use 5.010; use utf8; -our $VERSION = '3.16'; +our $VERSION = '3.17'; use Carp qw(confess cluck); use DateTime; @@ -750,7 +750,7 @@ Travel::Status::DE::EFA - unofficial EFA departure monitor =head1 VERSION -version 3.16 +version 3.17 =head1 DESCRIPTION diff --git a/lib/Travel/Status/DE/EFA/Departure.pm b/lib/Travel/Status/DE/EFA/Departure.pm index 83ea143..d33ce1b 100644 --- a/lib/Travel/Status/DE/EFA/Departure.pm +++ b/lib/Travel/Status/DE/EFA/Departure.pm @@ -10,7 +10,7 @@ use Travel::Status::DE::EFA::Stop; use parent 'Class::Accessor'; -our $VERSION = '3.16'; +our $VERSION = '3.17'; Travel::Status::DE::EFA::Departure->mk_ro_accessors( qw(countdown datetime delay destination is_cancelled key line lineref mot @@ -305,7 +305,7 @@ departure received by Travel::Status::DE::EFA =head1 VERSION -version 3.16 +version 3.17 =head1 DESCRIPTION diff --git a/lib/Travel/Status/DE/EFA/Info.pm b/lib/Travel/Status/DE/EFA/Info.pm index 5d1749c..76fa6a0 100644 --- a/lib/Travel/Status/DE/EFA/Info.pm +++ b/lib/Travel/Status/DE/EFA/Info.pm @@ -6,7 +6,7 @@ use 5.010; use parent 'Class::Accessor'; -our $VERSION = '3.16'; +our $VERSION = '3.17'; Travel::Status::DE::EFA::Info->mk_ro_accessors( qw(link_url link_text subject content subtitle additional_text)); @@ -58,7 +58,7 @@ Travel::Status::DE::EFA::Info - Information about a public transit stop =head1 VERSION -version 3.16 +version 3.17 =head1 DESCRIPTION diff --git a/lib/Travel/Status/DE/EFA/Line.pm b/lib/Travel/Status/DE/EFA/Line.pm index 09b3f33..f13b272 100644 --- a/lib/Travel/Status/DE/EFA/Line.pm +++ b/lib/Travel/Status/DE/EFA/Line.pm @@ -6,7 +6,7 @@ use 5.010; use parent 'Class::Accessor'; -our $VERSION = '3.16'; +our $VERSION = '3.17'; Travel::Status::DE::EFA::Line->mk_ro_accessors( qw(direction mot name number operator route type valid)); @@ -57,7 +57,7 @@ requested station =head1 VERSION -version 3.16 +version 3.17 =head1 DESCRIPTION diff --git a/lib/Travel/Status/DE/EFA/Services.pm.PL b/lib/Travel/Status/DE/EFA/Services.pm.PL index 0cba4da..ff44fc9 100644 --- a/lib/Travel/Status/DE/EFA/Services.pm.PL +++ b/lib/Travel/Status/DE/EFA/Services.pm.PL @@ -113,7 +113,7 @@ use warnings; use 5.014; use utf8; -our $VERSION = '3.16'; +our $VERSION = '3.17'; # Most of these have been adapted from # <https://github.com/public-transport/transport-apis> and diff --git a/lib/Travel/Status/DE/EFA/Stop.pm b/lib/Travel/Status/DE/EFA/Stop.pm index 0a36938..fb5dbc0 100644 --- a/lib/Travel/Status/DE/EFA/Stop.pm +++ b/lib/Travel/Status/DE/EFA/Stop.pm @@ -6,7 +6,7 @@ use 5.010; use parent 'Class::Accessor'; -our $VERSION = '3.16'; +our $VERSION = '3.17'; Travel::Status::DE::EFA::Stop->mk_ro_accessors( qw(sched_arr rt_arr arr arr_delay @@ -93,7 +93,7 @@ in a Travel::Status::DE::EFA::Result's route =head1 VERSION -version 3.16 +version 3.17 =head1 DESCRIPTION diff --git a/lib/Travel/Status/DE/EFA/Trip.pm b/lib/Travel/Status/DE/EFA/Trip.pm index a4b1665..08d6077 100644 --- a/lib/Travel/Status/DE/EFA/Trip.pm +++ b/lib/Travel/Status/DE/EFA/Trip.pm @@ -9,7 +9,7 @@ use Travel::Status::DE::EFA::Stop; use parent 'Class::Accessor'; -our $VERSION = '3.16'; +our $VERSION = '3.17'; Travel::Status::DE::EFA::Trip->mk_ro_accessors( qw(operator product product_class name line number type id dest_name dest_id) @@ -238,7 +238,7 @@ trip =head1 VERSION -version 3.16 +version 3.17 =head1 DESCRIPTION diff --git a/lib/Travel/Status/DE/VRR.pm b/lib/Travel/Status/DE/VRR.pm index 7c04a32..1bccf0e 100644 --- a/lib/Travel/Status/DE/VRR.pm +++ b/lib/Travel/Status/DE/VRR.pm @@ -4,7 +4,7 @@ use strict; use warnings; use 5.010; -our $VERSION = '3.16'; +our $VERSION = '3.17'; use parent 'Travel::Status::DE::EFA'; @@ -43,7 +43,7 @@ Travel::Status::DE::VRR - unofficial VRR departure monitor. =head1 VERSION -version 3.16 +version 3.17 =head1 DESCRIPTION |