Newsgroups: php.internals Path: news.php.net Xref: news.php.net php.internals:103165 Return-Path: Delivered-To: mailing list internals@lists.php.net Received: (qmail 52736 invoked from network); 17 Sep 2018 13:10:46 -0000 Received: from unknown (HELO mail-it0-f46.google.com) (209.85.214.46) by pb1.pair.com with SMTP; 17 Sep 2018 13:10:46 -0000 Received: by mail-it0-f46.google.com with SMTP id h20-v6so10011470itf.2 for ; Mon, 17 Sep 2018 02:16:36 -0700 (PDT) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=gmail.com; s=20161025; h=mime-version:from:date:message-id:subject:to; bh=jjeGJRiThkc6TMFP7VB/4e3BfaBx5f0iVwfJsFWFjSM=; b=TmvrrcwipSFTS+I2ULkVhKyu3xEC2k6CcjtFJcWoCziXNFNwq1oKlhpcKDHBURKK3d ASswbyHRTU8E61VUNwldRqg5yQ5oYBp76fNwrBdJffBEOo9tS0nKR/fyWyy+la5gi3bu mOB5DF9gHQP1wORhumzoUPUL438GZBIRJF4RbRrchxs4+D51+ylupgYM5G4HmkPJPopB lnTFXuGKrG/8z1eNIMHsyhIMBVhrHG8xqO6G/5vVWNavVi6vo2BE6cHa7WK7xdPbR/51 4Zw6eWq58dvSCmNJbuZdNwcYbL7m4lS8o4owFJkh12MDFhjGuLSYwGwKZHCEVs3u4k+K 5rkg== X-Google-DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=1e100.net; s=20161025; h=x-gm-message-state:mime-version:from:date:message-id:subject:to; bh=jjeGJRiThkc6TMFP7VB/4e3BfaBx5f0iVwfJsFWFjSM=; b=EWZYy7KdGHtOLw89YJousK0dLD+2vNHcdtcGqUlffc5aEMzoG7hA0D0S34XB5r0pzt hYKQZl2qc8Ff6ks2c9li4rNnBkksg41QHvP89quiiFfscxTu4d3Mdt7RpRPzk8UzSh3F JSuGiMq5ESD4tEkGL0voQmOahK0bEK/9Dbyo7Zfb1vTwH7ItuEzTcFGNNvA4yqkApbTz zF+R820mLVeGltSHSNUhKjvY+eseTP08ULvHY07qBfz5PJPWXm3slGzAfYP9Liox+sdq CPY+Hu4GvgFLW5cc5wYUhSGyCP4v9WGUbc2r1tJeXw37T/qvI2z3L4JCjB/5VM1WOcUj 9x7Q== X-Gm-Message-State: APzg51B2+aU6GTMAjFIWDxLSjt5jHmMvjBr3K2JdmUzbIcS2A+4B/tFk AT1pnAqqc+XMH0yvj9QzBgy4Q/034Om2lMwmkUb8acWS X-Google-Smtp-Source: ANB0Vdbypa8FLgIAGRn+2kJ+XRtg1byWHS/iu04mPe0zCa9Td+dWcW3sc3hHyn7OSFgl0nkhDiGrb8ECXwMZZjk+iE8= X-Received: by 2002:a24:c303:: with SMTP id s3-v6mr6225004itg.10.1537175795477; Mon, 17 Sep 2018 02:16:35 -0700 (PDT) MIME-Version: 1.0 Date: Mon, 17 Sep 2018 11:16:24 +0200 Message-ID: To: PHP internals Content-Type: multipart/alternative; boundary="0000000000003f325805760da1f5" Subject: Bump libxml2 requirement From: nikita.ppv@gmail.com (Nikita Popov) --0000000000003f325805760da1f5 Content-Type: text/plain; charset="UTF-8" Hi, I'd like to bump our libxml2 minimum version requirement from 2.6.11 (released July 2004) to 2.7.6 (released Oct 2009). I've picked this specific version because it is provided by RHEL 6, which means it's so prehistoric that any reasonable system should have it. Increasing the minimum version requirement allows us to drop many version checks in the source code and most importantly avoids a number of conditionally available methods in DOM. It's a bad state of things if you can run a recent version of PHP, but some methods are not available because the libxml2 version is too old. PR at https://github.com/php/php-src/pull/3524. If there are no objections, I'll merge this next week. Regards, Nikita --0000000000003f325805760da1f5--