[Pkg-javascript-commits] [node-mysql] 02/02: Imported Debian patch 2.10.2-1

Thorsten Alteholz alteholz at moszumanska.debian.org
Sun Jul 17 13:22:38 UTC 2016


This is an automated email from the git hooks/post-receive script.

alteholz pushed a commit to branch master
in repository node-mysql.

commit d946d8a83d51303d0e4e83428c3c256ea67a625a
Merge: fe11a0a eb67d50
Author: Thorsten Alteholz <debian at alteholz.de>
Date:   Sun Mar 27 22:38:43 2016 +0100

    Imported Debian patch 2.10.2-1

 .eslintrc                                          |   35 +
 .gitignore                                         |   14 +-
 .npmignore                                         |    6 -
 .travis.yml                                        |   38 +-
 Changes.md                                         |  103 +
 Readme.md                                          |  346 ++-
 appveyor.yml                                       |   41 +
 debian/changelog                                   |   12 +-
 debian/compat                                      |    2 +-
 debian/control                                     |   10 +-
 fixtures/ssl-profiles.json                         |    5 -
 index.js                                           |  143 +-
 lib/Connection.js                                  |  152 +-
 lib/ConnectionConfig.js                            |  118 +-
 lib/Pool.js                                        |  191 +-
 lib/PoolCluster.js                                 |  320 +--
 lib/PoolConnection.js                              |   23 +-
 lib/PoolNamespace.js                               |   68 +
 lib/PoolSelector.js                                |   31 +
 lib/protocol/Auth.js                               |    2 +-
 lib/protocol/PacketWriter.js                       |    4 +-
 lib/protocol/Parser.js                             |   50 +-
 lib/protocol/Protocol.js                           |   32 +-
 lib/protocol/SqlString.js                          |   60 +-
 lib/protocol/constants/errors.js                   | 2374 ++++++++++++--------
 lib/protocol/constants/server_status.js            |    2 +-
 lib/protocol/constants/ssl_profiles.js             |  444 ++++
 lib/protocol/constants/types.js                    |    6 +-
 lib/protocol/packets/FieldPacket.js                |    2 +-
 lib/protocol/packets/RowDataPacket.js              |   22 +-
 lib/protocol/packets/index.js                      |   24 +-
 lib/protocol/sequences/ChangeUser.js               |    2 +-
 lib/protocol/sequences/Handshake.js                |    4 +-
 lib/protocol/sequences/Query.js                    |    1 +
 lib/protocol/sequences/Sequence.js                 |    6 +-
 lib/protocol/sequences/index.js                    |   11 +-
 package.json                                       |   29 +-
 test/FakeServer.js                                 |   65 +-
 test/common.js                                     |   53 +-
 test/integration/connection/test-bulk-insert.js    |    3 +-
 .../integration/connection/test-custom-typecast.js |   44 -
 .../test-multiple-statements-load-data-infile.js   |   46 +
 .../connection/test-query-dates-as-strings.js      |    7 +-
 test/integration/connection/test-query-empty.js    |   12 +
 .../test-send-and-receive-large-packets.js         |   46 +-
 ...kets.js => test-send-and-receive-large-text.js} |   48 +-
 test/integration/connection/test-timezones.js      |  126 +-
 .../connection/test-transaction-commit.js          |    2 +-
 .../connection/test-transaction-rollback.js        |    2 +-
 .../connection/test-type-cast-null-fields.js       |    2 +-
 test/run-cov.js                                    |   15 +-
 ...est-callback-primitive-errors-are-not-caught.js |   29 +
 .../test-connect-event.js}                         |    9 +-
 .../test-connection-ssl-ciphers-unknown.js         |   30 +
 .../unit/connection/test-connection-ssl-ciphers.js |   31 +
 test/unit/connection/test-custom-type-cast.js      |   78 +
 test/unit/connection/test-domains.js               |    9 +-
 .../test-enqueue-event.js}                         |   13 +-
 test/unit/connection/test-old-password.js          |    4 +-
 test/unit/connection/test-password.js              |    4 +-
 test/unit/connection/test-query-after-destroy.js   |    5 +
 .../test-quit-ok-packet.js}                        |   17 +-
 test/unit/pool-cluster/test-add-after-end.js       |   14 +
 test/unit/pool-cluster/test-add-same-id.js         |    7 +
 .../test-connection-default-selector.js            |   17 +-
 .../pool-cluster/test-connection-error-remove.js   |   10 +-
 test/unit/pool-cluster/test-connection-error.js    |    6 +-
 .../test-connection-fatal-error-remove.js          |    6 +-
 test/unit/pool-cluster/test-connection-no-retry.js |    6 +-
 .../pool-cluster/test-connection-order-fatal.js    |   43 +
 test/unit/pool-cluster/test-connection-order.js    |   17 +-
 ...retry.js => test-connection-retry-fatal-end.js} |   21 +-
 test/unit/pool-cluster/test-connection-retry.js    |    8 +-
 test/unit/pool-cluster/test-connection-rr-error.js |   10 +-
 test/unit/pool-cluster/test-connection-rr.js       |   17 +-
 test/unit/pool-cluster/test-end-empty.js           |   12 +
 test/unit/pool-cluster/test-internals.js           |    2 +-
 test/unit/pool-cluster/test-pattern.js             |    6 +-
 ...est-connection-rr.js => test-remove-by-name.js} |   25 +-
 ...nnection-order.js => test-remove-by-pattern.js} |   18 +-
 ...onnection-order.js => test-remove-fatal-end.js} |   13 +-
 test/unit/pool-cluster/test-restore-events.js      |   67 +
 test/unit/pool-cluster/test-restore.js             |   54 +
 test/unit/pool/test-change-user-eject.js           |   61 -
 test/unit/pool/test-change-user-restore.js         |   77 +
 test/unit/pool/test-connection-destroy.js          |   27 +
 test/unit/pool/test-connection-fatal-end.js        |   16 +
 .../pool/test-connection-release-after-error.js    |   27 +
 test/unit/pool/test-custom-type-cast.js            |   79 +
 test/unit/pool/test-domains.js                     |   11 +-
 test/unit/pool/test-end-ping.js                    |   42 +
 test/unit/pool/test-enqueue-event.js               |   47 +
 test/unit/pool/test-query-end-after-error.js       |   22 +
 test/unit/pool/test-query-error.js                 |   31 +
 .../pool/test-query-stream-connection-error.js     |   21 +
 test/unit/pool/test-query-streaming-rows.js        |   51 +
 test/unit/pool/test-queue-limit.js                 |    1 +
 test/unit/protocol/test-Parser.js                  |    2 +-
 test/unit/protocol/test-SqlString.js               |   18 +-
 test/unit/query/test-error-event.js                |    2 +-
 ...ng-destroy.js => test-query-end-after-error.js} |   17 +-
 test/unit/query/test-result-rows-enumerate.js      |   30 +
 test/unit/query/test-stream-before-queue.js        |    6 +-
 test/unit/query/test-streaming-destroy.js          |    5 +-
 test/unit/test-ConnectionConfig.js                 |   45 +-
 test/unit/test-PoolConfig.js                       |    4 +-
 tool/generate-error-constants.js                   |   18 +-
 107 files changed, 4635 insertions(+), 1837 deletions(-)

diff --cc debian/changelog
index 63537f0,0000000..a4bfec3
mode 100644,000000..100644
--- a/debian/changelog
+++ b/debian/changelog
@@@ -1,28 -1,0 +1,36 @@@
- node-mysql (2.4.2-2) UNRELEASED; urgency=medium
++node-mysql (2.10.2-1) unstable; urgency=medium
 +
++  * New upstream release
++  * debian/control:
++    + add myself to Uploaders:
++    + bump debhelper level to 9
++    + use secure VCS URLs
++    + remove obsolete XS-Testsuite:
++
++  [Jérémy Lal]
 +  * Patch: no need to require readable-stream,
 +    just require stream instead. Closes: #802807.
 +
-  -- Jérémy Lal <kapouer at melix.org>  Fri, 23 Oct 2015 21:38:43 +0200
++ -- Thorsten Alteholz <debian at alteholz.de>  Sun, 27 Mar 2016 22:38:43 +0100
 +
 +node-mysql (2.4.2-1) unstable; urgency=medium
 +
 +  * New upstream release.
 +  * debian/rules:
 +    + Add get-orig-source rule.
 +  * debian/control:
 +    + Add B-D: nodejs. As required by Node.js module packaging policy.
 +    + Upgrade versioned D (node-mysql): nodejs (>= 0.10.0).
 +    + Alioth-canonicalize Vcs-*: fields.
 +    + Move packaging Git to pkg-javascript namespace on Alioth.
 +    + Bump Standards: to 3.9.5. No changes needed.
 +  * autopkgtest:
 +    + Use Autopkgtest to test package integrity.
 +
 + -- Mike Gabriel <sunweaver at debian.org>  Wed, 20 Aug 2014 15:00:19 +0200
 +
 +node-mysql (2.0.0~alpha8-1) unstable; urgency=low
 +
 +  * Initial release. (Closes: #708977).
 +
 + -- Mike Gabriel <sunweaver at debian.org>  Mon, 20 May 2013 02:14:35 +0200
diff --cc debian/compat
index 45a4fb7,0000000..ec63514
mode 100644,000000..100644
--- a/debian/compat
+++ b/debian/compat
@@@ -1,1 -1,0 +1,1 @@@
- 8
++9
diff --cc debian/control
index 99c97eb,0000000..c0d8503
mode 100644,000000..100644
--- a/debian/control
+++ b/debian/control
@@@ -1,29 -1,0 +1,29 @@@
 +Source: node-mysql
 +Section: web
 +Priority: extra
 +Maintainer: Debian Javascript Maintainers <pkg-javascript-devel at lists.alioth.debian.org>
 +Uploaders:
-  Mike Gabriel <sunweaver at debian.org>,
++ Mike Gabriel <sunweaver at debian.org>
++ , Thorsten Alteholz <debian at alteholz.de>
 +Build-Depends:
-  debhelper (>= 8.0.0),
++ debhelper (>= 9.0.0),
 + dh-buildinfo,
 + nodejs,
 +Standards-Version: 3.9.5
 +Homepage: https://github.com/felixge/node-mysql
- XS-Testsuite: autopkgtest
- Vcs-Git: git://anonscm.debian.org/pkg-javascript/node-mysql.git
- Vcs-Browser: http://anonscm.debian.org/gitweb/?p=pkg-javascript/node-mysql.git
++Vcs-Git: https://anonscm.debian.org/git/pkg-javascript/node-mysql.git
++Vcs-Browser: https://anonscm.debian.org/gitweb/?p=pkg-javascript/node-mysql.git
 +
 +Package: node-mysql
 +Architecture: all
 +Depends:
 + ${misc:Depends},
 + nodejs (>= 0.10.0),
 + node-require-all (>= 0.0.3),
 + node-bignumber (>= 1.0.1),
 +Description: MySQL client implementation for Node.js
 + Implementation of the MySQL protocol for Node.js.
 + .
 + This MySQL module provides non-blocking I/O with MySQL databases. It is written
 + in pure Javascript and there is no dependency on external C libraries such as
 + libmysql.

-- 
Alioth's /usr/local/bin/git-commit-notice on /srv/git.debian.org/git/pkg-javascript/node-mysql.git



More information about the Pkg-javascript-commits mailing list