Skip to content

Releases: simdsoft/yasio

v4.1.2

05 Dec 14:34
Compare
Choose a tag to compare

CHANGELOG

  1. Slice sending udp data to mtu (65507) avoid send fail

v4.1.1

21 Nov 16:28
Compare
Choose a tag to compare

CHANGELOG

  1. Fix unpack incorrect when YOPT_C_UNPACK_STRIP > 0
  2. Improve pod_vector aka array_buffer, now yasio::byte_buffer just a alias of it

Full Changelog: v4.1.0...v4.1.1

v4.1.0

10 Aug 11:59
2dee77c
Compare
Choose a tag to compare

CHANGELOG

  1. Change yasio-ni API yasio_create_service prototype to: YASIO_NI_API void* yasio_create_service(int channel_count, void(YASIO_INTEROP_DECL* event_cb)(yasio_event_data* event), void* user);
  2. Prob both v4, v6, v4mapped when resolve ip address
  3. Add option YOPT_S_HRES_TIMER for enable high resolution timer on win32

Full Changelog: v4.0.0...v4.1.0

v4.0.0

05 Jul 12:25
Compare
Choose a tag to compare

CHANGELOG

  1. IMPORTANT: Rename YOPT_S_DEFERRED_EVENT to YOPT_S_NO_DISPATCH, and the default event dispatch behavior was changed,
    by default, the network thread will always dispatch events at end of event loop. you must set YOPT_S_NO_DISPATCH to 1 to
    ensure the dispatch behavior match with previous releases
  2. The YOPT_S_DEFER_EVENT_CB return check changed, return true to tell io_service the event already processed, io_service will
    skip processed event, previous releases should return false
  3. Improve kcp transport, fix data retention problem(caused by interval too large) and update kcp to git 1.7-f2aa30e
  4. Add support forward packet on both send and recv stages
  5. Rename preprocessors YASIO_HAVE_ to YASIO_ENABLE_XXX, YASIO_HAVE_CARES to YASIO_USE_CARES
  6. Refactor non-blocking io mode, add epoll/wepoll, kqueue, evport support by YASIO_ENABLE_HPERF_IO, by default not enabled
  7. Remove namespace yasio::gc
  8. Improve object_pool and singleton
  9. Migrate build scripts to powershell runs on windows,linux,macos
  10. Rename cmake feature options:
    • YASIO_BUILD_WITH_LUA --> YASIO_ENABLE_LUA
    • YASIO_BUILD_WITH_CCLUA --> YASIO_ENABLE_CCLUA
    • YAISO_BUILD_NI --> YASIO_ENABLE_NI
  11. Auto disable YASIO_BUILD_TESTS and YASIO_BUILD_LUA_EXAMPLE when yasio not in root directory of cmake project
  12. Move public headers to yasio/ which are allow include directly, like yasio/xxx.hpp, private header to yasio/impl/ which don't allow been included

What's Changed

Full Changelog: v3.39.7...v4.0.0

v3.39.12

19 Jun 08:47
Compare
Choose a tag to compare

What's Changed

Full Changelog: v3.39.11...v3.39.12

v3.39.11

14 May 14:58
Compare
Choose a tag to compare

Full Changelog: v3.39.10...v3.39.11

v3.39.10

14 May 08:55
Compare
Choose a tag to compare

CHANGELOG

  1. Improve object_pool, ensure address of allocated object from pool align with std::max_align_t,
    should fix optimized-build crash on android x86_64.

v3.39.9

17 Apr 04:01
Compare
Choose a tag to compare

CHANGELOG

  1. Remove unsafe option: YOPT_S_FORWARD_EVENT, may cause internal channel behavior incorrect.

  2. Add forward packet event support, new option: YOPT_S_FORWARD_PACKET, after enable forward packet:

    • Use event->packet_view() receive packet event
    • No upack
    • No deferred packet
    • No GC alloc
  3. Fix sort_timers may cause std::sort crash on sort callback when system clock slow

  4. Fix typo YASIO_ENABLE_PASSIVE_EVENT

  5. Fix timer queue empty check

v3.39.7

13 Jan 11:42
ac1e355
Compare
Choose a tag to compare

CHANGELOG

  1. Add forward event support fire packet event, new option: YOPT_S_FORWARD_EVENT, after enable forward event:

    • Use event->packet_view() receive packet event
    • No upack
    • No deferred event
    • No GC alloc
  2. Refactor ssl backends, add follow new option and channel kind

    • YOPT_S_SSL_CERT: to specific ssl server cert and private_key files
    • YCK_SSL_SERVER: open a channel as ssl server, notes: require specific valid cert and private_key file with option YOPT_S_SSL_CERT
    • Also fix crash on destructor of io_transport_ssl
  3. Improve option YOPT_S_SSL_CACERT, now support specific multi-certs with delimiter ,

  4. Improve c-ares integration

  5. Improve extesion yasio_http, move it's dependent llhttp to thirdparty and managed by git submodule

  6. Remove signal_blocker when create service thread which will cause app random stuck on startup

  7. Fix c++20 compiler warnings

v3.39.6

01 Jan 09:39
ab7ee82
Compare
Choose a tag to compare

This release mainly change is use poll as default reactor.