forked from mail-in-a-box/mailinabox
-
Notifications
You must be signed in to change notification settings - Fork 4
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
1be8257
commit 21b01aa
Showing
1 changed file
with
79 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,79 @@ | ||
## Commits for v68 | ||
| COMMIT | DATE | AUTHOR | TITLE | | ||
| ------ | ---- | ------ | ----- | | ||
| [830c83d](https://github.com/downtownallday/mailinabox-ldap/commit/830c83daa1e7bc902cc3d5606aef9046d1226147) | 2024-04-01 | _Joshua Tauberer_ | v68 | | ||
| [7382c18](https://github.com/downtownallday/mailinabox-ldap/commit/7382c18e8fafcd34534e71b7937fedb5acfa2b43) | 2024-04-01 | _Joshua Tauberer_ | CHANGELOG entries | | ||
| [14d0e20](https://github.com/downtownallday/mailinabox-ldap/commit/14d0e20eabe93a390b4f7f842696f5bf32bc2f53) | 2024-03-23 | _Joshua Tauberer_ | CHANGELOG entries | | ||
| [fa72e01](https://github.com/downtownallday/mailinabox-ldap/commit/fa72e015ee642bef1b1533378c6d67cc1d732bff) | 2024-03-23 | _Joshua Tauberer_ | Update SMTP Smuggling protection to the 'long-term fix' | | ||
| [1a239c5](https://github.com/downtownallday/mailinabox-ldap/commit/1a239c55bb2955af607e2784eec63431ec5b607d) | 2024-03-23 | _KiekerJan_ | More robust reading of sshd configuration (#2330) | | ||
| [9b45046](https://github.com/downtownallday/mailinabox-ldap/commit/9b450469eb8ff912ed9e909d869e3e9cb61b9646) | 2024-03-23 | _Gio_ | Mail guide: OS X -> macOS (#2306) | | ||
| [163b1a2](https://github.com/downtownallday/mailinabox-ldap/commit/163b1a297ef65f2157765170c1ef277ec93e2913) | 2024-03-23 | _jvolkenant_ | Silence "wal" output on setup using hide_output (#2368) | | ||
| [88558f8](https://github.com/downtownallday/mailinabox-ldap/commit/88558f81e3fdb05f75ee7b6f3ce65f0dbd81bcf1) | 2024-03-12 | _downtownallday_ | Return the result, not None to avoid crashing the management daemon | | ||
| [18b8f9a](https://github.com/downtownallday/mailinabox-ldap/commit/18b8f9ab4bfe38ba6d0555bbb0dfbe4eab0a5b4e) | 2024-03-10 | _Joshua Tauberer_ | Revert "Allow customizations to Roundcube settings to persist between updates by including a configuration override file, if it exists (#2333)" | | ||
| [0b1d923](https://github.com/downtownallday/mailinabox-ldap/commit/0b1d92388acdde16438c2e352e6c7664c73d7410) | 2024-03-10 | _KiekerJan_ | Take spamhaus return codes into account in status check and postfix config (#2332) | | ||
| [1b8cdeb](https://github.com/downtownallday/mailinabox-ldap/commit/1b8cdeb644bb1f5471e715bb63d024313d3e96f2) | 2024-03-10 | _Crag-Monkey_ | Allow customizations to Roundcube settings to persist between updates by including a configuration override file, if it exists (#2333) | | ||
| [1053340](https://github.com/downtownallday/mailinabox-ldap/commit/10533401240a7eadb676e302e0e37a75df6d97f0) | 2024-03-10 | _Bastian Bittorf_ | setup/preflight.sh: fix some minor shellcheck complaints (#2342) | | ||
| [dbc2b5e](https://github.com/downtownallday/mailinabox-ldap/commit/dbc2b5eee03745f9d565e17c8b262d7c9c45c412) | 2024-03-10 | _Teal Dulcet_ | Fixed ISC003 (explicit-string-concatenation): Explicitly concatenated string should be implicitly concatenated | | ||
| [775a422](https://github.com/downtownallday/mailinabox-ldap/commit/775a4223de343e596b30d6dd3f2872d941c26200) | 2024-03-10 | _Teal Dulcet_ | Fixed F821 (undefined-name): Undefined name `e` | | ||
| [618c466](https://github.com/downtownallday/mailinabox-ldap/commit/618c466b84d6cf00fa4bf5d3c36c94b7e5f0f950) | 2024-03-10 | _Teal Dulcet_ | Fixed SIM114 (if-with-same-arms): Combine `if` branches using logical `or` operator | | ||
| [a32354f](https://github.com/downtownallday/mailinabox-ldap/commit/a32354fd91551bd0d10ee14cb1bfad7d70ebae66) | 2024-03-10 | _Teal Dulcet_ | Fixed PLR5501 (collapsible-else-if): Use `elif` instead of `else` then `if`, to reduce indentation | | ||
| [1d79f9b](https://github.com/downtownallday/mailinabox-ldap/commit/1d79f9bb2b0ba29e979af60c0bcbdfd3225ba6b1) | 2024-03-10 | _Teal Dulcet_ | Fixed PERF401 (manual-list-comprehension): Use a list comprehension to create a transformed list | | ||
| [cacf6d2](https://github.com/downtownallday/mailinabox-ldap/commit/cacf6d2006db3bf4c7b8785296da31529fe5be9e) | 2024-03-10 | _Teal Dulcet_ | Fixed E721 (type-comparison): Use `is` and `is not` for type comparisons, or `isinstance()` for isinstance checks | | ||
| [f0377dd](https://github.com/downtownallday/mailinabox-ldap/commit/f0377dd59ee10891edac84443e4a4018708d016b) | 2024-03-10 | _Teal Dulcet_ | Fixed SIM105 (suppressible-exception) | | ||
| [6a47133](https://github.com/downtownallday/mailinabox-ldap/commit/6a47133e3fe5616e83a65ac87006d35d54e0cf70) | 2024-03-10 | _Teal Dulcet_ | Fixed F811 (redefined-while-unused): Redefinition of unused `sys` from line 10 | | ||
| [7f456d8](https://github.com/downtownallday/mailinabox-ldap/commit/7f456d8e8ba14e50c2f60cfb78cbb959c93cf10a) | 2024-03-10 | _Teal Dulcet_ | Fixed ISC002 (multi-line-implicit-string-concatenation): Implicitly concatenated string literals over multiple lines | | ||
| [e466b9b](https://github.com/downtownallday/mailinabox-ldap/commit/e466b9bb5387a83cdd54a177cc49fcc9a85f1210) | 2024-03-10 | _Teal Dulcet_ | Fixed RUF005 (collection-literal-concatenation) | | ||
| [0e91936](https://github.com/downtownallday/mailinabox-ldap/commit/0e9193651d3f9f23e08f9dd7823b4b9642ac120d) | 2024-03-10 | _Teal Dulcet_ | Fixed PLW1514 (unspecified-encoding): `open` in text mode without explicit `encoding` argument | | ||
| [a02b59d](https://github.com/downtownallday/mailinabox-ldap/commit/a02b59d4e4af8f15405557a4597c28ab061d1159) | 2024-03-10 | _Teal Dulcet_ | Fixed F401 (unused-import): `socket.timeout` imported but unused | | ||
| [15bddcb](https://github.com/downtownallday/mailinabox-ldap/commit/15bddcbc397da9849f88b8040b0903657da00ac4) | 2024-03-10 | _Teal Dulcet_ | Fixed RUF010 (explicit-f-string-type-conversion): Use explicit conversion flag | | ||
| [c719fce](https://github.com/downtownallday/mailinabox-ldap/commit/c719fce40a33256ec25d25b8b8a4fa3c44fff904) | 2024-03-10 | _Teal Dulcet_ | Fixed UP032 (f-string): Use f-string instead of `format` call | | ||
| [3111cf5](https://github.com/downtownallday/mailinabox-ldap/commit/3111cf56de6100932f299c879fce6dad92650c4e) | 2024-03-10 | _Teal Dulcet_ | Fixed EM102 (f-string-in-exception): Exception must not use an f-string literal, assign to variable first | | ||
| [6508d47](https://github.com/downtownallday/mailinabox-ldap/commit/6508d47da149ae55a068befe49193840bae097e5) | 2024-03-10 | _Teal Dulcet_ | Fixed C405 (unnecessary-literal-set): Unnecessary `list` literal (rewrite as a `set` literal) | | ||
| [9b961b7](https://github.com/downtownallday/mailinabox-ldap/commit/9b961b7ba028e4a30556914466707e55028a2912) | 2024-03-10 | _Teal Dulcet_ | Fixed UP024 (os-error-alias): Replace aliased errors with `OSError` | | ||
| [b13cef9](https://github.com/downtownallday/mailinabox-ldap/commit/b13cef9b1dce9770235de38a954d32c5a8eb0a95) | 2024-03-10 | _Teal Dulcet_ | Fixed PIE790 (unnecessary-placeholder): Unnecessary `pass` statement | | ||
| [8b9d3ec](https://github.com/downtownallday/mailinabox-ldap/commit/8b9d3ec094e679a54d04a6dc259322ef29c79eb7) | 2024-03-10 | _Teal Dulcet_ | Fixed W292 (missing-newline-at-end-of-file): No newline at end of file | | ||
| [d1d3d08](https://github.com/downtownallday/mailinabox-ldap/commit/d1d3d08d70ac126c7a0c0e619398318e8e96fc51) | 2024-03-10 | _Teal Dulcet_ | Fixed B006 (mutable-argument-default): Do not use mutable data structures for argument defaults | | ||
| [922c59d](https://github.com/downtownallday/mailinabox-ldap/commit/922c59ddafa5b604f4d45b9989248b64493e957c) | 2024-03-10 | _Teal Dulcet_ | Fixed SIM212 (if-expr-with-twisted-arms): Use `with_lines if with_lines else []` instead of `[] if not with_lines else with_lines` | | ||
| [20a99c0](https://github.com/downtownallday/mailinabox-ldap/commit/20a99c0ab81f10134bd4ce35b33423b18938ad5f) | 2024-03-10 | _Teal Dulcet_ | Fixed UP041 (timeout-error-alias): Replace aliased errors with `TimeoutError` | | ||
| [54af472](https://github.com/downtownallday/mailinabox-ldap/commit/54af4725f9ad8807374cc2ad2ee806f7ff49817b) | 2024-03-10 | _Teal Dulcet_ | Fixed C404 (unnecessary-list-comprehension-dict): Unnecessary `list` comprehension (rewrite as a `dict` comprehension) | | ||
| [fd4fcda](https://github.com/downtownallday/mailinabox-ldap/commit/fd4fcdaf53510ff9b79512a92f602d2128eca53f) | 2024-03-10 | _Teal Dulcet_ | Fixed E712 (true-false-comparison): Comparison to `False` should be `cond is False` or `if not cond:` | | ||
| [d661d62](https://github.com/downtownallday/mailinabox-ldap/commit/d661d623dc3e4bfbc4d1e1059dc1bfa1cd707041) | 2024-03-10 | _Teal Dulcet_ | Fixed RUF017 (quadratic-list-summation): Avoid quadratic list summation | | ||
| [f621789](https://github.com/downtownallday/mailinabox-ldap/commit/f62178929800e2a25ab3a3a61ef7ea3e411b1429) | 2024-03-10 | _Teal Dulcet_ | Fixed SIM118 (in-dict-keys): Use `key in dict` instead of `key in dict.keys()` | | ||
| [ec32e1d](https://github.com/downtownallday/mailinabox-ldap/commit/ec32e1d57865456cabf10fcd8b36df728283dddc) | 2024-03-10 | _Teal Dulcet_ | Fixed E703 (useless-semicolon): Statement ends with an unnecessary semicolon | | ||
| [57dcd4b](https://github.com/downtownallday/mailinabox-ldap/commit/57dcd4bb517d79200874e863f9f14ad6e917e9cf) | 2024-03-10 | _Teal Dulcet_ | Fixed E713 (not-in-test): Test for membership should be `not in` | | ||
| [845393b](https://github.com/downtownallday/mailinabox-ldap/commit/845393b6e087467755e69c25afdbf8b83ed6294c) | 2024-03-10 | _Teal Dulcet_ | Fixed RET503 (implicit-return): Missing explicit `return` at the end of function able to return non-`None` value | | ||
| [c585c1e](https://github.com/downtownallday/mailinabox-ldap/commit/c585c1ecf66f739c2ba373ff0a7148423126623a) | 2024-03-10 | _Teal Dulcet_ | Fixed W291 (trailing-whitespace): Trailing whitespace | | ||
| [e0e6f10](https://github.com/downtownallday/mailinabox-ldap/commit/e0e6f1081b180e189ff7913868a65dcc84bcc33e) | 2024-03-10 | _Teal Dulcet_ | Fixed C414 (unnecessary-double-cast-or-process): Unnecessary `list` call within `sorted()` | | ||
| [4999ed7](https://github.com/downtownallday/mailinabox-ldap/commit/4999ed7b1cb631ba64f9b0b31892dacdbf6f2f25) | 2024-03-10 | _Teal Dulcet_ | Fixed Q003 (avoidable-escaped-quote): Change outer quotes to avoid escaping inner quotes | | ||
| [ca8f06d](https://github.com/downtownallday/mailinabox-ldap/commit/ca8f06d59093c0bb30221c8e56997145235a2f64) | 2024-03-10 | _Teal Dulcet_ | Fixed PLR1711 (useless-return): Useless `return` statement at end of function | | ||
| [57d05c1](https://github.com/downtownallday/mailinabox-ldap/commit/57d05c1ab26ef350689ee6c2551629254de04d0c) | 2024-03-10 | _Teal Dulcet_ | Fixed B007 (unused-loop-control-variable) | | ||
| [c953e57](https://github.com/downtownallday/mailinabox-ldap/commit/c953e5784d018dcca21a3d80595ac80e61b27fad) | 2024-03-10 | _Teal Dulcet_ | Fixed C401 (unnecessary-generator-set): Unnecessary generator (rewrite as a `set` comprehension) | | ||
| [81a4da0](https://github.com/downtownallday/mailinabox-ldap/commit/81a4da0181a62d81170e2ba414d08ce68f428f47) | 2024-03-10 | _Teal Dulcet_ | Fixed SIM110 (reimplemented-builtin) | | ||
| [99d3929](https://github.com/downtownallday/mailinabox-ldap/commit/99d3929f9918885e49b5411f5049dda27d3f325b) | 2024-03-10 | _Teal Dulcet_ | Fixed E711 (none-comparison) | | ||
| [541f31b](https://github.com/downtownallday/mailinabox-ldap/commit/541f31b1bae8087ce21537772c222f74969bf4af) | 2024-03-10 | _Teal Dulcet_ | Fixed FURB113 (repeated-append) | | ||
| [e8d1c03](https://github.com/downtownallday/mailinabox-ldap/commit/e8d1c037cbfb7213486f2765f55ce566705954eb) | 2024-03-10 | _Teal Dulcet_ | Fixed SIM102 (collapsible-if): Use a single `if` statement instead of nested `if` statements | | ||
| [67b9d0b](https://github.com/downtownallday/mailinabox-ldap/commit/67b9d0b2798c1d05cf4ded26d504fe6d664e73bb) | 2024-03-10 | _Teal Dulcet_ | Fixed PLW0108 (unnecessary-lambda): Lambda may be unnecessary; consider inlining inner function | | ||
| [3d72c32](https://github.com/downtownallday/mailinabox-ldap/commit/3d72c32b1d2347e0bf4da884b5a5572fa6f6e567) | 2024-03-10 | _Teal Dulcet_ | Fixed W605 (invalid-escape-sequence) | | ||
| [14a5613](https://github.com/downtownallday/mailinabox-ldap/commit/14a5613dc8cb9fe5a3d30d98b07ff628c42ff0e9) | 2024-03-10 | _Teal Dulcet_ | Fixed UP031 (printf-string-formatting): Use format specifiers instead of percent format | | ||
| [64540fb](https://github.com/downtownallday/mailinabox-ldap/commit/64540fbb4459cb568fc844394cf28c2884084fb7) | 2024-03-10 | _Teal Dulcet_ | Fixed UP034 (extraneous-parentheses): Avoid extraneous parentheses | | ||
| [eefc051](https://github.com/downtownallday/mailinabox-ldap/commit/eefc0514b24adc5d05e021bf3466fa4a3c504a6e) | 2024-03-10 | _Teal Dulcet_ | Fixed UP030 (format-literals): Use implicit references for positional format fields | | ||
| [fba92de](https://github.com/downtownallday/mailinabox-ldap/commit/fba92de0516d58d35217ebd70e02ef33d133ef90) | 2024-03-10 | _Teal Dulcet_ | Fixed SIM108 (if-else-block-instead-of-if-exp) | | ||
| [51dc761](https://github.com/downtownallday/mailinabox-ldap/commit/51dc7615f79a42064e452e3eff91e1388a8a0fac) | 2024-03-10 | _Teal Dulcet_ | Fixed RSE102 (unnecessary-paren-on-raise-exception): Unnecessary parentheses on raised exception | | ||
| [13b38cc](https://github.com/downtownallday/mailinabox-ldap/commit/13b38cc04db83719ec967b49b47d7abdca4b4bf6) | 2024-03-10 | _Teal Dulcet_ | Fixed F841 (unused-variable) | | ||
| [2b42685](https://github.com/downtownallday/mailinabox-ldap/commit/2b426851f9f256bb2d4a12e64c6712e6c1a6178e) | 2024-03-10 | _Teal Dulcet_ | Fixed UP032 (f-string): Use f-string instead of `format` call | | ||
| [b7f70b1](https://github.com/downtownallday/mailinabox-ldap/commit/b7f70b17acf2b8abfca31de9badda9ea5580172b) | 2024-03-10 | _Teal Dulcet_ | Fixed RET504 (unnecessary-assign) | | ||
| [6bfd1e5](https://github.com/downtownallday/mailinabox-ldap/commit/6bfd1e5140eab643c0e9461fc552c2c504fec473) | 2024-03-10 | _Teal Dulcet_ | Fixed W293 (blank-line-with-whitespace): Blank line contains whitespace | | ||
| [555ecc1](https://github.com/downtownallday/mailinabox-ldap/commit/555ecc1ebb31915721cd26b9f0b0c19485119c33) | 2024-03-10 | _Teal Dulcet_ | Fixed PIE810 (multiple-starts-ends-with): Call `startswith` once with a `tuple` | | ||
| [dd61844](https://github.com/downtownallday/mailinabox-ldap/commit/dd61844cedc9edc150466bf063320d6180685c65) | 2024-03-10 | _Teal Dulcet_ | Fixed EM101 (raw-string-in-exception): Exception must not use a string literal, assign to variable first | | ||
| [49124cc](https://github.com/downtownallday/mailinabox-ldap/commit/49124cc9caee228cf5595381203b667e82c8750f) | 2024-03-10 | _Teal Dulcet_ | Fixed PLR6201 (literal-membership): Use a `set` literal when testing for membership | | ||
| [cb922ec](https://github.com/downtownallday/mailinabox-ldap/commit/cb922ec286c99c01c75fa526af27c78c64869838) | 2024-03-10 | _Teal Dulcet_ | Fixed UP015 (redundant-open-modes): Unnecessary open mode parameters | | ||
| [0ee64f2](https://github.com/downtownallday/mailinabox-ldap/commit/0ee64f2fe865ad491c69a7afb5af3d5c2822a19e) | 2024-03-10 | _Teal Dulcet_ | Fixed F401 (unused-import) | | ||
| [785c337](https://github.com/downtownallday/mailinabox-ldap/commit/785c337fb389665f4a8f3a3a193bafa355f1d5ff) | 2024-03-10 | _KiekerJan_ | Make reading of previous status check result more robust (#2347) | | ||
| [293d56c](https://github.com/downtownallday/mailinabox-ldap/commit/293d56c781505c0af550e1529cdba56d28d72182) | 2024-03-10 | _KiekerJan_ | Update javascript libraries used by control panel (#2351) | | ||
| [040d0cb](https://github.com/downtownallday/mailinabox-ldap/commit/040d0cbb7cab4329f9dae4960a42f5dc4d76ce63) | 2024-03-10 | _KiekerJan_ | Update roundcube to 1.6.6 (#2360) | | ||
| [111468e](https://github.com/downtownallday/mailinabox-ldap/commit/111468efb987f5e66a79cceb5a7c5392822b4822) | 2024-03-10 | _Michael Heuberger_ | Bump Nextcloud to v26.0.12 (#2310) | | ||
| [4ad679d](https://github.com/downtownallday/mailinabox-ldap/commit/4ad679da477cfaa3ef72d18108617e6352e0fbd4) | 2024-03-10 | _John James Jacoby_ | Issue-2354: Silence "wal" output on setup (#2356) | | ||
| [84919fe](https://github.com/downtownallday/mailinabox-ldap/commit/84919fefa4de2374fea2541ae112a1e6ab72ce9a) | 2024-03-10 | _solomon-s-b_ | Fix miab-munin.conf filter not capturing HTTP/2.0 (#2359) | | ||
| [c884d63](https://github.com/downtownallday/mailinabox-ldap/commit/c884d63dda558f422897b5879791eccfdf939317) | 2024-03-05 | _downtownallday_ | QA: extent tick wait from 1ms to 100ms to avoid ElementNotInteractableException | | ||
| [da2d88e](https://github.com/downtownallday/mailinabox-ldap/commit/da2d88e4f476388577d899fc1b1e7cdf6500fc27) | 2024-03-05 | _downtownallday_ | Fix invalid escape sequences | | ||
| [e931e10](https://github.com/downtownallday/mailinabox-ldap/commit/e931e103fe1d6db81681e3c9732d21e9860acdcd) | 2024-01-10 | _KiekerJan_ | [security] SMTP smuggling: update short term fix (#2346) | |