1. 11 Nov, 2022 2 commits
  2. 06 Nov, 2022 2 commits
  3. 05 Nov, 2022 1 commit
  4. 03 Nov, 2022 7 commits
  5. 01 Nov, 2022 1 commit
  6. 31 Oct, 2022 6 commits
  7. 30 Oct, 2022 3 commits
  8. 29 Oct, 2022 1 commit
  9. 26 Oct, 2022 1 commit
  10. 24 Oct, 2022 4 commits
  11. 13 Oct, 2022 1 commit
  12. 12 Oct, 2022 2 commits
  13. 11 Oct, 2022 7 commits
  14. 10 Oct, 2022 2 commits
    • chore: post 1.2.2 cleanup · 29728b5a
      Randy Döring committed
    • feat(locker): `poetry lock` works if an invalid/incompatible lock file exists (#6753) · 7d414af6
      After having created a lock file 2.0, running `poetry lock` with poetry
      1.2.1 results in the following output:
      
      ```
      The lock file is not compatible with the current version of Poetry.
      Upgrade Poetry to be able to read the lock file or, alternatively, regenerate the lock file with the `poetry lock` command.
      ```
      
      Ironically, the error message proposes to run `poetry lock` which
      results in this error message.
      
      Further, it doesn't make sense that `poetry lock` fails because it
      creates a new lock file from scratch (in contrast to `poetry lock
      --no-update`).
      
      Running `poetry lock` is now also possible if there is a broken lock file.
      
      Resolves: #1196
      Randy Döring committed