Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Changes preparing for 2.2.0 release #184

Merged
merged 21 commits into from
Jul 8, 2021
Merged
Show file tree
Hide file tree
Changes from 4 commits
Commits
Show all changes
21 commits
Select commit Hold shift + click to select a range
6f661f7
Changes preparing for 2.2.0 release
eaescob May 20, 2021
92b1643
Add change mentioning the enabling of half ops
eaescob May 20, 2021
9dcc0a1
Remove "inline" from verbose_to_opers to fix compile errors.
rscs May 21, 2021
107e7da
Merge branch 'master' into release-2.2.0
rscs May 21, 2021
8c7568c
Fixing a few typos I found.
rscs May 21, 2021
e7ae184
Updated change log.
rscs May 21, 2021
822819a
Keep verbose_to_opers as inline; just define it properly in h.h.
rscs May 21, 2021
07cab2f
Where did you come from?
rscs May 21, 2021
c3e3ca5
Merge pull request #187 from rscs/2.2.0-typo-fixes
eaescob May 21, 2021
0899996
Merge pull request #186 from DALnet/fix-xflag-problem
eaescob May 21, 2021
a4120f2
Send notice if services have not sent user hostmasking type
eaescob May 22, 2021
940051a
Fixed typo
eaescob May 22, 2021
f065e12
Fixing rwho for WEBIRC
eaescob May 22, 2021
fd6fb83
Fixes to be able to rwho for webirc clients globally
eaescob May 24, 2021
7ba995c
Add UMODE_W to SEND_UMODEs and disable usage of umode W within m_umode
eaescob May 24, 2021
8063f79
Remove redundant USER_HOSTMASKING_FALLBACK_TO_IP logic as we are now …
rscs Jul 6, 2021
73bf49c
Fix changes count.
rscs Jul 6, 2021
a37dcce
Merge pull request #188 from DALnet/remove-redundant-ip-hostmasking
eaescob Jul 6, 2021
d74c1d4
Make contact statement generic
eaescob Jul 7, 2021
417daa2
Merge branch 'release-2.2.0' of github.com:DALnet/bahamut into releas…
eaescob Jul 7, 2021
453f936
use Network_Name instead
eaescob Jul 7, 2021
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
32 changes: 32 additions & 0 deletions CHANGES
Original file line number Diff line number Diff line change
@@ -1,3 +1,35 @@
Changes for 2.2.0:
------------------
rasengan (2):
Search for WEBIRC users using /rwho (PR #139)
Added /stats P to show listening ports (PR #134)

Ryan Smith (6):
Override clone limits with SVSCLONE (PR #148)
Updates to user hostmasking (PR #175)
Added new config.h option: USER_HOSTMASKING_FALLBACK_TO_IP. This is used to hostmask using the user's IP address if we are unable to hostmask using their hostname. This usually happens if they're using a domain name without a lot of labels: somehost.com or company.co.uk or similar. (PR #175)
Do not attempt to mask the Staff_Address for opers. (PR #175)
Do not allow opers who are already hostmasked to set +H as this results in weird /whois results. (PR #175)
Added new config.h option: NO_UMODE_H_FLOOD. Do not allow the user to change user mode H too often, to prevent WATCH flooding. (PR #175)
Do not allow user mode H to be changed if the user is in any channels. This is to prevent potential client-side weirdness from happening if a user's host changes while they're already in one or more channels. (PR #175)
Send out WATCH notifications if the hostname changes due to a mode H change. (PR #175)
Minor typo fixes.

Emilio Escobar (4):
Fixed oper block corruption when two opers share the same IP (PR #181)
Override softlimits with SVSCLONE (PR #162)
Decrease unknown count if cptr is in unknown state (PR #160)
Enable channel half ops (PR #184)

Kobi Shmueli (1):
Change user hostmask to send user's IP (PR #179)

Ned T. Crigler (1):
Make configure test support for extra compiler flags (PR #167)

jeian (1):
Add XFLAG documentation (PR #155)

Changes for 2.1.6:
------------------
Ryan Smith (4):
Expand Down
2 changes: 1 addition & 1 deletion include/config.h
Original file line number Diff line number Diff line change
Expand Up @@ -906,7 +906,7 @@
/*
* Don't allow local clients to use +h/-h until all servers and services are upgraded.
*/
#define NO_LOCAL_CMODE_h
#undef NO_LOCAL_CMODE_h

/* ------------------------- END CONFIGURATION SECTION -------------------- */
#ifdef APOLLO
Expand Down
4 changes: 2 additions & 2 deletions include/patchlevel.h
Original file line number Diff line number Diff line change
Expand Up @@ -21,8 +21,8 @@

#define BASENAME "bahamut"
#define MAJOR 2
#define MINOR 1
#define PATCH 6
#define MINOR 2
#define PATCH 0

#define PATCHES ""

Expand Down