Ein Projekt das es ermöglicht Beerpong über das Internet von zwei unabhängigen positionen aus zu spielen. Entstehung im Rahmen einer Praktikumsaufgabe im Fach Interaktion.
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

HISTORY.md 4.3KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210
  1. 1.8.4 / 2014-09-23
  2. ==================
  3. * fix content encoding to be case-insensitive
  4. 1.8.3 / 2014-09-19
  5. ==================
  6. * deps: qs@2.2.4
  7. - Fix issue with object keys starting with numbers truncated
  8. 1.8.2 / 2014-09-15
  9. ==================
  10. * deps: depd@0.4.5
  11. 1.8.1 / 2014-09-07
  12. ==================
  13. * deps: media-typer@0.3.0
  14. * deps: type-is@~1.5.1
  15. 1.8.0 / 2014-09-05
  16. ==================
  17. * make empty-body-handling consistent between chunked requests
  18. - empty `json` produces `{}`
  19. - empty `raw` produces `new Buffer(0)`
  20. - empty `text` produces `''`
  21. - empty `urlencoded` produces `{}`
  22. * deps: qs@2.2.3
  23. - Fix issue where first empty value in array is discarded
  24. * deps: type-is@~1.5.0
  25. - fix `hasbody` to be true for `content-length: 0`
  26. 1.7.0 / 2014-09-01
  27. ==================
  28. * add `parameterLimit` option to `urlencoded` parser
  29. * change `urlencoded` extended array limit to 100
  30. * respond with 415 when over `parameterLimit` in `urlencoded`
  31. 1.6.7 / 2014-08-29
  32. ==================
  33. * deps: qs@2.2.2
  34. - Remove unnecessary cloning
  35. 1.6.6 / 2014-08-27
  36. ==================
  37. * deps: qs@2.2.0
  38. - Array parsing fix
  39. - Performance improvements
  40. 1.6.5 / 2014-08-16
  41. ==================
  42. * deps: on-finished@2.1.0
  43. 1.6.4 / 2014-08-14
  44. ==================
  45. * deps: qs@1.2.2
  46. 1.6.3 / 2014-08-10
  47. ==================
  48. * deps: qs@1.2.1
  49. 1.6.2 / 2014-08-07
  50. ==================
  51. * deps: qs@1.2.0
  52. - Fix parsing array of objects
  53. 1.6.1 / 2014-08-06
  54. ==================
  55. * deps: qs@1.1.0
  56. - Accept urlencoded square brackets
  57. - Accept empty values in implicit array notation
  58. 1.6.0 / 2014-08-05
  59. ==================
  60. * deps: qs@1.0.2
  61. - Complete rewrite
  62. - Limits array length to 20
  63. - Limits object depth to 5
  64. - Limits parameters to 1,000
  65. 1.5.2 / 2014-07-27
  66. ==================
  67. * deps: depd@0.4.4
  68. - Work-around v8 generating empty stack traces
  69. 1.5.1 / 2014-07-26
  70. ==================
  71. * deps: depd@0.4.3
  72. - Fix exception when global `Error.stackTraceLimit` is too low
  73. 1.5.0 / 2014-07-20
  74. ==================
  75. * deps: depd@0.4.2
  76. - Add `TRACE_DEPRECATION` environment variable
  77. - Remove non-standard grey color from color output
  78. - Support `--no-deprecation` argument
  79. - Support `--trace-deprecation` argument
  80. * deps: iconv-lite@0.4.4
  81. - Added encoding UTF-7
  82. * deps: raw-body@1.3.0
  83. - deps: iconv-lite@0.4.4
  84. - Added encoding UTF-7
  85. - Fix `Cannot switch to old mode now` error on Node.js 0.10+
  86. * deps: type-is@~1.3.2
  87. 1.4.3 / 2014-06-19
  88. ==================
  89. * deps: type-is@1.3.1
  90. - fix global variable leak
  91. 1.4.2 / 2014-06-19
  92. ==================
  93. * deps: type-is@1.3.0
  94. - improve type parsing
  95. 1.4.1 / 2014-06-19
  96. ==================
  97. * fix urlencoded extended deprecation message
  98. 1.4.0 / 2014-06-19
  99. ==================
  100. * add `text` parser
  101. * add `raw` parser
  102. * check accepted charset in content-type (accepts utf-8)
  103. * check accepted encoding in content-encoding (accepts identity)
  104. * deprecate `bodyParser()` middleware; use `.json()` and `.urlencoded()` as needed
  105. * deprecate `urlencoded()` without provided `extended` option
  106. * lazy-load urlencoded parsers
  107. * parsers split into files for reduced mem usage
  108. * support gzip and deflate bodies
  109. - set `inflate: false` to turn off
  110. * deps: raw-body@1.2.2
  111. - Support all encodings from `iconv-lite`
  112. 1.3.1 / 2014-06-11
  113. ==================
  114. * deps: type-is@1.2.1
  115. - Switch dependency from mime to mime-types@1.0.0
  116. 1.3.0 / 2014-05-31
  117. ==================
  118. * add `extended` option to urlencoded parser
  119. 1.2.2 / 2014-05-27
  120. ==================
  121. * deps: raw-body@1.1.6
  122. - assert stream encoding on node.js 0.8
  123. - assert stream encoding on node.js < 0.10.6
  124. - deps: bytes@1
  125. 1.2.1 / 2014-05-26
  126. ==================
  127. * invoke `next(err)` after request fully read
  128. - prevents hung responses and socket hang ups
  129. 1.2.0 / 2014-05-11
  130. ==================
  131. * add `verify` option
  132. * deps: type-is@1.2.0
  133. - support suffix matching
  134. 1.1.2 / 2014-05-11
  135. ==================
  136. * improve json parser speed
  137. 1.1.1 / 2014-05-11
  138. ==================
  139. * fix repeated limit parsing with every request
  140. 1.1.0 / 2014-05-10
  141. ==================
  142. * add `type` option
  143. * deps: pin for safety and consistency
  144. 1.0.2 / 2014-04-14
  145. ==================
  146. * use `type-is` module
  147. 1.0.1 / 2014-03-20
  148. ==================
  149. * lower default limits to 100kb