..
arrays
docs: fix doc comments in arrays
too
2025-07-02 17:06:21 +03:00
benchmark
docs: cleanup doc comments of public APIs in benchmark
, bitfield
, and build
2025-07-02 16:54:17 +03:00
bitfield
docs: cleanup doc comments of public APIs in benchmark
, bitfield
, and build
2025-07-02 16:54:17 +03:00
build
docs: cleanup doc comments of public APIs in benchmark
, bitfield
, and build
2025-07-02 16:54:17 +03:00
builtin
cgen: move closure C code to V code under vlib/builtin/closure/ ( #24912 )
2025-07-27 17:44:06 +03:00
cli
docs: use cmd/tools/find_doc_comments_with_no_dots.v to put some missing dots in the doc comments of public symbols.
2025-07-02 15:45:47 +03:00
clipboard
docs,ci: check more vlib modules in the report-missing-dots-in-doc-comments job ( #24928 )
2025-07-19 11:51:01 +03:00
compress
docs,ci: check more vlib modules in the report-missing-dots-in-doc-comments job ( #24928 )
2025-07-19 11:51:01 +03:00
context
ci: remove the // vtest flaky: true
tags from the remaining tests ( #24379 )
2025-06-19 20:16:49 +03:00
coroutines
markused,builtin,strconv,vlib: reduce generated C sizes for compilers != tcc, for short programs, by simplifying the generation of backtraces, and reducing string interpolations in panics ( #23380 )
2025-01-06 08:23:56 +02:00
crypto
crypto: fix ambiguous expressions in DES implementation ( #24814 )
2025-06-30 21:51:02 +03:00
datatypes
ci: add a watchdog timer thread to ringbuffer_test.v, to make sure the program exits in a reasonable time (~10s). Let the test be retried 2 times in a row if it fails.
2025-07-22 12:48:29 +03:00
db
db: modify mysql/pg/sqlite interface for pool working ( #24780 )
2025-06-27 02:25:13 +03:00
dl
docs: use cmd/tools/find_doc_comments_with_no_dots.v to put some missing dots in the doc comments of public symbols.
2025-07-02 15:45:47 +03:00
dlmalloc
tests: fix all warnings for v test-all
on linux
2025-05-19 16:16:53 +03:00
encoding
encoding.iconv: add path for iconv library on FreeBSD ( #24682 )
2025-06-09 20:41:52 +03:00
eventbus
all: fix typos ( #24470 )
2025-05-13 22:05:22 +03:00
flag
docs: use cmd/tools/find_doc_comments_with_no_dots.v to put some missing dots in the doc comments of public symbols.
2025-07-02 15:45:47 +03:00
fontstash
checker: do not allow &u8(0), force nil like we do with &Type(0)
2025-05-03 22:37:51 +03:00
gg
markused: skip unused symbols, dump fns and generic specialization ( fix #24921 ) ( fix #24927 ) ( #24924 )
2025-07-23 08:50:31 +03:00
gx
markused: skip unused symbols, dump fns and generic specialization ( fix #24921 ) ( fix #24927 ) ( #24924 )
2025-07-23 08:50:31 +03:00
hash
docs: use cmd/tools/find_doc_comments_with_no_dots.v to put some missing dots in the doc comments of public symbols.
2025-07-02 15:45:47 +03:00
io
vlib: reduce false positive matches for ///
, cleanup commented code
2025-03-08 17:47:13 +02:00
js
doc: update trim_doc_node_description, make module readmes more uniform ( #20792 )
2024-02-12 12:38:47 +02:00
json
cgen: fix json decode option alias ( fix #24843 ) ( #24853 )
2025-07-06 08:22:07 +03:00
log
log: use @[noinline]
for level_from_tag/1 and target_from_label/1 to avoid triggering panics for programs using log
, compiled with -prod and -cc gcc>10 ( fix #24874 )
2025-07-10 14:43:42 +03:00
maps
maps: use explicit map value cloning in maps.merge_in_place
and maps.merge
(fx #22564 ) ( #22576 )
2024-10-19 11:49:41 +03:00
math
ci: workaround -usecache issue afte 2d87ac4
2025-07-27 20:24:13 +03:00
net
net.http: fix panic in parse_multipart_form for invalid boundary ( fix #24974 ) ( #24976 )
2025-07-25 21:30:36 +03:00
orm
ci: remove the // vtest flaky: true
tags from the remaining tests ( #24379 )
2025-06-19 20:16:49 +03:00
os
markused: skip unused symbols, dump fns and generic specialization ( fix #24921 ) ( fix #24927 ) ( #24924 )
2025-07-23 08:50:31 +03:00
picoev
docs: use cmd/tools/find_doc_comments_with_no_dots.v to put some missing dots in the doc comments of public symbols.
2025-07-02 15:45:47 +03:00
picohttpparser
checker: fix missing or-block check for callexpr ( fix #22835 ) ( #22840 )
2024-11-13 12:30:06 +02:00
pool
pool: fix idle_conns assertion in test_pool_close ( #24932 )
2025-07-20 11:14:57 +03:00
rand
docs,ci: check more vlib modules in the report-missing-dots-in-doc-comments job ( #24928 )
2025-07-19 11:51:01 +03:00
readline
utf8, readline: clarify UTF-8 vs UTF-32 usage (see also #22461 ) ( #22558 )
2024-10-18 11:18:31 +03:00
regex
regex: fix OOB bug discovered through ./v -g -force-bounds-checking vlib/regex/
(fix by @penguindark) ( #24960 )
2025-07-24 08:10:45 +03:00
runtime
os,runtime: move some C struct and fn def to builtin
( #24942 )
2025-07-22 07:55:53 +03:00
semver
docs,ci: check more vlib modules in the report-missing-dots-in-doc-comments job ( #24928 )
2025-07-19 11:51:01 +03:00
sokol
checker: do not allow &u8(0), force nil like we do with &Type(0)
2025-05-03 22:37:51 +03:00
stbi
doc: describe the new 4th column of the profiler output, and its compatibility with tcc & multithreading; describe better the stib comp parameter ( #24358 )
2025-04-30 08:20:12 +03:00
strconv
strconv: fix bounds check bug, discovered by the equivalent of ./v -g -force-bounds-checking test vlib/toml/
(thanks to tankf33der)
2025-07-23 15:38:04 +03:00
strings
docs,ci: check more vlib modules in the report-missing-dots-in-doc-comments job ( #24928 )
2025-07-19 11:51:01 +03:00
sync
os,runtime: move some C struct and fn def to builtin
( #24942 )
2025-07-22 07:55:53 +03:00
term
docs,ci: check more vlib modules in the report-missing-dots-in-doc-comments job ( #24928 )
2025-07-19 11:51:01 +03:00
time
time: fix more panics in the supported specifiers in Time.custom_format/1 ( #24988 )
2025-07-27 20:34:11 +03:00
toml
tests: fix v -W vlib/toml/tests/encode_and_decode_test.v
2025-06-22 13:30:43 +03:00
v
v: support -div-by-zero-is-zero
, which allows for x / 0 == 0
and x % 0 == x
, avoiding division by zero traps/panics ( #24981 )
2025-07-28 10:41:18 +03:00
v2
v2: add formatting workarounds, to make v run cmd/v2/v2.v --skip-imports -d vlib/v2/tests/syntax.v_
run
2025-07-03 09:46:01 +03:00
vanilla_http_server
parser, ast, fmt: convert "hello".str
=> c"hello"
( fix #24635 ) ( #24652 )
2025-06-08 11:44:38 +03:00
veb
veb: fix app.text()
-> ctx.text()
in README.md
2025-07-11 09:38:23 +03:00
vweb
x.json2: update tests to integrate decoder2 in json2 ( #24551 )
2025-05-29 13:01:50 +03:00
wasm
docs: add the remaining missing doc comment, for the public wasm methods ( #23863 )
2025-03-05 14:23:35 +02:00
x
ci,x.json2.decoder2: fix sanitize jobs
2025-07-26 16:53:53 +03:00
.vdocignore
vdoc: remove obsolete entries from .vdocignore
( #21320 )
2024-04-20 16:32:31 +03:00
README.md
tools,v.doc: let https://modules.vlang.io use vlib/README.md as the index page. ( #23480 )
2025-01-16 03:15:16 +02:00