From owner-svn-ports-head@freebsd.org Thu Sep 10 12:34:43 2020 Return-Path: Delivered-To: svn-ports-head@mailman.nyi.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2610:1c1:1:606c::19:1]) by mailman.nyi.freebsd.org (Postfix) with ESMTP id 59D483D5D89; Thu, 10 Sep 2020 12:34:43 +0000 (UTC) (envelope-from jrm@FreeBSD.org) Received: from mxrelay.nyi.freebsd.org (mxrelay.nyi.freebsd.org [IPv6:2610:1c1:1:606c::19:3]) (using TLSv1.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits) key-exchange X25519 server-signature RSA-PSS (4096 bits) server-digest SHA256 client-signature RSA-PSS (4096 bits) client-digest SHA256) (Client CN "mxrelay.nyi.freebsd.org", Issuer "Let's Encrypt Authority X3" (verified OK)) by mx1.freebsd.org (Postfix) with ESMTPS id 4BnJHR1cyMz3gct; Thu, 10 Sep 2020 12:34:43 +0000 (UTC) (envelope-from jrm@FreeBSD.org) Received: from repo.freebsd.org (repo.freebsd.org [IPv6:2610:1c1:1:6068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mxrelay.nyi.freebsd.org (Postfix) with ESMTPS id 1B15713090; Thu, 10 Sep 2020 12:34:43 +0000 (UTC) (envelope-from jrm@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.37]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id 08ACYgIM044539; Thu, 10 Sep 2020 12:34:42 GMT (envelope-from jrm@FreeBSD.org) Received: (from jrm@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id 08ACYgo2044537; Thu, 10 Sep 2020 12:34:42 GMT (envelope-from jrm@FreeBSD.org) Message-Id: <202009101234.08ACYgo2044537@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: jrm set sender to jrm@FreeBSD.org using -f From: Joseph Mingrone Date: Thu, 10 Sep 2020 12:34:42 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r548201 - head/textproc/elasticsearch7 X-SVN-Group: ports-head X-SVN-Commit-Author: jrm X-SVN-Commit-Paths: head/textproc/elasticsearch7 X-SVN-Commit-Revision: 548201 X-SVN-Commit-Repository: ports MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-head@freebsd.org X-Mailman-Version: 2.1.33 Precedence: list List-Id: SVN commit messages for the ports tree for head List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 10 Sep 2020 12:34:43 -0000 Author: jrm Date: Thu Sep 10 12:34:42 2020 New Revision: 548201 URL: https://svnweb.freebsd.org/changeset/ports/548201 Log: textproc/elasticsearch7: Update to version 7.9.1 Changelog: * Breaking changes: - Indices changes: - Elasticsearch includes built-in index templates for logs-*-* and metrics-*-*. - Script cache changes: - The script.cache.max_size setting is deprecated. - The script.cache.expire setting is deprecated. - The script.max_compilations_rate setting is deprecated. - Mapping actions have been deprecated for the create_doc, create, index and write privileges. - Settings changes: - Automatically importing dangling indices is disabled by default. * New features: - Search - QL: Wildcard field type support * Enhancements: - CRUD: - Log more information when mappings fail on index creation - EQL: - Make endsWith function use a wildcard ES query wherever possible - Make stringContains function use a wildcard ES query wherever possible - Features/Stats - Change severity of negative stats messages from WARN to DEBUG - Search - Fix handling of alias filter in SearchService - QL: Add filtering Query DSL support to IndexResolver - Snapshot/Restore - Do not access snapshot repo on dedicated voting-only master node * Bug fixesedit - Authentication - Call ActionListener.onResponse exactly once - Authorization - Relax the index access control check for scroll searches - CCR Relax ShardFollowTasksExecutor validation Set timeout of auto put-follow request to unbounded Set timeout of master node requests on follower to unbounded - Cluster Coordination - Restrict testing of legacy discovery to tests - EQL - Return sequence join keys in the original type - Features/Data streams - "no such index [null]" when indexing into data stream with op_type=index [ISSUE] - Data streams: throw ResourceAlreadyExists exception - Track backing indices in data streams stats from cluster state - Features/ILM+SLM - Fix race in SLM master/cluster state listeners - Features/Ingest - Fix handling of final pipelines when destination is changed - Fix wrong pipeline name in debug log - Fix wrong result when executing bulk requests with and without pipeline - Update regex file for es user agent node processor - IdentityProvider - Only call listener once (SP template registration) - Machine Learning - Always write prediction_probability and prediction_score for classification inference - Get data frame analytics stats API can return multiple responses if more than one error - Ensure .ml-config index is updated before clearing anomaly job’s finished_time - Ensure annotations index mappings are up to date - Handle node closed exception in ML result processing - Recover data frame extraction search from latest sort key - SQL - Fix NPE on ambiguous GROUP BY - Fix SYS COLUMNS schema in ODBC mode - Search - Disable sort optimization on search collapsing - Search fix: query_string regex searches not working on wildcard fields - Snapshot/Restore - Cleanly Handle S3 SDK Exceptions in Request Counting - Fix Concurrent Snapshot Create+Delete + Delete Index * Upgrades: - Infra/Core - Upgrade to Lucene 8.6.2 PR: 249106 Submitted by: Juraj Lutter Modified: head/textproc/elasticsearch7/Makefile (contents, props changed) head/textproc/elasticsearch7/distinfo (contents, props changed) Modified: head/textproc/elasticsearch7/Makefile ============================================================================== --- head/textproc/elasticsearch7/Makefile Thu Sep 10 12:02:33 2020 (r548200) +++ head/textproc/elasticsearch7/Makefile Thu Sep 10 12:34:42 2020 (r548201) @@ -2,7 +2,7 @@ # $FreeBSD$ PORTNAME= elasticsearch -PORTVERSION= 7.8.1 +PORTVERSION= 7.9.1 CATEGORIES= textproc java devel MASTER_SITES= https://artifacts.elastic.co/downloads/${PORTNAME}/ PKGNAMESUFFIX= 7 Modified: head/textproc/elasticsearch7/distinfo ============================================================================== --- head/textproc/elasticsearch7/distinfo Thu Sep 10 12:02:33 2020 (r548200) +++ head/textproc/elasticsearch7/distinfo Thu Sep 10 12:34:42 2020 (r548201) @@ -1,3 +1,3 @@ -TIMESTAMP = 1595924828 -SHA256 (elasticsearch-7.8.1-no-jdk-linux-x86_64.tar.gz) = 925b241e2f49842fb54e9615e18e75e7cf6b30ea3819321f107ef5627b9c4726 -SIZE (elasticsearch-7.8.1-no-jdk-linux-x86_64.tar.gz) = 161598020 +TIMESTAMP = 1599151423 +SHA256 (elasticsearch-7.9.1-no-jdk-linux-x86_64.tar.gz) = c4038e288e2d605488cd6988582389c631f4186cce3d136c6546117560b94184 +SIZE (elasticsearch-7.9.1-no-jdk-linux-x86_64.tar.gz) = 162821211