Module: kamailio
Branch: master
Commit: 48f4da344bd96e9a19b7c99c37d9dfe29de78933
URL: https://github.com/kamailio/kamailio/commit/48f4da344bd96e9a19b7c99c37d9dfe…
Author: Daniel-Constantin Mierla <miconda(a)gmail.com>
Committer: Daniel-Constantin Mierla <miconda(a)gmail.com>
Date: 2024-02-23T19:28:52+01:00
Makefile.defs: version set to 5.9.0-dev0
- master branch is open for new features to be part of the future major
series, to be versioned 5.9.x or maybe 6.0.x
---
Modified: src/Makefile.defs
---
Diff: https://github.com/kamailio/kamailio/commit/48f4da344bd96e9a19b7c99c37d9dfe…
Patch: https://github.com/kamailio/kamailio/commit/48f4da344bd96e9a19b7c99c37d9dfe…
---
diff --git a/src/Makefile.defs b/src/Makefile.defs
index b195c7fe59d..4165ca084fb 100644
--- a/src/Makefile.defs
+++ b/src/Makefile.defs
@@ -105,9 +105,9 @@ INSTALL_FLAVOUR=$(FLAVOUR)
# version number
VERSION = 5
-PATCHLEVEL = 8
+PATCHLEVEL = 9
SUBLEVEL = 0
-EXTRAVERSION = -pre1
+EXTRAVERSION = -dev0
# memory manager switcher
# 0 - f_malloc (fast malloc)
Module: kamailio
Branch: master
Commit: 17536b1064b40c305f28c4c19392504afc0b9701
URL: https://github.com/kamailio/kamailio/commit/17536b1064b40c305f28c4c19392504…
Author: Dennis Yurasov <dennis-y(a)yandex-team.ru>
Committer: Daniel-Constantin Mierla <miconda(a)gmail.com>
Date: 2024-02-23T12:36:20+01:00
dispatcher: added two new flags to mode parameter of ds_is_from_list function for more strictly matching
- Two new flgs added:
DS_MATCH_SOCKET (8) to take in account socket/sockname attribute of gw
DS_MATCH_TRY_FULLADDRSOCK (16) try to find the most complete "address/protocol/port/local socket" combination for all dispatcher targets
---
Modified: src/modules/dispatcher/dispatch.c
Modified: src/modules/dispatcher/dispatch.h
Modified: src/modules/dispatcher/doc/dispatcher_admin.xml
---
Diff: https://github.com/kamailio/kamailio/commit/17536b1064b40c305f28c4c19392504…
Patch: https://github.com/kamailio/kamailio/commit/17536b1064b40c305f28c4c19392504…
<!-- Kamailio Pull Request Template -->
<!--
IMPORTANT:
- for detailed contributing guidelines, read:
https://github.com/kamailio/kamailio/blob/master/.github/CONTRIBUTING.md
- pull requests must be done to master branch, unless they are backports
of fixes from master branch to a stable branch
- backports to stable branches must be done with 'git cherry-pick -x ...'
- code is contributed under BSD for core and main components (tm, sl, auth, tls)
- code is contributed GPLv2 or a compatible license for the other components
- GPL code is contributed with OpenSSL licensing exception
-->
#### Pre-Submission Checklist
<!-- Go over all points below, and after creating the PR, tick all the checkboxes that apply -->
<!-- All points should be verified, otherwise, read the CONTRIBUTING guidelines from above-->
<!-- If you're unsure about any of these, don't hesitate to ask on sr-dev mailing list -->
- [x] Commit message has the format required by CONTRIBUTING guide
- [x] Commits are split per component (core, individual modules, libs, utils, ...)
- [x] Each component has a single commit (if not, squash them into one commit)
- [x] No commits to README files for modules (changes must be done to docbook files
in `doc/` subfolder, the README file is autogenerated)
#### Type Of Change
- [ ] Small bug fix (non-breaking change which fixes an issue)
- [ ] New feature (non-breaking change which adds new functionality)
- [ ] Breaking change (fix or feature that would change existing functionality)
#### Checklist:
<!-- Go over all points below, and after creating the PR, tick the checkboxes that apply -->
- [ ] PR should be backported to stable branches
- [x] Tested changes locally
- [ ] Related to issue #XXXX (replace XXXX with an open issue number)
#### Description
<!-- Describe your changes in detail -->
This PR adds the support of using PVs in the `prefix` parameter.
Also refactors the properties into a structure for each file.
You can view, comment on, or merge this pull request online at:
https://github.com/kamailio/kamailio/pull/3763
-- Commit Summary --
* file_out: Prefix can use PVs
* file_out: Refactor
-- File Changes --
M src/modules/file_out/file_out.c (140)
M src/modules/file_out/types.c (38)
M src/modules/file_out/types.h (17)
-- Patch Links --
https://github.com/kamailio/kamailio/pull/3763.patchhttps://github.com/kamailio/kamailio/pull/3763.diff
--
Reply to this email directly or view it on GitHub:
https://github.com/kamailio/kamailio/pull/3763
You are receiving this because you are subscribed to this thread.
Message ID: <kamailio/kamailio/pull/3763(a)github.com>
<!-- Kamailio Pull Request Template -->
<!--
IMPORTANT:
- for detailed contributing guidelines, read:
https://github.com/kamailio/kamailio/blob/master/.github/CONTRIBUTING.md
- pull requests must be done to master branch, unless they are backports
of fixes from master branch to a stable branch
- backports to stable branches must be done with 'git cherry-pick -x ...'
- code is contributed under BSD for core and main components (tm, sl, auth, tls)
- code is contributed GPLv2 or a compatible license for the other components
- GPL code is contributed with OpenSSL licensing exception
-->
#### Pre-Submission Checklist
<!-- Go over all points below, and after creating the PR, tick all the checkboxes that apply -->
<!-- All points should be verified, otherwise, read the CONTRIBUTING guidelines from above-->
<!-- If you're unsure about any of these, don't hesitate to ask on sr-dev mailing list -->
- [x] Commit message has the format required by CONTRIBUTING guide
- [x] Commits are split per component (core, individual modules, libs, utils, ...)
- [x] Each component has a single commit (if not, squash them into one commit)
- [x] No commits to README files for modules (changes must be done to docbook files
in `doc/` subfolder, the README file is autogenerated)
#### Type Of Change
- [ ] Small bug fix (non-breaking change which fixes an issue)
- [ ] New feature (non-breaking change which adds new functionality)
- [ ] Breaking change (fix or feature that would change existing functionality)
#### Checklist:
<!-- Go over all points below, and after creating the PR, tick the checkboxes that apply -->
- [ ] PR should be backported to stable branches
- [ ] Tested changes locally
- [ ] Related to issue #XXXX (replace XXXX with an open issue number)
#### Description
<!-- Describe your changes in detail -->
You can view, comment on, or merge this pull request online at:
https://github.com/kamailio/kamailio/pull/3761
-- Commit Summary --
* microhttpd: fixed typo in the documentation
-- File Changes --
M src/modules/microhttpd/doc/microhttpd_admin.xml (2)
-- Patch Links --
https://github.com/kamailio/kamailio/pull/3761.patchhttps://github.com/kamailio/kamailio/pull/3761.diff
--
Reply to this email directly or view it on GitHub:
https://github.com/kamailio/kamailio/pull/3761
You are receiving this because you are subscribed to this thread.
Message ID: <kamailio/kamailio/pull/3761(a)github.com>