Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
A
asterisk
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Wiki
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Snippets
Build
Pipelines
Jobs
Pipeline schedules
Artifacts
Deploy
Releases
Container registry
Model registry
Operate
Environments
Monitor
Incidents
Analyze
Value stream analytics
Contributor analytics
CI/CD analytics
Repository analytics
Issue analytics
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Terms and privacy
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
Voice
asterisk
Commits
c0d6dac2
Commit
c0d6dac2
authored
1 year ago
by
Asterisk Development Team
Browse files
Options
Downloads
Patches
Plain Diff
Update for 18.18.1
parent
7b55312c
No related branches found
No related tags found
No related merge requests found
Changes
3
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
.version
+1
-1
1 addition, 1 deletion
.version
CHANGES.md
+1
-1
1 addition, 1 deletion
CHANGES.md
ChangeLogs/ChangeLog-18.18.1.md
+146
-0
146 additions, 0 deletions
ChangeLogs/ChangeLog-18.18.1.md
with
148 additions
and
2 deletions
.version
+
1
−
1
View file @
c0d6dac2
18.18.
0
18.18.
1
This diff is collapsed.
Click to expand it.
CHANGES.md
+
1
−
1
View file @
c0d6dac2
ChangeLogs/ChangeLog-18.18.0.md
ChangeLogs/ChangeLog-18.18.1.md
\ No newline at end of file
\ No newline at end of file
This diff is collapsed.
Click to expand it.
ChangeLogs/ChangeLog-18.18.1.md
0 → 100644
+
146
−
0
View file @
c0d6dac2
Change Log for Release 18.18.1
========================================
Links:
----------------------------------------
-
[
Full ChangeLog
](
https://downloads.asterisk.org/pub/telephony/asterisk/releases/ChangeLog-18.18.1.md
)
-
[
GitHub Diff
](
https://github.com/asterisk/asterisk/compare/18.18.0...18.18.1
)
-
[
Tarball
](
https://downloads.asterisk.org/pub/telephony/asterisk/asterisk-18.18.1.tar.gz
)
-
[
Downloads
](
https://downloads.asterisk.org/pub/telephony/asterisk
)
Summary:
----------------------------------------
-
apply_patches: Use globbing instead of file/sort.
-
apply_patches: Sort patch list before applying
-
pjsip: Upgrade bundled version to pjproject 2.13.1
User Notes:
----------------------------------------
-
### res_http_media_cache: Introduce options and customize
The res_http_media_cache module now attempts to load
configuration from the res_http_media_cache.conf file.
The following options were added:
*
timeout_secs
*
user_agent
*
follow_location
*
max_redirects
*
protocols
*
redirect_protocols
*
dns_cache_timeout_secs
-
### format_sln: add .slin as supported file extension
format_sln now recognizes '.slin' as a valid
file extension in addition to the existing
'.sln' and '.raw'.
-
### bridge_builtin_features: add beep via touch variable
Add optional touch variable : TOUCH_MIXMONITOR_BEEP(interval)
Setting TOUCH_MIXMONITOR_BEEP/TOUCH_MONITOR_BEEP to a valid
interval in seconds will result in a periodic beep being
played to the monitored channel upon MixMontior/Monitor
feature start.
If an interval less than 5 seconds is specified, the interval
will default to 5 seconds. If the value is set to an invalid
interval, the default of 15 seconds will be used.
-
### app_senddtmf: Add SendFlash AMI action.
The SendFlash AMI action now allows sending
a hook flash event on a channel.
-
### res_mixmonitor: MixMonitorMute by MixMonitor ID
It is now possible to specify the MixMonitorID when calling
the manager action: MixMonitorMute. This will allow an
individual MixMonitor instance to be muted via ID.
The MixMonitorID can be stored as a channel variable using
the 'i' MixMonitor option and is returned upon creation if
this option is used.
As part of this change, if no MixMonitorID is specified in
the manager action MixMonitorMute, Asterisk will set the mute
flag on all MixMonitor audiohooks on the channel. Previous
behavior would set the flag on the first MixMonitor audiohook
found.
-
### pbx_dundi: Add PJSIP support.
DUNDi now supports chan_pjsip. Outgoing calls using
PJSIP require the pjsip_outgoing_endpoint option
to be set in dundi.conf.
-
### test.c: Fix counting of tests and add 2 new tests
The "tests" attribute of the "testsuite" element in the
output XML now reflects only the tests actually requested
to be executed instead of all the tests registered.
The "failures" attribute was added to the "testsuite"
element.
Also added two new unit tests that just pass and fail
to be used for testing CI itself.
-
### cli: increase channel column width
This change increases the display width on 'core show channels'
amd 'core show channels verbose'
For 'core show channels', the Channel name field is increased to
64 characters and the Location name field is increased to 32
characters.
For 'core show channels verbose', the Channel name field is
increased to 80 characters, the Context is increased to 24
characters and the Extension is increased to 24 characters.
Upgrade Notes:
----------------------------------------
Closed Issues:
----------------------------------------
-
#193: [bug]: third-party/apply-patches doesn't sort the patch file list before applying
Commits By Author:
----------------------------------------
-
### George Joseph (1):
-
apply_patches: Sort patch list before applying
-
### Sean Bright (1):
-
apply_patches: Use globbing instead of file/sort.
-
### Stanislav Abramenkov (1):
-
pjsip: Upgrade bundled version to pjproject 2.13.1
Detail:
----------------------------------------
-
### apply_patches: Use globbing instead of file/sort.
Author: Sean Bright
Date: 2023-07-06
This accomplishes the same thing as a
`find ... | sort`
but with the
added benefit of clarity and avoiding a call to a subshell.
Additionally drop the -s option from call to patch as it is not POSIX.
-
### apply_patches: Sort patch list before applying
Author: George Joseph
Date: 2023-07-06
The apply_patches script wasn't sorting the list of patches in
the "patches" directory before applying them. This left the list
in an indeterminate order. In most cases, the list is actually
sorted but rarely, they can be out of order and cause dependent
patches to fail to apply.
We now sort the list but the "sort" program wasn't in the
configure scripts so we needed to add that and regenerate
the scripts as well.
Resolves: #193
-
### pjsip: Upgrade bundled version to pjproject 2.13.1
Author: Stanislav Abramenkov
Date: 2023-07-05
This diff is collapsed.
Click to expand it.
Preview
0%
Loading
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Save comment
Cancel
Please
register
or
sign in
to comment