From c2b154e1b1c9d6b8e85dcc28c8ae794bb5c17840 Mon Sep 17 00:00:00 2001 From: PeGaSuS Date: Thu, 8 Dec 2022 08:16:04 +0100 Subject: [PATCH 1/6] Document `cs_no_expire` (#301). --- data/chanserv.example.conf | 2 ++ 1 file changed, 2 insertions(+) diff --git a/data/chanserv.example.conf b/data/chanserv.example.conf index 05b6055ba..cce4456ac 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, From e33b8d5f43b5ded05538efb722c1295416e512c5 Mon Sep 17 00:00:00 2001 From: Sadie Powell Date: Fri, 9 Dec 2022 08:28:57 +0000 Subject: [PATCH 2/6] Update the changelogs. --- docs/Changes | 10 ++++++++++ docs/Changes.conf | 4 ++++ 2 files changed, 14 insertions(+) diff --git a/docs/Changes b/docs/Changes index d46f5b6c6..386c568a2 100644 --- a/docs/Changes +++ b/docs/Changes @@ -1,3 +1,13 @@ +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 b61eeede4..32b49770a 100644 --- a/docs/Changes.conf +++ b/docs/Changes.conf @@ -1,3 +1,7 @@ +Anope Version 2.0.12 +-------------------- +Added the regex_pcre2 module + Anope Version 2.0.11 -------------------- No significant changes. From d4d2a4b4ce5c2cbdc75214d33a4c45fff11ec784 Mon Sep 17 00:00:00 2001 From: Sadie Powell Date: Fri, 9 Dec 2022 08:30:43 +0000 Subject: [PATCH 3/6] Release 2.0.12. --- src/version.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/version.sh b/src/version.sh index 6a6f99b15..08d819c85 100644 --- a/src/version.sh +++ b/src/version.sh @@ -2,5 +2,5 @@ VERSION_MAJOR=2 VERSION_MINOR=0 -VERSION_PATCH=11 +VERSION_PATCH=12 VERSION_EXTRA="" From e78db21180ea135b1f404d45f613ae1a78219cc9 Mon Sep 17 00:00:00 2001 From: Sadie Powell Date: Fri, 9 Dec 2022 08:33:02 +0000 Subject: [PATCH 4/6] Mark as 2.0.13-git. --- docs/Changes | 4 ++++ docs/Changes.conf | 5 +++++ src/version.sh | 4 ++-- 3 files changed, 11 insertions(+), 2 deletions(-) diff --git a/docs/Changes b/docs/Changes index 386c568a2..e37de690a 100644 --- a/docs/Changes +++ b/docs/Changes @@ -1,3 +1,7 @@ +Anope Version 2.0.13-git +------------------------ +No significant changes. + Anope Version 2.0.12 -------------------- Added account confirmation to the web panel diff --git a/docs/Changes.conf b/docs/Changes.conf index 32b49770a..37e83abda 100644 --- a/docs/Changes.conf +++ b/docs/Changes.conf @@ -1,3 +1,8 @@ +Anope Version 2.0.13-git +------------------------ +No significant changes. + + Anope Version 2.0.12 -------------------- Added the regex_pcre2 module diff --git a/src/version.sh b/src/version.sh index 08d819c85..be6b9e5b4 100644 --- a/src/version.sh +++ b/src/version.sh @@ -2,5 +2,5 @@ VERSION_MAJOR=2 VERSION_MINOR=0 -VERSION_PATCH=12 -VERSION_EXTRA="" +VERSION_PATCH=13 +VERSION_EXTRA="-git" From 6eec018c34503603ce43f447eb65966e7a788cde Mon Sep 17 00:00:00 2001 From: Sadie Powell Date: Sat, 17 Dec 2022 15:57:37 +0000 Subject: [PATCH 5/6] Allow Dependabot to keep our GitHub CI up to date. --- .github/dependabot.yml | 6 ++++++ 1 file changed, 6 insertions(+) create mode 100644 .github/dependabot.yml 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 From 2f46739931759dc360448a5e7f45e4ce6f7d9b7f Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Sat, 17 Dec 2022 15:58:16 +0000 Subject: [PATCH 6/6] Bump actions/checkout from 2 to 3 Bumps [actions/checkout](https://github.com/actions/checkout) from 2 to 3. - [Release notes](https://github.com/actions/checkout/releases) - [Changelog](https://github.com/actions/checkout/blob/main/CHANGELOG.md) - [Commits](https://github.com/actions/checkout/compare/v2...v3) --- updated-dependencies: - dependency-name: actions/checkout dependency-type: direct:production update-type: version-update:semver-major ... Signed-off-by: dependabot[bot] --- .github/workflows/ci-linux.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/ci-linux.yml b/.github/workflows/ci-linux.yml index a2c35dc40..022a930aa 100644 --- a/.github/workflows/ci-linux.yml +++ b/.github/workflows/ci-linux.yml @@ -9,7 +9,7 @@ jobs: CXX: ${{ matrix.compiler }} CXXFLAGS: -std=${{ matrix.standard }} steps: - - uses: actions/checkout@v2 + - uses: actions/checkout@v3 - name: Install dependencies run: | sudo apt-get update --assume-yes