Blob


1 # change log
3 ## 2022/01/30 - 1.8 “Lightbulb Sun”
5 ### New Features
7 * reverse proxying support: gmid now can relay gemini requests to other hosts.
8 * install gg too: it's a simple gemini client ("gemini get") initially developed as part of the regression suite.
9 * added OCSP stapling support (by @The-King-of-Toasters, thanks!)
10 * add gencert, a simple script to generate self-signed certs.
11 * add renew-certs, a script to automatically renew self-signed certs.
12 * multiple -n partially dump the parsed configuration.
14 ### Improvements
16 * reworked the fastcgi subsystem, now it's completely asynchronous.
17 * refactored the internal of the server too.
18 * refactored the regression suite (in particular reduced the timeout for single tests from 30 to 10 seconds.)
19 * configure: add support for --prefix=... autoconf-style flag.
20 * relax the "wont proxy" check: don't check that the port in the request is the same we're listening on. Suggested and discussed with Allen Sobot, thanks!
21 * relax the strict ordering of options, locations and proxy blocks inside a server block.
23 ### Bug fixes
25 * don't pass through illegal replies from CGI scripts.
26 * fix the "double slash" error in logs.
27 * fix the configure for cross-compilation: don't run the test binaries just built. Suggested by Nikolay Korotkiy (@sikmir), thanks!
28 * (seccomp) allow ugetrlimit(2), needed by glibc on arm7l. By Max, thanks!
31 ## 2021/10/15 - 1.7.5 “Space-dye Vest” fifth bugfix release
33 This version includes the following bugfix
35 * don’t die when a connection is closed before being accepted by gmid (i.e. handle ‘ECONNRESET’)
38 ## 2021/09/24 - 1.7.4 “Space-dye Vest” fourth bugfix release
40 This version includes the following bugfix:
42 * fix a possible out-of-bound access when handling a request for a non-existent file in the root directory of a vhost that's matched by the cgi option
44 and the relative regression test.
47 ## 2021/09/19 - 1.7.3 “Space-dye Vest” third bugfix release
49 ### Improvements
51 * follows symlinks
52 * improved documentation and added key generation example (thanks! Anna)
54 ### Bugfix
56 * fix syslog logging on FreeBSD. Reported by Karl Jeacle, thanks!
57 * don't crash if ``-c'' is missing in configtest mode (-n). Reported by heph, thanks!
58 * allow fstat64 on linux (needed by glibc on aarch64). Reported by pine, thanks!
61 ## 2021/07/19 - 1.7.2 “Space-dye Vest” second bugfix release
63 This version incudes the following bugfix:
65 * an un-initialized field in the configless code path leads to a crash on the first request.
67 and the relative regression test.
70 ## 2021/07/11 - 1.7.1 “Space-dye Vest” bugfix release
72 This version includes two bugfixes:
73 * use ${MAKE} to recursively call make.
74 * fix the misleading example in the manpage: macros may not be reserved words
77 ## 2021/07/10 - 1.7 “Space-dye Vest”
79 Starting from this version gmid doesn't depend on lex anymore, but yacc is still needed.
81 ### New features
83 * initial fastcgi support! (it's still young!)
84 * added user-defined macros, either via ‘-Dname=val’ or directly in the configuration file.
85 * new ‘include’ keyword to load additional configuration files.
86 * new ‘env’ rule to define environment vars for CGI scripts.
87 * new ‘alias’ rule to define hostname aliases for a server.
88 * allow ‘root’ to be specified per-location block.
89 * pidfile support with the new ‘-P’ cli flag.
90 * define ‘TLS_VERSION’, ‘TLS_CIPHER’ and ‘TLS_CIPHER_STRENGTH’ for CGI scripts.
92 ### Improvements
94 * remove limits on the number of virtual hosts and location blocks that can be defined.
95 * print the datetime when logging to stderr.
96 * use ‘text/x-patch’ for ‘.patch’ and ‘.diff’ files.
97 * sort the auto index alphabetically.
98 * various improvements to the log management.
99 * drop the dependency on lex.
100 * added ‘--help’ as synonym of ‘-h’ and ‘-V’/‘--version‘ to print the version.
101 * c-like handling of strings in the configuration file: when two or more strings are next to each-others, are automatically joined into a single string. This is particularly useful with $-macros.
103 ### Bug fixes
105 * correctly handle CGI scripts that replies with the maxium header length allowed.
106 * fixed the static target.
107 * fixed recursive mkdirs for configless mode (i.e. create ‘~/.local/share/gmid’)
108 * logs sent to syslog now have proper priority (before every message ended up as LOG_CRIT). Found by Anna “CyberTailor”, thanks!
109 * ensure ‘%p’ (path) is always absolute in ‘block return’ rules.
110 * fix automatic certificate generation, it caused problems on some adroid devices. Found by Gnuserland, thanks!
111 * document the ‘log’ rule.
112 * the seccomp filter was reworked and now it's known to work properly on a vast range of architectures (to be more specific: all the architectures supported by alpine linux), see github issue #4. Prompted and tested by @begss, thanks!
113 * various improvements to the configure script, notified and fixed by Anna “CyberTailor”, thanks!
114 * added a timeout to the regression tests.
116 ### Breaking changes
118 * if duplicate rules are found in the configuration file, an error is now raised instead of silently using only the last value.
119 * (sort of) ‘gg’ moved to ‘regress’ as it's only used in the regression suite.
120 * (notice) the “mime "mime-type" "extension"” rule was deprecated and replaced by the new “map "mime-type" to-ext "extension"”. The ‘mime’ rule will be removed in a future version because its syntax is incompatible with the new string auto-concat mechanism.