Ignore:
Timestamp:
11/25/21 22:08:24 (3 years ago)
Author:
Ema <ema_spirova@…>
Branches:
master
Children:
8d391a1
Parents:
59329aa
Message:

primeNG components

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trip-planner-front/node_modules/engine.io/CHANGELOG.md

    r59329aa re29cc2e  
     1# [6.1.0](https://github.com/socketio/engine.io/compare/6.0.0...6.1.0) (2021-11-08)
     2
     3
     4### Bug Fixes
     5
     6* fix payload encoding for v3 clients ([ed50fc3](https://github.com/socketio/engine.io/commit/ed50fc346b9c58459bf4e6fe5c45e8d34faac8da))
     7
     8
     9### Features
     10
     11* add an implementation based on uWebSockets.js ([271e2df](https://github.com/socketio/engine.io/commit/271e2df94d39bbd13c33cab98cdd5915f9d28536))
     12
     13
     14### Performance Improvements
     15
     16* refresh ping timer ([#628](https://github.com/socketio/engine.io/issues/628)) ([37474c7](https://github.com/socketio/engine.io/commit/37474c7e67be7c5f25f9ca2d4ea99f3a256bd2de))
     17
     18
     19
     20## [6.0.1](https://github.com/socketio/engine.io/compare/6.0.0...6.0.1) (2021-11-06)
     21
     22
     23### Bug Fixes
     24
     25* fix payload encoding for v3 clients ([3f42262](https://github.com/socketio/engine.io/commit/3f42262fd27a77a7383cdbb44ede7c6211a9782b))
     26
     27
     28
     29# [6.0.0](https://github.com/socketio/engine.io/compare/5.2.0...6.0.0) (2021-10-08)
     30
     31The codebase was migrated to TypeScript ([c0d6eaa](https://github.com/socketio/engine.io/commit/c0d6eaa1ba1291946dc8425d5f533d5f721862dd))
     32
     33An ES module wrapper was also added ([401f4b6](https://github.com/socketio/engine.io/commit/401f4b60693fb6702c942692ce42e5bb701d81d7)).
     34
     35Please note that the communication protocol was not updated, so a v5 client will be able to reach a v6 server (and vice-versa).
     36
     37Reference: https://github.com/socketio/engine.io-protocol
     38
     39### BREAKING CHANGES
     40
     41- the default export was removed, so the following code won't work anymore:
     42
     43```js
     44const eioServer = require("engine.io")(httpServer);
     45```
     46
     47Please use this instead:
     48
     49```js
     50const { Server } = require("engine.io");
     51const eioServer = new Server(httpServer);
     52```
     53
     54### Dependencies
     55
     56`ws` version: `~8.2.3` (bumped from `~7.4.2`)
     57
     58# [5.2.0](https://github.com/socketio/engine.io/compare/5.1.1...5.2.0) (2021-08-29)
     59
     60No change on the server-side, this matches the client release.
     61
     62
     63## [5.1.1](https://github.com/socketio/engine.io/compare/5.1.0...5.1.1) (2021-05-16)
     64
     65
     66### Bug Fixes
     67
     68* properly close the websocket connection upon handshake error ([4360686](https://github.com/socketio/engine.io/commit/43606865e5299747cbb31f3ed9baf4567502a879))
     69
     70
     71# [5.1.0](https://github.com/socketio/engine.io/compare/5.0.0...5.1.0) (2021-05-04)
     72
     73
     74### Features
     75
     76* add a "connection_error" event ([7096e98](https://github.com/socketio/engine.io/commit/7096e98a02295a62c8ea2aa56461d4875887092d))
     77* add the "initial_headers" and "headers" events ([2527543](https://github.com/socketio/engine.io/commit/252754353a0e88eb036ebb3082e9d6a9a5f497db))
     78
     79
     80### Performance Improvements
     81
     82* **websocket:** add a "wsPreEncoded" writing option ([7706b12](https://github.com/socketio/engine.io/commit/7706b123df914777d19c8179b45ab6932f82916c))
     83* **websocket:** fix write back-pressure ([#618](https://github.com/socketio/engine.io/issues/618)) ([ad5306a](https://github.com/socketio/engine.io/commit/ad5306aeaedf06ac7a49f791e1b76e55c35a564e))
     84
     85
     86# [5.0.0](https://github.com/socketio/engine.io/compare/4.1.1...5.0.0) (2021-03-10)
     87
     88
     89### Bug Fixes
     90
     91* set default protocol version to 3 ([#616](https://github.com/socketio/engine.io/issues/616)) ([868d891](https://github.com/socketio/engine.io/commit/868d89111de0ab5bd0e147ecaff7983afbf5d087))
     92
     93
     94### Features
     95
     96* increase the default value of pingTimeout ([5a7fa13](https://github.com/socketio/engine.io/commit/5a7fa132c442bc1e7eefa1cf38168ee951575ded))
     97* remove dynamic require() with wsEngine ([edb7343](https://github.com/socketio/engine.io/commit/edb734316f143bf0f1bbc344e966d18e2676b934))
     98
     99
     100### BREAKING CHANGES
     101
     102* the syntax of the "wsEngine" option is updated
     103
     104Before:
     105
     106```js
     107const eioServer = require("engine.io")(httpServer, {
     108  wsEngine: "eiows"
     109});
     110```
     111
     112After:
     113
     114```js
     115const eioServer = require("engine.io")(httpServer, {
     116  wsEngine: require("eiows").Server
     117});
     118```
     119
     120
    1121## [4.1.1](https://github.com/socketio/engine.io/compare/4.1.0...4.1.1) (2021-02-02)
    2122
Note: See TracChangeset for help on using the changeset viewer.