[jira] [Resolved] (SSHD-739) A call to resolvePropertyValue can be very inefficient

2017-04-12 Thread Guillaume Nodet (JIRA)
[ https://issues.apache.org/jira/browse/SSHD-739?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel ] Guillaume Nodet resolved SSHD-739. -- Resolution: Fixed Fix Version/s: 1.5.0 https://git1-us-west.apache.org/repos/asf?p=mina

[jira] [Assigned] (SSHD-739) A call to resolvePropertyValue can be very inefficient

2017-04-12 Thread Guillaume Nodet (JIRA)
[ https://issues.apache.org/jira/browse/SSHD-739?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel ] Guillaume Nodet reassigned SSHD-739: Assignee: Guillaume Nodet > A call to resolvePropertyValue can be very ineffici

[jira] [Created] (SSHD-740) Add default methods on PropertyResolver to actually do the property resolution

2017-04-12 Thread Guillaume Nodet (JIRA)
Guillaume Nodet created SSHD-740: Summary: Add default methods on PropertyResolver to actually do the property resolution Key: SSHD-740 URL: https://issues.apache.org/jira/browse/SSHD-740 Project

[jira] [Commented] (SSHD-739) A call to resolvePropertyValue can be very inefficient

2017-04-11 Thread Guillaume Nodet (JIRA)
[ https://issues.apache.org/jira/browse/SSHD-739?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel=15964806#comment-15964806 ] Guillaume Nodet commented on SSHD-739: -- I also wonder if there's a need to make

[jira] [Created] (SSHD-739) A call to resolvePropertyValue can be very inefficient

2017-04-11 Thread Guillaume Nodet (JIRA)
Guillaume Nodet created SSHD-739: Summary: A call to resolvePropertyValue can be very inefficient Key: SSHD-739 URL: https://issues.apache.org/jira/browse/SSHD-739 Project: MINA SSHD Issue

[jira] [Resolved] (SSHD-732) ClientIdentitiesWatcher should load keys one at a time

2017-03-29 Thread Guillaume Nodet (JIRA)
[ https://issues.apache.org/jira/browse/SSHD-732?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel ] Guillaume Nodet resolved SSHD-732. -- Resolution: Fixed https://github.com/apache/mina-sshd/commit

[jira] [Resolved] (SSHD-732) ClientIdentitiesWatcher should load keys one at a time

2017-03-28 Thread Guillaume Nodet (JIRA)
[ https://issues.apache.org/jira/browse/SSHD-732?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel ] Guillaume Nodet resolved SSHD-732. -- Resolution: Fixed Fix Version/s: 1.5.0 Tests have been fixed. > ClientIdentitiesWatc

[jira] [Resolved] (SSHD-734) When ClientSessionImpl construction fails, AbstractSessionIoHandler#exceptionCaught may throw NPE

2017-03-28 Thread Guillaume Nodet (JIRA)
[ https://issues.apache.org/jira/browse/SSHD-734?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel ] Guillaume Nodet resolved SSHD-734. -- Resolution: Fixed Fix Version/s: 1.5.0 I don't think we need to propagate the exception

[jira] [Assigned] (SSHD-734) When ClientSessionImpl construction fails, AbstractSessionIoHandler#exceptionCaught may throw NPE

2017-03-28 Thread Guillaume Nodet (JIRA)
[ https://issues.apache.org/jira/browse/SSHD-734?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel ] Guillaume Nodet reassigned SSHD-734: Assignee: Guillaume Nodet > When ClientSessionImpl construction fa

[jira] [Resolved] (SSHD-732) ClientIdentitiesWatcher should load keys one at a time

2017-03-10 Thread Guillaume Nodet (JIRA)
[ https://issues.apache.org/jira/browse/SSHD-732?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel ] Guillaume Nodet resolved SSHD-732. -- Resolution: Fixed > ClientIdentitiesWatcher should load keys one at a t

Re: [1/2] mina-sshd git commit: [SSHD-727] Upgrade used EdDSA artifact version to 1.1

2017-03-10 Thread Guillaume Nodet
com>: > You are right - it disappeared - I can assure you it was there when I > wrote the change. What do you recommend - revert the change until it is > there ? I am all for it... > > On Fri, Mar 10, 2017 at 10:09 AM, Guillaume Nodet <gno...@apache.org> > wrote: > >

Re: [1/2] mina-sshd git commit: [SSHD-727] Upgrade used EdDSA artifact version to 1.1

2017-03-10 Thread Guillaume Nodet
e upgrade - no > special repository needed > > בתאריך 10 במרץ 2017 09:58,‏ "Guillaume Nodet" <gno...@apache.org> כתב: > > I can't find this artifact in maven central. >> Could you add the needed repository please ? >> >> 2017-03-02 21:00 GMT+01:00 <lgo

Re: [1/2] mina-sshd git commit: [SSHD-727] Upgrade used EdDSA artifact version to 1.1

2017-03-09 Thread Guillaume Nodet
ProviderUtils.generateEDDSAPrivateKey( > prvBytes.clone()); > pubBytes = BufferUtils.decodeHex(BufferUtils.EMPTY_HEX_SEPARATOR, > pubKey); > -publicKey = EdDSASecurityProvider.generateEDDSAPublicKey( > pubBytes.clone()); > + publicKey = EdDSASecurityProviderUtils.generateEDDSAPublicKey( > pubBytes.clone()); > msgBytes = BufferUtils.decodeHex(BufferUtils.EMPTY_HEX_SEPARATOR, > msg); > expSignature = BufferUtils.decodeHex(BufferUtils.EMPTY_HEX_SEPARATOR, > signature); > } > @@ -200,14 +200,14 @@ public class Ed25519VectorsTest extends > BaseTestSupport { > > @Test > public void testSignature() throws Exception { > -Signature signer = EdDSASecurityProvider.getEDDSASignature(); > +Signature signer = EdDSASecurityProviderUtils. > getEDDSASignature(); > signer.initSigner(privateKey); > signer.update(msgBytes.clone()); > > byte[] actSignature = signer.sign(); > assertArrayEquals("Mismatched signature", expSignature, > actSignature); > > -Signature verifier = EdDSASecurityProvider.getEDDSASignature(); > +Signature verifier = EdDSASecurityProviderUtils. > getEDDSASignature(); > verifier.initVerifier(publicKey); > verifier.update(msgBytes.clone()); > assertTrue("Verification failed", verifier.verify(expSignature)); > @@ -222,14 +222,14 @@ public class Ed25519VectorsTest extends > BaseTestSupport { > System.arraycopy(msgBytes, 0, dataBuf, offset, msgBytes.length); > System.arraycopy(extraData, offset, dataBuf, offset + > msgBytes.length, extraData.length - offset); > > -Signature signer = EdDSASecurityProvider.getEDDSASignature(); > +Signature signer = EdDSASecurityProviderUtils. > getEDDSASignature(); > signer.initSigner(privateKey); > signer.update(dataBuf.clone(), offset, msgBytes.length); > > byte[] actSignature = signer.sign(); > assertArrayEquals("Mismatched signature", expSignature, > actSignature); > > -Signature verifier = EdDSASecurityProvider.getEDDSASignature(); > +Signature verifier = EdDSASecurityProviderUtils. > getEDDSASignature(); > verifier.initVerifier(publicKey); > verifier.update(dataBuf.clone(), offset, msgBytes.length); > assertTrue("Verification failed", verifier.verify(expSignature)); > > http://git-wip-us.apache.org/repos/asf/mina-sshd/blob/ > cbb92d2a/sshd-core/src/test/java/org/apache/sshd/common/ > util/security/eddsa/EdDSASecurityProviderRegistrarTest.java > -- > diff --git a/sshd-core/src/test/java/org/apache/sshd/common/util/ > security/eddsa/EdDSASecurityProviderRegistrarTest.java > b/sshd-core/src/test/java/org/apache/sshd/common/util/security/eddsa/ > EdDSASecurityProviderRegistrarTest.java > index 9e12fab..f2c1f3f 100644 > --- a/sshd-core/src/test/java/org/apache/sshd/common/util/security/eddsa/ > EdDSASecurityProviderRegistrarTest.java > +++ b/sshd-core/src/test/java/org/apache/sshd/common/util/security/eddsa/ > EdDSASecurityProviderRegistrarTest.java > @@ -26,6 +26,8 @@ import java.util.Arrays; > import java.util.Collection; > import java.util.HashSet; > > +import net.i2p.crypto.eddsa.EdDSASecurityProvider; > + > import org.apache.sshd.common.util.security.SecurityProviderRegistrar; > import org.apache.sshd.common.util.security. > SecurityProviderRegistrarTestSupport; > import org.apache.sshd.common.util.security.SecurityUtils; > > -- Guillaume Nodet

[jira] [Created] (SSHD-732) ClientIdentitiesWatcher should load keys one at a time

2017-03-09 Thread Guillaume Nodet (JIRA)
Guillaume Nodet created SSHD-732: Summary: ClientIdentitiesWatcher should load keys one at a time Key: SSHD-732 URL: https://issues.apache.org/jira/browse/SSHD-732 Project: MINA SSHD Issue

Re: Apache MINA SSHd default ShellFactory Chocked the resources

2017-03-07 Thread Guillaume Nodet
a.10907.n7.nabble.com/file/n52377/ > Screenshot_from_2017-03-07_15-59-50.png] > > [http://apache-mina.10907.n7.nabble.com/file/n52377/ > Screenshot_from_2017-03-07_16-00-19.png] > > [http://apache-mina.10907.n7.nabble.com/file/n52377/ > Screenshot_from_2017-03-07_16-00-27.png] > -- Guillaume Nodet

Re: Apache MINA SSHd default ShellFactory Chocked the resources

2017-03-07 Thread Guillaume Nodet
when I want each user to get a separate shell. > > > > > > -- > View this message in context: http://apache-mina.10907.n7. > nabble.com/Apache-MINA-SSHd-default-ShellFactory-Chocked- > the-resources-tp52309p52370.html > Sent from the Apache MINA Developer Forum mailing list archive at > Nabble.com. > -- Guillaume Nodet

[RESULT] [VOTE] Release Apache Mina SSHD 1.4.0

2017-03-02 Thread Guillaume Nodet
(through Guillaume). > -- ---- Guillaume Nodet

Re: How to handle Ctrl+C and other Sigint

2017-03-02 Thread Guillaume Nodet
the Apache MINA Developer Forum mailing list archive at > Nabble.com. > -- Guillaume Nodet

Re: MIA for a while...

2017-03-02 Thread Guillaume Nodet
nd I'm afraid it's going to be our priority number one in the next few > weeks :-) > > > Thanks ! > > -- > Emmanuel Lecharny > > Symas.com > directory.apache.org > > -- Guillaume Nodet

Re: How to handle Ctrl+C and other Sigint

2017-03-02 Thread Guillaume Nodet
e-Ctrl-C-and-other-Sigint-tp52319.html > Sent from the Apache MINA Developer Forum mailing list archive at > Nabble.com. > -- Guillaume Nodet

Re: [VOTE] Release Apache Mina SSHD 1.4.0

2017-02-28 Thread Guillaume Nodet
+1 2017-02-15 12:09 GMT+01:00 Guillaume Nodet <gno...@apache.org>: > I've staged a candidate release for SSHD 1.4.0. > > The staging repository is available at : > https://repository.apache.org/content/repositories/orgapachemina-1028 > > Release notes: > https://is

[VOTE] Release Apache Mina SSHD 1.4.0

2017-02-15 Thread Guillaume Nodet
, Guillaume Nodet

Re: Release of SSHD 1.4 ?

2017-02-13 Thread Guillaume Nodet
ny useful features and fixes that are awaited by the users > (certainly those that reported them). > > I recommend we release 1.4 version. > > > > -- ---- Guillaume Nodet

[jira] [Resolved] (SSHD-724) Fix errors flagged by infer static analyzer

2017-02-13 Thread Guillaume Nodet (JIRA)
[ https://issues.apache.org/jira/browse/SSHD-724?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel ] Guillaume Nodet resolved SSHD-724. -- Resolution: Fixed Assignee: Goldstein Lyor > Fix errors flagged by infer static analy

[jira] [Commented] (SSHD-715) The IDLE_TIMEOUT configuration parameter is invalid

2016-12-19 Thread Guillaume Nodet (JIRA)
[ https://issues.apache.org/jira/browse/SSHD-715?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel=15762588#comment-15762588 ] Guillaume Nodet commented on SSHD-715: -- Maybe we could print out a warning for known invalid

[jira] [Commented] (SSHD-720) SSHD does not always detect remote closure in time.

2016-11-28 Thread Guillaume Nodet (JIRA)
[ https://issues.apache.org/jira/browse/SSHD-720?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel=15704579#comment-15704579 ] Guillaume Nodet commented on SSHD-720: -- There's no way the client code can guarantee that the server

[jira] [Resolved] (SSHD-717) wrong import-package directive

2016-11-24 Thread Guillaume Nodet (JIRA)
[ https://issues.apache.org/jira/browse/SSHD-717?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel ] Guillaume Nodet resolved SSHD-717. -- Resolution: Fixed Assignee: Guillaume Nodet Fix Version/s: 1.4.0 https

[jira] [Commented] (SSHD-716) SSHD Reuse of client session for multiple channel connections fails

2016-11-22 Thread Guillaume Nodet (JIRA)
[ https://issues.apache.org/jira/browse/SSHD-716?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel=15687484#comment-15687484 ] Guillaume Nodet commented on SSHD-716: -- https://git1-us-west.apache.org/repos/asf?p=mina-sshd.git

[jira] [Resolved] (SSHD-716) SSHD Reuse of client session for multiple channel connections fails

2016-11-22 Thread Guillaume Nodet (JIRA)
[ https://issues.apache.org/jira/browse/SSHD-716?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel ] Guillaume Nodet resolved SSHD-716. -- Resolution: Fixed Assignee: Guillaume Nodet Fix Version/s: 1.4.0 > SSHD Re

[jira] [Commented] (SSHD-716) SSHD Reuse of client session for multiple channel connections fails

2016-11-22 Thread Guillaume Nodet (JIRA)
[ https://issues.apache.org/jira/browse/SSHD-716?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel=15687347#comment-15687347 ] Guillaume Nodet commented on SSHD-716: -- I think this is caused by a channel being gracefully closed

[jira] [Created] (SSHD-709) All passwords should be stored as char[] instead of String and wiped after use

2016-10-20 Thread Guillaume Nodet (JIRA)
Guillaume Nodet created SSHD-709: Summary: All passwords should be stored as char[] instead of String and wiped after use Key: SSHD-709 URL: https://issues.apache.org/jira/browse/SSHD-709 Project

[RESULT] [VOTE] Release SSHD 1.3.0

2016-09-26 Thread Guillaume Nodet
The vote passes with 6 +1s and no other votes. I'll publish the artifacts asap. Thx to everyone. Guillaume 2016-09-19 9:27 GMT+02:00 Guillaume Nodet <gno...@apache.org>: > I've prepared a candidate for SSHD 1.3.0 release at > https://repository.apache.org/content/repositories/o

Re: [VOTE] Release SSHD 1.3.0

2016-09-26 Thread Guillaume Nodet
+1 2016-09-19 9:27 GMT+02:00 Guillaume Nodet <gno...@apache.org>: > I've prepared a candidate for SSHD 1.3.0 release at > https://repository.apache.org/content/repositories/orgapachemina-1024 > > Please review and vote. > > <https://repository.apache.org/content/repo

[VOTE] Release SSHD 1.3.0

2016-09-19 Thread Guillaume Nodet
ome offset * [SSHD-699] - Server receiving 0-length SSH_MSG_IGNORE causes Buffer Underflow exception ** New Feature * [SSHD-685] - Provide support for VisualHostKey (a.k.a. randomArt) ** Task * [SSHD-698] - Code cleanup for JDK8 Cheers, Guillaume Nodet

[jira] [Commented] (SSHD-418) Upgrade to mina 3

2016-09-15 Thread Guillaume Nodet (JIRA)
[ https://issues.apache.org/jira/browse/SSHD-418?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel=15494334#comment-15494334 ] Guillaume Nodet commented on SSHD-418: -- Maybe a better way would be to move the mina2 support out

[jira] [Resolved] (SSHD-698) Code cleanup for JDK8

2016-09-15 Thread Guillaume Nodet (JIRA)
[ https://issues.apache.org/jira/browse/SSHD-698?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel ] Guillaume Nodet resolved SSHD-698. -- Resolution: Fixed > Code cleanup for JDK8 > - > >

[jira] [Created] (SSHD-698) Code cleanup for JDK8

2016-09-15 Thread Guillaume Nodet (JIRA)
Guillaume Nodet created SSHD-698: Summary: Code cleanup for JDK8 Key: SSHD-698 URL: https://issues.apache.org/jira/browse/SSHD-698 Project: MINA SSHD Issue Type: Task Reporter

Re: [VOTE] MINA 2.0.14 release

2016-08-29 Thread Guillaume Nodet
ed90e0d > > - Nexus repository: https://repository.apache.org/content/repositories/ > orgapachemina-1023 > > - Binaries and sources: https://dist.apache.org/repos/ > dist/dev/mina/mina/2.0.14/ > > Let us vote : > [ ] +1 | Release MINA 2.0.14 > [ ] ± | Abstain > [ ] -1 | Do **NOT** release MINA 2.0.14 > > Thanks ! > -- Guillaume Nodet Red Hat, Open Source Integration Email: gno...@redhat.com Web: http://fusesource.com Blog: http://gnodet.blogspot.com/

[jira] [Commented] (SSHD-605) VirtualFileSystemFactory allows escaping from root

2016-04-12 Thread Guillaume Nodet (JIRA)
[ https://issues.apache.org/jira/browse/SSHD-605?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel=15236659#comment-15236659 ] Guillaume Nodet commented on SSHD-605: -- You're definitely welcome to fix this problem. You can either

[jira] [Updated] (SSHD-418) Upgrade to mina 3

2016-04-01 Thread Guillaume Nodet (JIRA)
[ https://issues.apache.org/jira/browse/SSHD-418?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel ] Guillaume Nodet updated SSHD-418: - Fix Version/s: (was: 1.1.0) 1.3.0 > Upgrade to min

[RESULT] [VOTE] Release Apache Mina SSHD 1.2.0

2016-04-01 Thread Guillaume Nodet
Closing this vote with 4 +1s. Thx ! I'll publish the release asap. Guillaume 2016-03-09 11:30 GMT+01:00 Guillaume Nodet <gno...@apache.org>: > I've staged a release candidate for SSHD 1.2.0 > > Repository: > https://repository.apache.org/content/repositories/orgapachemin

[RESULT] [VOTE] Release Apache Mina SSHD 1.1.1

2016-04-01 Thread Guillaume Nodet
Closing this vote with 5 +1s. Thx ! I'll publish the release asap. Guillaume 2016-03-09 11:32 GMT+01:00 Guillaume Nodet <gno...@apache.org>: > I've staged a release candidate for SSHD 1.1.1 > > Repository: > https://repository.apache.org/content/repositories/orgapachemin

Re: [VOTE] Release Apache Mina SSHD 1.2.0

2016-03-31 Thread Guillaume Nodet
2016-03-31 15:13 GMT+02:00 Emmanuel Lécharny <elecha...@gmail.com>: > Le 31/03/16 09:15, Guillaume Nodet a écrit : > > We're still missing a few binding votes > > Damn.. Totally missed the last votes :/ > > > I have tested the package, and teh first time I g

[jira] [Closed] (SSHD-662) Neither 1.1.1 nor 1.2.0 are indeed released and available on central

2016-03-31 Thread Guillaume Nodet (JIRA)
[ https://issues.apache.org/jira/browse/SSHD-662?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel ] Guillaume Nodet closed SSHD-662. Resolution: Invalid Those releases are still under vote. They will be uploaded to maven central when

Re: [VOTE] Release Apache Mina SSHD 1.2.0

2016-03-31 Thread Guillaume Nodet
We're still missing a few binding votes 2016-03-09 11:30 GMT+01:00 Guillaume Nodet <gno...@apache.org>: > I've staged a release candidate for SSHD 1.2.0 > > Repository: > https://repository.apache.org/content/repositories/orgapachemina-1021 > > Release notes: >

Fwd: Votes missing for [VOTE] Release Apache Mina SSHD 1.2.0

2016-03-21 Thread Guillaume Nodet
We're still missing a few binding votes... 2016-03-09 11:30 GMT+01:00 Guillaume Nodet <gno...@apache.org>: > I've staged a release candidate for SSHD 1.2.0 > > Repository: > https://repository.apache.org/content/repositories/orgapachemina-1021 > > Release notes: >

[jira] [Comment Edited] (SSHD-661) The sample code in teh JavaDoc section of org/apache/sshd/SshClient.java generates compilation errors.

2016-03-16 Thread Guillaume Nodet (JIRA)
[ https://issues.apache.org/jira/browse/SSHD-661?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel=15197074#comment-15197074 ] Guillaume Nodet edited comment on SSHD-661 at 3/16/16 9:16 AM: --- I meant real

[jira] [Commented] (SSHD-661) The sample code in teh JavaDoc section of org/apache/sshd/SshClient.java generates compilation errors.

2016-03-16 Thread Guillaume Nodet (JIRA)
[ https://issues.apache.org/jira/browse/SSHD-661?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel=15197074#comment-15197074 ] Guillaume Nodet commented on SSHD-661: -- I meant real code, the one from the test, or from the main

[jira] [Commented] (SSHD-661) The sample code in teh JavaDoc section of org/apache/sshd/SshClient.java generates compilation errors.

2016-03-16 Thread Guillaume Nodet (JIRA)
[ https://issues.apache.org/jira/browse/SSHD-661?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel=15196978#comment-15196978 ] Guillaume Nodet commented on SSHD-661: -- Agreed, though I think we should at least fix the code so

Re: [VOTE] Release Apache Mina SSHD 1.2.0

2016-03-15 Thread Guillaume Nodet
+1 2016-03-09 11:30 GMT+01:00 Guillaume Nodet <gno...@apache.org>: > I've staged a release candidate for SSHD 1.2.0 > > Repository: > https://repository.apache.org/content/repositories/orgapachemina-1021 > > Release notes: > > https://issues.apache.org/jira/s

Re: [VOTE] Release Apache Mina SSHD 1.1.1

2016-03-15 Thread Guillaume Nodet
+1 2016-03-09 11:32 GMT+01:00 Guillaume Nodet <gno...@apache.org>: > I've staged a release candidate for SSHD 1.1.1 > > Repository: > https://repository.apache.org/content/repositories/orgapachemina-1022 > > Release notes: > > https://issues.apache.org/jira/s

[VOTE] Release Apache Mina SSHD 1.1.1

2016-03-09 Thread Guillaume Nodet
I've staged a release candidate for SSHD 1.1.1 Repository: https://repository.apache.org/content/repositories/orgapachemina-1022 Release notes: https://issues.apache.org/jira/secure/ReleaseNote.jspa?version=12335067=Html=12310849 Please review and vote ! Cheers, Guillaume Nodet

[jira] [Updated] (SSHD-639) Review code and reduce buffer re-use

2016-03-09 Thread Guillaume Nodet (JIRA)
[ https://issues.apache.org/jira/browse/SSHD-639?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel ] Guillaume Nodet updated SSHD-639: - Fix Version/s: 1.1.1 > Review code and reduce buffer re-

[VOTE] Release Apache Mina SSHD 1.2.0

2016-03-09 Thread Guillaume Nodet
I've staged a release candidate for SSHD 1.2.0 Repository: https://repository.apache.org/content/repositories/orgapachemina-1021 Release notes: https://issues.apache.org/jira/secure/ReleaseNote.jspa?version=12334702=Html=12310849 Please review and vote ! Cheers, Guillaume Nodet

[jira] [Updated] (SSHD-646) ThreadGroup created in ThreadUtils is not destroyed and causes memory leak

2016-03-09 Thread Guillaume Nodet (JIRA)
[ https://issues.apache.org/jira/browse/SSHD-646?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel ] Guillaume Nodet updated SSHD-646: - Fix Version/s: 1.1.1 > ThreadGroup created in ThreadUtils is not destroyed and causes memory l

Re: Take 2: Release 1.1.1 or 1.2 ?

2016-02-24 Thread Guillaume Nodet
Sorry for the delay. Fwiw, 1.1 is available from the official download location: http://mina.apache.org/sshd-project/downloads.html I don't see any branch related to 1.x in git, but I'd be happy to do a release today from it. I can release 1.2 altogether if it's also ready... Guillaume

Re: [VOTE] Release SSHD 1.1.0

2016-01-28 Thread Guillaume Nodet
Closing this vote with 7 +1s. I'll publish the release asap. 2016-01-15 16:11 GMT+01:00 Guillaume Nodet <gno...@apache.org>: > I uploaded a 1.1.0 release of SSHD. > The artefacts are available at > https://repository.apache.org/content/repositories/orgapachemina-1016 &g

Re: [VOTE] Release SSHD 1.1.0

2016-01-21 Thread Guillaume Nodet
+1 2016-01-15 16:11 GMT+01:00 Guillaume Nodet <gno...@apache.org>: > I uploaded a 1.1.0 release of SSHD. > The artefacts are available at > https://repository.apache.org/content/repositories/orgapachemina-1016 > > Release notes: > > https://issues.apache.org/j

[VOTE] Release SSHD 1.1.0

2016-01-15 Thread Guillaume Nodet
I uploaded a 1.1.0 release of SSHD. The artefacts are available at https://repository.apache.org/content/repositories/orgapachemina-1016 Release notes: https://issues.apache.org/jira/secure/ReleaseNote.jspa?projectId=12310849=12333293 Please review and vote. Cheers, Guillaume Nodet

Re: Vote on Apache SSHD version 1.1 release

2016-01-12 Thread Guillaume Nodet
A 1.1 release sounds good to me. Do you want to actually do the release ? Else I can do it if you want. The mina release process is explained at http://mina.apache.org/mina-project/developer-guide.html#releasing-a-point-release-committers-only Cheers, Guillaume 2016-01-12 8:25 GMT+01:00 Lyor

Re: [VOTE] MINA 2.0.10 release

2015-12-10 Thread Guillaume Nodet
+1 2015-12-07 11:08 GMT+01:00 Emmanuel Lecharny : > Hi, > > Here is a vote for a new bug fix release of Mina 2 : 2.0.10. > > No new features, but a few critical fixes : > > - a race condition in the SSL handler > > - some OSGi package declaration fixes > > - removed a lock

Re: SSHD 1.0.0 is out ?

2015-11-10 Thread Guillaume Nodet
I'll do it this morning. 2015-11-10 6:54 GMT+01:00 Jeff MAURY : > I have set a ticket for the web site to be updated > > Jeff > Le 10 nov. 2015 00:35, "Emmanuel Lécharny" a écrit : > > > Hi guys, > > > > has the vote for SSHD 1.0.0 being closed ? If

Re: SSHD 1.0.0 is out ?

2015-11-10 Thread Guillaume Nodet
Yeah, what i meant is that I can't get the web CMS interface to work properly. I don't really mind svn/git. 2015-11-10 13:23 GMT+01:00 Emmanuel Lécharny <elecha...@gmail.com>: > Le 10/11/15 06:16, Guillaume Nodet a écrit : > > Yeah, having a release process for sshd page should

Re: SSHD 1.0.0 is out ?

2015-11-10 Thread Guillaume Nodet
cha...@gmail.com>: > Le 10/11/15 03:05, Guillaume Nodet a écrit : > > I'll do it this morning. > > Thanks Guillaume ! > > The vote was closed (I wasn't able to find the mail in my mailbox, for > some reason I have to evaluate - redirection to my spam folder ?) : > > http

Re: SSHD 1.0.0 is out ?

2015-11-10 Thread Guillaume Nodet
Sounds good, that's what I ended up doing too. 2015-11-10 14:17 GMT+01:00 Emmanuel Lécharny <elecha...@gmail.com>: > Le 10/11/15 07:29, Guillaume Nodet a écrit : > > Yeah, what i meant is that I can't get the web CMS interface to work > > properly. I don't really mind svn/g

Re: [VOTE] Release SSHD 1.0.0 (2nd try)

2015-09-02 Thread Guillaume Nodet
I think we're still missing some binding votes. Can anyone please review ? 2015-08-19 16:13 GMT+02:00 Guillaume Nodet <gno...@apache.org>: > I uploaded another 1.0.0 release of SSHD to fix the JDK7 compatibility > problems. > > The artefacts are available at > https://

Re: [VOTE] Release SSHD 1.0.0 (2nd try)

2015-08-25 Thread Guillaume Nodet
+1 2015-08-19 16:13 GMT+02:00 Guillaume Nodet gno...@apache.org: I uploaded another 1.0.0 release of SSHD to fix the JDK7 compatibility problems. The artefacts are available at https://repository.apache.org/content/repositories/orgapachemina-1014 Release notes: https

[VOTE] Release SSHD 1.0.0 (2nd try)

2015-08-19 Thread Guillaume Nodet
Please review and vote. Cheers, Guillaume Nodet

[jira] [Commented] (SSHD-553) Make sure all code can be compiled using JDK 7

2015-08-19 Thread Guillaume Nodet (JIRA)
[ https://issues.apache.org/jira/browse/SSHD-553?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanelfocusedCommentId=14702626#comment-14702626 ] Guillaume Nodet commented on SSHD-553: -- Fixed by https://github.com/apache/mina-sshd

Re: [VOTE] Release SSHD 1.0.0

2015-08-19 Thread Guillaume Nodet
] On Tue, Aug 18, 2015 at 6:12 AM, Lyor Goldstein lgoldst...@vmware.com wrote: +1 (obviously... :-) ) -Original Message- From: Guillaume Nodet [mailto:gno...@apache.org] Sent: Tuesday, August 18, 2015 16:06 To: dev@mina.apache.org Subject: [VOTE] Release SSHD 1.0.0 Please

[CANCEL] [VOTE] Release SSHD 1.0.0

2015-08-19 Thread Guillaume Nodet
Cancelling this vote to restore JDK7 compatibility. Guillaume 2015-08-18 15:05 GMT+02:00 Guillaume Nodet gno...@apache.org: I uploaded a 1.0.0 release of SSHD. The artefacts are available at https://repository.apache.org/content/repositories/orgapachemina-1012 Release notes: https

[jira] [Commented] (SSHD-553) Make sure all code can be compiled using JDK 7

2015-08-19 Thread Guillaume Nodet (JIRA)
[ https://issues.apache.org/jira/browse/SSHD-553?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanelfocusedCommentId=14702668#comment-14702668 ] Guillaume Nodet commented on SSHD-553: -- It seems to be a side effect of the maven

Re: Any progress on the voting on SSHD 1.0 ?

2015-08-18 Thread Guillaume Nodet
Message- From: Guillaume Nodet [mailto:gno...@apache.org] Sent: Tuesday, August 18, 2015 12:04 To: dev@mina.apache.org Subject: Re: Any progress on the voting on SSHD 1.0 ? Running org.apache.sshd.server.PublickeyAuthenticatorTest Tests run: 2 , Failures: 0 , Errors: 1 , Skipped: 0

[jira] [Created] (SSHD-550) Support sending window change messages from PtyCapableChannelSession

2015-08-18 Thread Guillaume Nodet (JIRA)
Guillaume Nodet created SSHD-550: Summary: Support sending window change messages from PtyCapableChannelSession Key: SSHD-550 URL: https://issues.apache.org/jira/browse/SSHD-550 Project: MINA SSHD

[jira] [Updated] (SSHD-418) Upgrade to mina 3

2015-08-18 Thread Guillaume Nodet (JIRA)
[ https://issues.apache.org/jira/browse/SSHD-418?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel ] Guillaume Nodet updated SSHD-418: - Fix Version/s: (was: 1.0.0) 1.1.0 Upgrade to mina 3

[jira] [Resolved] (SSHD-550) Support sending window change messages from PtyCapableChannelSession

2015-08-18 Thread Guillaume Nodet (JIRA)
[ https://issues.apache.org/jira/browse/SSHD-550?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel ] Guillaume Nodet resolved SSHD-550. -- Resolution: Fixed https://github.com/apache/mina-sshd/commit

[jira] [Resolved] (SSHD-542) Checkstyle validation

2015-08-18 Thread Guillaume Nodet (JIRA)
[ https://issues.apache.org/jira/browse/SSHD-542?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel ] Guillaume Nodet resolved SSHD-542. -- Resolution: Fixed Assignee: Guillaume Nodet https://github.com/apache/mina-sshd/commit

[VOTE] Release SSHD 1.0.0

2015-08-18 Thread Guillaume Nodet
I uploaded a 1.0.0 release of SSHD. The artefacts are available at https://repository.apache.org/content/repositories/orgapachemina-1012 Release notes: https://issues.apache.org/jira/secure/ReleaseNote.jspa?projectId=12310849version=12323302 Please review and vote. Cheers, Guillaume Nodet

Re: Any progress on the voting on SSHD 1.0 ?

2015-08-18 Thread Guillaume Nodet
lgoldst...@vmware.com: No - can you send me the failing test details ? -Original Message- From: Guillaume Nodet [mailto:gno...@apache.org] Sent: Tuesday, August 18, 2015 11:10 To: dev@mina.apache.org Subject: Re: Any progress on the voting on SSHD 1.0 ? I still have a test failure

Re: Any progress on the voting on SSHD 1.0 ?

2015-08-15 Thread Guillaume Nodet
I've been on vacation those past weeks. I'll start the release process next week when I come back... 2015-08-13 10:04 GMT+02:00 Lyor Goldstein lgoldst...@vmware.com: I have made a few bug fixes since the 1st time I asked for the vote, but since then (~2 weeks) I have not made (nor do intend

[jira] [Created] (SSHD-542) Checkstyle validation

2015-07-17 Thread Guillaume Nodet (JIRA)
Guillaume Nodet created SSHD-542: Summary: Checkstyle validation Key: SSHD-542 URL: https://issues.apache.org/jira/browse/SSHD-542 Project: MINA SSHD Issue Type: Task Reporter

Re: Vote on releasing SSHD 1.0

2015-07-16 Thread Guillaume Nodet
Thx for all the work you did those past months. I started removing some warnings in the code such as boxing/unboxing, diamonds operator, etc... I was wondering if we should set up some enforcement around code style and warnings using checkstyle and windbags before doing the 1.0 release, but

[jira] [Commented] (SSHD-473) PasswordAuthentifikation

2015-06-05 Thread Guillaume Nodet (JIRA)
[ https://issues.apache.org/jira/browse/SSHD-473?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanelfocusedCommentId=14574525#comment-14574525 ] Guillaume Nodet commented on SSHD-473: -- Are you kidding ? If you want to connect

[jira] [Commented] (SSHD-473) PasswordAuthentifikation

2015-06-05 Thread Guillaume Nodet (JIRA)
[ https://issues.apache.org/jira/browse/SSHD-473?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanelfocusedCommentId=14575060#comment-14575060 ] Guillaume Nodet commented on SSHD-473: -- The only point I do really get is that you

[jira] [Comment Edited] (SSHD-473) PasswordAuthentifikation

2015-06-05 Thread Guillaume Nodet (JIRA)
[ https://issues.apache.org/jira/browse/SSHD-473?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanelfocusedCommentId=14575060#comment-14575060 ] Guillaume Nodet edited comment on SSHD-473 at 6/5/15 7:43 PM

[jira] [Commented] (SSHD-473) PasswordAuthentifikation

2015-06-03 Thread Guillaume Nodet (JIRA)
[ https://issues.apache.org/jira/browse/SSHD-473?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanelfocusedCommentId=14570579#comment-14570579 ] Guillaume Nodet commented on SSHD-473: -- Can you rewrite your tests into something

[jira] [Commented] (SSHD-473) PasswordAuthentifikation

2015-06-03 Thread Guillaume Nodet (JIRA)
[ https://issues.apache.org/jira/browse/SSHD-473?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanelfocusedCommentId=14570702#comment-14570702 ] Guillaume Nodet commented on SSHD-473: -- Sorry, I really can't help you until you

[jira] [Commented] (SSHD-473) PasswordAuthentifikation

2015-06-03 Thread Guillaume Nodet (JIRA)
[ https://issues.apache.org/jira/browse/SSHD-473?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanelfocusedCommentId=14570461#comment-14570461 ] Guillaume Nodet commented on SSHD-473: -- I already answered your questions concerning

[jira] [Commented] (SSHD-473) PasswordAuthentifikation

2015-06-03 Thread Guillaume Nodet (JIRA)
[ https://issues.apache.org/jira/browse/SSHD-473?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanelfocusedCommentId=14570386#comment-14570386 ] Guillaume Nodet commented on SSHD-473: -- #1 I don't understand #2 The password

[jira] [Commented] (SSHD-473) PasswordAuthentifikation

2015-06-03 Thread Guillaume Nodet (JIRA)
[ https://issues.apache.org/jira/browse/SSHD-473?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanelfocusedCommentId=14570653#comment-14570653 ] Guillaume Nodet commented on SSHD-473: -- *Can you rewrite your tests into something

[jira] [Commented] (SSHD-473) PasswordAuthentifikation

2015-06-03 Thread Guillaume Nodet (JIRA)
[ https://issues.apache.org/jira/browse/SSHD-473?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanelfocusedCommentId=14570927#comment-14570927 ] Guillaume Nodet commented on SSHD-473: -- That's the point of you writing a test showing

[jira] [Commented] (SSHD-473) PasswordAuthentifikation

2015-06-03 Thread Guillaume Nodet (JIRA)
[ https://issues.apache.org/jira/browse/SSHD-473?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanelfocusedCommentId=14570829#comment-14570829 ] Guillaume Nodet commented on SSHD-473: -- I need a junit test. You can find lots

[jira] [Commented] (SSHD-473) PasswordAuthentifikation

2015-06-03 Thread Guillaume Nodet (JIRA)
[ https://issues.apache.org/jira/browse/SSHD-473?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanelfocusedCommentId=14571230#comment-14571230 ] Guillaume Nodet commented on SSHD-473: -- We don't always use user == password. When

[jira] [Commented] (SSHD-473) PasswordAuthentifikation

2015-06-03 Thread Guillaume Nodet (JIRA)
[ https://issues.apache.org/jira/browse/SSHD-473?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanelfocusedCommentId=14571452#comment-14571452 ] Guillaume Nodet commented on SSHD-473: -- Just because I spent already too much time, I

[jira] [Commented] (SSHD-473) PasswordAuthentifikation

2015-06-02 Thread Guillaume Nodet (JIRA)
[ https://issues.apache.org/jira/browse/SSHD-473?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanelfocusedCommentId=14569577#comment-14569577 ] Guillaume Nodet commented on SSHD-473: -- We would need a unit test or something similar

[jira] [Comment Edited] (SSHD-473) PasswordAuthentifikation

2015-06-02 Thread Guillaume Nodet (JIRA)
[ https://issues.apache.org/jira/browse/SSHD-473?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanelfocusedCommentId=14569577#comment-14569577 ] Guillaume Nodet edited comment on SSHD-473 at 6/2/15 7:57 PM

[jira] [Commented] (SSHD-473) PasswordAuthentifikation

2015-06-02 Thread Guillaume Nodet (JIRA)
[ https://issues.apache.org/jira/browse/SSHD-473?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanelfocusedCommentId=14569009#comment-14569009 ] Guillaume Nodet commented on SSHD-473: -- Not sure what you mean. Please write a unit

[jira] [Commented] (SSHD-473) PasswordAuthentifikation

2015-06-02 Thread Guillaume Nodet (JIRA)
[ https://issues.apache.org/jira/browse/SSHD-473?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanelfocusedCommentId=14568954#comment-14568954 ] Guillaume Nodet commented on SSHD-473: -- You will, because obviously you're not doing

[jira] [Commented] (SSHD-473) PasswordAuthentifikation

2015-06-02 Thread Guillaume Nodet (JIRA)
[ https://issues.apache.org/jira/browse/SSHD-473?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanelfocusedCommentId=14568883#comment-14568883 ] Guillaume Nodet commented on SSHD-473: -- Jochen, you need to understand we're all

[jira] [Commented] (SSHD-473) PasswordAuthentifikation

2015-06-02 Thread Guillaume Nodet (JIRA)
[ https://issues.apache.org/jira/browse/SSHD-473?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanelfocusedCommentId=14569135#comment-14569135 ] Guillaume Nodet commented on SSHD-473: -- Jochen, there's no way we can help you

<    2   3   4   5   6   7   8   9   10   11   >