-
-
Notifications
You must be signed in to change notification settings - Fork 115
changed from os.umask to os.chmod #206
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
Conversation
whitelist.txt
Outdated
@@ -4,6 +4,7 @@ autosectionlabel | |||
caplog | |||
eacces | |||
extlinks | |||
fchmod |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
remove this?
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
will do
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
No merge commits please, use rebase instead.
for more information, see https://pre-commit.ci
apologies. I have fixed this. here's what I've learned Windows (annoyingly) doesn't suppose chmod. However, the default umask for windows allows -rw-rw-rw (vs UNIX's more restrictive default). So the following updates were made: _unix.py _windows.py preserve the os.open with the mode= option since the windows defaults will allow for -rw-rw-rw _soft.py - remove the changed mode. Since the file is deleted after use, the SoftFileLock never needed to support -rw-rw-rw in the first place. |
Today after after this change poetry installs in Docker/Podman containers started to fail (it depends on filelock which was bumped from 3.10.0 to 3.10.12), from our CI log:
The only w/a is after installing poetry forcefully downgrading filelock to <= 3.10.1 |
I think there is an issue with #206 By calling import os, filelock
# Program makes os.umask more permissive
os.umask(0)
with filelock.FileLock("/path/to/lock"):
# Between lock creation and destruction, there is a moment where the permissions are rwxrwxrwx.
... https://github.com/tox-dev/py-filelock/blob/b85b5cbb3db00bfc87d75b8551be341ea8696092/src/filelock/_unix.py#L33-L36 Also, it may be a good idea have a way for the permissions of the lock file to be set by Related Stack post: https://stackoverflow.com/questions/36745577/how-do-you-create-in-python-a-file-with-permissions-other-users-can-write#comment105490504_36745806 |
[](https://renovatebot.com) This PR contains the following updates: | Package | Change | Age | Adoption | Passing | Confidence | |---|---|---|---|---|---| | [filelock](https://togithub.com/tox-dev/py-filelock) | `3.0.12` -> `3.12.2` | [](https://docs.renovatebot.com/merge-confidence/) | [](https://docs.renovatebot.com/merge-confidence/) | [](https://docs.renovatebot.com/merge-confidence/) | [](https://docs.renovatebot.com/merge-confidence/) | --- ### Release Notes <details> <summary>tox-dev/py-filelock (filelock)</summary> ### [`v3.12.2`](https://togithub.com/tox-dev/py-filelock/releases/tag/3.12.2) [Compare Source](https://togithub.com/tox-dev/py-filelock/compare/3.12.1...3.12.2) #### What's Changed - Restore 'if TYPE_CHECKING' syntax for FileLock definition by [@​dlax](https://togithub.com/dlax) in [https://github.com/tox-dev/py-filelock/pull/245](https://togithub.com/tox-dev/py-filelock/pull/245) #### New Contributors - [@​dlax](https://togithub.com/dlax) made their first contribution in [https://github.com/tox-dev/py-filelock/pull/245](https://togithub.com/tox-dev/py-filelock/pull/245) **Full Changelog**: tox-dev/filelock@3.12.1...3.12.2 ### [`v3.12.1`](https://togithub.com/tox-dev/py-filelock/releases/tag/3.12.1) [Compare Source](https://togithub.com/tox-dev/py-filelock/compare/3.12.0...3.12.1) ##### What's Changed - Add trusted-publish by [@​gaborbernat](https://togithub.com/gaborbernat) in [https://github.com/tox-dev/py-filelock/pull/236](https://togithub.com/tox-dev/py-filelock/pull/236) - Add 3.12 support by [@​gaborbernat](https://togithub.com/gaborbernat) in [https://github.com/tox-dev/py-filelock/pull/237](https://togithub.com/tox-dev/py-filelock/pull/237) - Bump pypa/gh-action-pypi-publish from 1.8.5 to 1.8.6 by [@​dependabot](https://togithub.com/dependabot) in [https://github.com/tox-dev/py-filelock/pull/239](https://togithub.com/tox-dev/py-filelock/pull/239) - git ls-files -z -- .github/workflows/check.yml | xargs -0 sed -i 's|3.12.0-alpha.7|3.12.0-beta.1|g' by [@​gaborbernat](https://togithub.com/gaborbernat) in [https://github.com/tox-dev/py-filelock/pull/243](https://togithub.com/tox-dev/py-filelock/pull/243) - Use ruff by [@​gaborbernat](https://togithub.com/gaborbernat) in [https://github.com/tox-dev/py-filelock/pull/244](https://togithub.com/tox-dev/py-filelock/pull/244) - Fix test_bad_lock_file for other OSes by [@​TheMatt2](https://togithub.com/TheMatt2) in [https://github.com/tox-dev/py-filelock/pull/242](https://togithub.com/tox-dev/py-filelock/pull/242) **Full Changelog**: tox-dev/filelock@3.12.0...3.12.1 ### [`v3.12.0`](https://togithub.com/tox-dev/py-filelock/releases/tag/3.12.0) [Compare Source](https://togithub.com/tox-dev/py-filelock/compare/3.11.0...3.12.0) #### What's Changed - Fix: [#​225](https://togithub.com/tox-dev/py-filelock/issues/225) :Get rid of warning about inability to link to \_thread.\_local. by [@​csm10495](https://togithub.com/csm10495) in [https://github.com/tox-dev/py-filelock/pull/226](https://togithub.com/tox-dev/py-filelock/pull/226) - Bump deps and tools by [@​gaborbernat](https://togithub.com/gaborbernat) in [https://github.com/tox-dev/py-filelock/pull/228](https://togithub.com/tox-dev/py-filelock/pull/228) - Add umask check to tests so umask 002 is valid by [@​TheMatt2](https://togithub.com/TheMatt2) in [https://github.com/tox-dev/py-filelock/pull/227](https://togithub.com/tox-dev/py-filelock/pull/227) - Fix lock hang on Windows by [@​TheMatt2](https://togithub.com/TheMatt2) in [https://github.com/tox-dev/py-filelock/pull/231](https://togithub.com/tox-dev/py-filelock/pull/231) - Conditionally disable/enable thread-local lock behavior. by [@​csm10495](https://togithub.com/csm10495) in [https://github.com/tox-dev/py-filelock/pull/232](https://togithub.com/tox-dev/py-filelock/pull/232) **Full Changelog**: tox-dev/filelock@3.11.0...3.12.0 ### [`v3.11.0`](https://togithub.com/tox-dev/py-filelock/releases/tag/3.11.0) [Compare Source](https://togithub.com/tox-dev/py-filelock/compare/3.10.7...3.11.0) #### What's Changed - Bump pypa/gh-action-pypi-publish from 1.8.3 to 1.8.5 by [@​dependabot](https://togithub.com/dependabot) in [https://github.com/tox-dev/py-filelock/pull/218](https://togithub.com/tox-dev/py-filelock/pull/218) - Fix [#​220](https://togithub.com/tox-dev/py-filelock/issues/220): Allow filelock test thread to catch any exceptions by [@​TheMatt2](https://togithub.com/TheMatt2) in [https://github.com/tox-dev/py-filelock/pull/221](https://togithub.com/tox-dev/py-filelock/pull/221) - Bump deps and tools by [@​gaborbernat](https://togithub.com/gaborbernat) in [https://github.com/tox-dev/py-filelock/pull/222](https://togithub.com/tox-dev/py-filelock/pull/222) - Run more pypy versions in CI but without coverage by [@​gaborbernat](https://togithub.com/gaborbernat) in [https://github.com/tox-dev/py-filelock/pull/224](https://togithub.com/tox-dev/py-filelock/pull/224) - Make the lock a thread local variable by [@​csm10495](https://togithub.com/csm10495) in [https://github.com/tox-dev/py-filelock/pull/219](https://togithub.com/tox-dev/py-filelock/pull/219) #### New Contributors - [@​csm10495](https://togithub.com/csm10495) made their first contribution in [https://github.com/tox-dev/py-filelock/pull/219](https://togithub.com/tox-dev/py-filelock/pull/219) **Full Changelog**: tox-dev/filelock@3.10.7...3.11.0 ### [`v3.10.7`](https://togithub.com/tox-dev/py-filelock/releases/tag/3.10.7) [Compare Source](https://togithub.com/tox-dev/py-filelock/compare/3.10.6...3.10.7) #### What's Changed - use fchmod by [@​jfennick](https://togithub.com/jfennick) in [https://github.com/tox-dev/py-filelock/pull/214](https://togithub.com/tox-dev/py-filelock/pull/214) #### New Contributors - [@​jfennick](https://togithub.com/jfennick) made their first contribution in [https://github.com/tox-dev/py-filelock/pull/214](https://togithub.com/tox-dev/py-filelock/pull/214) **Full Changelog**: tox-dev/filelock@3.10.6...3.10.7 ### [`v3.10.6`](https://togithub.com/tox-dev/py-filelock/releases/tag/3.10.6) [Compare Source](https://togithub.com/tox-dev/py-filelock/compare/3.10.5...3.10.6) #### What's Changed - Bugfix/147 by [@​jahrules](https://togithub.com/jahrules) in [https://github.com/tox-dev/py-filelock/pull/213](https://togithub.com/tox-dev/py-filelock/pull/213) **Full Changelog**: tox-dev/filelock@3.10.5...3.10.6 ### [`v3.10.5`](https://togithub.com/tox-dev/py-filelock/releases/tag/3.10.5) [Compare Source](https://togithub.com/tox-dev/py-filelock/compare/3.10.4...3.10.5) #### What's Changed - proposed fix for issue [#​67](https://togithub.com/tox-dev/py-filelock/issues/67) by [@​jahrules](https://togithub.com/jahrules) in [https://github.com/tox-dev/py-filelock/pull/212](https://togithub.com/tox-dev/py-filelock/pull/212) **Full Changelog**: tox-dev/filelock@3.10.4...3.10.5 ### [`v3.10.4`](https://togithub.com/tox-dev/py-filelock/releases/tag/3.10.4) [Compare Source](https://togithub.com/tox-dev/py-filelock/compare/3.10.3...3.10.4) #### What's Changed - updated os.open to preserve mode by [@​jahrules](https://togithub.com/jahrules) in [https://github.com/tox-dev/py-filelock/pull/211](https://togithub.com/tox-dev/py-filelock/pull/211) **Full Changelog**: tox-dev/filelock@3.10.3...3.10.4 ### [`v3.10.3`](https://togithub.com/tox-dev/py-filelock/releases/tag/3.10.3) [Compare Source](https://togithub.com/tox-dev/py-filelock/compare/3.10.2...3.10.3) #### What's Changed - Bump pypa/gh-action-pypi-publish from 1.8.1 to 1.8.3 by [@​dependabot](https://togithub.com/dependabot) in [https://github.com/tox-dev/py-filelock/pull/207](https://togithub.com/tox-dev/py-filelock/pull/207) - bug fix by [@​jahrules](https://togithub.com/jahrules) in [https://github.com/tox-dev/py-filelock/pull/209](https://togithub.com/tox-dev/py-filelock/pull/209) **Full Changelog**: tox-dev/filelock@3.10.2...3.10.3 ### [`v3.10.2`](https://togithub.com/tox-dev/py-filelock/releases/tag/3.10.2) [Compare Source](https://togithub.com/tox-dev/py-filelock/compare/3.10.1...3.10.2) #### What's Changed - changed from os.umask to os.chmod by [@​jahrules](https://togithub.com/jahrules) in [https://github.com/tox-dev/py-filelock/pull/206](https://togithub.com/tox-dev/py-filelock/pull/206) **Full Changelog**: tox-dev/filelock@3.10.1...3.10.2 ### [`v3.10.1`](https://togithub.com/tox-dev/py-filelock/releases/tag/3.10.1) [Compare Source](https://togithub.com/tox-dev/py-filelock/compare/3.10.0...3.10.1) #### What's Changed - Bump pypa/gh-action-pypi-publish from 1.7.1 to 1.8.1 by [@​dependabot](https://togithub.com/dependabot) in [https://github.com/tox-dev/py-filelock/pull/200](https://togithub.com/tox-dev/py-filelock/pull/200) - Bump deps and tools by [@​gaborbernat](https://togithub.com/gaborbernat) in [https://github.com/tox-dev/py-filelock/pull/201](https://togithub.com/tox-dev/py-filelock/pull/201) - Properly pickle of Timeout objects + test cases by [@​TheMatt2](https://togithub.com/TheMatt2) in [https://github.com/tox-dev/py-filelock/pull/203](https://togithub.com/tox-dev/py-filelock/pull/203) #### New Contributors - [@​TheMatt2](https://togithub.com/TheMatt2) made their first contribution in [https://github.com/tox-dev/py-filelock/pull/203](https://togithub.com/tox-dev/py-filelock/pull/203) **Full Changelog**: tox-dev/filelock@3.10.0...3.10.1 ### [`v3.10.0`](https://togithub.com/tox-dev/py-filelock/releases/tag/3.10.0) [Compare Source](https://togithub.com/tox-dev/py-filelock/compare/3.9.1...3.10.0) #### What's Changed - added multiuser support and associated tests by [@​jahrules](https://togithub.com/jahrules) in [https://github.com/tox-dev/py-filelock/pull/192](https://togithub.com/tox-dev/py-filelock/pull/192) #### New Contributors - [@​jahrules](https://togithub.com/jahrules) made their first contribution in [https://github.com/tox-dev/py-filelock/pull/192](https://togithub.com/tox-dev/py-filelock/pull/192) **Full Changelog**: tox-dev/filelock@3.9.1...3.10.0 ### [`v3.9.1`](https://togithub.com/tox-dev/py-filelock/releases/tag/3.9.1) [Compare Source](https://togithub.com/tox-dev/py-filelock/compare/3.9.0...3.9.1) #### What's Changed - \[pre-commit.ci] pre-commit autoupdate by [@​pre-commit-ci](https://togithub.com/pre-commit-ci) in [https://github.com/tox-dev/py-filelock/pull/188](https://togithub.com/tox-dev/py-filelock/pull/188) - Bump deps and tools by [@​gaborbernat](https://togithub.com/gaborbernat) in [https://github.com/tox-dev/py-filelock/pull/193](https://togithub.com/tox-dev/py-filelock/pull/193) - Bump deps and tools by [@​gaborbernat](https://togithub.com/gaborbernat) in [https://github.com/tox-dev/py-filelock/pull/197](https://togithub.com/tox-dev/py-filelock/pull/197) - Bump pypa/gh-action-pypi-publish from 1.6.4 to 1.7.1 by [@​dependabot](https://togithub.com/dependabot) in [https://github.com/tox-dev/py-filelock/pull/198](https://togithub.com/tox-dev/py-filelock/pull/198) - use time.perf_counter instead of time.monotonic by [@​zpz](https://togithub.com/zpz) in [https://github.com/tox-dev/py-filelock/pull/194](https://togithub.com/tox-dev/py-filelock/pull/194) #### New Contributors - [@​zpz](https://togithub.com/zpz) made their first contribution in [https://github.com/tox-dev/py-filelock/pull/194](https://togithub.com/tox-dev/py-filelock/pull/194) **Full Changelog**: tox-dev/filelock@3.9.0...3.9.1 ### [`v3.9.0`](https://togithub.com/tox-dev/py-filelock/releases/tag/3.9.0) [Compare Source](https://togithub.com/tox-dev/py-filelock/compare/3.8.2...3.9.0) #### What's Changed - Move to hatchling build backend by [@​gaborbernat](https://togithub.com/gaborbernat) in [https://github.com/tox-dev/py-filelock/pull/185](https://togithub.com/tox-dev/py-filelock/pull/185) **Full Changelog**: tox-dev/filelock@3.8.2...3.9.0 ### [`v3.8.2`](https://togithub.com/tox-dev/py-filelock/releases/tag/3.8.2) [Compare Source](https://togithub.com/tox-dev/py-filelock/compare/3.8.1...3.8.2) #### What's Changed - Bump pypa/gh-action-pypi-publish from 1.5.1 to 1.6.1 by [@​dependabot](https://togithub.com/dependabot) in [https://github.com/tox-dev/py-filelock/pull/178](https://togithub.com/tox-dev/py-filelock/pull/178) - Update the license classifier to "Unlicense" by [@​jond01](https://togithub.com/jond01) in [https://github.com/tox-dev/py-filelock/pull/180](https://togithub.com/tox-dev/py-filelock/pull/180) #### New Contributors - [@​jond01](https://togithub.com/jond01) made their first contribution in [https://github.com/tox-dev/py-filelock/pull/180](https://togithub.com/tox-dev/py-filelock/pull/180) **Full Changelog**: tox-dev/filelock@3.8.1...3.8.2 ### [`v3.8.1`](https://togithub.com/tox-dev/py-filelock/releases/tag/3.8.1) [Compare Source](https://togithub.com/tox-dev/py-filelock/compare/3.8.0...3.8.1) #### What's Changed - \[pre-commit.ci] pre-commit autoupdate by [@​pre-commit-ci](https://togithub.com/pre-commit-ci) in [https://github.com/tox-dev/py-filelock/pull/166](https://togithub.com/tox-dev/py-filelock/pull/166) - link to flufl.lock by [@​dholth](https://togithub.com/dholth) in [https://github.com/tox-dev/py-filelock/pull/167](https://togithub.com/tox-dev/py-filelock/pull/167) - \[pre-commit.ci] pre-commit autoupdate by [@​pre-commit-ci](https://togithub.com/pre-commit-ci) in [https://github.com/tox-dev/py-filelock/pull/168](https://togithub.com/tox-dev/py-filelock/pull/168) - \[pre-commit.ci] pre-commit autoupdate by [@​pre-commit-ci](https://togithub.com/pre-commit-ci) in [https://github.com/tox-dev/py-filelock/pull/169](https://togithub.com/tox-dev/py-filelock/pull/169) - \[pre-commit.ci] pre-commit autoupdate by [@​pre-commit-ci](https://togithub.com/pre-commit-ci) in [https://github.com/tox-dev/py-filelock/pull/170](https://togithub.com/tox-dev/py-filelock/pull/170) - fix BaseFileLock.timeout's getter/setter being obscured by itself by [@​dearfl](https://togithub.com/dearfl) in [https://github.com/tox-dev/py-filelock/pull/172](https://togithub.com/tox-dev/py-filelock/pull/172) - Fix mypy fails understanding FileLock by [@​gaborbernat](https://togithub.com/gaborbernat) in [https://github.com/tox-dev/py-filelock/pull/177](https://togithub.com/tox-dev/py-filelock/pull/177) #### New Contributors - [@​dholth](https://togithub.com/dholth) made their first contribution in [https://github.com/tox-dev/py-filelock/pull/167](https://togithub.com/tox-dev/py-filelock/pull/167) - [@​dearfl](https://togithub.com/dearfl) made their first contribution in [https://github.com/tox-dev/py-filelock/pull/172](https://togithub.com/tox-dev/py-filelock/pull/172) **Full Changelog**: tox-dev/filelock@3.8.0...3.8.1 ### [`v3.8.0`](https://togithub.com/tox-dev/py-filelock/releases/tag/3.8.0) [Compare Source](https://togithub.com/tox-dev/py-filelock/compare/3.7.1...3.8.0) #### What's Changed - \[pre-commit.ci] pre-commit autoupdate by [@​pre-commit-ci](https://togithub.com/pre-commit-ci) in [https://github.com/tox-dev/py-filelock/pull/149](https://togithub.com/tox-dev/py-filelock/pull/149) - Bump actions/upload-artifact from 2 to 3 by [@​dependabot](https://togithub.com/dependabot) in [https://github.com/tox-dev/py-filelock/pull/154](https://togithub.com/tox-dev/py-filelock/pull/154) - Bump actions/download-artifact from 2 to 3 by [@​dependabot](https://togithub.com/dependabot) in [https://github.com/tox-dev/py-filelock/pull/152](https://togithub.com/tox-dev/py-filelock/pull/152) - Bump pre-commit/action from 2.0.3 to 3.0.0 by [@​dependabot](https://togithub.com/dependabot) in [https://github.com/tox-dev/py-filelock/pull/151](https://togithub.com/tox-dev/py-filelock/pull/151) - Bump actions/checkout from 2 to 3 by [@​dependabot](https://togithub.com/dependabot) in [https://github.com/tox-dev/py-filelock/pull/153](https://togithub.com/tox-dev/py-filelock/pull/153) - Bump actions/setup-python from 2 to 4 by [@​dependabot](https://togithub.com/dependabot) in [https://github.com/tox-dev/py-filelock/pull/150](https://togithub.com/tox-dev/py-filelock/pull/150) - Add timeout unit to docstrings by [@​jnordberg](https://togithub.com/jnordberg) in [https://github.com/tox-dev/py-filelock/pull/148](https://togithub.com/tox-dev/py-filelock/pull/148) - Unify badges style by [@​DeadNews](https://togithub.com/DeadNews) in [https://github.com/tox-dev/py-filelock/pull/155](https://togithub.com/tox-dev/py-filelock/pull/155) - \[pre-commit.ci] pre-commit autoupdate by [@​pre-commit-ci](https://togithub.com/pre-commit-ci) in [https://github.com/tox-dev/py-filelock/pull/156](https://togithub.com/tox-dev/py-filelock/pull/156) - \[pre-commit.ci] pre-commit autoupdate by [@​pre-commit-ci](https://togithub.com/pre-commit-ci) in [https://github.com/tox-dev/py-filelock/pull/157](https://togithub.com/tox-dev/py-filelock/pull/157) - Check 3.11 support by [@​gaborbernat](https://togithub.com/gaborbernat) in [https://github.com/tox-dev/py-filelock/pull/158](https://togithub.com/tox-dev/py-filelock/pull/158) - \[pre-commit.ci] pre-commit autoupdate by [@​pre-commit-ci](https://togithub.com/pre-commit-ci) in [https://github.com/tox-dev/py-filelock/pull/159](https://togithub.com/tox-dev/py-filelock/pull/159) - Bump dependencies by [@​gaborbernat](https://togithub.com/gaborbernat) in [https://github.com/tox-dev/py-filelock/pull/160](https://togithub.com/tox-dev/py-filelock/pull/160) - \[pre-commit.ci] pre-commit autoupdate by [@​pre-commit-ci](https://togithub.com/pre-commit-ci) in [https://github.com/tox-dev/py-filelock/pull/162](https://togithub.com/tox-dev/py-filelock/pull/162) #### New Contributors - [@​dependabot](https://togithub.com/dependabot) made their first contribution in [https://github.com/tox-dev/py-filelock/pull/154](https://togithub.com/tox-dev/py-filelock/pull/154) - [@​jnordberg](https://togithub.com/jnordberg) made their first contribution in [https://github.com/tox-dev/py-filelock/pull/148](https://togithub.com/tox-dev/py-filelock/pull/148) - [@​DeadNews](https://togithub.com/DeadNews) made their first contribution in [https://github.com/tox-dev/py-filelock/pull/155](https://togithub.com/tox-dev/py-filelock/pull/155) **Full Changelog**: tox-dev/filelock@3.7.1...3.8.0 ### [`v3.7.1`](https://togithub.com/tox-dev/py-filelock/compare/3.7.0...3.7.1) [Compare Source](https://togithub.com/tox-dev/py-filelock/compare/3.7.0...3.7.1) ### [`v3.7.0`](https://togithub.com/tox-dev/py-filelock/compare/3.6.0...3.7.0) [Compare Source](https://togithub.com/tox-dev/py-filelock/compare/3.6.0...3.7.0) ### [`v3.6.0`](https://togithub.com/tox-dev/py-filelock/compare/3.5.1...3.6.0) [Compare Source](https://togithub.com/tox-dev/py-filelock/compare/3.5.1...3.6.0) ### [`v3.5.1`](https://togithub.com/tox-dev/py-filelock/compare/3.5.0...3.5.1) [Compare Source](https://togithub.com/tox-dev/py-filelock/compare/3.5.0...3.5.1) ### [`v3.5.0`](https://togithub.com/tox-dev/py-filelock/compare/3.4.2...3.5.0) [Compare Source](https://togithub.com/tox-dev/py-filelock/compare/3.4.2...3.5.0) ### [`v3.4.2`](https://togithub.com/tox-dev/py-filelock/releases/tag/3.4.2): Drop Python 3.6 support [Compare Source](https://togithub.com/tox-dev/py-filelock/compare/3.4.1...3.4.2) ### [`v3.4.1`](https://togithub.com/tox-dev/py-filelock/releases/tag/3.4.1): Add stacklevel to deprecation warnings for argument name change [Compare Source](https://togithub.com/tox-dev/py-filelock/compare/3.4.0...3.4.1) ### [`v3.4.0`](https://togithub.com/tox-dev/py-filelock/compare/3.3.2...3.4.0) [Compare Source](https://togithub.com/tox-dev/py-filelock/compare/3.3.2...3.4.0) ### [`v3.3.2`](https://togithub.com/tox-dev/py-filelock/compare/3.3.1...3.3.2) [Compare Source](https://togithub.com/tox-dev/py-filelock/compare/3.3.1...3.3.2) ### [`v3.3.1`](https://togithub.com/tox-dev/py-filelock/releases/tag/3.3.1): Keep filelock logger as not set [Compare Source](https://togithub.com/tox-dev/py-filelock/compare/3.3.0...3.3.1) ### [`v3.3.0`](https://togithub.com/tox-dev/py-filelock/releases/tag/3.3.0): Drop python 2.7+3.5 support and add type annotations [Compare Source](https://togithub.com/tox-dev/py-filelock/compare/3.2.1...3.3.0) ### [`v3.2.1`](https://togithub.com/tox-dev/py-filelock/releases/tag/3.2.1): New documentation and enable logging of our logger on debug level [Compare Source](https://togithub.com/tox-dev/py-filelock/compare/3.2.0...3.2.1) ### [`v3.2.0`](https://togithub.com/tox-dev/py-filelock/releases/tag/3.2.0) [Compare Source](https://togithub.com/tox-dev/py-filelock/compare/3.1.0...3.2.0) 1. [#​96](https://togithub.com/tox-dev/py-filelock/issues/96) - Raise when trying to acquire in R/O or missing folder 2. [#​95](https://togithub.com/tox-dev/py-filelock/issues/95) - Move log from info to debug ### [`v3.1.0`](https://togithub.com/tox-dev/py-filelock/releases/tag/3.1.0): Move from module file to package [Compare Source](https://togithub.com/tox-dev/py-filelock/compare/v3.0.12...3.1.0) </details> --- ### Configuration 📅 **Schedule**: Branch creation - At any time (no schedule defined), Automerge - At any time (no schedule defined). 🚦 **Automerge**: Disabled by config. Please merge this manually once you are satisfied. ♻ **Rebasing**: Whenever PR becomes conflicted, or you tick the rebase/retry checkbox. 🔕 **Ignore**: Close this PR and you won't be reminded about this update again. --- - [ ] <!-- rebase-check -->If you want to rebase/retry this PR, check this box --- This PR has been generated by [Mend Renovate](https://www.mend.io/free-developer-tools/renovate/). View repository job log [here](https://developer.mend.io/github/matfax/mutapath). <!--renovate-debug:eyJjcmVhdGVkSW5WZXIiOiIzNi41LjMiLCJ1cGRhdGVkSW5WZXIiOiIzNi41LjMiLCJ0YXJnZXRCcmFuY2giOiJtYWluIn0=--> Signed-off-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com> Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>
addressing bug reported in #204