Skip to content

v0.4.4

Latest
Compare
Choose a tag to compare
@a-jean-andreasian a-jean-andreasian released this 18 Dec 22:46
· 2 commits to master since this release
7d8b595

Release Notes - Dec 19, 2024

Feature Update: Enhanced YAML Structure for Service and Utility Separation

  • Issue #14: Implemented a new feature to support specifying multiple directories in the YAML configuration file. This change allows users to separately define services and utilities in the YAML file for better organization and clarity.

Changes:

  • Updated YAML structure to enable categorization of repositories under utils and services:

    • utils: For utility-related repositories.
    • services: For service-related repositories.
  • This allows users to clearly separate their utility modules (like file managers, encryption tools, etc.) from services (like email services, etc.).

Example YAML Structure:

# directory_name: url (ssh or https)

# Example:
utils:
  file_manager: https://github.com/not-gitmodules/notgitmodules-file-manager-py
  file_encryptor: https://github.com/not-gitmodules/notgitmodules-file-encryptor-py

services:
  forsaken_mail: https://github.com/malaohu/forsaken-mail
  sim_mail: https://github.com/Webador/SlmMail

Impact:

  • Improved clarity and flexibility in managing repositories in the YAML configuration.
  • Facilitates more organized handling of different types of repositories, especially in larger projects.