mirror of
https://gitlab.isc.org/isc-projects/kea
synced 2025-08-22 09:57:41 +00:00
[#3804] bump versions for 2.6.2
This commit is contained in:
parent
cd63721cd6
commit
2145b92de3
@ -1,3 +1,8 @@
|
||||
2261. [build] mgodzina
|
||||
The library version numbers have been bumped up for the Kea 2.6.2
|
||||
stable release.
|
||||
(Gitlab #3804)
|
||||
|
||||
2260. [bug] razvan
|
||||
Fixed a bug which was causing the allocation engine to reject the
|
||||
lease if a data race caused by a different server updating the
|
||||
|
@ -6,10 +6,12 @@ The following versions are supported:
|
||||
|
||||
| Version | Supported | End-Of-Life |
|
||||
| ------- | ------------------ | -------------------------------- |
|
||||
| 2.5.x | :white_check_mark: | summer 2024, on release of 2.6.0 |
|
||||
| 2.4.x | :white_check_mark: | summer 2025, on release of 2.8.0 |
|
||||
| 2.7.x | :white_check_mark: | summer 2025, on release of 3.0.0 |
|
||||
| 2.6.x | :white_check_mark: | summer 2026, on release of 3.2.0 |
|
||||
| 2.5.x | :x: | August 2024, on release of 2.6.0 |
|
||||
| 2.4.x | :white_check_mark: | summer 2025, on release of 3.0.0 |
|
||||
| 2.3.x | :x: | July 2023, on release of 2.4.0 |
|
||||
| 2.2.x | :white_check_mark: | August 2024, on release of 2.6.0 |
|
||||
| 2.2.x | :x: | August 2024, on release of 2.6.0 |
|
||||
| 2.1.x | :x: | July 2022, on release of 2.2.0 |
|
||||
| 2.0.x | :x: | August 2023, on release of 2.4.0 |
|
||||
| 1.9.0 | :x: | September 2021 |
|
||||
|
@ -29,7 +29,7 @@ libkea_database_la_LIBADD += $(top_builddir)/src/lib/util/libkea-util.la
|
||||
libkea_database_la_LIBADD += $(top_builddir)/src/lib/exceptions/libkea-exceptions.la
|
||||
libkea_database_la_LIBADD += $(LOG4CPLUS_LIBS) $(BOOST_LIBS)
|
||||
|
||||
libkea_database_la_LDFLAGS = -no-undefined -version-info 61:0:0
|
||||
libkea_database_la_LDFLAGS = -no-undefined -version-info 62:0:0
|
||||
|
||||
# If we want to get rid of all generated messages files, we need to use
|
||||
# make maintainer-clean. The proper way to introduce custom commands for
|
||||
|
@ -87,7 +87,7 @@ libkea_dhcp___la_LIBADD += $(top_builddir)/src/lib/util/libkea-util.la
|
||||
libkea_dhcp___la_LIBADD += $(top_builddir)/src/lib/exceptions/libkea-exceptions.la
|
||||
libkea_dhcp___la_LIBADD += $(BOOST_LIBS)
|
||||
libkea_dhcp___la_LIBADD += $(CRYPTO_LIBS)
|
||||
libkea_dhcp___la_LDFLAGS = -no-undefined -version-info 90:0:0
|
||||
libkea_dhcp___la_LDFLAGS = -no-undefined -version-info 91:0:0
|
||||
libkea_dhcp___la_LDFLAGS += $(CRYPTO_LDFLAGS)
|
||||
|
||||
EXTRA_DIST = README libdhcp++.dox
|
||||
|
@ -224,7 +224,7 @@ libkea_dhcpsrv_la_LIBADD += $(top_builddir)/src/lib/util/libkea-util.la
|
||||
libkea_dhcpsrv_la_LIBADD += $(top_builddir)/src/lib/exceptions/libkea-exceptions.la
|
||||
libkea_dhcpsrv_la_LIBADD += $(LOG4CPLUS_LIBS) $(CRYPTO_LIBS) $(BOOST_LIBS)
|
||||
|
||||
libkea_dhcpsrv_la_LDFLAGS = -no-undefined -version-info 109:0:0
|
||||
libkea_dhcpsrv_la_LDFLAGS = -no-undefined -version-info 110:0:0
|
||||
libkea_dhcpsrv_la_LDFLAGS += $(CRYPTO_LDFLAGS)
|
||||
if HAVE_MYSQL
|
||||
libkea_dhcpsrv_la_LDFLAGS += $(MYSQL_LIBS)
|
||||
|
@ -38,7 +38,7 @@ libkea_hooks_la_SOURCES += hooks_messages.cc hooks_messages.h
|
||||
|
||||
libkea_hooks_la_CXXFLAGS = $(AM_CXXFLAGS)
|
||||
libkea_hooks_la_CPPFLAGS = $(AM_CPPFLAGS)
|
||||
libkea_hooks_la_LDFLAGS = $(AM_LDFLAGS) -no-undefined -version-info 98:0:0
|
||||
libkea_hooks_la_LDFLAGS = $(AM_LDFLAGS) -no-undefined -version-info 99:0:0
|
||||
libkea_hooks_la_LIBADD = $(top_builddir)/src/lib/cc/libkea-cc.la
|
||||
libkea_hooks_la_LIBADD += $(top_builddir)/src/lib/asiolink/libkea-asiolink.la
|
||||
libkea_hooks_la_LIBADD += $(top_builddir)/src/lib/log/libkea-log.la
|
||||
|
@ -12,8 +12,8 @@
|
||||
|
||||
namespace {
|
||||
|
||||
// Version 20601 of the hooks framework, set for Kea 2.6.1
|
||||
const int KEA_HOOKS_VERSION = 20601;
|
||||
// Version 20602 of the hooks framework, set for Kea 2.6.2
|
||||
const int KEA_HOOKS_VERSION = 20602;
|
||||
|
||||
// Names of the framework functions.
|
||||
const char* const LOAD_FUNCTION_NAME = "load";
|
||||
|
@ -22,7 +22,7 @@ libkea_mysql_la_LIBADD += $(top_builddir)/src/lib/util/libkea-util.la
|
||||
libkea_mysql_la_LIBADD += $(top_builddir)/src/lib/exceptions/libkea-exceptions.la
|
||||
libkea_mysql_la_LIBADD += $(LOG4CPLUS_LIBS) $(BOOST_LIBS)
|
||||
|
||||
libkea_mysql_la_LDFLAGS = -no-undefined -version-info 70:0:0
|
||||
libkea_mysql_la_LDFLAGS = -no-undefined -version-info 71:0:0
|
||||
|
||||
libkea_mysql_la_LDFLAGS += $(MYSQL_LIBS)
|
||||
|
||||
|
@ -22,7 +22,7 @@ libkea_pgsql_la_LIBADD += $(top_builddir)/src/lib/util/libkea-util.la
|
||||
libkea_pgsql_la_LIBADD += $(top_builddir)/src/lib/exceptions/libkea-exceptions.la
|
||||
libkea_pgsql_la_LIBADD += $(LOG4CPLUS_LIBS) $(BOOST_LIBS)
|
||||
|
||||
libkea_pgsql_la_LDFLAGS = -no-undefined -version-info 70:0:0
|
||||
libkea_pgsql_la_LDFLAGS = -no-undefined -version-info 71:0:0
|
||||
|
||||
libkea_pgsql_la_LDFLAGS += $(PGSQL_LIBS)
|
||||
|
||||
|
@ -33,7 +33,7 @@ libkea_process_la_SOURCES += redact_config.cc redact_config.h
|
||||
libkea_process_la_CXXFLAGS = $(AM_CXXFLAGS)
|
||||
libkea_process_la_CPPFLAGS = $(AM_CPPFLAGS)
|
||||
libkea_process_la_LDFLAGS = $(AM_LDFLAGS)
|
||||
libkea_process_la_LDFLAGS += -no-undefined -version-info 72:0:0
|
||||
libkea_process_la_LDFLAGS += -no-undefined -version-info 73:0:0
|
||||
|
||||
libkea_process_la_LIBADD = $(top_builddir)/src/lib/process/cfgrpt/libcfgrpt.la
|
||||
libkea_process_la_LIBADD += $(top_builddir)/src/lib/config/libkea-cfgclient.la
|
||||
|
@ -44,7 +44,7 @@ libkea_util_la_SOURCES += encode/utf8.cc encode/utf8.h
|
||||
|
||||
libkea_util_la_LIBADD = $(top_builddir)/src/lib/exceptions/libkea-exceptions.la
|
||||
|
||||
libkea_util_la_LDFLAGS = -no-undefined -version-info 84:0:0
|
||||
libkea_util_la_LDFLAGS = -no-undefined -version-info 85:0:0
|
||||
|
||||
EXTRA_DIST = util.dox
|
||||
|
||||
|
Loading…
x
Reference in New Issue
Block a user