File: Changes

package info (click to toggle)
libhttp-tiny-multipart-perl 0.08-2
  • links: PTS, VCS
  • area: main
  • in suites: bookworm, forky, sid, trixie
  • size: 128 kB
  • sloc: perl: 268; makefile: 2
file content (57 lines) | stat: -rw-r--r-- 1,550 bytes parent folder | download | duplicates (3)
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
Change history for HTTP::Tiny::Multipart
========================================

0.08  2018-04-30 18:59:00

      [IMPROVEMENTS]
      * Do not modify the args hash, it is a user supplied reference, and removing headers from it is a noop since the headers key is already defined after the args when calling request().
      * No need to double clone the headers hash.
      * Update Carp::Internal so that croak()s actually end up at a useful place.
      * All done by @bluefeet, thanks!


      [MISC]
      * updated dist.ini to create README, add contributors, ...
      * add travis config

0.07  2017-08-12

      [MISC]
      * Added META.json

0.06  2017-08-12

      [DOCUMENTATION]
      * Small fix in the examples

0.05  2015-09-22

      [BUGFIX]
      * If $1 is defined from a previous regex match, the Content-Type of the request is incorrect.  The fix is to only use $1 and $2 if the regex matched. (Infinoid, github #3)

0.04  2015-06-05

      [BUGFIX]
      * Fix out-by-one error on last_boundary (sdt, github#1)

      [DOCUMENTATION]
      * Small fixups for second pod example (sdt, github#2)

      [TESTS]
      * Added basic tests for _build_content
      * Added basic tests for multipart post

0.03  2014-08-26

      add more documentation
      set content-type for fileuploads if a content-type is defined

0.02  2013-09-13T17:36:55

      return the parts of the body
      parts are a arrayref, need to deref when using join
      set the filename for fileuploads

0.01  2013-09-13T16:47:32

      initial release