]> kaliko git repositories - python-musicpd.git/blob - CHANGES.txt
Gather more OSError exception in musicpd.ConnectionError
[python-musicpd.git] / CHANGES.txt
1 python-musicpd Changes List
2 ===========================
3
4 Changes in 0.9.0
5 ----------------
6
7  * Use right SPDX identifier for license headers
8  * mpd_version attribute init to empty string instead of None
9  * Fixed send_noidle (introduced with e8daa719)
10  * Improved Range object to deal with window parameter
11  * Add logging
12  * Switch to pyproject.toml (setuptools build system)
13  * The connect sequence raises ConnectionError only on error,
14    previously getaddrinfo or unix socket connection error raised an OSError
15
16 Changes in 0.8.0
17 ----------------
18
19 * Need python 3.6 minimum (modernize code)
20 * Add context management for MPDClient instance (Thanks Wonko der Verständige)
21 * Switch to SPDX for license header
22
23 Changes in 0.7.0
24 ----------------
25
26 * Add socket timeout (disabled by default)
27 * MPD_TIMEOUT is set for both tcp and unix sockets
28 * Raises an exception if command contains '\n'
29
30 Changes in 0.6.0
31 ----------------
32
33 * Add binarylimit command
34 * Add getvol command
35 * Honor MPD_TIMEOUT environment variable
36 * Default connection timeout is now 30s (previously 5s)
37 * Add abstract unix socket support
38 * Add tests, improved coverage
39 * Switch back to gztar (even though official python doc mention xztar, PEP 527
40   considers only gztar and zip)
41
42 Changes in 0.5.1
43 ----------------
44
45 * Clean up packaging (remove useless files and html doc)
46 * Remove bztar from sdist
47 * Switch to xztar sdist
48
49 Changes in 0.5.0
50 ----------------
51
52 * Add readpicture command
53 * Add getfingerprint command
54 * Add delpartition command
55 * Add moveoutput command
56 * Update host and port attributes when reconnecting
57 * Fixed albumart
58
59 Changes in 0.4.4
60 ----------------
61
62 * Add tcp socket timeout, exposed in musicpd.CONNECTION_TIMEOUT, defaults to 5s
63   (Thanks to Bart Van Loon)
64 * Add partition commands (Thanks Naglis Jonaitis)
65 * Add listfiles command
66 * Add tagtypes (disable|enable|clear|all) commands
67 * Add albumart command
68
69 Changes in 0.4.3
70 ----------------
71
72 * Use setuptools
73 * Add sphinx documentation
74 * Add sensible defaults and honor environment variables
75   Use MPD_HOST/MPD_PORT (honor password setting in MPD_HOST)
76   If MPD_HOST is not set, tries to find a socket in
77   ${XDG_RUNTIME_DIR:-/run}/mpd/socket
78
79 Changes in 0.4.2
80 ----------------
81
82 * Add unittest (requires mock)
83 * Add mounts and neighbors commands (mount, unmount, listmounts and
84   listneighbors)
85 * Add rangeid command
86 * Add tag editing commands (addtagid and cleartagid)
87 * Add missing priority commands (prio and prioid)
88 * Add config command
89
90 Changes in 0.4.1
91 ----------------
92
93 * Fixed noidle command
94
95 Changes in 0.4.0
96 ----------------
97
98 * support range
99
100 Changes in 0.3.1 UNRELEASED
101 ---------------------------
102
103 * renamed musicpd
104 * python3 port
105 * no python2 support
106 * added searchadd and searchaddpl commands
107 * added seekcur command
108 * added client to client commands
109 * added readcomments and toggleoutput commands
110
111 Changes in 0.3.0
112 ----------------
113
114 * added replay_gain_mode and replay_gain_status commands
115 * added mixrampdb and mixrampdelay commands
116 * added findadd and rescan commands
117 * added decoders command
118 * changed license to LGPL
119 * added sticker commands
120 * correctly handle errors in command lists (fixes a longstanding bug)
121 * raise IteratingError instead of breaking horribly when called wrong
122 * added fileno() to export socket FD (for polling with select et al.)
123 * asynchronous API (use send_<cmd> to queue, fetch_<cmd> to retrieve)
124 * support for connecting to unix domain sockets
125 * added consume and single commands
126 * added idle and noidle commands
127 * added listplaylists command
128
129 Changes in 0.2.1
130 ----------------
131
132 * connect() no longer broken on Windows
133
134 Changes in 0.2.0
135 ----------------
136
137 * support for IPv6 and multi-homed hostnames
138 * connect() will fail if already connected
139 * commands may now raise ConnectionError
140 * addid and update may now return None