Skip to content

Commit

Permalink
Add the news post for 2.1.2.
Browse files Browse the repository at this point in the history
  • Loading branch information
SadieCat committed Feb 17, 2024
1 parent ebf10d4 commit 1249097
Show file tree
Hide file tree
Showing 3 changed files with 52 additions and 10 deletions.
10 changes: 5 additions & 5 deletions _config.yml
Original file line number Diff line number Diff line change
Expand Up @@ -33,11 +33,11 @@ plugins:

releases:
devel:
version: 2.1.1
date: 2023-01-04
news: /news/2024/anope-211-release.html
source: https://github.com/anope/anope/archive/refs/tags/2.1.1.tar.gz
windows: https://github.com/anope/anope/releases/download/2.1.1/anope-2.1.1.exe
version: 2.1.2
date: 2023-02-17
news: /news/2024/anope-212-release.html
source: https://github.com/anope/anope/archive/refs/tags/2.1.2.tar.gz
windows: https://github.com/anope/anope/releases/download/2.1.2/anope-2.1.1.exe
stable:
version: 2.0.14
date: 2023-08-06
Expand Down
28 changes: 28 additions & 0 deletions _posts/2024-02-17-anope-212-release.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,28 @@
---
layout: post
title: Anope 2.1.2 Release
author: Sadie
category: 2024
---

Anope 2.1.2 has been released, which is the third release on our new development branch.

The notable changes include:

- Added module:tlsv10 to m_ssl_openssl for configuring whether TLSv1.0 is usable (defaults to no).
- Added module:tlsv11 to m_ssl_openssl for configuring whether TLSv1.0 is usable (defaults to yes).
- Added module:tlsv12 to m_ssl_openssl for configuring whether TLSv1.0 is usable (defaults to yes)
- Bumped the minimum OpenSSL version to 1.1.0.
- Bumped the minumum GnuTLS version to 3.0.0.
- Modernized mutex and thread code to use Modern C++.
- Normalised the program exit codes.
- Removed module:sslv3 from m_ssl_openssl.
- Removed the m_ prefix from the names of the chanstats, dns, dnsbl, helpchan, httpd, ldap, ldap_oper, mysql, proxyscan, redis, regex_pcre2, regex_posix, regex_stdlib, regex_tre, rewrite, sasl, sql_log, sql_oper, sqlite, ssl_gnutls, ssl_openssl, xmlrpc, and xmlrpc_main modules.
- Updated the Dutch translation.
- Updated the French translation.

Users who want to test out new features are encouraged to upgrade. Before upgrading you may wish to take a backup of your databases and read the [upgrading guide](/upgrading.html). If you encounter any incompatibilities that aren't mentioned on this page then [please open an issue](https://github.com/anope/website/issues/new).

SHA256 Sum: `16c6cd840c326ea91dc3cab7818034cf30d8604d8d3940c7dca77735a56ab7c3` [anope-2.1.2.tar.gz](https://github.com/anope/anope/archive/refs/tags/2.1.2.tar.gz)
\
SHA256 Sum: `cefd6271d9147a8154eaa7cbae097255d81eb529fffaf737a929773342c70c78` [anope-2.1.2.exe](https://github.com/anope/anope/releases/download/2.1.2/anope-2.1.2.exe)
24 changes: 19 additions & 5 deletions upgrading.md
Original file line number Diff line number Diff line change
Expand Up @@ -35,20 +35,34 @@ Upgrading from 2.0 to 2.1 can be done by:

0. Add the `UNBANME` privilege for `chanserv/unban` ([example](https://github.com/anope/anope/blob/2.1.1/data/chanserv.example.conf#L791-L806)).

#### nickserv.conf
#### chanstats.conf

0. Replace `nickserv:strictpasswords` with `nickserv:minpasslen` ([example](https://github.com/anope/anope/blob/2.1.0/data/nickserv.example.conf#L212-L217)).
0. Remove the `m_` prefix from the `chanstats` module.

0. Rename `nickserv:passlen` to `nickserv:maxpasslen`.
#### nickserv.conf

0. Add the `nickserv/set/neverop` and `nickserv/saset/neverop` commands ([example](https://github.com/anope/anope/blob/2.1.0/data/nickserv.example.conf#L581-L582])).

0. Remove the `ns_getpass` module and `nickserv/getpass` command.

0. Add the `nickserv/set/neverop` and `nickserv/saset/neverop` commands ([example](https://github.com/anope/anope/blob/2.1.0/data/nickserv.example.conf#L581-L582])).
0. Rename `nickserv:passlen` to `nickserv:maxpasslen`.

0. Replace `nickserv:strictpasswords` with `nickserv:minpasslen` ([example](https://github.com/anope/anope/blob/2.1.0/data/nickserv.example.conf#L212-L217)).

#### modules.conf

0. If enabled replace the `m_regex_pcre` module with the `m_regex_pcre2` module.
0. If enabled add `module:tlsv10`, `module:tlsv11`, and `module:tlsv12` to the `ssl_openssl` module ([example](https://github.com/anope/anope/blob/2.1.2/data/modules.example.conf#L632-L639)).

0. If enabled remove the `module:sslv3` from the `ssl_openssl` module (now always disabled).

0. If enabled remove the the `m_` prefix from the `dns`, `dnsbl`, `helpchan`, `httpd`, `ldap`, `ldap_oper`, `mysql`, `proxyscan`, `redis`, `regex_pcre2`, `regex_posix`, `regex_stdlib`, `regex_tre`, `rewrite`, `sasl`, `sql_log`, `sql_oper`, `sqlite`, `ssl_gnutls`, `ssl_openssl`, `xmlrpc`, and `xmlrpc_main` modules.

0. If enabled replace the `m_regex_pcre` module with the `regex_pcre2` module.

#### operserv.conf

0. Remove the `os_oline` module and `operserv/oline` command.

#### stats.standalone.conf

0. Remove the `m_` prefix from the `mysql` module.

0 comments on commit 1249097

Please sign in to comment.