Added gkafka module with a client program encapsulation for kafka, supporting group consumption and specified start positions, along with a user-friendly API interface (http://gf.johng.cn/database/gkafka/index);
Added support for the latest Go language version's go modules feature;
WebServer adds features to acquire/print route registration items, providing a comprehensive view of all route and callback registrations;
The template engine adds global variable management and several commonly used built-in functions and variables (http://gf.johng.cn/os/gview/funcs);
gredis improved to singleton operation mode (based on the underlying connection pool feature), eliminating the need for developers to explicitly call the Close method to shut down after each redis server operation (http://gf.johng.cn/database/gredis/index);
gf-orm adds auto Close feature for database operations (based on underlying connection pool feature), so developers no longer need to defer db.Close(), and adds g.DB database object singleton alias (http://gf.johng.cn/database/orm/linkop);
Improved grand random number generation rules to ensure extremely high random number generation performance, guaranteeing different random values each time a random method is called (http://gf.johng.cn/util/grand/index);
Improved gfile file content operation methods with several commonly used file content read methods;
Enhanced gtime module and added time zone conversion methods;
Improved COOKIE, removing lock mechanism;
Enhanced SESSION retrieval methods with multiple type retrievals;
Optimized ghttp.ServerConfig configuration, adding struct/methodname to uri conversion rules with flexible configuration via SetNameToUri method (http://gf.johng.cn/net/ghttp/service/object);
Improved *any/:name route matching rules to support unnamed */: route rules;