diff --git a/.version b/.version index 3d32543089e5917cd8016a3dfe1a0cc2573b0c60..6569dfa4f323c7beb7d4bdba9c084c20e52a4b25 100644 --- a/.version +++ b/.version @@ -1 +1 @@ -20.8.0 +20.8.1 diff --git a/CHANGES.md b/CHANGES.md index de21c65df83cc75ac788662d6ebdf69884c0c0a4..bef1487baf6b747f41367276695d07e9bdd717fb 120000 --- a/CHANGES.md +++ b/CHANGES.md @@ -1 +1 @@ -ChangeLogs/ChangeLog-20.8.0.md \ No newline at end of file +ChangeLogs/ChangeLog-20.8.1.md \ No newline at end of file diff --git a/ChangeLogs/ChangeLog-20.8.1.md b/ChangeLogs/ChangeLog-20.8.1.md new file mode 100644 index 0000000000000000000000000000000000000000..3407c66122b371c5fb22c8abe44e05c7e590c1c9 --- /dev/null +++ b/ChangeLogs/ChangeLog-20.8.1.md @@ -0,0 +1,53 @@ + +## Change Log for Release asterisk-20.8.1 + +### Links: + + - [Full ChangeLog](https://downloads.asterisk.org/pub/telephony/asterisk/releases/ChangeLog-20.8.1.md) + - [GitHub Diff](https://github.com/asterisk/asterisk/compare/20.8.0...20.8.1) + - [Tarball](https://downloads.asterisk.org/pub/telephony/asterisk/asterisk-20.8.1.tar.gz) + - [Downloads](https://downloads.asterisk.org/pub/telephony/asterisk) + +### Summary: + +- Commits: 1 +- Commit Authors: 1 +- Issues Resolved: 0 +- Security Advisories Resolved: 1 + - [GHSA-qqxj-v78h-hrf9](https://github.com/asterisk/asterisk/security/advisories/GHSA-qqxj-v78h-hrf9): res_pjsip_endpoint_identifier_ip: wrongly matches ALL unauthorized SIP requests + +### User Notes: + + +### Upgrade Notes: + + +### Commit Authors: + +- George Joseph: (1) + +## Issue and Commit Detail: + +### Closed Issues: + + - !GHSA-qqxj-v78h-hrf9: res_pjsip_endpoint_identifier_ip: wrongly matches ALL unauthorized SIP requests + +### Commits By Author: + +- ### George Joseph (1): + - Revert "res_pjsip_endpoint_identifier_ip: Add endpoint identifier transport ad.. + + +### Commit List: + + +### Commit Details: + +#### Revert "res_pjsip_endpoint_identifier_ip: Add endpoint identifier transport ad.. + Author: George Joseph + Date: 2024-05-17 + + This reverts PR #602 + + Resolves: #GHSA-qqxj-v78h-hrf9 + diff --git a/contrib/realtime/mysql/mysql_config.sql b/contrib/realtime/mysql/mysql_config.sql index ca92f3afc2c7310c7b32c0580fa1cfe7460c90e0..60b39a51122e8c4554d7ee0dd9e2605649581269 100644 --- a/contrib/realtime/mysql/mysql_config.sql +++ b/contrib/realtime/mysql/mysql_config.sql @@ -1683,3 +1683,9 @@ ALTER TABLE ps_registrations MODIFY id VARCHAR(255) NOT NULL; UPDATE alembic_version SET version_num='6c475a93f48a' WHERE alembic_version.version_num = 'd5122576cca8'; +-- Running upgrade 6c475a93f48a -> bd9c5159c7ea + +ALTER TABLE ps_endpoint_id_ips DROP COLUMN transport; + +UPDATE alembic_version SET version_num='bd9c5159c7ea' WHERE alembic_version.version_num = '6c475a93f48a'; + diff --git a/contrib/realtime/postgresql/postgresql_config.sql b/contrib/realtime/postgresql/postgresql_config.sql index f97696cc5ca8b7adff9d5d04bff13807eedfd607..c07eb1e3427151902ce3c0cbac127e248266c342 100644 --- a/contrib/realtime/postgresql/postgresql_config.sql +++ b/contrib/realtime/postgresql/postgresql_config.sql @@ -1805,5 +1805,11 @@ ALTER TABLE ps_registrations ALTER COLUMN id SET NOT NULL; UPDATE alembic_version SET version_num='6c475a93f48a' WHERE alembic_version.version_num = 'd5122576cca8'; +-- Running upgrade 6c475a93f48a -> bd9c5159c7ea + +ALTER TABLE ps_endpoint_id_ips DROP COLUMN transport; + +UPDATE alembic_version SET version_num='bd9c5159c7ea' WHERE alembic_version.version_num = '6c475a93f48a'; + COMMIT;