File::Slurp -> File::Slurper
[?]
Sep 7, 2021, 1:44 AM
JKRKUHG2ZZQNCI6MLY3KI6LEAOQBZAG4ROCJWSWQT7RCNSFAMEDQCDependencies
- [2]
2JU5XTDPRemove references to hydra-postgresql.sql - [3]
GNQYRBAGImplement GitHub logins - [4]
IH26BRUJRun tests with yath - [5]
TJK27WSBOpen the DB using Hydra::Model::DB->new - [6]
PHNLYPKBCall buildFinished when a cached build is added - [7]
7FRO5BGHFix Mercurial diff - [8]
OIDTPX3FRemove some obsolete JSON APIs - [9]
6WRGCITDEnable declarative projects. - [10]
LE4VZIY5More stats - [11]
Y6AHH4THRemove the logfile and logSize columns from the database - [12]
Q24QXGSM* Don't do pretty printing for large logs, because the XSLT processing - [13]
Z52T2BC4Support passing a jobset evaluation as an input - [14]
VU2OLHD2Move most of AddBuilds to hydra-eval-jobset - [15]
LSZLZHJYAllow users to edit their own settings - [16]
SHYRGAWZhydra: when no external url is given for diff's of git/hg input, revert to a diff done on a local available clone - [17]
75BCCX2TGet rid of dependency to SQLite - [18]
CQZQE32VImprove handling of Perl's block eval errors - [19]
CWK6IXBXRe-add DBDSQLite since it's needed by the Perl-bindings of Nix - [20]
7I2U2MHUperlcritic: use strict, use warnings - [21]
YDVFPMKPSecurity: Ensure that a build product refers to the Nix store - [22]
NTEDD7T4Provide a plugin hook for when build steps finish - [23]
TPL3BSXGhydra-send-stats: add a --once option for testing - [24]
OOQ2D3KC* Refactoring: move fetchInput out of hydra_scheduler into a separate - [25]
RWNXH3H2lastModified -> lastModifiedDate - [26]
3QWDDLBRAdd support for logging in via a Google account - [27]
E5NSTNVMfixup perlcritic: indirect new - [28]
RX5IIZMTUse Email::MIME instead of Email::Simple - [29]
DODOGD7MSend queue runner stats to statsd - [30]
EYAA7MJYhydra-server: Support logs in S3 - [31]
7X2EDZWDhydra-send-stats: fix imports - [32]
O25D52TAinitial support for mercurial - [33]
HSVVEKTY* Start of a JSON API to get information about a specific build. - [34]
ARD6Z67TDo incremental SVN checkouts - [35]
TH674WKJadd log diff to compare logs to previous builds - [36]
BCFAS6VOdeclarative projects: support fully static, declarative configuration - [37]
VIJBYUAVAdd the project name to declarative inputs - [38]
AKRVETP5Handle UTF-8 characters in eval error messages - [39]
OGF57IYHFix syntax error in `hydra-send-stats` - [40]
LBNVQXUB* Build the /build stuff in a separate controller. - [41]
XDDCO6CH* hydra: add dependency list with links to logfiles - [42]
LZVO64YGMerge in the first bits of the API work - [43]
PMNWRTGJAdd multiple output support - [44]
XJRJ4J7MAdd user registration - [45]
I6QMKSISMove getBaseUrl - [46]
IDP66ILEUse Google's verifier - [47]
6NW4QX2Phydra-init: Warn about the schema version migration - [48]
32MXC7NNhydra-init: show SQL commands being executed - [49]
AMFMXR52Provide a command ‘hydra-init’ to initialise/upgrade the database - [*]
BKOIYITRadded some json responses - [*]
N22GPKYT* Put info about logs / build products in the DB.
Change contents
- replacement in flake.nix at line 457
FileSlurpFileSlurper - edit in src/lib/Hydra/Controller/API.pm at line 15
use File::Slurp; - edit in src/lib/Hydra/Controller/Build.pm at line 11
use File::Slurp; - replacement in src/lib/Hydra/Controller/User.pm at line 7
use File::Slurp;use File::Slurper qw(read_text); - replacement in src/lib/Hydra/Controller/User.pm at line 168
my $client_secret = read_file($client_secret_file);my $client_secret = read_text($client_secret_file); - edit in src/lib/Hydra/Helper/AddBuilds.pm at line 18
use File::Slurp; - edit in src/lib/Hydra/Helper/Email.pm at line 8
use File::Slurp; - replacement in src/script/hydra-eval-jobset at line 10
use File::Slurp;use File::Slurper qw(read_text); - replacement in src/script/hydra-eval-jobset at line 572
my $declText = read_file($declFile)my $declText = read_text($declFile) - replacement in src/script/hydra-init at line 8
use File::Slurp;use File::Slurper qw(read_text); - replacement in src/script/hydra-init at line 28
my $schema = read_file(my $schema = read_text( - replacement in src/script/hydra-init at line 61
my $schema = read_file("$home/sql/upgrade-$m.sql");my $schema = read_text("$home/sql/upgrade-$m.sql"); - replacement in src/script/hydra-send-stats at line 8
use File::Slurp;use File::Slurper qw(read_text); - replacement in src/script/hydra-send-stats at line 96
my $meminfo = read_file("/proc/meminfo", err_mode => 'quiet') // "";my $meminfo = read_text("/proc/meminfo") // "";