Skip to content

Releases: timoguin/aws-data-tools-py

0.1.1

23 Nov 18:50
f986dae
Compare
Choose a tag to compare

Expanded testing, plus new models for AWS Config, SQS, SNS.

Adds a number of improvements. Tests will need to be revisited, but I've
added a decent base.

Added

  • Adds support for generating a Graphviz diagram of an Organization with the new
    OrganizationDataBuilder.to_dot() function
  • Adds DOT as a supported output format for the organization dump-all command
  • Adds models for AWS Config notifications
  • Adds models for SQS and SNS messages
  • Adds methods to ModelBase to allow (de)serializing JSON or YAML strings
  • Adds ModelBase.from_dict() to initialize a model from a dict using dacite
  • Adds CodeQL analysis workflow for GitHub Actions

Changed

  • breaking: Renames organization dump-json CLI command to organization dump-all
  • Moves buiders into the models namespace

0.1.0-beta2

16 Jun 18:49
848e0c4
Compare
Choose a tag to compare
0.1.0-beta2 Pre-release
Pre-release

Added

  • Adds an organization lookup-accounts CLI command
  • Adds a field argument to ModelBase.as_dict() to dump a single field in a model
  • Adds configurations for tox and other testing tools
  • Adds a quickstart to the top of the README
  • Adds an organizations write-accounts-to-dynamodb CLI command
  • Adds an organizations read-accounts-from-dynamodb CLI command
  • Adds DynamoDB (de)serialization functions and requests helpers to utils

Changed

  • Refactors OrganizationDataBuilder to allow more control over pulling data
  • Updates the Makefile to allow setting a custom PYTHONBREAKPOINT when debugging
  • Updates OrganizationDataBuilder to allow setting the client during init
  • Updates OrganizationDataBuilder to allow excluding account parent data lookups
  • Renames ModelBase serialization function prefixes from as_ to to_
  • Updates APIClient.api() to only pascalize keys in kwargs, not the values. This
    fixes a bug that was causing items being inserted into DynamoDB to be pascalized.
  • Updates APIClient() and APIClient.Connect() to skip creating the client if it
    already exists

0.1.0-beta1

10 Jun 01:25
4a91d1f
Compare
Choose a tag to compare
0.1.0-beta1 Pre-release
Pre-release

Initial beta release

Changed

  • Moves APIClient class to aws_data_tools.client.APIClient
  • Cleans up README
  • Bumps version to 0.1.0-beta1
  • Adds a CI config for Semantic Pull Requests

0.1.0-alpha4

10 Jun 00:37
Compare
Choose a tag to compare
0.1.0-alpha4 Pre-release
Pre-release

Initial alpha release

Added

  • Adds the APIClient class for simplying creation of sessions, connections, and making API calls
  • Adds the ModelBase dataclass for data models to inherit from
  • Adds dataclasses for Organizations data models: Organization, Account, OrganizationalUnit, etc
  • Adds the OrganizationsDataBuilder class for querying the Organizations APIs to build up the data model
  • Adds a CLI tool as an extra that can be installed
  • Adds configuration for packaging and publishing to PyPI
  • Adds Git pre-commit config w/ linting