pkgsrc/devel/zookeeper/PLIST

102 lines
5.1 KiB
Text
Raw Normal View History

devel/zookeeper: Update to 3.4.12. Version 3.4.12 Bug - CRC check failed when preAllocSize smaller than node data - Update documentation source for ZOOKEEPER-2574 - Flaky test: org.apache.zookeeper.server.quorum.FLEBackwardElectionRoundTest.testBackwardElectionRound - Data inconsistency issue due to retain database in leader election - very poor choice of logging if client fails to connect to server - The comment of the variable matchSyncs in class CommitProcessor has a mistake. - Flaky Test: org.apache.zookeeper.test.LoadFromLogTest.testRestoreWithTransactionErrors - WriteLock recipe: incorrect znode ordering when the sessionId is part of the znode name - Duplicate Keys in log4j.properties config files - Specify correct overflow value - Failing c unit tests on apache jenkins - zkServer.cmd does not start when JAVA_HOME ends with a \ - Flaky Test: testNoLogBeforeLeaderEstablishment - The dataDir and dataLogDir are used opposingly - Fix testElectionFraud Flakyness - fix potential null pointer exception when deleting node - The eclipse build target fails due to protocol redirection: http->https Improvement - Add keys for the Zxid from the stat command to check_zookeeper.py - Upgrade third party libraries to address vulnerabilities - The function queueEmpty() in FastLeaderElection.Messenger is not used, should be removed. - Add check to validate dataDir and dataLogDir parameters at startup Wish - Change log level for "ZKShutdownHandler is not registered" error message Version 3.4.11 Sub-task - Fix "Unexpected bean exists!" issue in WatcherTests - Cleanup findbug warnings in branch-3.4: Correctness Warnings - Cleanup findbug warnings in branch-3.4: Disable Internationalization Warnings - Cleanup findbug warnings in branch-3.4: Malicious code vulnerability Warnings - Cleanup findbug warnings in branch-3.4: Performance Warnings - Cleanup findbug warnings in branch-3.4: Dodgy code Warnings - Cleanup findbug warnings in branch-3.4: Experimental Warnings - Set up Apache Jenkins job that runs the flaky test analyzer script. - Multithreaded correctness Warnings - ZOOKEEPER-2355 fix for branch-3.4 Bug - Windows: fetch_and_add not 64bit-compatible, may not be correct - Update documentation for snapCount - Ephemeral node is never deleted if follower fails while reading the proposal packet - Port ZOOKEEPER-1576 to branch3.4 - recreateSocketAddresses may recreate the unreachable IP address - Flaky Test: org.apache.zookeeper.test.ReadOnlyModeTest.testSessionEstablishment - Clean up findbug warnings in branch-3.4 - Port ZOOKEEPER-2737 to branch-3.4 - Netty connection leaks JMX connection bean upon connection close in certain race conditions. - Typo: transasction --> transaction - Flaky test: org.apache.zookeeper.server.quorum.QuorumCnxManagerTest.testNoAuthLearnerConnectToAuthRequiredServerWithHigherSid - Ephemeral znode will not be removed when sesstion timeout, if the system time of ZooKeeper node changes unexpectedly. - ZK Client not able to connect with Xid out of order error - There is a typo in zk.py which prevents from using/compiling it. - follower disconnects and cannot reconnect - Server inappropriately throttles connections under load before SASL completes - Flaky test: org.apache.zookeeper.test.ClientTest.testNonExistingOpCode - Fix flaky test: org.apache.zookeeper.test.ReadOnlyModeTest.testConnectionEvents - Unnecessary stack-trace in server when the client disconnect unexpectedly - PurgeTxnLog#validateAndGetFile: return tag has no arguments. - Improve the ZooKeeper#setACL java doc - ZooKeeper public include files leak porting changes - CMake build doesn't support OS X - Main-Class JAR manifest attribute is incorrect - Windows Debug builds don't link with `/MTd` - Local automatic variable is left uninitialized and then freed. - Don't include `config.h` in `zookeeper.h` - The OWASP dependency check jar should not be included in the default classpath - quorum.auth.MiniKdcTest.testKerberosLogin failing with NPE on java 9 - Create ant task to generate ivy dependency reports - compiler warning using java 9 Improvement - Operations to server will be timed-out while thousands of sessions expired same time - TCP keepalive for leader election connections - The define of MAX_CONNECTION_ATTEMPTS in QuorumCnxManager.java seems useless, should it be removed? - ZooKeeperSaslClient#respondToServer should log exception message of SaslException - Add script to run a java api compatibility tool - Improve the efficiency of AtomicFileOutputStream - Rename README.txt to README.md - define dependency versions in build.xml to be easily overridden in build.properties New Feature - Please add instructions for running the tutorial - Add ant task for running OWASP dependency report Test - Flaky Test: org.apache.zookeeper.test.WatcherTest.
2018-06-14 13:48:35 +02:00
@comment $NetBSD: PLIST,v 1.4 2018/06/14 11:48:35 fhajny Exp $
bin/zkCli.sh
libexec/zkEnv.sh
sbin/zkServer.sh
share/examples/zookeeper/configuration.xsl
share/examples/zookeeper/log4j.properties
share/examples/zookeeper/zoo.cfg
share/examples/zookeeper/zookeeper-env.sh
devel/zookeeper: Update to 3.4.12. Version 3.4.12 Bug - CRC check failed when preAllocSize smaller than node data - Update documentation source for ZOOKEEPER-2574 - Flaky test: org.apache.zookeeper.server.quorum.FLEBackwardElectionRoundTest.testBackwardElectionRound - Data inconsistency issue due to retain database in leader election - very poor choice of logging if client fails to connect to server - The comment of the variable matchSyncs in class CommitProcessor has a mistake. - Flaky Test: org.apache.zookeeper.test.LoadFromLogTest.testRestoreWithTransactionErrors - WriteLock recipe: incorrect znode ordering when the sessionId is part of the znode name - Duplicate Keys in log4j.properties config files - Specify correct overflow value - Failing c unit tests on apache jenkins - zkServer.cmd does not start when JAVA_HOME ends with a \ - Flaky Test: testNoLogBeforeLeaderEstablishment - The dataDir and dataLogDir are used opposingly - Fix testElectionFraud Flakyness - fix potential null pointer exception when deleting node - The eclipse build target fails due to protocol redirection: http->https Improvement - Add keys for the Zxid from the stat command to check_zookeeper.py - Upgrade third party libraries to address vulnerabilities - The function queueEmpty() in FastLeaderElection.Messenger is not used, should be removed. - Add check to validate dataDir and dataLogDir parameters at startup Wish - Change log level for "ZKShutdownHandler is not registered" error message Version 3.4.11 Sub-task - Fix "Unexpected bean exists!" issue in WatcherTests - Cleanup findbug warnings in branch-3.4: Correctness Warnings - Cleanup findbug warnings in branch-3.4: Disable Internationalization Warnings - Cleanup findbug warnings in branch-3.4: Malicious code vulnerability Warnings - Cleanup findbug warnings in branch-3.4: Performance Warnings - Cleanup findbug warnings in branch-3.4: Dodgy code Warnings - Cleanup findbug warnings in branch-3.4: Experimental Warnings - Set up Apache Jenkins job that runs the flaky test analyzer script. - Multithreaded correctness Warnings - ZOOKEEPER-2355 fix for branch-3.4 Bug - Windows: fetch_and_add not 64bit-compatible, may not be correct - Update documentation for snapCount - Ephemeral node is never deleted if follower fails while reading the proposal packet - Port ZOOKEEPER-1576 to branch3.4 - recreateSocketAddresses may recreate the unreachable IP address - Flaky Test: org.apache.zookeeper.test.ReadOnlyModeTest.testSessionEstablishment - Clean up findbug warnings in branch-3.4 - Port ZOOKEEPER-2737 to branch-3.4 - Netty connection leaks JMX connection bean upon connection close in certain race conditions. - Typo: transasction --> transaction - Flaky test: org.apache.zookeeper.server.quorum.QuorumCnxManagerTest.testNoAuthLearnerConnectToAuthRequiredServerWithHigherSid - Ephemeral znode will not be removed when sesstion timeout, if the system time of ZooKeeper node changes unexpectedly. - ZK Client not able to connect with Xid out of order error - There is a typo in zk.py which prevents from using/compiling it. - follower disconnects and cannot reconnect - Server inappropriately throttles connections under load before SASL completes - Flaky test: org.apache.zookeeper.test.ClientTest.testNonExistingOpCode - Fix flaky test: org.apache.zookeeper.test.ReadOnlyModeTest.testConnectionEvents - Unnecessary stack-trace in server when the client disconnect unexpectedly - PurgeTxnLog#validateAndGetFile: return tag has no arguments. - Improve the ZooKeeper#setACL java doc - ZooKeeper public include files leak porting changes - CMake build doesn't support OS X - Main-Class JAR manifest attribute is incorrect - Windows Debug builds don't link with `/MTd` - Local automatic variable is left uninitialized and then freed. - Don't include `config.h` in `zookeeper.h` - The OWASP dependency check jar should not be included in the default classpath - quorum.auth.MiniKdcTest.testKerberosLogin failing with NPE on java 9 - Create ant task to generate ivy dependency reports - compiler warning using java 9 Improvement - Operations to server will be timed-out while thousands of sessions expired same time - TCP keepalive for leader election connections - The define of MAX_CONNECTION_ATTEMPTS in QuorumCnxManager.java seems useless, should it be removed? - ZooKeeperSaslClient#respondToServer should log exception message of SaslException - Add script to run a java api compatibility tool - Improve the efficiency of AtomicFileOutputStream - Rename README.txt to README.md - define dependency versions in build.xml to be easily overridden in build.properties New Feature - Please add instructions for running the tutorial - Add ant task for running OWASP dependency report Test - Flaky Test: org.apache.zookeeper.test.WatcherTest.
2018-06-14 13:48:35 +02:00
share/zookeeper/audience-annotations-0.5.0.jar
share/zookeeper/cobertura/README.txt
Update zookeeper to 3.4.8. Changes in 3.4.8 Bug - std::length_error on update children - PurgeTxnLog does not correctly purge when snapshots and logs are at different locations - Several four-letter words are undocumented. - ZK Server startup fails if there are spaces in the JAVA_HOME path - TGT refresh time logic is wrong - assert in setup_random - JMX is disabled even if JMXDISABLE is false - Deadlock shutting down zookeeper - Update commons collections version used by tests/releaseaudit Changes in 3.4.7 Sub-task - ClientBase#createClient is failing frequently - Server not coming back up in QuorumZxidSyncTest - QuorumPeer is not shutdown in few cases - WatcherTest#testWatchAutoResetWithPending is failing - ZKClients are hitting KeeperException$ConnectionLossException due to wrong usage pattern - testTruncationNullLog fails on windows - Port async multi to 3.4 branch Bug - log all exceptions not caught by ZK threads - large numbers of watches can cause session re-establishment to fail - The Barrier sample code should create a EPHEMERAL znode instead of EPHEMERAL_SEQUENTIAL znode - C client bug in zookeeper_init (if bad hostname is given) - Net-ZooKeeper: Net::ZooKeeper consumes 100% cpu on wait - C client lib doesn't build on Solaris - getACL should only call DataTree.copyStat when passed in stat is not null - adding .gitattributes to prevent CRLF and LF mismatches for source and text files - PurgeTxnLog may delete data logs during roll - Add description for pzxid in programmer's guide. - fix windows build - zkCli.sh can't issue a CREATE command containing spaces in the data - Inconsistent behavior in autocreation of dataDir and dataLogDir - ZkCli.cmd commands fail with "'java' is not recognized as an internal or external command" - update all notice files, copyright, etc... with the new year - 2014 - ZK Shell/Cli not processing commands - NullPointerException in truncate - JDK8] Sort children for comparison in AsyncOps tests - zkpython: invalid data in GetData for empty node - REST contrib module does not include all required files when packaged - Invalid manifest files due to bogus revision property value - Apache Zookeeper logs cleartext admin passwords - Unit tests should only use build/test/data for data - zkServer.sh fails to read dataDir (and others) from zoo.cfg on Solaris 10 (grep issue, manifests as FAILED TO WRITE PID). - ReconfigRecoveryTest.testNextConfigUnreachable is failing - quot;src/contrib/zooinspector/NOTICE.txt" isn't complying to ".gitattributes" in branch-3.4 - deb - zkCli.sh, zkServer.sh and zkEnv.sh regression caused by ZOOKEEPER-1663 - recipes jar not included in the distribution package - Startup order in ServerCnxnFactory-ies is wrong - zookeeper follower fails to start after a restart immediately following a new epoch - Jute compareBytes incorrect comparison index - Yosemite build failure: htonll conflict - Unable to delete a node when the node has no children - Zookeeper 3.4.x and 3.5.0-alpha is not OSGi compliant - Trace bug in NettyServerCnxnFactory - Prevent resource leak in various classes - Memory leak on zookeeper_close - C client builds with incorrect error codes in VisualStudio 2010+ - jute generated allocate_* functions are not externally visible - Allow Zookeeper version string to have underscore '_' - JMX ObjectName is incorrect for observers - BinaryInputArchive readString should check length before allocating memory - JUnit4ZKTestRunner logs test failure for all exceptions even if the test method is annotated with an expected exception. - QuorumCnxManager#receiveConnection may crash with random input - Network issues can cause cluster to hang due to near-deadlock - PurgeTxnLog does not correctly purge when snapshots and logs are at different locations - Empty path in Set crashes server and prevents restart - Four letter command hangs when network is slow - stmk four-letter word fails execution at server while reading trace mask argument. - License update - JMX State from LocalPeerBean incorrect - SimpleSysTest test cases fails - Zookeeper is not using specified JMX port in zkEnv.sh - Zookeeper doc creation fails on windows - QuorumPeer loadDataBase() error message is incorrect - compilation broken for 3.4 Improvement - Cut down the running time of ZKDatabase corruption. - Upload Zookeeper package to Maven Central - Re-try DNS hostname -> IP resolution if node connection fails - mismatched CR/LF endings in text files - AsyncCallback.*Callback don't have any Javadoc - Improve Thread handling - Enable JMX remote monitoring - Server to log underlying cause of SASL connection problems - Improve exit log messsage of EventThread and SendThread by adding SessionId - Typo in Watcher.java - Let DataNode.getChildren() return an unmodifiable view of its children set - Log type of unexpected quorum packet in learner handler loop - Make the three-node minimum more explicit in documentation and on website - Change client connect zk service timeout log level from Info to Warn level
2016-03-04 14:40:34 +01:00
share/zookeeper/contrib/ZooInspector/${PKGNAME}-ZooInspector.jar
share/zookeeper/contrib/fatjar/${PKGNAME}-fatjar.jar
share/zookeeper/contrib/loggraph/${PKGNAME}-loggraph.jar
share/zookeeper/contrib/rest/conf/keys/README
share/zookeeper/contrib/rest/conf/keys/rest.cer
share/zookeeper/contrib/rest/conf/keys/rest.jks
share/zookeeper/contrib/rest/conf/log4j.properties
share/zookeeper/contrib/rest/conf/rest.properties
share/zookeeper/contrib/rest/lib/activation-1.1.jar
share/zookeeper/contrib/rest/lib/asm-3.1.jar
share/zookeeper/contrib/rest/lib/grizzly-framework-1.9.8.jar
share/zookeeper/contrib/rest/lib/grizzly-http-1.9.8.jar
share/zookeeper/contrib/rest/lib/grizzly-http-servlet-1.9.8.jar
share/zookeeper/contrib/rest/lib/grizzly-portunif-1.9.8.jar
share/zookeeper/contrib/rest/lib/grizzly-rcm-1.9.8.jar
share/zookeeper/contrib/rest/lib/grizzly-servlet-webserver-1.9.8.jar
share/zookeeper/contrib/rest/lib/grizzly-utils-1.9.8.jar
share/zookeeper/contrib/rest/lib/jackson-core-asl-1.1.1.jar
share/zookeeper/contrib/rest/lib/jaxb-api-2.1.jar
share/zookeeper/contrib/rest/lib/jaxb-impl-2.1.12.jar
share/zookeeper/contrib/rest/lib/jersey-core-1.1.5.1.jar
share/zookeeper/contrib/rest/lib/jersey-json-1.1.5.1.jar
share/zookeeper/contrib/rest/lib/jersey-server-1.1.5.1.jar
share/zookeeper/contrib/rest/lib/jettison-1.1.jar
share/zookeeper/contrib/rest/lib/jsr311-api-1.1.1.jar
share/zookeeper/contrib/rest/lib/log4j-1.2.15.jar
share/zookeeper/contrib/rest/lib/servlet-api-2.5.jar
share/zookeeper/contrib/rest/lib/slf4j-api-1.6.1.jar
share/zookeeper/contrib/rest/lib/slf4j-log4j12-1.6.1.jar
share/zookeeper/contrib/rest/lib/stax-api-1.0-2.jar
share/zookeeper/contrib/rest/lib/stax-api-1.0.1.jar
share/zookeeper/contrib/rest/${PKGNAME}-rest.jar
share/zookeeper/jdiff/zookeeper_3.1.1.xml
share/zookeeper/jdiff/zookeeper_${PKGVERSION}.xml
share/zookeeper/jline-0.9.94.LICENSE.txt
share/zookeeper/jline-0.9.94.jar
devel/zookeeper: Update to 3.4.12. Version 3.4.12 Bug - CRC check failed when preAllocSize smaller than node data - Update documentation source for ZOOKEEPER-2574 - Flaky test: org.apache.zookeeper.server.quorum.FLEBackwardElectionRoundTest.testBackwardElectionRound - Data inconsistency issue due to retain database in leader election - very poor choice of logging if client fails to connect to server - The comment of the variable matchSyncs in class CommitProcessor has a mistake. - Flaky Test: org.apache.zookeeper.test.LoadFromLogTest.testRestoreWithTransactionErrors - WriteLock recipe: incorrect znode ordering when the sessionId is part of the znode name - Duplicate Keys in log4j.properties config files - Specify correct overflow value - Failing c unit tests on apache jenkins - zkServer.cmd does not start when JAVA_HOME ends with a \ - Flaky Test: testNoLogBeforeLeaderEstablishment - The dataDir and dataLogDir are used opposingly - Fix testElectionFraud Flakyness - fix potential null pointer exception when deleting node - The eclipse build target fails due to protocol redirection: http->https Improvement - Add keys for the Zxid from the stat command to check_zookeeper.py - Upgrade third party libraries to address vulnerabilities - The function queueEmpty() in FastLeaderElection.Messenger is not used, should be removed. - Add check to validate dataDir and dataLogDir parameters at startup Wish - Change log level for "ZKShutdownHandler is not registered" error message Version 3.4.11 Sub-task - Fix "Unexpected bean exists!" issue in WatcherTests - Cleanup findbug warnings in branch-3.4: Correctness Warnings - Cleanup findbug warnings in branch-3.4: Disable Internationalization Warnings - Cleanup findbug warnings in branch-3.4: Malicious code vulnerability Warnings - Cleanup findbug warnings in branch-3.4: Performance Warnings - Cleanup findbug warnings in branch-3.4: Dodgy code Warnings - Cleanup findbug warnings in branch-3.4: Experimental Warnings - Set up Apache Jenkins job that runs the flaky test analyzer script. - Multithreaded correctness Warnings - ZOOKEEPER-2355 fix for branch-3.4 Bug - Windows: fetch_and_add not 64bit-compatible, may not be correct - Update documentation for snapCount - Ephemeral node is never deleted if follower fails while reading the proposal packet - Port ZOOKEEPER-1576 to branch3.4 - recreateSocketAddresses may recreate the unreachable IP address - Flaky Test: org.apache.zookeeper.test.ReadOnlyModeTest.testSessionEstablishment - Clean up findbug warnings in branch-3.4 - Port ZOOKEEPER-2737 to branch-3.4 - Netty connection leaks JMX connection bean upon connection close in certain race conditions. - Typo: transasction --> transaction - Flaky test: org.apache.zookeeper.server.quorum.QuorumCnxManagerTest.testNoAuthLearnerConnectToAuthRequiredServerWithHigherSid - Ephemeral znode will not be removed when sesstion timeout, if the system time of ZooKeeper node changes unexpectedly. - ZK Client not able to connect with Xid out of order error - There is a typo in zk.py which prevents from using/compiling it. - follower disconnects and cannot reconnect - Server inappropriately throttles connections under load before SASL completes - Flaky test: org.apache.zookeeper.test.ClientTest.testNonExistingOpCode - Fix flaky test: org.apache.zookeeper.test.ReadOnlyModeTest.testConnectionEvents - Unnecessary stack-trace in server when the client disconnect unexpectedly - PurgeTxnLog#validateAndGetFile: return tag has no arguments. - Improve the ZooKeeper#setACL java doc - ZooKeeper public include files leak porting changes - CMake build doesn't support OS X - Main-Class JAR manifest attribute is incorrect - Windows Debug builds don't link with `/MTd` - Local automatic variable is left uninitialized and then freed. - Don't include `config.h` in `zookeeper.h` - The OWASP dependency check jar should not be included in the default classpath - quorum.auth.MiniKdcTest.testKerberosLogin failing with NPE on java 9 - Create ant task to generate ivy dependency reports - compiler warning using java 9 Improvement - Operations to server will be timed-out while thousands of sessions expired same time - TCP keepalive for leader election connections - The define of MAX_CONNECTION_ATTEMPTS in QuorumCnxManager.java seems useless, should it be removed? - ZooKeeperSaslClient#respondToServer should log exception message of SaslException - Add script to run a java api compatibility tool - Improve the efficiency of AtomicFileOutputStream - Rename README.txt to README.md - define dependency versions in build.xml to be easily overridden in build.properties New Feature - Please add instructions for running the tutorial - Add ant task for running OWASP dependency report Test - Flaky Test: org.apache.zookeeper.test.WatcherTest.
2018-06-14 13:48:35 +02:00
share/zookeeper/log4j-1.2.17.LICENSE.txt
share/zookeeper/log4j-1.2.17.jar
share/zookeeper/netty-3.10.6.Final.jar
Update zookeeper to 3.4.8. Changes in 3.4.8 Bug - std::length_error on update children - PurgeTxnLog does not correctly purge when snapshots and logs are at different locations - Several four-letter words are undocumented. - ZK Server startup fails if there are spaces in the JAVA_HOME path - TGT refresh time logic is wrong - assert in setup_random - JMX is disabled even if JMXDISABLE is false - Deadlock shutting down zookeeper - Update commons collections version used by tests/releaseaudit Changes in 3.4.7 Sub-task - ClientBase#createClient is failing frequently - Server not coming back up in QuorumZxidSyncTest - QuorumPeer is not shutdown in few cases - WatcherTest#testWatchAutoResetWithPending is failing - ZKClients are hitting KeeperException$ConnectionLossException due to wrong usage pattern - testTruncationNullLog fails on windows - Port async multi to 3.4 branch Bug - log all exceptions not caught by ZK threads - large numbers of watches can cause session re-establishment to fail - The Barrier sample code should create a EPHEMERAL znode instead of EPHEMERAL_SEQUENTIAL znode - C client bug in zookeeper_init (if bad hostname is given) - Net-ZooKeeper: Net::ZooKeeper consumes 100% cpu on wait - C client lib doesn't build on Solaris - getACL should only call DataTree.copyStat when passed in stat is not null - adding .gitattributes to prevent CRLF and LF mismatches for source and text files - PurgeTxnLog may delete data logs during roll - Add description for pzxid in programmer's guide. - fix windows build - zkCli.sh can't issue a CREATE command containing spaces in the data - Inconsistent behavior in autocreation of dataDir and dataLogDir - ZkCli.cmd commands fail with "'java' is not recognized as an internal or external command" - update all notice files, copyright, etc... with the new year - 2014 - ZK Shell/Cli not processing commands - NullPointerException in truncate - JDK8] Sort children for comparison in AsyncOps tests - zkpython: invalid data in GetData for empty node - REST contrib module does not include all required files when packaged - Invalid manifest files due to bogus revision property value - Apache Zookeeper logs cleartext admin passwords - Unit tests should only use build/test/data for data - zkServer.sh fails to read dataDir (and others) from zoo.cfg on Solaris 10 (grep issue, manifests as FAILED TO WRITE PID). - ReconfigRecoveryTest.testNextConfigUnreachable is failing - quot;src/contrib/zooinspector/NOTICE.txt" isn't complying to ".gitattributes" in branch-3.4 - deb - zkCli.sh, zkServer.sh and zkEnv.sh regression caused by ZOOKEEPER-1663 - recipes jar not included in the distribution package - Startup order in ServerCnxnFactory-ies is wrong - zookeeper follower fails to start after a restart immediately following a new epoch - Jute compareBytes incorrect comparison index - Yosemite build failure: htonll conflict - Unable to delete a node when the node has no children - Zookeeper 3.4.x and 3.5.0-alpha is not OSGi compliant - Trace bug in NettyServerCnxnFactory - Prevent resource leak in various classes - Memory leak on zookeeper_close - C client builds with incorrect error codes in VisualStudio 2010+ - jute generated allocate_* functions are not externally visible - Allow Zookeeper version string to have underscore '_' - JMX ObjectName is incorrect for observers - BinaryInputArchive readString should check length before allocating memory - JUnit4ZKTestRunner logs test failure for all exceptions even if the test method is annotated with an expected exception. - QuorumCnxManager#receiveConnection may crash with random input - Network issues can cause cluster to hang due to near-deadlock - PurgeTxnLog does not correctly purge when snapshots and logs are at different locations - Empty path in Set crashes server and prevents restart - Four letter command hangs when network is slow - stmk four-letter word fails execution at server while reading trace mask argument. - License update - JMX State from LocalPeerBean incorrect - SimpleSysTest test cases fails - Zookeeper is not using specified JMX port in zkEnv.sh - Zookeeper doc creation fails on windows - QuorumPeer loadDataBase() error message is incorrect - compilation broken for 3.4 Improvement - Cut down the running time of ZKDatabase corruption. - Upload Zookeeper package to Maven Central - Re-try DNS hostname -> IP resolution if node connection fails - mismatched CR/LF endings in text files - AsyncCallback.*Callback don't have any Javadoc - Improve Thread handling - Enable JMX remote monitoring - Server to log underlying cause of SASL connection problems - Improve exit log messsage of EventThread and SendThread by adding SessionId - Typo in Watcher.java - Let DataNode.getChildren() return an unmodifiable view of its children set - Log type of unexpected quorum packet in learner handler loop - Make the three-node minimum more explicit in documentation and on website - Change client connect zk service timeout log level from Info to Warn level
2016-03-04 14:40:34 +01:00
share/zookeeper/recipes/election/${PKGNAME}-recipes-election.jar
share/zookeeper/recipes/lock/build.xml
share/zookeeper/recipes/lock/src/c/INSTALL
share/zookeeper/recipes/lock/src/c/LICENSE
share/zookeeper/recipes/lock/src/c/Makefile.am
share/zookeeper/recipes/lock/src/c/README.txt
share/zookeeper/recipes/lock/src/c/acinclude.m4
share/zookeeper/recipes/lock/src/c/aminclude.am
share/zookeeper/recipes/lock/src/c/c-doc.Doxyfile
share/zookeeper/recipes/lock/src/c/configure.ac
share/zookeeper/recipes/lock/src/c/include/zoo_lock.h
share/zookeeper/recipes/lock/src/c/src/zoo_lock.c
share/zookeeper/recipes/lock/src/c/tests/TestClient.cc
share/zookeeper/recipes/lock/src/c/tests/TestDriver.cc
share/zookeeper/recipes/lock/src/c/tests/Util.cc
share/zookeeper/recipes/lock/src/c/tests/Util.h
share/zookeeper/recipes/lock/src/c/tests/zkServer.sh
share/zookeeper/recipes/lock/src/java/org/apache/zookeeper/recipes/lock/LockListener.java
share/zookeeper/recipes/lock/src/java/org/apache/zookeeper/recipes/lock/ProtocolSupport.java
share/zookeeper/recipes/lock/src/java/org/apache/zookeeper/recipes/lock/WriteLock.java
share/zookeeper/recipes/lock/src/java/org/apache/zookeeper/recipes/lock/ZNodeName.java
share/zookeeper/recipes/lock/src/java/org/apache/zookeeper/recipes/lock/ZooKeeperOperation.java
share/zookeeper/recipes/lock/test/org/apache/zookeeper/recipes/lock/WriteLockTest.java
share/zookeeper/recipes/lock/test/org/apache/zookeeper/recipes/lock/ZNodeNameTest.java
Update zookeeper to 3.4.8. Changes in 3.4.8 Bug - std::length_error on update children - PurgeTxnLog does not correctly purge when snapshots and logs are at different locations - Several four-letter words are undocumented. - ZK Server startup fails if there are spaces in the JAVA_HOME path - TGT refresh time logic is wrong - assert in setup_random - JMX is disabled even if JMXDISABLE is false - Deadlock shutting down zookeeper - Update commons collections version used by tests/releaseaudit Changes in 3.4.7 Sub-task - ClientBase#createClient is failing frequently - Server not coming back up in QuorumZxidSyncTest - QuorumPeer is not shutdown in few cases - WatcherTest#testWatchAutoResetWithPending is failing - ZKClients are hitting KeeperException$ConnectionLossException due to wrong usage pattern - testTruncationNullLog fails on windows - Port async multi to 3.4 branch Bug - log all exceptions not caught by ZK threads - large numbers of watches can cause session re-establishment to fail - The Barrier sample code should create a EPHEMERAL znode instead of EPHEMERAL_SEQUENTIAL znode - C client bug in zookeeper_init (if bad hostname is given) - Net-ZooKeeper: Net::ZooKeeper consumes 100% cpu on wait - C client lib doesn't build on Solaris - getACL should only call DataTree.copyStat when passed in stat is not null - adding .gitattributes to prevent CRLF and LF mismatches for source and text files - PurgeTxnLog may delete data logs during roll - Add description for pzxid in programmer's guide. - fix windows build - zkCli.sh can't issue a CREATE command containing spaces in the data - Inconsistent behavior in autocreation of dataDir and dataLogDir - ZkCli.cmd commands fail with "'java' is not recognized as an internal or external command" - update all notice files, copyright, etc... with the new year - 2014 - ZK Shell/Cli not processing commands - NullPointerException in truncate - JDK8] Sort children for comparison in AsyncOps tests - zkpython: invalid data in GetData for empty node - REST contrib module does not include all required files when packaged - Invalid manifest files due to bogus revision property value - Apache Zookeeper logs cleartext admin passwords - Unit tests should only use build/test/data for data - zkServer.sh fails to read dataDir (and others) from zoo.cfg on Solaris 10 (grep issue, manifests as FAILED TO WRITE PID). - ReconfigRecoveryTest.testNextConfigUnreachable is failing - quot;src/contrib/zooinspector/NOTICE.txt" isn't complying to ".gitattributes" in branch-3.4 - deb - zkCli.sh, zkServer.sh and zkEnv.sh regression caused by ZOOKEEPER-1663 - recipes jar not included in the distribution package - Startup order in ServerCnxnFactory-ies is wrong - zookeeper follower fails to start after a restart immediately following a new epoch - Jute compareBytes incorrect comparison index - Yosemite build failure: htonll conflict - Unable to delete a node when the node has no children - Zookeeper 3.4.x and 3.5.0-alpha is not OSGi compliant - Trace bug in NettyServerCnxnFactory - Prevent resource leak in various classes - Memory leak on zookeeper_close - C client builds with incorrect error codes in VisualStudio 2010+ - jute generated allocate_* functions are not externally visible - Allow Zookeeper version string to have underscore '_' - JMX ObjectName is incorrect for observers - BinaryInputArchive readString should check length before allocating memory - JUnit4ZKTestRunner logs test failure for all exceptions even if the test method is annotated with an expected exception. - QuorumCnxManager#receiveConnection may crash with random input - Network issues can cause cluster to hang due to near-deadlock - PurgeTxnLog does not correctly purge when snapshots and logs are at different locations - Empty path in Set crashes server and prevents restart - Four letter command hangs when network is slow - stmk four-letter word fails execution at server while reading trace mask argument. - License update - JMX State from LocalPeerBean incorrect - SimpleSysTest test cases fails - Zookeeper is not using specified JMX port in zkEnv.sh - Zookeeper doc creation fails on windows - QuorumPeer loadDataBase() error message is incorrect - compilation broken for 3.4 Improvement - Cut down the running time of ZKDatabase corruption. - Upload Zookeeper package to Maven Central - Re-try DNS hostname -> IP resolution if node connection fails - mismatched CR/LF endings in text files - AsyncCallback.*Callback don't have any Javadoc - Improve Thread handling - Enable JMX remote monitoring - Server to log underlying cause of SASL connection problems - Improve exit log messsage of EventThread and SendThread by adding SessionId - Typo in Watcher.java - Let DataNode.getChildren() return an unmodifiable view of its children set - Log type of unexpected quorum packet in learner handler loop - Make the three-node minimum more explicit in documentation and on website - Change client connect zk service timeout log level from Info to Warn level
2016-03-04 14:40:34 +01:00
share/zookeeper/recipes/lock/${PKGNAME}-recipes-lock.jar
share/zookeeper/recipes/queue/build.xml
share/zookeeper/recipes/queue/src/c/INSTALL
share/zookeeper/recipes/queue/src/c/LICENSE
share/zookeeper/recipes/queue/src/c/Makefile.am
share/zookeeper/recipes/queue/src/c/README.txt
share/zookeeper/recipes/queue/src/c/acinclude.m4
share/zookeeper/recipes/queue/src/c/aminclude.am
share/zookeeper/recipes/queue/src/c/c-doc.Doxyfile
share/zookeeper/recipes/queue/src/c/configure.ac
share/zookeeper/recipes/queue/src/c/include/zoo_queue.h
share/zookeeper/recipes/queue/src/c/src/zoo_queue.c
share/zookeeper/recipes/queue/src/c/tests/TestClient.cc
share/zookeeper/recipes/queue/src/c/tests/TestDriver.cc
share/zookeeper/recipes/queue/src/c/tests/Util.cc
share/zookeeper/recipes/queue/src/c/tests/Util.h
share/zookeeper/recipes/queue/src/c/tests/zkServer.sh
share/zookeeper/recipes/queue/src/java/org/apache/zookeeper/recipes/queue/DistributedQueue.java
share/zookeeper/recipes/queue/test/org/apache/zookeeper/recipes/queue/DistributedQueueTest.java
Update zookeeper to 3.4.8. Changes in 3.4.8 Bug - std::length_error on update children - PurgeTxnLog does not correctly purge when snapshots and logs are at different locations - Several four-letter words are undocumented. - ZK Server startup fails if there are spaces in the JAVA_HOME path - TGT refresh time logic is wrong - assert in setup_random - JMX is disabled even if JMXDISABLE is false - Deadlock shutting down zookeeper - Update commons collections version used by tests/releaseaudit Changes in 3.4.7 Sub-task - ClientBase#createClient is failing frequently - Server not coming back up in QuorumZxidSyncTest - QuorumPeer is not shutdown in few cases - WatcherTest#testWatchAutoResetWithPending is failing - ZKClients are hitting KeeperException$ConnectionLossException due to wrong usage pattern - testTruncationNullLog fails on windows - Port async multi to 3.4 branch Bug - log all exceptions not caught by ZK threads - large numbers of watches can cause session re-establishment to fail - The Barrier sample code should create a EPHEMERAL znode instead of EPHEMERAL_SEQUENTIAL znode - C client bug in zookeeper_init (if bad hostname is given) - Net-ZooKeeper: Net::ZooKeeper consumes 100% cpu on wait - C client lib doesn't build on Solaris - getACL should only call DataTree.copyStat when passed in stat is not null - adding .gitattributes to prevent CRLF and LF mismatches for source and text files - PurgeTxnLog may delete data logs during roll - Add description for pzxid in programmer's guide. - fix windows build - zkCli.sh can't issue a CREATE command containing spaces in the data - Inconsistent behavior in autocreation of dataDir and dataLogDir - ZkCli.cmd commands fail with "'java' is not recognized as an internal or external command" - update all notice files, copyright, etc... with the new year - 2014 - ZK Shell/Cli not processing commands - NullPointerException in truncate - JDK8] Sort children for comparison in AsyncOps tests - zkpython: invalid data in GetData for empty node - REST contrib module does not include all required files when packaged - Invalid manifest files due to bogus revision property value - Apache Zookeeper logs cleartext admin passwords - Unit tests should only use build/test/data for data - zkServer.sh fails to read dataDir (and others) from zoo.cfg on Solaris 10 (grep issue, manifests as FAILED TO WRITE PID). - ReconfigRecoveryTest.testNextConfigUnreachable is failing - quot;src/contrib/zooinspector/NOTICE.txt" isn't complying to ".gitattributes" in branch-3.4 - deb - zkCli.sh, zkServer.sh and zkEnv.sh regression caused by ZOOKEEPER-1663 - recipes jar not included in the distribution package - Startup order in ServerCnxnFactory-ies is wrong - zookeeper follower fails to start after a restart immediately following a new epoch - Jute compareBytes incorrect comparison index - Yosemite build failure: htonll conflict - Unable to delete a node when the node has no children - Zookeeper 3.4.x and 3.5.0-alpha is not OSGi compliant - Trace bug in NettyServerCnxnFactory - Prevent resource leak in various classes - Memory leak on zookeeper_close - C client builds with incorrect error codes in VisualStudio 2010+ - jute generated allocate_* functions are not externally visible - Allow Zookeeper version string to have underscore '_' - JMX ObjectName is incorrect for observers - BinaryInputArchive readString should check length before allocating memory - JUnit4ZKTestRunner logs test failure for all exceptions even if the test method is annotated with an expected exception. - QuorumCnxManager#receiveConnection may crash with random input - Network issues can cause cluster to hang due to near-deadlock - PurgeTxnLog does not correctly purge when snapshots and logs are at different locations - Empty path in Set crashes server and prevents restart - Four letter command hangs when network is slow - stmk four-letter word fails execution at server while reading trace mask argument. - License update - JMX State from LocalPeerBean incorrect - SimpleSysTest test cases fails - Zookeeper is not using specified JMX port in zkEnv.sh - Zookeeper doc creation fails on windows - QuorumPeer loadDataBase() error message is incorrect - compilation broken for 3.4 Improvement - Cut down the running time of ZKDatabase corruption. - Upload Zookeeper package to Maven Central - Re-try DNS hostname -> IP resolution if node connection fails - mismatched CR/LF endings in text files - AsyncCallback.*Callback don't have any Javadoc - Improve Thread handling - Enable JMX remote monitoring - Server to log underlying cause of SASL connection problems - Improve exit log messsage of EventThread and SendThread by adding SessionId - Typo in Watcher.java - Let DataNode.getChildren() return an unmodifiable view of its children set - Log type of unexpected quorum packet in learner handler loop - Make the three-node minimum more explicit in documentation and on website - Change client connect zk service timeout log level from Info to Warn level
2016-03-04 14:40:34 +01:00
share/zookeeper/recipes/queue/${PKGNAME}-recipes-queue.jar
devel/zookeeper: Update to 3.4.12. Version 3.4.12 Bug - CRC check failed when preAllocSize smaller than node data - Update documentation source for ZOOKEEPER-2574 - Flaky test: org.apache.zookeeper.server.quorum.FLEBackwardElectionRoundTest.testBackwardElectionRound - Data inconsistency issue due to retain database in leader election - very poor choice of logging if client fails to connect to server - The comment of the variable matchSyncs in class CommitProcessor has a mistake. - Flaky Test: org.apache.zookeeper.test.LoadFromLogTest.testRestoreWithTransactionErrors - WriteLock recipe: incorrect znode ordering when the sessionId is part of the znode name - Duplicate Keys in log4j.properties config files - Specify correct overflow value - Failing c unit tests on apache jenkins - zkServer.cmd does not start when JAVA_HOME ends with a \ - Flaky Test: testNoLogBeforeLeaderEstablishment - The dataDir and dataLogDir are used opposingly - Fix testElectionFraud Flakyness - fix potential null pointer exception when deleting node - The eclipse build target fails due to protocol redirection: http->https Improvement - Add keys for the Zxid from the stat command to check_zookeeper.py - Upgrade third party libraries to address vulnerabilities - The function queueEmpty() in FastLeaderElection.Messenger is not used, should be removed. - Add check to validate dataDir and dataLogDir parameters at startup Wish - Change log level for "ZKShutdownHandler is not registered" error message Version 3.4.11 Sub-task - Fix "Unexpected bean exists!" issue in WatcherTests - Cleanup findbug warnings in branch-3.4: Correctness Warnings - Cleanup findbug warnings in branch-3.4: Disable Internationalization Warnings - Cleanup findbug warnings in branch-3.4: Malicious code vulnerability Warnings - Cleanup findbug warnings in branch-3.4: Performance Warnings - Cleanup findbug warnings in branch-3.4: Dodgy code Warnings - Cleanup findbug warnings in branch-3.4: Experimental Warnings - Set up Apache Jenkins job that runs the flaky test analyzer script. - Multithreaded correctness Warnings - ZOOKEEPER-2355 fix for branch-3.4 Bug - Windows: fetch_and_add not 64bit-compatible, may not be correct - Update documentation for snapCount - Ephemeral node is never deleted if follower fails while reading the proposal packet - Port ZOOKEEPER-1576 to branch3.4 - recreateSocketAddresses may recreate the unreachable IP address - Flaky Test: org.apache.zookeeper.test.ReadOnlyModeTest.testSessionEstablishment - Clean up findbug warnings in branch-3.4 - Port ZOOKEEPER-2737 to branch-3.4 - Netty connection leaks JMX connection bean upon connection close in certain race conditions. - Typo: transasction --> transaction - Flaky test: org.apache.zookeeper.server.quorum.QuorumCnxManagerTest.testNoAuthLearnerConnectToAuthRequiredServerWithHigherSid - Ephemeral znode will not be removed when sesstion timeout, if the system time of ZooKeeper node changes unexpectedly. - ZK Client not able to connect with Xid out of order error - There is a typo in zk.py which prevents from using/compiling it. - follower disconnects and cannot reconnect - Server inappropriately throttles connections under load before SASL completes - Flaky test: org.apache.zookeeper.test.ClientTest.testNonExistingOpCode - Fix flaky test: org.apache.zookeeper.test.ReadOnlyModeTest.testConnectionEvents - Unnecessary stack-trace in server when the client disconnect unexpectedly - PurgeTxnLog#validateAndGetFile: return tag has no arguments. - Improve the ZooKeeper#setACL java doc - ZooKeeper public include files leak porting changes - CMake build doesn't support OS X - Main-Class JAR manifest attribute is incorrect - Windows Debug builds don't link with `/MTd` - Local automatic variable is left uninitialized and then freed. - Don't include `config.h` in `zookeeper.h` - The OWASP dependency check jar should not be included in the default classpath - quorum.auth.MiniKdcTest.testKerberosLogin failing with NPE on java 9 - Create ant task to generate ivy dependency reports - compiler warning using java 9 Improvement - Operations to server will be timed-out while thousands of sessions expired same time - TCP keepalive for leader election connections - The define of MAX_CONNECTION_ATTEMPTS in QuorumCnxManager.java seems useless, should it be removed? - ZooKeeperSaslClient#respondToServer should log exception message of SaslException - Add script to run a java api compatibility tool - Improve the efficiency of AtomicFileOutputStream - Rename README.txt to README.md - define dependency versions in build.xml to be easily overridden in build.properties New Feature - Please add instructions for running the tutorial - Add ant task for running OWASP dependency report Test - Flaky Test: org.apache.zookeeper.test.WatcherTest.
2018-06-14 13:48:35 +02:00
share/zookeeper/slf4j-1.7.25.LICENSE.txt
share/zookeeper/slf4j-api-1.7.25.jar
share/zookeeper/slf4j-log4j12-1.7.25.jar
share/zookeeper/templates/conf/zoo.cfg
share/zookeeper/templates/conf/zookeeper-env.sh
Update zookeeper to 3.4.8. Changes in 3.4.8 Bug - std::length_error on update children - PurgeTxnLog does not correctly purge when snapshots and logs are at different locations - Several four-letter words are undocumented. - ZK Server startup fails if there are spaces in the JAVA_HOME path - TGT refresh time logic is wrong - assert in setup_random - JMX is disabled even if JMXDISABLE is false - Deadlock shutting down zookeeper - Update commons collections version used by tests/releaseaudit Changes in 3.4.7 Sub-task - ClientBase#createClient is failing frequently - Server not coming back up in QuorumZxidSyncTest - QuorumPeer is not shutdown in few cases - WatcherTest#testWatchAutoResetWithPending is failing - ZKClients are hitting KeeperException$ConnectionLossException due to wrong usage pattern - testTruncationNullLog fails on windows - Port async multi to 3.4 branch Bug - log all exceptions not caught by ZK threads - large numbers of watches can cause session re-establishment to fail - The Barrier sample code should create a EPHEMERAL znode instead of EPHEMERAL_SEQUENTIAL znode - C client bug in zookeeper_init (if bad hostname is given) - Net-ZooKeeper: Net::ZooKeeper consumes 100% cpu on wait - C client lib doesn't build on Solaris - getACL should only call DataTree.copyStat when passed in stat is not null - adding .gitattributes to prevent CRLF and LF mismatches for source and text files - PurgeTxnLog may delete data logs during roll - Add description for pzxid in programmer's guide. - fix windows build - zkCli.sh can't issue a CREATE command containing spaces in the data - Inconsistent behavior in autocreation of dataDir and dataLogDir - ZkCli.cmd commands fail with "'java' is not recognized as an internal or external command" - update all notice files, copyright, etc... with the new year - 2014 - ZK Shell/Cli not processing commands - NullPointerException in truncate - JDK8] Sort children for comparison in AsyncOps tests - zkpython: invalid data in GetData for empty node - REST contrib module does not include all required files when packaged - Invalid manifest files due to bogus revision property value - Apache Zookeeper logs cleartext admin passwords - Unit tests should only use build/test/data for data - zkServer.sh fails to read dataDir (and others) from zoo.cfg on Solaris 10 (grep issue, manifests as FAILED TO WRITE PID). - ReconfigRecoveryTest.testNextConfigUnreachable is failing - quot;src/contrib/zooinspector/NOTICE.txt" isn't complying to ".gitattributes" in branch-3.4 - deb - zkCli.sh, zkServer.sh and zkEnv.sh regression caused by ZOOKEEPER-1663 - recipes jar not included in the distribution package - Startup order in ServerCnxnFactory-ies is wrong - zookeeper follower fails to start after a restart immediately following a new epoch - Jute compareBytes incorrect comparison index - Yosemite build failure: htonll conflict - Unable to delete a node when the node has no children - Zookeeper 3.4.x and 3.5.0-alpha is not OSGi compliant - Trace bug in NettyServerCnxnFactory - Prevent resource leak in various classes - Memory leak on zookeeper_close - C client builds with incorrect error codes in VisualStudio 2010+ - jute generated allocate_* functions are not externally visible - Allow Zookeeper version string to have underscore '_' - JMX ObjectName is incorrect for observers - BinaryInputArchive readString should check length before allocating memory - JUnit4ZKTestRunner logs test failure for all exceptions even if the test method is annotated with an expected exception. - QuorumCnxManager#receiveConnection may crash with random input - Network issues can cause cluster to hang due to near-deadlock - PurgeTxnLog does not correctly purge when snapshots and logs are at different locations - Empty path in Set crashes server and prevents restart - Four letter command hangs when network is slow - stmk four-letter word fails execution at server while reading trace mask argument. - License update - JMX State from LocalPeerBean incorrect - SimpleSysTest test cases fails - Zookeeper is not using specified JMX port in zkEnv.sh - Zookeeper doc creation fails on windows - QuorumPeer loadDataBase() error message is incorrect - compilation broken for 3.4 Improvement - Cut down the running time of ZKDatabase corruption. - Upload Zookeeper package to Maven Central - Re-try DNS hostname -> IP resolution if node connection fails - mismatched CR/LF endings in text files - AsyncCallback.*Callback don't have any Javadoc - Improve Thread handling - Enable JMX remote monitoring - Server to log underlying cause of SASL connection problems - Improve exit log messsage of EventThread and SendThread by adding SessionId - Typo in Watcher.java - Let DataNode.getChildren() return an unmodifiable view of its children set - Log type of unexpected quorum packet in learner handler loop - Make the three-node minimum more explicit in documentation and on website - Change client connect zk service timeout log level from Info to Warn level
2016-03-04 14:40:34 +01:00
share/zookeeper/${PKGNAME}.jar
share/zookeeper/${PKGNAME}.jar.md5
share/zookeeper/${PKGNAME}.jar.sha1