All notable changes to this project will be documented in this file.
The format is based on Keep a Changelog and this project adheres to Semantic Versioning.
- Moved repo to funbox organization.
- Option to set arbitrary initial sequence number for SMPP sessions.
- Elixir 1.9 builds in CI.
- Updated
excoveralls
dependency. - Added
SMPPEX.Pdu.ValidityPeriod
module for dealing withvalidity_period
PDU field.
- Removed Elixir 1.2, 1.3 support and the corresponding builds from CI.
- Elixir 1.8 builds in CI.
- OTP 18 support.
- Fixed
data_sm
packet syntax.
- Unfixed
ranch
from< 1.6.0
, since its internal changes do not affect our code.
- Fixed automatic
enquire_link
sequence id generation. - Fixed
ranch
to< 1.6.0
due to its incompatible changes.
- Parsing mudule for
network_error_code
field. network_error_code
field support inoserl
converter.
- Handling of generic
GenServer
call
andcast
messages.
- Fixed handling of PDUs with negative
send_pdu_result
status: they do not appear inhandle_resp_timeout
callack anymore.
submit_sm
factory methods with automatic TON/NPI detection.
- Dropped Elixir 1.1.1 and OTP 17 support.
- Made
SMPPEX.ESME.Sync
be safe for making requestd from multiple processes.
- Updated build matrix for Travis CI. Removed assets for obsolete version builds.
- Updated build matrix for Travis CI. Added Elixir 1.6.
- Added explicit extract functions in SMPPEX.Pdu.Multipart.
- Fixed Ranch transport handling in SMPPEX.TransportSession, this fixes SSL transport support.
- SMPPEX.ESME.Sync: ignore successful send_pdu_result for syncronously sent PDUs.
- SMPPEX.ESME.Sync: exit with normal on socket close.
- Fixed handling socket close/error for SMPPEX.ESME.Sync
- Loosened
ranch
version requirements.
- Added strict response type for
terminate
callback. Also,terminate
callback is now allowed to return some last pdus for sending.
- Automatic handling of
enquire_link
andenquire_link_resp
PDUs.
PduStorage
implementation to be OTP 17 compatible.
This release contains significant architectural changes and API incompatibilities.
- Added single
SMPPEX.Session
behavior instead of seperateSMPPEX.ESME
andSMPPEX.MC
behaviours. SMPPEX.Session
callbacks are moreGenServer
compliant.- Most of
SMPPEX.Session
callbacks are allowed to return stop indicating tuple. - Most of
SMPPEX.Session
callbacks are allowed to return a list of PDUs to send. - All methods interacting with
SMPPEX.Session
are synchronous.
- Elixir 1.5 builds in CI.
- Usage of a separate process for ESME/MC connections.
- Usage of
ranch
supervisor of launching ESME connections. - Special methods for sending PDU replies to ESME/MC in favor of
Pdu.as_reply_to/2
method.
ex_doc
updated to 1.x.
This is the first stable release introduced from numerous 0.x.x versions. Although this library has been already used in production for quite a while, it's only purpose is to designate the divergence from 2.x.x branch.
- ESME functionality.
- MC functionality.
- Synchronous ESME client.