Hello,
Kamailio SIP Server v5.0.6 stable release is out.
This is a maintenance release of the previous stable branch, 5.0, that
includes fixes since the release of v5.0.5. There is no change to
database schema or configuration language structure that you have to do
on previous installations of v5.0.x. Deployments running previous v5.0.x
versions are strongly recommended to be upgraded to v5.0.6 or v5.1.x.
For more details about version 5.0.6 (including links and guidelines to
download the tarball or from GIT repository), visit:
* https://www.kamailio.org/w/2018/02/kamailio-v5-0-6-released/
RPM, Debian/Ubuntu packages will be available soon as well.
Note: the latest stable branch is 5.1, at this moment with its latest
release v5.1.1 (and v5.1.2 planned to be out in the next few days). See
more details about it at:
* https://www.kamailio.org/w/kamailio-v5-1-0-release-notes/
Many thanks to all contributing and using Kamailio!
Cheers,
Daniel
--
Daniel-Constantin Mierla
www.twitter.com/miconda -- www.linkedin.com/in/miconda
Kamailio Advanced Training - www.asipto.com
Kamailio World Conference - May 14-16, 2018 - www.kamailioworld.com
Module: kamailio
Branch: master
Commit: 7102888b570ef8bc29b3b389d2500db6e7c4250e
URL: https://github.com/kamailio/kamailio/commit/7102888b570ef8bc29b3b389d2500db…
Author: Kamailio Dev <kamailio.dev(a)kamailio.org>
Committer: Kamailio Dev <kamailio.dev(a)kamailio.org>
Date: 2018-02-27T13:31:23+01:00
modules: readme files regenerated - json ... [skip ci]
---
Modified: src/modules/json/README
---
Diff: https://github.com/kamailio/kamailio/commit/7102888b570ef8bc29b3b389d2500db…
Patch: https://github.com/kamailio/kamailio/commit/7102888b570ef8bc29b3b389d2500db…
---
diff --git a/src/modules/json/README b/src/modules/json/README
index ad65f837f5..1f17cb328b 100644
--- a/src/modules/json/README
+++ b/src/modules/json/README
@@ -82,6 +82,12 @@ Chapter 1. Admin Guide
Copy field 'field_name' from json object 'json_string' and store it in
pvar 'destination'.
+ Note that the result is the string representation of that JSON filed.
+ For example, if you want to retrieve a field that has a string value,
+ then the result is the value enclosed in quotes. If the field value is
+ a structure, then the result is the string-formatted representation of
+ that structure.
+
Example 1.1. json_get_field usage
...
json_get_field("{'foo':'bar'}", "foo", "$var(foo)");