Skip to content

Commit e09a974

Browse files
committed
Merge branch 'preview'
2 parents 1eab1ba + c1eeaeb commit e09a974

File tree

5 files changed

+26
-6
lines changed

5 files changed

+26
-6
lines changed

Changes

Lines changed: 22 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,13 +1,33 @@
1-
Changes on 2022-10-15 for repository at:
1+
Changes on 2023-04-29 for repository at:
22
Fetch URL: ssh://[email protected]:9999/~/Perl5-CoreSmokeDB-API
33
Push URL: ssh://[email protected]:9999/~/Perl5-CoreSmokeDB-API
44

55
Enjoy!
66

7-
1.01 2022-10-15T14:45:33+02:00 (adda164 => Abe Timmerman)
7+
1.01_01 2023-04-29T16:56:55+02:00 (4abdbee => Abe Timmerman)
8+
- (Abe Timmerman, Sat, 29 Apr 2023 16:56:55 +0200) Autocommit for
9+
distribution Perl5::CoreSmokeDB 1.01_01 (test)
10+
11+
1.01 2022-10-15T14:45:33+02:00 (15af291 => Abe Timmerman)
812
- (Abe Timmerman, Sat, 15 Oct 2022 14:45:33 +0200) Autocommit for
913
distribution Perl5::CoreSmokeDB 1.01 (minor)
1014

15+
- (Abe Timmerman, Sat, 15 Oct 2022 20:35:26 +0200) Add the parameter for
16+
building different branches
17+
18+
- (Abe Timmerman, Sat, 29 Apr 2023 16:31:07 +0200) No tabs in the
19+
Jenkinsfile
20+
21+
- (Abe Timmerman, Sat, 29 Apr 2023 16:33:09 +0200) Add the SQLite way to
22+
'pg_enable_utf8=-1'
23+
24+
- (Abe Timmerman, Sat, 29 Apr 2023 16:38:15 +0200) Unbreak storage of
25+
"binary" data.
26+
- This so called "binary" data was actually legal UTF-8, that should
27+
be
28+
- stored as such in the database. We now added options to the database
29+
- drivers to do this automagically.
30+
1131
1.00_03 2022-10-13T16:41:24+02:00 (c97b8ac => Abe Timmerman)
1232
- (Abe Timmerman, Thu, 13 Oct 2022 16:41:24 +0200) Autocommit for
1333
distribution Perl5::CoreSmokeDB 1.00_03 (test)

Jenkinsfile

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -100,3 +100,5 @@ chmod +x deploy/local/bin/*
100100
}
101101
}
102102
}
103+
104+
// vim: tabstop=4 shiftwidth=4 expandtab

environments/try-out.yml

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -12,4 +12,5 @@ plugins:
1212
options:
1313
RaiseError: 1
1414
PrintError: 1
15+
sqlite_string_mode: 5
1516
default: *try

lib/Perl5/CoreSmokeDB.pm

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@ use warnings;
33
use strict;
44
use lib 'lib';
55

6-
our $VERSION = '1.01';
6+
our $VERSION = '1.01_01';
77

88
use Dancer2;
99
use Dancer2::Plugin::DBIC;

lib/Perl5/CoreSmokeDB/Client/Database.pm

Lines changed: 0 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,6 @@ with(
77
);
88

99
use version;
10-
use Encode qw( encode );
1110
use DateTime;
1211
use Date::Parse qw( str2time );
1312

@@ -844,8 +843,6 @@ sub post_report {
844843
my @other_data = qw/harness_only harness3opts summary/;
845844
$report_data->{$_} = delete $data->{$_} for @other_data;
846845

847-
$report_data->{$_} = encode('utf8', delete $data->{$_}) for @_binary_data;
848-
849846
my $configs = delete $data->{'configs'};
850847
return $self->schema->txn_do(
851848
sub {

0 commit comments

Comments
 (0)