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

Add rm command upgrade #4

Open
wants to merge 29 commits into
base: master
Choose a base branch
from
Open

Commits on Jan 31, 2023

  1. Configuration menu
    Copy the full SHA
    e4fbdcf View commit details
    Browse the repository at this point in the history
  2. Fixes

    - Ensured that errors from LS are propagated to the main thread
    - Ensured that unknown errors from file deletion are propagated
    - Ensured that all threads have joined before we put "end marker"
      in the queue.
    kkalinowski-reef committed Jan 31, 2023
    Configuration menu
    Copy the full SHA
    f2dd0bb View commit details
    Browse the repository at this point in the history
  3. Configuration menu
    Copy the full SHA
    8f45333 View commit details
    Browse the repository at this point in the history
  4. Configuration menu
    Copy the full SHA
    f9c9e5d View commit details
    Browse the repository at this point in the history
  5. Configuration menu
    Copy the full SHA
    8dd2a9b View commit details
    Browse the repository at this point in the history

Commits on Feb 2, 2023

  1. Merge branch 'master' into add_rm_command_upgrade

    * master: (30 commits)
      Changelog adjustments
      Changelog updated
      Removed wrongly merged pyinstaller options
      PR fixes - comment clarification
      Linter fix
      Added a simple test to check whether incrementalMode doesn't break anything
      Requirements set for 1.19.0
      Add support for incremental upload and sync
      Bundling updated for pyinstaller 5.6.2
      Updating pyinstaller to work with Python 3.11
      Marking module PTable as used only below version 3.11
      Installing newer version of pip-licenses library only for the newer python version
      Revert "Workaround to have licenses working on 3.11 while also keeping 3.7"
      Workaround to have licenses working on 3.11 while also keeping 3.7
      Revert "Fix for license generation on 3.11"
      Fix for license generation on 3.11
      Ensuring that CI and CD both use 3.11 python as the default one
      Moved todo import from a function to file header
      Revert "Ensured that the default python version for the CI was 3.11"
      Ensured that the default python version for the CI was 3.11
      ...
    kkalinowski-reef committed Feb 2, 2023
    Configuration menu
    Copy the full SHA
    e78e685 View commit details
    Browse the repository at this point in the history
  2. Changelog updated

    kkalinowski-reef committed Feb 2, 2023
    Configuration menu
    Copy the full SHA
    f7e687d View commit details
    Browse the repository at this point in the history
  3. Configuration menu
    Copy the full SHA
    c1f576a View commit details
    Browse the repository at this point in the history
  4. Configuration menu
    Copy the full SHA
    b8e014b View commit details
    Browse the repository at this point in the history
  5. Configuration menu
    Copy the full SHA
    88790a9 View commit details
    Browse the repository at this point in the history

Commits on Feb 3, 2023

  1. Configuration menu
    Copy the full SHA
    cb1fddb View commit details
    Browse the repository at this point in the history
  2. Configuration menu
    Copy the full SHA
    a20ea3a View commit details
    Browse the repository at this point in the history
  3. queueSize option added to the rm

    Allows control over number of elements fetched from `ls`.
    kkalinowski-reef committed Feb 3, 2023
    Configuration menu
    Copy the full SHA
    e3ad60d View commit details
    Browse the repository at this point in the history
  4. PR fixes

    - Removed changelog entry that was not required
    - Ensured that SubmitThread is now daemon, so it will die if we break the main thread
    kkalinowski-reef committed Feb 3, 2023
    Configuration menu
    Copy the full SHA
    b4fee76 View commit details
    Browse the repository at this point in the history
  5. Proper link to prettytable license file

    They changed it around a week ago.
    kkalinowski-reef committed Feb 3, 2023
    Configuration menu
    Copy the full SHA
    e35fb5b View commit details
    Browse the repository at this point in the history
  6. Boosted pip-licenses to the latest version before 4.0

    - This is said to fix some issues with paths for licenses
    kkalinowski-reef committed Feb 3, 2023
    Configuration menu
    Copy the full SHA
    bc526e0 View commit details
    Browse the repository at this point in the history
  7. Replaced deprecated getdefaultlocale

    https://bugs.python.org/issue43557 - list of issues of both getdefaultlocale and getlocale
    https://bugs.python.org/issue43552 - specification of a problem
    https://bugs.python.org/msg389069 - nice presentation why it's problematic
    kkalinowski-reef committed Feb 3, 2023
    Configuration menu
    Copy the full SHA
    20f0752 View commit details
    Browse the repository at this point in the history

Commits on Feb 7, 2023

  1. Fix for UnicodeEncodeError on Windows with Python 3.11

    repr(args) still raised UnicodeEncodeError, this could be due to
    removal of Py_UNICODE API. To combat this, we're printing pre-encoded
    arguments – less readable, but working.
    
    Note that this doesn't change the fact, that application is bundled
    and signed using bash terminal, which should handle utf-8 quite well.
    Issue presents itself only on the default powershell.
    kkalinowski-reef committed Feb 7, 2023
    Configuration menu
    Copy the full SHA
    95bdef7 View commit details
    Browse the repository at this point in the history
  2. Configuration menu
    Copy the full SHA
    2981609 View commit details
    Browse the repository at this point in the history
  3. Configuration menu
    Copy the full SHA
    e58362d View commit details
    Browse the repository at this point in the history
  4. Configuration menu
    Copy the full SHA
    7f5fbc7 View commit details
    Browse the repository at this point in the history
  5. Shorter CI

    kkalinowski-reef committed Feb 7, 2023
    Configuration menu
    Copy the full SHA
    c19176e View commit details
    Browse the repository at this point in the history
  6. Configuration menu
    Copy the full SHA
    dcef43c View commit details
    Browse the repository at this point in the history
  7. Configuration menu
    Copy the full SHA
    899825f View commit details
    Browse the repository at this point in the history
  8. Always print info

    kkalinowski-reef committed Feb 7, 2023
    Configuration menu
    Copy the full SHA
    f77d027 View commit details
    Browse the repository at this point in the history
  9. Configuration menu
    Copy the full SHA
    96872c6 View commit details
    Browse the repository at this point in the history
  10. Configuration menu
    Copy the full SHA
    a0679c2 View commit details
    Browse the repository at this point in the history
  11. Fix for CI

    kkalinowski-reef committed Feb 7, 2023
    Configuration menu
    Copy the full SHA
    aeeeb36 View commit details
    Browse the repository at this point in the history
  12. Upgrading git

    kkalinowski-reef committed Feb 7, 2023
    Configuration menu
    Copy the full SHA
    44e195a View commit details
    Browse the repository at this point in the history