summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--.github/dependabot.yml6
-rw-r--r--.github/workflows/ci-linux.yml2
-rw-r--r--.github/workflows/ci-windows.yml4
-rw-r--r--data/chanserv.example.conf2
-rw-r--r--docs/Changes14
-rw-r--r--docs/Changes.conf10
6 files changed, 34 insertions, 4 deletions
diff --git a/.github/dependabot.yml b/.github/dependabot.yml
new file mode 100644
index 000000000..3a626c3a7
--- /dev/null
+++ b/.github/dependabot.yml
@@ -0,0 +1,6 @@
+version: 2
+updates:
+ - package-ecosystem: github-actions
+ directory: /
+ schedule:
+ interval: monthly
diff --git a/.github/workflows/ci-linux.yml b/.github/workflows/ci-linux.yml
index 0a27f24b3..cb5b9924c 100644
--- a/.github/workflows/ci-linux.yml
+++ b/.github/workflows/ci-linux.yml
@@ -9,7 +9,7 @@ jobs:
CXX: ${{ matrix.compiler }}
CXXFLAGS: -Werror
steps:
- - uses: actions/checkout@v2
+ - uses: actions/checkout@v3
- name: Install dependencies
run: |
sudo apt-get update --assume-yes
diff --git a/.github/workflows/ci-windows.yml b/.github/workflows/ci-windows.yml
index 34a07226a..a5a9d1ad7 100644
--- a/.github/workflows/ci-windows.yml
+++ b/.github/workflows/ci-windows.yml
@@ -8,10 +8,10 @@ jobs:
build:
runs-on: windows-2019
steps:
- - uses: actions/checkout@v2
+ - uses: actions/checkout@v3
- name: Setup MSBuild
- uses: microsoft/setup-msbuild@v1.1.0
+ uses: microsoft/setup-msbuild@v1.3
- name: Run CMake
run: |
diff --git a/data/chanserv.example.conf b/data/chanserv.example.conf
index bb8869575..e5d623223 100644
--- a/data/chanserv.example.conf
+++ b/data/chanserv.example.conf
@@ -89,6 +89,8 @@ module
* - noautoop: Disables autoop on the channel
* - cs_keep_modes: Enables keep modes on the channel, which retains modes when the channel is
* not in use.
+ * - cs_no_expire: Enables no expire. Needs founder, successor (if set) or anyone in the access list
+ * to be a registered nick, otherwise the channel will be dropped.
* - none: No defaults
*
* This directive is optional, if left blank, the options will default to keeptopic, cs_secure, securefounder,
diff --git a/docs/Changes b/docs/Changes
index d46f5b6c6..e37de690a 100644
--- a/docs/Changes
+++ b/docs/Changes
@@ -1,3 +1,17 @@
+Anope Version 2.0.13-git
+------------------------
+No significant changes.
+
+Anope Version 2.0.12
+--------------------
+Added account confirmation to the web panel
+Added the regex_pcre2 module which provides regex/pcre with PCRE2
+Documented the cs_no_expire channel default
+Fixed config validation mistakenly allowing spaces in some fields
+Fixed the bahamut protocol module not knowing about halfops
+Fixed writing a flatfile database not being atomic
+Updated the hybrid protocol module for recent protocol changes
+
Anope Version 2.0.11
--------------------
Fixed ldap on OpenLDAP 2.5+
diff --git a/docs/Changes.conf b/docs/Changes.conf
index cb1d77313..b4424cca0 100644
--- a/docs/Changes.conf
+++ b/docs/Changes.conf
@@ -1,10 +1,18 @@
Anope Version 2.1.0-git
---------------------
+-----------------------
Added nickserv:minpasslen for configuring the minimum password length.
Removed nickserv:strictpasswords as it is obsolete now nickserv:minpasslen exists.
Renamed nickserv:passlen to nickserv:maxpasslen.
Replaced uplink:ipv6 with uplink:protocol.
+Anope Version 2.0.13-git
+------------------------
+No significant changes.
+
+Anope Version 2.0.12
+--------------------
+Added the regex_pcre2 module
+
Anope Version 2.0.11
--------------------
No significant changes.