File: changelog

package info (click to toggle)
psycopg2 2.6.2-1
  • links: PTS, VCS
  • area: main
  • in suites: stretch
  • size: 1,892 kB
  • ctags: 2,964
  • sloc: ansic: 12,123; python: 9,764; makefile: 281; sh: 69
file content (960 lines) | stat: -rw-r--r-- 30,615 bytes parent folder | download
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
psycopg2 (2.6.2-1) unstable; urgency=medium

  [ Ondřej Nový ]
  * Fixed VCS URL (https)

  [ SVN-Git Migration ]
  * Migrate packaging to git with git-dpm

  [ Scott Kitterman ]
  * New upstream release
  * Remove uupdate from debian/watch as it doesn't make sense for a package
    maintained in git
  * Bump standards version to 3.9.8 without further change
  * Use default python3 build to generate documentation
  * Bump debhelper minimum version and compat to 9

 -- Scott Kitterman <scott@kitterman.com>  Fri, 15 Jul 2016 16:26:11 -0400

psycopg2 (2.6.1-1) unstable; urgency=medium

  * New upstream release
    - Improve documentation regarding use of extensions.
      ISOLATION_LEVEL_AUTOCOMMIT (Closes: #768194)

 -- Scott Kitterman <scott@kitterman.com>  Mon, 22 Jun 2015 17:24:53 -0400

psycopg2 (2.6-2) unstable; urgency=medium

  * Upload to unstable
  * Build docs using python3 vice python
  * Add doc-base registration

 -- Scott Kitterman <scott@kitterman.com>  Fri, 24 Apr 2015 11:04:31 -0400

psycopg2 (2.6-1) experimental; urgency=medium

  * New upstream release
    - Adapt debian/rules build-indep and binary targets  as well as
      python-psycopg2-doc.install for adjustments in upstream documentation
      build system
  * Add dh-python to build-depends
  * Update debian/watch to use the new pypi.debian.net redirector so that new
    releases are detected and to account for no longer needing to mangle the
    version since a +dfsg tarball is no longer required

 -- Scott Kitterman <scott@kitterman.com>  Mon, 09 Feb 2015 18:53:58 -0500

psycopg2 (2.5.4+dfsg-1) unstable; urgency=medium

  * New upstream release
    - Repack source tarball to remove minified javascript files
  * Swap DPMT to maintainer and add myself to uploaders
  * Drop obsolete and unused python:Provides
  * Add appropriate X-Python{3}-Version fields to debian/control
  * Bump standards version to 3.9.6 without further change
  * Install NEWS using dh_installchangelogs to install as upstream changelog
  * Update debian/copyright
  * Update debian/README.source list of files that need to be removed to
    create a DFSG free tarball
  * Drop obsolete python-psycopg2-doc breaks/replaces python-psycopg2-docs

 -- Scott Kitterman <scott@kitterman.com>  Sat, 27 Sep 2014 16:44:30 -0400

psycopg2 (2.5.3+dfsg-1) unstable; urgency=medium

  * Team upload
  * New upstream release
  * Correct python-psycopg2-doc install location (Closes: #686741)
  * Update debian/copyright
  * Repack source tarball to remove minified javascript files
    - Update debian/watch to unmangle upstream version

 -- Scott Kitterman <scott@kitterman.com>  Mon, 26 May 2014 15:38:51 -0400

psycopg2 (2.5.2-1) unstable; urgency=low

  * Team upload

  [ Jakub Wilk ]
  * Use canonical URIs for Vcs-* fields.

  [ Scott Kitterman ]
  * New upstream release
    - Update dh_installchangelogs rule from debian/rules since upstream no
      longer provides a changelog
    - Remove empty usr/lib/python3/dist-packages/psycopg2/tests dir in
      python3-psycopg2-dbg
  * Use python version independent paths in debian/patches/local_inventory
  * Remove ancient, unused files from debian dir
  * Bump standards version to 3.9.5 without further change

 -- Scott Kitterman <scott@kitterman.com>  Mon, 24 Feb 2014 21:45:02 -0500

psycopg2 (2.4.5-1) unstable; urgency=low

  * Team upload
  * New upstream release
    - Update debian/copyright

 -- Scott Kitterman <scott@kitterman.com>  Mon, 02 Apr 2012 10:23:45 -0400

psycopg2 (2.4.4-4) unstable; urgency=low

  * Team upload
  * Rename python-pyscopg2-docs to the more usual python-pyscopg2-doc
    - Not creating a transitional package due to the package only existing
      for a short period and never in a stable release
  * Fix typos in the last debian/changelog entry
  * Fix misspellings in package descriptions in debian/control
  * Bump standards version to 3.9.3 without further change

 -- Scott Kitterman <scott@kitterman.com>  Sun, 18 Mar 2012 10:31:22 -0400

psycopg2 (2.4.4-3) unstable; urgency=low

  * Team upload
  * Fix debian/rules so python3-psycopg2-dbg so files are properly marked as
    debug versions (Closes: #658219)
  * Use local Python objects.inv instead of downloading from python.org
    - Add python-doc and python3-doc to Build-Depends-Indep
    - Add Quilt use to debian/rules and README.source
    - Add debian/patches/local_inventory

 -- Scott Kitterman <scott@kitterman.com>  Thu, 02 Feb 2012 09:04:44 -0500

psycopg2 (2.4.4-2) unstable; urgency=low

  * Team upload
  * Move python-egenix-mxdatetime from Depends to Recommends since support for
    it is now detected at runtime (Closes: #523414)
  * Add separate python-pyscopg2-docs package suggested by both python-psycopg2
    and python3-psycopg2 (only ship actual documentation in the binary and
    not the source to build the documentation)
    - Adjust debian/rules for an arch-indep package and python-sphinx
    - Rebuild html and text docs from source instead of shipping provided
      files
    - Add python-sphinx (>= 1.0.7+dfsg-1~) to build-depends and use
      sphinxdoc:Depends
    - Add debian/python-psycopg2-docs.install
  * Build packages for Python3 (Closes: #645906)
    - Add python3-psycopg2/-dbg to debian/control
    - Add python3-all-dev and python3-all-dbg to build-depends
    - Adjust debian/rules
  * Drop build-depends on autoconf (Closes: #589131)
  * Drop redundant build-depends on python (python-all-dev covers it)

 -- Scott Kitterman <scott@kitterman.com>  Mon, 30 Jan 2012 09:12:12 -0500

psycopg2 (2.4.4-1) unstable; urgency=low

  * Team upload
  * New upstream release (Closes: #607714)
    - Update debian/copyright
  * Add build-arch and build-indep targets to debian/rules
  * Adjust debian/rules so docmentation is not compressed (Closes: #589142),
    objects.inv is not compressed (Closes: #608745), and the upstream NEWS
    file is included in the package (Closes: #651835)
  * Exclude redundant COPYING files in the doc directory from being installed
  * Remove redundant Section: field from the python-psycopg2 entry in debian/
    control
  * Use dh_prep instead of deprecated dh_clean -k
  * Remove obsolete debian/pycompat file

 -- Scott Kitterman <scott@kitterman.com>  Wed, 18 Jan 2012 12:59:48 -0500

psycopg2 (2.4.2-1) unstable; urgency=low

  [ Jakub Wilk ]
  * Add Debian Python Modules Team to Uploaders.

  [ Fabio Tranchitella ]
  * New upstream release.
  * debian/watch: updated, use pypi.
  * debian/control, debian/rules: switched to dh_python2.
  * debian/control: bumped Standard-Version to 3.9.2, no changes required.

 -- Fabio Tranchitella <kobold@debian.org>  Sun, 19 Jun 2011 18:25:53 +0000

psycopg2 (2.2.1-1) unstable; urgency=low

  * New upstream release. (Closes: #582823)
  * debian/control:
    - bumped Standards-Version to 3.9.0, no changes required.
    - removed the zope-psycopg2da binary package. (Closes: #583293)

 -- Fabio Tranchitella <kobold@debian.org>  Fri, 02 Jul 2010 15:04:19 +0200

psycopg2 (2.0.14-1) unstable; urgency=low

  * New upstream release.
  * debian/control: bumped Standards-Version to 3.8.5, no changes required.

 -- Fabio Tranchitella <kobold@debian.org>  Sat, 10 Apr 2010 10:32:45 +0200

psycopg2 (2.0.13-2) unstable; urgency=low

  [ Piotr Ożarowski ]
  * Add XB-Python-Version to python-psycopg2-dbg and zope-psycopgda2

  [ Fabio Tranchitella ]
  * Do not build anymore python-psycopg2da. (Closes: #558204)

 -- Fabio Tranchitella <kobold@debian.org>  Wed, 06 Jan 2010 15:36:39 +0100

psycopg2 (2.0.13-1) unstable; urgency=low

  * New upstream release.

 -- Fabio Tranchitella <kobold@debian.org>  Mon, 12 Oct 2009 06:50:00 +0000

psycopg2 (2.0.12-1) unstable; urgency=low

  [ Fabio Tranchitella ]
  * New upstream release. (Closes: #536341, #528529)
  * debian/control: bumped Standard-Versions to 3.8.3, no changes required.

  [ Bernd Zeimetz ]
  * Make the build process compatible to Python2.6.

 -- Fabio Tranchitella <kobold@debian.org>  Thu, 27 Aug 2009 18:05:48 +0200

psycopg2 (2.0.9-5) unstable; urgency=low

  * debian/control: added dependency on python-egenix-mxdatetime.
    (Closes: #521338)

 -- Fabio Tranchitella <kobold@debian.org>  Fri, 27 Mar 2009 16:05:49 +0100

psycopg2 (2.0.9-4) unstable; urgency=low

  * debian/rules: add again support for mx datetime. (Closes: #518948)
  * debian/control: new archive sections.

 -- Fabio Tranchitella <kobold@debian.org>  Wed, 18 Mar 2009 07:03:53 +0100

psycopg2 (2.0.9-3) unstable; urgency=low

  * debian/control: do not build against python-egenix-mx-base-dev anymore.
    (Closes: #518519)

 -- Fabio Tranchitella <kobold@debian.org>  Fri, 06 Mar 2009 20:42:04 +0100

psycopg2 (2.0.9-2) unstable; urgency=low

  * psycopg/psycopg.h: removed the patch. (Closes: #517895)

 -- Fabio Tranchitella <kobold@debian.org>  Fri, 06 Mar 2009 13:27:44 +0100

psycopg2 (2.0.9-1) unstable; urgency=low

  * New upstream release. (Closes: #516887)

 -- Fabio Tranchitella <kobold@debian.org>  Fri, 27 Feb 2009 17:38:13 +0100

psycopg2 (2.0.8-1) unstable; urgency=low

  [ Fabio Tranchitella ]
  [Carlos Galisteo]
  * debian/control
    - Added Homepage field.

  [ Sandro Tosi ]
  * debian/control
    - switch Vcs-Browser field to viewsvn

  [ Fabio Tranchitella ]
  * New upstream release. (Closes: #499880)
  * psycopg/psycopg.h: patched, fixed a typo. (Closes: #479571)

 -- Fabio Tranchitella <kobold@debian.org>  Tue, 18 Nov 2008 21:05:04 +0100

psycopg2 (2.0.7-4) unstable; urgency=low

  * Rebuilt, this should fixes a dependency problem. (Closes: #485868)

 -- Fabio Tranchitella <kobold@debian.org>  Thu, 12 Jun 2008 09:42:55 +0200

psycopg2 (2.0.7-3) unstable; urgency=low

  * ZPsycopgDA/DA.py: updated the patch, which was out of sync with the
    upstream tarball.

 -- Fabio Tranchitella <kobold@debian.org>  Tue, 13 May 2008 17:22:30 +0200

psycopg2 (2.0.7-2) unstable; urgency=medium

  * ZPsycopgDA/DA.py: updated the patch. (Closes: #478860)

 -- Fabio Tranchitella <kobold@debian.org>  Thu, 01 May 2008 17:43:54 +0200

psycopg2 (2.0.7-1) unstable; urgency=low

  * New upstream release. (Closes: #476101)
  * debian/control: bumped Standard-Versions to 3.7.3.

 -- Fabio Tranchitella <kobold@debian.org>  Tue, 15 Apr 2008 10:05:51 +0200

psycopg2 (2.0.6-4) unstable; urgency=low

  [ Sandro Tosi ]
  * debian/control
    - uniforming Vcs-Browser field

  [ Fabio Tranchitella ]
  * Provides a encoding parameter when adding a ZPsycopgDA instance using the
    ZMI. (Closes: #475123)

 -- Fabio Tranchitella <kobold@debian.org>  Wed, 09 Apr 2008 19:51:10 +0200

psycopg2 (2.0.6-3) unstable; urgency=low

  [ Piotr Ożarowski ]
  * XS-Vcs-Svn field renamed to Vcs-Svn
  * Vcs-Browser field added

  [ Fabio Tranchitella ]
  * Mention DB-API 2.0 compatibility in the long description.
    (Closes: #430763)

 -- Fabio Tranchitella <kobold@debian.org>  Thu, 08 Nov 2007 15:07:05 +0100

psycopg2 (2.0.6-2) unstable; urgency=low

  * Build a python-psycopg-dbg package

 -- Scott Kitterman <scott@kitterman.com>  Tue, 03 Jul 2007 16:55:48 -0400

psycopg2 (2.0.6-1) unstable; urgency=low

  * New upstream release.
  * psycopg2da: removed, merged upstream.

 -- Fabio Tranchitella <kobold@debian.org>  Sat, 09 Jun 2007 22:38:23 +0200

psycopg2 (2.0.5.1-7) UNRELEASED; urgency=low

  * debian/watch: added.

 -- Fabio Tranchitella <kobold@debian.org>  Fri,  9 Feb 2007 12:35:55 +0100

psycopg2 (2.0.5.1-6) unstable; urgency=high

  * debian/zope-psycopgda2.dzproduct: requires Zope 2.9 or higher: previous
    versions use python2.3 which is not supported anymore in psycopg.

 -- Fabio Tranchitella <kobold@debian.org>  Mon, 15 Jan 2007 11:39:15 +0100

psycopg2 (2.0.5.1-5) unstable; urgency=medium

  * Do not run dh_pycentral on zope-psycopgda2. (Closes: #400846)

 -- Fabio Tranchitella <kobold@debian.org>  Wed, 29 Nov 2006 09:04:09 +0100

psycopg2 (2.0.5.1-4) unstable; urgency=medium

  * Fixed a bug in psycopg2da.
  * debian/control: bumped build-dependency on zope-debhelper.
  * Added XS-Vcs-Svn field

 -- Fabio Tranchitella <kobold@debian.org>  Fri, 24 Nov 2006 13:50:11 +0100

psycopg2 (2.0.5.1-3) unstable; urgency=low

  * psycopgda: imported upstream psycopg2da database adapter from SVN, which
    builds a new binary package, python-psycopg2da.

 -- Fabio Tranchitella <kobold@debian.org>  Fri, 10 Nov 2006 08:56:05 +0100

psycopg2 (2.0.5.1-2) unstable; urgency=low

  * debian/control: added again a dependency on python-egenix-mxdatetime.
    (Closes: #389636)

 -- Fabio Tranchitella <kobold@debian.org>  Tue,  3 Oct 2006 10:25:22 +0200

psycopg2 (2.0.5.1-1) unstable; urgency=low

  * New upstream release.

 -- Fabio Tranchitella <kobold@debian.org>  Tue, 19 Sep 2006 08:22:36 +0200

psycopg2 (2.0.4-1) unstable; urgency=low

  * New upstream release.
  * debian/control:
    + removed dependency on python-egenix-mxdatetime.
    + added ${shlibs:Depends} for the python-psycopg2 package.
    (Closes: #381462)

 -- Fabio Tranchitella <kobold@debian.org>  Wed,  9 Aug 2006 10:28:30 +0200

psycopg2 (2.0.2-1) unstable; urgency=low

  * New upstream major release, new source package. (Closes: #377956)

 -- Fabio Tranchitella <kobold@debian.org>  Sun, 16 Jul 2006 21:43:41 +0200

psycopg (1.1.21-8) unstable; urgency=low

  * debian/zope-psycopgda.dzproduct: added 2.9 to the list of supported
    zope versions. (Closes: #376538)

 -- Fabio Tranchitella <kobold@debian.org>  Fri, 14 Jul 2006 10:19:54 +0200

psycopg (1.1.21-7) unstable; urgency=low

  * Moved dh_installzope within an arch-indep target. (Closes: #373842)

 -- Fabio Tranchitella <kobold@debian.org>  Fri, 16 Jun 2006 09:37:23 +0200

psycopg (1.1.21-6) unstable; urgency=low

  * Python policy transition. (Closes: #373482)

 -- Fabio Tranchitella <kobold@debian.org>  Thu, 15 Jun 2006 19:09:36 +0200

psycopg (1.1.21-5) unstable; urgency=high

  * ypemod.c, new_psyco_bufferobject():
    - Escape quotes psycopg.Binary() results as '', not as \', since the
      latter does not work any more with some client encodings with the latest
      PostgreSQL (in some multi-byte encodings you can exploit \' escaping to
      inject SQL code, see CVE-2006-2314). (Closes: #369230)
      Thanks to Martin Pitt and Ubuntu security team for the patch.

 -- Fabio Tranchitella <kobold@debian.org>  Tue, 30 May 2006 22:15:06 +0200

psycopg (1.1.21-4) unstable; urgency=low

  * debian/rules: remove *.o in the clean target. (Closes: #352835)

 -- Fabio Tranchitella <kobold@debian.org>  Thu, 16 Feb 2006 12:06:53 +0000

psycopg (1.1.21-3) unstable; urgency=low

  * debian/control: removed build-dependency on postgresql-server-dev-8.0,
    as suggested by Martin Pitt. (Closes: #339640)

 -- Fabio Tranchitella <kobold@debian.org>  Fri, 18 Nov 2005 08:44:26 +0000

psycopg (1.1.21-2) unstable; urgency=low

  * debian/control: zope-psycopgda should depend on the same version of the
    psycopg python module. (Closes: #336765)

 -- Fabio Tranchitella <kobold@debian.org>  Wed,  2 Nov 2005 12:07:33 +0000

psycopg (1.1.21-1) unstable; urgency=low

  * New maintainer; Thanks Federico for your work, and be sure that I'll 
    take care of this package.
  * New upstream release (Closes: #321592, #320618, #333638)
  * debian/python2.4-psycopg.dirs: added.  (Closes: #319509, #329115)
  * debian/control: dropped support for python2.1 and
    python2.2. (Closes: #333639)
  * debian/control: Standards-Version bumped to 3.6.2, no changes required.
  * debian/rules: make use of dh_installzope from zope-debhelper to build the
    zope-psycopgda package.
    (Closes: #158669, #323599, #268975, #292247, #327415)
  * debian/control: added build-depends on postgresql-server-dev-8.0.
    (Closes: #333638)
  * Re-packaged upstream tarball replacing some broken images.
    (Closes: #292008, #305392)

 -- Fabio Tranchitella <kobold@debian.org>  Fri, 28 Oct 2005 11:24:37 +0000

psycopg (1.1.19-1) unstable; urgency=low
  
  * New upstream release.
  * Applied patch from Martin Krafft to build Zope 2.7 packages.
  * Modified to use the new PostgreSQL packages.
  * Added python 2.4 package (Closes: #301403).
  * Upstream applied various Ubuntu patches (Closes: #301947, #300893).

 -- Federico Di Gregorio <fog@debian.org>  Sat, 16 Jul 2005 20:47:08 +0200

psycopg (1.1.18-1) unstable; urgency=low
  
  * New upstream release.
  * 1.1.16 fixed rowcount bug (closes: #266299).

 -- Federico Di Gregorio <fog@debian.org>  Wed,  5 Jan 2005 21:05:15 +0100

psycopg (1.1.17-1) unstable; urgency=high

  * Urgency is still high because 1.1.16 was never uploaded.
  * New upstream release.
  
 -- Federico Di Gregorio <fog@debian.org>  Thu, 19 Nov 2004 01:14:30 +0200

psycopg (1.1.16-1) unstable; urgency=high

  * New upstream release.
  * Tagged with urgency=high because fix a grave bug (rowcount) introduced
    in 1.1.15.
  * Upstream fix: does not segfault when using COPY TO/COPY FROM in
    .execute() (closes: #279222).
  
 -- Federico Di Gregorio <fog@debian.org>  Sat, 30 Oct 2004 02:35:30 +0200

psycopg (1.1.15-1) unstable; urgency=low
  
  * New upstream release.
  * Definitely fixed (ah ah) time interval problems (closes: #259213).
  
 -- Federico Di Gregorio <fog@initd.org>  Thu, 29 Jul 2004 23:43:59 +0200
  
psycopg (1.1.14-1) unstable; urgency=low
  
  * New upstream release.
  * Don't put two copies of changelog in every package anymore 
    (closes: #256662).
  * Updated test script works as expected (closes: #231391).
  * Changes from NMU incorporated in 1.1.12:
    - zpsycopgda depends on python2.2-psycopg  (closes: #227420, #227147).
    - compiled with postgresql in unstable (close: #220527).
  
 -- Federico Di Gregorio <fog@initd.org>  Fri,  9 Jul 2004 23:01:40 +0200

psycopg (1.1.13-1) unstable; urgency=low
  
  * New upstream release.
  
 -- Federico Di Gregorio <fog@debian.org>  Fri, 21 May 2004 10:33:54 +0200
  
psycopg (1.1.12-1) unstable; urgency=low
  
  * New upstream release (the "martin you won't have this package"
    release.)
  * Integrated changes from NMU releases.

 -- Federico Di Gregorio <fog@debian.org>  Sun, 16 May 2004 10:14:47 +0200
  
psycopg (1.1.10-1.2) unstable; urgency=low

  * Non-maintainer upload. Thinking about taking this package over...
  * Changed dependency on pyscopgda Python module to Python version 2.2.
    (closes: #227147, #227420)
  * Added Lintian overrides for image-in-/usr/lib warnings -- Zope needs
    these images...

 -- martin f. krafft <madduck@debian.org>  Thu, 15 Apr 2004 23:30:40 +0200

psycopg (1.1.10-1.1) unstable; urgency=low

  * Non-maintainer upload.
  * No changes - this upload is simply a rebuild against the current unstable
    instead of experimental postgresql-dev.
    (closes: #219927, #220141, #220173, #220527)

 -- Peter Hawkins <peterh@debian.org>  Sun, 28 Dec 2003 10:57:30 +1100
  
psycopg (1.1.10-1) unstable; urgency=low

  * Added download location to debian/copyright file (Closes: #215880).
  
 -- Federico Di Gregorio <fog@initd.org>  Sat,  8 Nov 2003 23:32:40 +0100
  
psycopg (1.1.9-1) unstable; urgency=low
  
  * New upstream release.
  * Bug was agains an old 1.0.x version of psycopg (Closes: #208702).
  
 -- Federico Di Gregorio <fog@initd.org>  Wed, 10 Sep 2003 13:04:42 +0200
  
psycopg (1.1.8-1) unstable; urgency=low

  * New upstream release.
  * Integrated NMU from Matthias Klose (closes: #205746).

 -- Federico Di Gregorio <fog@debian.org>  Fri,  1 Aug 2003 11:50:57 +0200

psycopg (1.1.5.1-1.1) unstable; urgency=low

  * NMU
  * Update for python2.3 as the default python version (closes: #205746).

 -- Matthias Klose <doko@debian.org>  Fri, 22 Aug 2003 00:02:25 +0200

psycopg (1.1.7-1) unstable; urgency=low

  * New upstream release.

 -- Federico Di Gregorio <fog@debian.org>  Sat, 26 Jul 2003 15:03:39 +0200

psycopg (1.1.6-1) unstable; urgency=low
  
  * New upstream release.
  * Upstream applied patch from BTS (Closes: #200161).
  
 -- Federico Di Gregorio <fog@initd.org>  Sun, 13 Jul 2003 23:36:04 +0200

psycopg (1.1.5.1-1) unstable; urgency=low

  * New upstream release.

 -- Federico Di Gregorio <fog@initd.org>  Mon, 23 Jun 2003 00:37:33 +0200
  
psycopg (1.1.5-1) unstable; urgency=low

  * New upstream release.

 -- Federico Di Gregorio <fog@initd.org>  Sun, 22 Jun 2003 21:30:01 +0200

psycopg (1.1.4-1) unstable; urgency=low

  * New upstream release.

 -- Federico Di Gregorio <fog@debian.org>  Wed,  7 May 2003 15:21:31 +0200

psycopg (1.1.3-1) unstable; urgency=low

  * New upstream release.
  * Changed section in debian/control (-> python).
  
 -- Federico Di Gregorio <fog@debian.org>  Wed,  2 Apr 2003 10:33:36 +0200

psycopg (1.1.2-1) unstable; urgency=low

  * New upstream release.
  * Started to track the 1.1.x branch.

 -- Federico Di Gregorio <fog@debian.org>  Tue, 25 Feb 2003 01:06:08 +0100

psycopg (1.0.15.1-1) unstable; urgency=low

  * New upstream release.
  
 -- Federico Di Gregorio <fog@debian.org>  Fri, 14 Feb 2003 16:09:50 +0100

psycopg (1.0.15-1) unstable; urgency=low

  * New upstream release.
  
 -- Federico Di Gregorio <fog@debian.org>  Wed, 12 Feb 2003 23:49:51 +0100
  
psycopg (1.0.14-1) unstable; urgency=low
  
  * Applied patch from John Goerzen to fix memory leak in executemany()
    and callproc() (Closes: #169284).
  * New upstream release (Closes: #170297).
  
 -- Federico Di Gregorio <fog@debian.org>  Mon, 25 Nov 2002 16:50:37 +0100
  
psycopg (1.0.13-1) unstable; urgency=low

  * New upstream release.
  * Python 2.3 package added (Closes: #160831)
  * IntegrityError raised when needed (upstream, Closes: #165791)
  * Packages are lintian clean again.
  
 -- Federico Di Gregorio <fog@debian.org>  Fri, 25 Oct 2002 11:54:19 +0200

psycopg (1.0.12-1) unstable; urgency=low
  
  * New upstream release.
  * Fixed wrong url in RELEASE-1.0. (Closes: #153840)

 -- Federico Di Gregorio <fog@debian.org>  Fri, 13 Sep 2002 13:16:36 +0200
  
psycopg (1.0.11.1-1) unstable; urgency=low

  * New upstream release.
  
 -- Federico Di Gregorio <fog@debian.org>  Mon, 26 Aug 2002 10:41:54 +0200
  
psycopg (1.0.11-1) unstable; urgency=low

  * New upstream release.
  * The dummy python-psycopg package now depends on the new default debian
    python (2.2) and on python2.2-psycopg.
  * Removed support for python 1.5 (support for 2.3 has to wait for egenix
    packages.)

 -- Federico Di Gregorio <fog@debian.org>  Fri, 23 Aug 2002 11:25:01 +0200

psycopg (1.0.10-1) unstable; urgency=low

  * New upstream release.

 -- Federico Di Gregorio <fog@initd.org>  Mon, 22 Jul 2002 02:04:59 +0200

psycopg (1.0.9-1) unstable; urgency=low
  
  * Resolved section override (main->interpreters).
  * New upstream release.
  
 -- Federico Di Gregorio <fog@debian.org>  Thu, 20 Jun 2002 14:00:42 +0200
  
psycopg (1.0.8-1) unstable; urgency=low

  * New upstream release.

 -- Federico Di Gregorio <fog@debian.org>  Tue, 23 Apr 2002 22:42:22 +0200

psycopg (1.0.7.1-2) unstable; urgency=low

  * Moved to main.

 -- Federico Di Gregorio <fog@debian.org>  Fri, 19 Apr 2002 10:06:58 +0200

psycopg (1.0.7.1-1) unstable; urgency=low

  * New upstream release.
  * Fixed a bug in ./configure; closes: #141774.

 -- Federico Di Gregorio <fog@debian.org>  Mon,  8 Apr 2002 18:54:24 +0200

psycopg (1.0.7-1) unstable; urgency=low

  * New upstream release.

 -- Federico Di Gregorio <fog@debian.org>  Fri, 29 Mar 2002 14:24:45 +0100

psycopg (1.0.6-1) unstable; urgency=low

  * New upstream release.
  * Builds with new libpq libraries and header layout.
  
 -- Federico Di Gregorio <fog@debian.org>  Thu,  7 Mar 2002 11:59:40 +0100

psycopg (1.0.5-1) unstable; urgency=low

  * New upstream release.
  
 -- Federico Di Gregorio <fog@debian.org>  Mon,  4 Mar 2002 14:43:13 +0100

psycopg (1.0.4-1) unstable; urgency=low

  * New upstream release.
  
 -- Federico Di Gregorio <fog@debian.org>  Wed, 20 Feb 2002 20:37:16 +0100
  
psycopg (1.0.3-1) unstable; urgency=low

  * New upstream release.
  
 -- Federico Di Gregorio <fog@debian.org>  Fri,  8 Feb 2002 15:17:44 +0100
  
psycopg (1.0.2-1) unstable; urgency=low

  * New upstream release.
  * Added package for python2.2 (Closes: #132650).
  
 -- Federico Di Gregorio <fog@debian.org>  Fri,  8 Feb 2002 00:45:07 +0100
  
psycopg (1.0.1-1) unstable; urgency=low

  * New upstream release.
  
 -- Federico Di Gregorio <fog@debian.org>  Sun, 20 Jan 2002 18:27:22 +0100
  
psycopg (1.0-4) unstable; urgency=low

  * Added build depend on plain python, to really close the %£$! #121229
    bug this time (Closes: #121229).
  
 -- Federico Di Gregorio <fog@debian.org>  Wed, 28 Nov 2001 10:50:06 +0100
  
psycopg (1.0-3) unstable; urgency=low

  * Added explicit build depends on python 1.5 & 2.1 (Closes: #121229).
  * Fixed bad dependency on python1.5-egenix-mxdatetime.
  
 -- Federico Di Gregorio <fog@debian.org>  Mon, 26 Nov 2001 17:18:41 +0100
  
psycopg (1.0-2) unstable; urgency=low

  * Fixed dependencies as per python policy.
  * Added default, unversioned psycopg package (python-psycopg).
  * Added non-US/main and rebuilt after REJECT.
  
 -- Federico Di Gregorio <fog@debian.org>  Fri, 16 Nov 2001 01:14:54 +0100

psycopg (1.0-1) unstable; urgency=low
  
  * New upstream release. 1.0!
  * Now we build versioned packages for python 1.5 and 2.1.
  
 -- Federico Di Gregorio <fog@debian.org>  Tue, 13 Nov 2001 19:24:39 +0100
  
psycopg (0.99.7-1) unstable; urgency=low

  * New upstream release fixing some little bugs.
  * This version requires the mx DateTime packages that are not yet in
    debian... waiting for them I'll distribute both psycopg and unofficial
    packages on the initd psycopg page.

 -- Federico Di Gregorio <fog@debian.org>  Tue, 18 Sep 2001 23:28:51 +0200

psycopg (0.99.6-2) unstable; urgency=low

  * Added suggested build-depends (Closes: #112112).
  * Applied patch by Michael Weber to configure.in, to look for a compiler
    (Closes: #112024).
  
 -- Federico Di Gregorio <fog@debian.org>  Thu, 13 Sep 2001 10:49:37 +0200

psycopg (0.99.6-1) unstable; urgency=low
  
  * Added Build-depends line (Closes: #89798).
  * Now zope-psycopgda requires python-psycopg, zope on debian still runs
    with python 1.x only (Closes: #108890).
  * Moved package to non-US (psycopg depends on postgresql that is in
    non-US, sic).
  
 -- Federico Di Gregorio <fog@debian.org>  Mon,  3 Sep 2001 13:02:11 +0200

psycopg (0.99.5-1) unstable; urgency=low

  * New upstream release with bound variables quoting (Closes: #102843).
  * The build process set the correct path to DateTime module 
    (Closes: #102838).
  * Removes .pyc files in prerm (Closes: #104382)

 -- Federico Di Gregorio <fog@debian.org>  Thu, 12 Jul 2001 12:56:38 +0200
  
psycopg (0.99.4-1) unstable; urgency=low

  * New upstream release.

 -- Federico Di Gregorio <fog@debian.org>  Mon,  2 Jul 2001 15:33:29 +0200
  
psycopg (0.99.3-1) unstable; urgency=low

  * New upstream release.

 -- Federico Di Gregorio <fog@debian.org>  Wed, 20 Jun 2001 12:55:47 +0200

psycopg (0.99.2-1) unstable; urgency=low

  * New upstream release.

 -- Federico Di Gregorio <fog@debian.org>  Tue,  5 Jun 2001 15:37:50 +0200

psycopg (0.99.1-1) unstable; urgency=low

  * New upstream release.

 -- Federico Di Gregorio <fog@debian.org>  Tue,  5 Jun 2001 12:46:18 +0200

psycopg (0.5.5-1) unstable; urgency=low
  
  * New upstream release (ok, *we* are the upstream authors, but after
    putting the -1 in the version i am supposed to say "new upstream
    version" when the non-debian versions changes, right? ouch...)
  
 -- Federico Di Gregorio <fog@debian.org>  Fri,  1 Jun 2001 17:18:52 +0200
  
psycopg (0.5.4-1) unstable; urgency=low
  
  * Another bugfixing release.
  * Added debian revision to be able to release multiple versions with the
    same upstream version.
  
 -- Federico Di Gregorio <fog@debian.org>  Fri, 18 May 2001 19:32:59 +0200
  
psycopg (0.5.3) unstable; urgency=low

  * Some bugs fixed, new release.
  
 -- Federico Di Gregorio <fog@debian.org>  Fri,  4 May 2001 16:19:09 +0200
  
psycopg (0.5.2) unstable; urgency=low

  * New bugfixing release.
  
 -- Federico Di Gregorio <fog@debian.org>  Fri, 27 Apr 2001 09:52:16 +0200
  
psycopg (0.5.1) unstable; urgency=low

  * New bugfixing release.

 -- Federico Di Gregorio <fog@debian.org>  Tue,  3 Apr 2001 11:13:26 +0200

psycopg (0.5.0) unstable; urgency=low

  * New release.

 -- Federico Di Gregorio <fog@debian.org>  Fri, 30 Mar 2001 12:54:42 +0200

psycopg (0.4.7) unstable; urgency=low

  * New release.
  * Lots of small bug fixes (see detailed ChangeLog.)
  * Includes beginning of DBAPI-2.0 testsuite.

 -- Federico Di Gregorio <fog@debian.org>  Fri, 16 Mar 2001 18:29:03 +0100

psycopg (0.4.6) unstable; urgency=low

  * New release.
  * Fixed a little bug in debian/rules (does not create an examples
    directory inside examples.)

 -- Federico Di Gregorio <fog@debian.org>  Wed, 14 Mar 2001 01:00:26 +0100

psycopg (0.4.5) unstable; urgency=low

  * New upstream (mmm... but one of the upstream authors it is
    *me*... mmm...) release.

 -- Federico Di Gregorio <fog@debian.org>  Mon, 12 Mar 2001 11:41:42 +0100

psycopg (0.4.4) unstable; urgency=low
  
  * New release.
  * Fixed Sections in debian/control.
  
 -- Federico Di Gregorio <fog@debian.org>  Fri,  9 Mar 2001 10:11:02 +0100
  
psycopg (0.4.3) unstable; urgency=low

  * New release.
  * Fixed typo in connectionAdd.dtml (Closes: #88817)
  
 -- Federico Di Gregorio <fog@debian.org>  Wed,  7 Mar 2001 15:54:35 +0100
  
psycopg (0.4.2) unstable; urgency=low

  * New release (fixes bugs in ZPsycopgDA.)
  
 -- Federico Di Gregorio <fog@debian.org>  Mon,  5 Mar 2001 13:33:39 +0100
  
psycopg (0.4.1) unstable; urgency=low

  * New release.
  * we now create packages for both versions of python in debian 
  (1.5 and 2.0, packages python-* and python2-*)
  
 -- Federico Di Gregorio <fog@debian.org>  Fri,  2 Mar 2001 12:10:52 +0100
  
psycopg (0.4) unstable; urgency=low

  * News release.
  * Now debian/rules build the Zope Database Adapter zope-psycopgda too.
  * Source name changed from python-psycopg to psycopg.
  
 -- Federico Di Gregorio <fog@debian.org>  Tue, 27 Feb 2001 15:11:04 +0100
  
python-psycopg (0.3) unstable; urgency=low

  * New release. Tons of bugs fixed and new features, see ChangeLog for
    details.

 -- Federico Di Gregorio <fog@debian.org>  Mon, 26 Feb 2001 21:22:23 +0100
  
python-psycopg (0.2) unstable; urgency=low

  * New release. Fixed lots of bugs and memory leaks.

 -- Federico Di Gregorio <fog@debian.org>  Fri, 16 Feb 2001 11:04:17 +0100

python-psycopg (0.1) unstable; urgency=low

  * Initial release.
  
 -- Federico Di Gregorio <fog@debian.org>  Mon, 12 Feb 2001 14:46:53 +0100