diff --git a/CHANGELOG/CHANGELOG-3.4.md b/CHANGELOG/CHANGELOG-3.4.md new file mode 100644 index 000000000..db4dd59c5 --- /dev/null +++ b/CHANGELOG/CHANGELOG-3.4.md @@ -0,0 +1,32 @@ +# Version logging for OpenIM + + + + + + +## [Unreleased] + + + +## [v3.4.2] - 2023-12-14 + + +## [v3.4.0] - 2023-11-10 + + +## [v3.4.0-rc.1] - 2023-11-09 + + +## v3.4.0-rc.0 - 2023-11-09 +### Reverts +- update etcd to v3.5.2 ([#206](https://github.com/openimsdk/open-im-server/issues/206)) + +### Pull Requests +- Merge branch 'tuoyun' + + +[Unreleased]: https://github.com/openimsdk/open-im-server/compare/v3.4.2...HEAD +[v3.4.2]: https://github.com/openimsdk/open-im-server/compare/v3.4.0...v3.4.2 +[v3.4.0]: https://github.com/openimsdk/open-im-server/compare/v3.4.0-rc.1...v3.4.0 +[v3.4.0-rc.1]: https://github.com/openimsdk/open-im-server/compare/v3.4.0-rc.0...v3.4.0-rc.1 diff --git a/CHANGELOG/CHANGELOG-3.5.md b/CHANGELOG/CHANGELOG-3.5.md new file mode 100644 index 000000000..ed9ba77c6 --- /dev/null +++ b/CHANGELOG/CHANGELOG-3.5.md @@ -0,0 +1,76 @@ +# Version logging for OpenIM + + + + + + +## [Unreleased] + + + +## [v3.5.1-alpha.1] - 2024-01-09 + + +## [v3.5.0] - 2024-01-02 + + +## [v3.5.1] - 2024-01-02 + + +## [v3.5.1-bate.1] - 2024-01-02 + + +## [v3.5.1-rc.0] - 2023-12-30 + + +## [v3.5.0-rc.8] - 2023-12-28 + + +## [v3.5.0-rc.7] - 2023-12-18 + + +## [v3.5.0-rc.6] - 2023-12-15 + + +## [v3.5.0-rc.5] - 2023-12-15 + + +## [v3.5.0-rc.4] - 2023-12-14 + + +## [v3.5.0-rc.3] - 2023-12-14 + + +## [v3.5.0-rc.2] - 2023-12-14 + + +## [v3.5.0-rc.1] - 2023-12-14 + + +## [v3.5.0-rc.0] - 2023-12-14 + + +## v3.5.0-beta.1 - 2023-11-29 +### Reverts +- update etcd to v3.5.2 ([#206](https://github.com/openimsdk/open-im-server/issues/206)) + +### Pull Requests +- Merge branch 'tuoyun' + + +[Unreleased]: https://github.com/openimsdk/open-im-server/compare/v3.5.1-alpha.1...HEAD +[v3.5.1-alpha.1]: https://github.com/openimsdk/open-im-server/compare/v3.5.0...v3.5.1-alpha.1 +[v3.5.0]: https://github.com/openimsdk/open-im-server/compare/v3.5.1...v3.5.0 +[v3.5.1]: https://github.com/openimsdk/open-im-server/compare/v3.5.1-bate.1...v3.5.1 +[v3.5.1-bate.1]: https://github.com/openimsdk/open-im-server/compare/v3.5.1-rc.0...v3.5.1-bate.1 +[v3.5.1-rc.0]: https://github.com/openimsdk/open-im-server/compare/v3.5.0-rc.8...v3.5.1-rc.0 +[v3.5.0-rc.8]: https://github.com/openimsdk/open-im-server/compare/v3.5.0-rc.7...v3.5.0-rc.8 +[v3.5.0-rc.7]: https://github.com/openimsdk/open-im-server/compare/v3.5.0-rc.6...v3.5.0-rc.7 +[v3.5.0-rc.6]: https://github.com/openimsdk/open-im-server/compare/v3.5.0-rc.5...v3.5.0-rc.6 +[v3.5.0-rc.5]: https://github.com/openimsdk/open-im-server/compare/v3.5.0-rc.4...v3.5.0-rc.5 +[v3.5.0-rc.4]: https://github.com/openimsdk/open-im-server/compare/v3.5.0-rc.3...v3.5.0-rc.4 +[v3.5.0-rc.3]: https://github.com/openimsdk/open-im-server/compare/v3.5.0-rc.2...v3.5.0-rc.3 +[v3.5.0-rc.2]: https://github.com/openimsdk/open-im-server/compare/v3.5.0-rc.1...v3.5.0-rc.2 +[v3.5.0-rc.1]: https://github.com/openimsdk/open-im-server/compare/v3.5.0-rc.0...v3.5.0-rc.1 +[v3.5.0-rc.0]: https://github.com/openimsdk/open-im-server/compare/v3.5.0-beta.1...v3.5.0-rc.0 diff --git a/scripts/lib/util.sh b/scripts/lib/util.sh index 4de240972..fca4dd23a 100755 --- a/scripts/lib/util.sh +++ b/scripts/lib/util.sh @@ -1146,7 +1146,7 @@ function openim::util::require-jq { # Checks whether dig is installed and provides installation instructions if it is not. function openim::util::require-dig { if ! command -v dig &>/dev/null; then - openim::log::error "Please install 'dig' to use this feature." + openim::log::error "Please install 'dig' to use this feature. OR Set the environment variable for OPENIM_IP" openim::log::error "Installation instructions:" openim::log::error " For Ubuntu/Debian: sudo apt-get install dnsutils" openim::log::error " For CentOS/RedHat: sudo yum install bind-utils"