File: Changes

package info (click to toggle)
libnet-dns-native-perl 0.22-2
  • links: PTS, VCS
  • area: main
  • in suites: bookworm, bullseye, forky, sid, trixie
  • size: 588 kB
  • sloc: cpp: 589; ansic: 460; perl: 113; makefile: 5
file content (86 lines) | stat: -rw-r--r-- 2,930 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
Revision history for Perl extension Net::DNS::Native

0.22  Tue Oct 29 23:45:34 +07 2019
    - Refactoring of object destroying

0.21  Thu Oct 24 21:58:35 +07 2019
    - Better link to gethostbyname() inside documentation (#gh11)
    - Include system error to error message when EAI_SYSTEM returned by getaddrinfo() (#gh10)

0.20  Thu Jan 17 10:58:15 +07 2019
    - Fix compilation problems for non-linux platforms, which were introduced in 0.19 (#gh7 #gh8)

0.19  Wed Jan 16 00:07:08 +07 2019
    - Prevent file descriptors leak on exec (#gh5)
    - Mention that pthreads are linked by default since perl 5.22 (#gh6)
    - Do not make noise during global destruction

0.18  Sat Feb 10 21:41:32 DST 2018
    - Fix possible hanging during destruction

0.17  Fri Feb  9 11:35:24 DST 2018
    - Fix possible warning during global destruction,
      where timedout() call on undefined value occures

0.16  Fri Feb  9 00:11:56 DST 2018
    - Automatically mark destroyed handle as timed out
    - Some cleanup fixes inside DESTROY

0.15  Wed Dec 17 19:59:21 NOVT 2014
    - Block all signals for newly created threads to prevent signal
      mess

0.14  Fri Dec 12 22:44:09 NOVT 2014
    - Detect situations when somebody loaded non thread safe symbols
      which we can't override

0.13  Fri Nov 14 14:14:48 NOVT 2014
    - Compare PerlInterpreter pointers without casting: this will eliminate
      compilation problems for strict compilers
    - Wait detached threads before destroying: this will eliminate segfault
      possibility when destroying object with active detached threads

0.12  Sat Nov  8 18:13:49 KRAT 2014
    - Fix test warnings on old perls
    - Try to behave well with perl threads

0.11  Fri Nov  7 17:41:09 NOVT 2014
    - Found a way to get it work on any perl under Linux
    - Try to behave well when process with Net::DNS::Native instances calls fork()

0.10  Tue Nov  4 01:00:54 NOVT 2014
    - More correct perl checks
    - Few typo fixes

0.09  Thu Oct  2 15:53:53 NOVT 2014
    - Fix segfaults on NetBSD and OpenBSD
    - Move perl checks to Makefile.PL

0.08  Wed Oct  1 22:27:19 NOVT 2014
    - `notify_on_begin' option added

0.07  Wed Oct  1 00:51:12 NOVT 2014
    - timedout() method added
    - skip inet_pton(AF_INET6) test if Socket::inet_ntop not implemented

0.06  Mon Sep 29 00:39:03 NOVT 2014
    - `extra_thead' option added
    - tests: try to workaround cases when getnameinfo() doesn't know about AF_INET6

0.05  Fri Sep 26 00:28:55 NOVT 2014
    - Added forgotten queue.h
    - Fix pool for MacOS and Windows

0.04  Wed Sep 24 23:51:28 NOVT 2014
    - Thread pool support added

0.03  Wed Sep 24 01:28:38 NOVT 2014
    - Check is your perl supports threaded extensions

0.02  Tue Sep 23 14:14:22 NOVT 2014
    - Windows support added
    - Fix for gethostbyname() in list context
    - More tests

0.01  Sun Sep 21 21:36:16 NOVT 2014
    - First release to this unpredictable world