| Commit message (Expand) | Author | Age | Files | Lines | ||
|---|---|---|---|---|---|---|
| ... | ||||||
| * | Ignore edits to the copyright headers when updating them.•••This fixes a committer who has run mkheaders from being added to the copyright headers when it is next run. | 2022-12-27 | 1 | -25/+33 | ||
| * | Fix a C++11-ism in the dnsbl module. | 2022-12-26 | 1 | -1/+1 | ||
| * | Fix overwriting marks from earlier DNSBLs. | 2022-12-26 | 1 | -10/+19 | ||
| * | Include the WebSocket fail reason in the body of the HTTP response. | 2022-12-25 | 1 | -0/+1 | ||
| * | Update the Windows dependencies.•••[skip alpine ci] [skip macos ci] [skip ubuntu ci] | 2022-12-23 | 1 | -4/+4 | ||
| * | Consistently limit the range for config port fields. | 2022-12-19 | 2 | -2/+2 | ||
| * | Add an oper priv for exempting opers from blockamsg.•••Closes #2007. | 2022-12-19 | 2 | -0/+4 | ||
| * | Add the Cohost account to the readme. | 2022-12-18 | 1 | -0/+1 | ||
| * | Fix an incompatibility between MySQL and MariaDB. | 2022-12-18 | 1 | -0/+2 | ||
| * | Add SSL support to the mysql module. | 2022-12-18 | 2 | -1/+5 | ||
| * | Fix warning about UNIX socket connections being insecure. | 2022-12-17 | 1 | -1/+2 | ||
| * | Deduplicate retrieving error messages on Windows. | 2022-12-13 | 5 | -38/+25 | ||
| * | Show the system error message when loading modules fails. | 2022-12-13 | 1 | -1/+9 | ||
| * | Tell an oper when the X-line they were trying to match is too wide.•••Also move the snotice for an overwide X-line to snomask 'X' which should have been done when it was added. | 2022-12-10 | 7 | -8/+12 | ||
| * | Allow specifying multiple masks when adding an X-line.•••The only exemptions for this are RLINE (a real name might contains commas) and SVSHOLD (sent by services only). Closes #1972. | 2022-12-10 | 7 | -17/+29 | ||
| * | Fix building with the Intel C++ compiler.•••- Fix adding -Wshadow in the compiler flags twice. - Detect the new Clang-based Intel compiler as well as the old one. - Silence some deprecation warnings using Intel syntax. | 2022-12-10 | 5 | -7/+14 | ||
| * | Add a sslprofile option for disabling TLS 1.3 in ssl_openssl.•••This mirrors the options (<sslprofile:tlsv{1,11,12}>) for other TLS versions. | 2022-12-10 | 1 | -0/+6 | ||
| * | Fix reading the MOTD when <connect:motd> is a literal path. | 2022-12-09 | 1 | -5/+14 | ||
| * | Fix sending malformed MOTD and showfile messages to clients. | 2022-12-09 | 4 | -14/+41 | ||
| * | Update author list. | 2022-12-08 | 1 | -10/+11 | ||
| * | Sort names case insensitively in the authors list. | 2022-12-08 | 1 | -1/+1 | ||
| * | Attempt to speed up package installation on the macOS CI. | 2022-12-05 | 1 | -0/+2 | ||
| * | Import regex_pcre2 from inspircd-contrib.•••The original plan was to make the PCRE2 switch happen in v3 but it seems that distributions are beginning to unpackage the old pcre library already. | 2022-12-05 | 10 | -7/+129 | ||
| * | Update Doxygen config for the latest version. | 2022-12-03 | 1 | -5/+9 | ||
| * | Mark the entire client protocol namespace as CoreExport. | 2022-11-30 | 4 | -26/+26 | ||
| * | Switch the Ubuntu CI to use ubuntu-latest. | 2022-11-30 | 1 | -1/+1 | ||
| * | Fix using C++11 features in code that was backported from master. | 2022-11-30 | 1 | -1/+2 | ||
| * | Add a method for quickly escaping a tag value. | 2022-11-30 | 2 | -0/+36 | ||
| * | Use gnutls_digest_get_id if supported by the GnuTLS library. | 2022-11-29 | 1 | -1/+4 | ||
| * | Fix asserting when building against libstdc++ in debug mode.•••This code was safe as the pointer was never actually dereferenced but libstdc++ would assert on it anyway. | 2022-11-28 | 1 | -1/+1 | ||
| * | Avoid sending an +o mode change when the mode isn't available.•••This is generally fine but may cause problems if an oper unloads the core_oper module. | 2022-11-28 | 1 | -1/+1 | ||
| * | Fix various edge cases in testssl.•••- Ignore SIGPIPE to work around IO::Socket::SSL having its socket closed from under it and terminating the program. - Improve detection of servers that close the TCP connection right after it is opened. This usually means the IP address the tool is connecting from has been banned so suggest that as well. - Show more debug information when a connection fails. | 2022-11-26 | 1 | -1/+10 | ||
| * | Fix some broken links in testssl.•••MkDocs changed the anchor format a while back which broke this. | 2022-11-26 | 1 | -3/+2 | ||
| * | Add a workaround for the replies API not working with a cap reference.•••A Cap::Reference can not be cast to a Cap::Capability& because it may not be available and that would create a null reference. In v4 we can change the API to take a Cap::Capability* but for now this is the best we can do. | 2022-11-24 | 1 | -0/+47 | ||
| * | Allow silence flag metadata to contain unknown flags.•••This prevents breaking link compatibility if we ever add more silence flags in the future. | 2022-11-23 | 1 | -3/+5 | ||
| * | Fix matching partially expanded IPv6 addresses. | 2022-11-18 | 1 | -2/+2 | ||
| * | Avoid using a CIDR range when it only represents a single IP. | 2022-11-18 | 1 | -1/+11 | ||
| * | Update the Windows dependencies. | 2022-11-16 | 1 | -3/+2 | ||
| * | Fix cidr_range::str() on a UNIX socket returning an uninit value.•••This isn't an ideal fix but its the best we can do for now. In v4 we can change the struct internals to do this properly. | 2022-11-16 | 1 | -1/+2 | ||
| * | Fix the previous commit on Windows. | 2022-11-09 | 1 | -2/+4 | ||
| * | Log when the uid/gid of config files might be wrong. | 2022-11-08 | 1 | -2/+29 | ||
| * | The extended-monitor spec has been ratified now. | 2022-11-02 | 1 | -1/+1 | ||
| * | Add support for the IRCv3 extended-monitor specification.•••Co-authored-by: Sadie Powell <sadie@witchery.services> | 2022-11-02 | 5 | -6/+132 | ||
| * | Bump microsoft/setup-msbuild from 1.0.2 to 1.1.3•••Bumps [microsoft/setup-msbuild](https://github.com/microsoft/setup-msbuild) from 1.0.2 to 1.1.3. - [Release notes](https://github.com/microsoft/setup-msbuild/releases) - [Changelog](https://github.com/microsoft/setup-msbuild/blob/master/building-release.md) - [Commits](https://github.com/microsoft/setup-msbuild/compare/v1.0.2...v1.1.3) --- updated-dependencies: - dependency-name: microsoft/setup-msbuild dependency-type: direct:production update-type: version-update:semver-minor ... Signed-off-by: dependabot[bot] <support@github.com> | 2022-11-01 | 1 | -1/+1 | ||
| * | Add a workaround for a conflict between libmysqlclient and pcre.•••[skip alpine ci] [skip macos ci] [skip ubuntu ci] | 2022-10-29 | 1 | -0/+1 | ||
| * | Fix the documentation of <options:defaultmodes>. | 2022-10-29 | 1 | -2/+2 | ||
| * | Allow using sts over a proxied hook like HAProxy.•••Closes #1911. | 2022-10-24 | 1 | -1/+13 | ||
| * | Only store the topic in the permchannels database if one is set. | 2022-10-23 | 1 | -5/+9 | ||
| * | Update the Windows dependencies.•••[skip alpine ci] [skip macos ci] [skip ubuntu ci] | 2022-10-22 | 1 | -5/+5 | ||
| * | Fix an unintentional string copy in the geolocation API. | 2022-10-18 | 1 | -2/+2 | ||
