Skip to content

Commit

Permalink
Release v1.304
Browse files Browse the repository at this point in the history
  • Loading branch information
dolmen committed Feb 2, 2018
2 parents b56f2fc + 5b39600 commit 87ecbff
Show file tree
Hide file tree
Showing 2 changed files with 11 additions and 4 deletions.
7 changes: 6 additions & 1 deletion README.pod
Original file line number Diff line number Diff line change
Expand Up @@ -258,6 +258,11 @@ L<the commit log|https://github.com/dolmen/github-keygen/commits/release>.

=over 4

=item v1.304

Remove algorithm C<diffie-hellman-group14-sha1> as it has been removed server side
by GitHub: see L<https://githubengineering.com/crypto-deprecation-notice/>.

=item v1.303

Fix SSH options and algorithm support detection that was accidentally disabled since v1.100.
Expand Down Expand Up @@ -493,7 +498,7 @@ If you want to contribute, have a look to L<CONTRIBUTING.pod>.

=head1 COPYRIGHT & LICENSE

Copyright E<copy> 2011-2017 Olivier MenguE<eacute>.
Copyright E<copy> 2011-2018 Olivier MenguE<eacute>.

This program is free software: you can redistribute it and/or modify
it under the terms of the GNU General Public License as published by
Expand Down
8 changes: 5 additions & 3 deletions github-keygen
Original file line number Diff line number Diff line change
Expand Up @@ -9124,7 +9124,7 @@ use Sys::Hostname;

use constant HAS_TEXT_DIFF => eval { require Text::Diff; 1 };

our $VERSION = '1.303';
our $VERSION = '1.304';

use constant {
PROG => (File::Spec->splitpath($0))[2],
Expand Down Expand Up @@ -9632,11 +9632,13 @@ if (@github_accounts) {
hmac-sha2-512
> ],
# KexAlgorithms: ssh -Q kex
#
# diffie-hellman-group14-sha1 removed by GitHub on 2018-02-01
# https://githubengineering.com/crypto-deprecation-notice/
kex => [ qw<
curve25519-sha256@libssh.org
diffie-hellman-group-exchange-sha256
diffie-hellman-group-exchange-sha1
diffie-hellman-group14-sha1
> ],
);
# Filter each list against what is supported by the ssh client
Expand Down Expand Up @@ -10164,7 +10166,7 @@ Olivier MenguE<eacute>, L<mailto:dolmen@cpan.org>.
=head1 COPYRIGHT & LICENSE
Copyright E<copy> 2011-2017 Olivier MenguE<eacute>.
Copyright E<copy> 2011-2018 Olivier MenguE<eacute>.
This program is free software: you can redistribute it and/or modify
it under the terms of the GNU General Public License as published by
Expand Down

0 comments on commit 87ecbff

Please sign in to comment.