--- parser3/ChangeLog 2025/08/04 02:05:13 1.221 +++ parser3/ChangeLog 2026/02/09 02:05:13 1.232 @@ -1,3 +1,236 @@ +2026-02-02 moko + + * tests/: 307.html, results/307.processed: more "junction used + outside of context" tests added + +2026-01-09 moko + + * src/classes/amqp.C: auto_delete is better false by default + (related to feature #1288) + + * src/classes/amqp.C: more methods bool args fixes, nowait removed + (related to feature #1288) + + * src/classes/amqp.C: nowait was mixed up with exclusive in consume + + * src/classes/amqp.C: amqp_basic_cancel added to consume, purge + returns purged messages count (related to feature #1288) + + * tests/: 449.html, results/449.processed, results/auto.p: test for + table size limit added (related to feature #1276) + + * src/classes/table.C: $MAIN:LIMITS.max_array_size now used to + limit table size; note: for append and insert operations only + (implements feature #1276) + +2026-01-08 moko + + * src/classes/amqp.C: addition to feature #1288: declare_exchange + + declare_queue = declare; delete_exchange + delete_queue = delete; + bind_queue -> bind; unbind_queue -> unbind; + purge, + info; + consume can be called without callback with optional $.count(N), + returns array of messages; + +2026-01-07 moko + + * tests/: 448.html, results/448.processed: avoid 500, show + exception where not supported + + * src/include/pa_int.h: warnings war + + * tests/: 422.html, results/422.processed: test updated after wide + int implemented (feature #1273) + + * src/main/pa_int.C: warnings war + + * src/classes/classes.vcproj: +amqp.C + + * src/classes/: int.C, string.C: warnings war + + * src/classes/: op.C: warnings war + + * src/: classes/op.C, main/pa_int.C: warnings war + + * src/types/pa_vdate.h: warnings war + + * src/main/pa_int.C: warnings war continues + + * src/: include/pa_int.h, main/pa_int.C, types/pa_vint.h: warnings + war + + * src/types/pa_vdate.C: reverted, format_double still required here + + * src/: include/pa_int.h, main/pa_int.C, types/pa_vmath.C: + format_double now supports wint, $math:int_max and $math:int_min + added, PA_WIDE_INT is finally enabled by default (implements + feature #1273) + + * tests/: 275.html, results/275.processed: preparing tests for int + extension + + * tests/: 424.html, results/424.processed: actualized and prepared + for wide int + +2026-01-06 moko + + * src/: classes/double.C, classes/int.C, classes/string.C, + include/pa_common.h, include/pa_int.h, include/pa_string.h, + main/execute.C, main/pa_common.C, main/pa_int.C, + types/pa_value.h, types/pa_vdate.C, types/pa_vdate.h, + types/pa_vdouble.h, types/pa_vint.h, types/pa_vmethod_frame.h, + types/pa_vstring.h: feature #1273 core implementation: + value::as_wint added, implemented for int/double/string, and used + where applicable; vint now holds pa_wint type; format_double + moved to pa_int + + * src/: include/pa_array.h, include/pa_string.h, main/main.vcproj: + pa_int includes tuning, vcproj updated (related to feature #1273) + + * src/main/pa_int.C: build fix + + * src/: include/Makefile.am, main/Makefile.am: pa_int.h/pa_int.C + added, another preparation for feature #1273 + + * src/: include/pa_array.h, include/pa_int.h, include/pa_string.h, + include/pa_types.h, main/pa_int.C, main/pa_string.C, + types/pa_vint.h: pa_int.h/pa_int.C added and all related code + moved there, pa_wint and related functions added, another + preparation for feature #1273 + +2025-12-17 moko + + * src/classes/json.C: optimization: String::Empty used and avoided + using passed length. + +2025-12-16 moko + + * src/classes/string.C: sync _int with _double, avoid int usage + (related to #1273) + +2025-12-08 moko + + * src/include/pa_memory.h: PA_CHECK_REGULAR_ALLOC_UNAVAILABLE + define added and used for OS X as well + +2025-11-30 moko + + * configure, configure.ac, src/include/pa_config_auto.h.in, + src/include/pa_config_fixed.h: int64_t added in preparation to + feature #1273 + +2025-11-22 moko + + * src/classes/amqp.C: delivery_tag changed from string to double + (related to feature #1288) + +2025-11-14 moko + + * src/types/pa_vstatus.C, tests/448.html, + tests/results/448.processed: $status:limit-cpu, + $status:limit-mem, $status:limit-nproc unlimited support added, + test added (related to feature #1280) + + * src/types/: pa_vstatus.C, pa_vstatus.h: r/w $status:limit-cpu, + $status:limit-mem, $status:limit-nproc added (implements feature + #1280) + +2025-11-12 moko + + * tests/results/: 323.processed, 421.processed: tests results + updated after amqp class added + +2025-11-08 moko + + * src/classes/amqp.C: tls support added, errors reporting improved + (related to feature #1288) + + * src/classes/amqp.C: tls support added (related to feature #1288) + + * src/classes/amqp.C: exceptions text now printed (related to + feature #1288) + + * src/classes/amqp.C: properties hash simplified (related to + feature #1288) + +2025-11-07 moko + + * src/classes/amqp.C: consume fixed (related to feature #1288) + + * src/classes/classes.C: + amqp class + + * buildall, configure, configure.ac, src/classes/Makefile.am, + src/include/pa_config_auto.h.in, src/targets/apache/Makefile.am, + src/targets/cgi/Makefile.am, src/types/Makefile.am: build scripts + updated for librabbitmq support (relates to feature #1288) + + * src/: classes/amqp.C, types/pa_vamqp.h: amqp class draft with + basic RabbitMQ C library (librabbitmq) support (partially + implements #1288) + +2025-10-05 moko + + * src/classes/: array.C, file.C, hash.C, image.C, json.C, op.C, + reflection.C, string.C: Optimization: valid_options optimized + where HashStringValue::Iterator used + + * tests/results/224.processed: test result updated after date + functions updated (related to #1287) + +2025-10-04 moko + + * operators.ru.txt, operators.txt: actualized + + * operators.ru.txt, operators.txt: actualized after #1285 and #1286 + + * tests/: 447.html, results/447.processed: tests for + ^reflection:override[$method] added (related to feature #1286) + + * tests/: 446.html, results/446.processed: tests for $n1 eq n2 + added (related to feature #1285) + + * src/classes/reflection.C: + ^reflection:override[$method[;$.to[class] $.name[another_name]]] + added (implements feature #1286) + + * src/main/execute.C: bugfix: when method is attached from another + class, it's junction_template is initialized with another class, + thus get_vjunction should be used (related to feature #1286) + + * src/classes/date.C: ^date:sql-string[], ^date:gmt-string[], + ^date:iso-string[] - static call now formats current date + (implements feature #1287) + +2025-10-01 moko + + * buildall: built-in mailreceive path actualized + +2025-09-01 moko + + * src/classes/math.C: old compilers support in ^math:eq + +2025-08-31 moko + + * tests/: 446.html, results/446.processed: tests for + ^math:eq(a;b[;max URL distance]) added (related to feature #1285) + + * src/classes/math.C: ^math:eq(a;b[;precision]) added (partly + implements #1285) + +2025-08-30 moko + + * operators.ru.txt, operators.txt: actualized + + * tests/: 230.html, results/230.processed: test for ^file.save + $.append(false|true) option added (related to feature #1284) + + * src/: classes/file.C, types/pa_vfile.C, types/pa_vfile.h: + ^file.save $.append(false|true) option added (implements feature + #1284) + +2025-08-16 moko + + * etc/auto.p.in: LIMIT max_array_size actualized + 2025-08-01 moko * src/: lib/gc/include/gc.h, main/pa_globals.C, main/pa_memory.C: