Skip to content

Releases: numerous-com/numerous-sdk

v0.19.1

25 Sep 15:35
Compare
Choose a tag to compare

v0.19.1 (2024-09-25)

Fix

  • fix(python-sdk): organization environment variable and default client

  • Use the correct environment variable NUMEROUS_ORGANIZATION_ID.

  • Define exception types for relevant exceptions in _client module.

  • Raise exception if organization ID is not configured.

  • Default to singleton client. (29854ad)

v0.19.0

25 Sep 11:46
Compare
Choose a tag to compare

v0.19.0 (2024-09-25)

Feature

  • feat(python-sdk): nested collections and documents (#32)

Documents are indexed by a key in a collection, and contain JSON data:

  • Create documents in a collection
  • Manage tags for a document
  • Iterate over documents in a collection (with filtering by tags possible)
  • Read document data

Additionally nested collections are introduced. (a6efc63)

v0.18.0

25 Sep 08:06
Compare
Choose a tag to compare

v0.18.0 (2024-09-25)

Feature

  • feat(cli): command token revoke to revoke personal access tokens (#33) (0272afb)

v0.17.0

23 Sep 11:35
Compare
Choose a tag to compare

v0.17.0 (2024-09-23)

Feature

  • feat(cli): add version command to print version number (#30) (c840721)

v0.16.1

20 Sep 10:44
Compare
Choose a tag to compare

v0.16.1 (2024-09-20)

Fix

  • fix(cli): dockerfile app example uses provided port number

Fixes a bug where the initialized docker file example used a hardcoded
port number instead of the port number provided in the wizard or by
command line arguments. (57f910b)

v0.16.0

20 Sep 10:08
Compare
Choose a tag to compare

v0.16.0 (2024-09-20)

Feature

  • feat(cli): initialize apps based on docker builds (#31)

  • Enables creating apps based on Dockerfiles.

    • Adds new option in wizard.
    • Adds new command line flags.
  • Introduces new numerous.toml format.

  • Backwards compatible with apps initialized previously. (b72af15)

v0.15.3

19 Sep 20:56
Compare
Choose a tag to compare

v0.15.3 (2024-09-19)

Fix

  • fix(cli): download command handles access denied error (0418a7e)

v0.15.2

19 Sep 15:50
Compare
Choose a tag to compare

v0.15.2 (2024-09-19)

Fix

  • fix(cli): properly print errors for delete and download commands (7c9a0d0)

v0.15.1

16 Sep 06:38
Compare
Choose a tag to compare

v0.15.1 (2024-09-16)

Fix

  • fix(cli): streamline error output (#28)

Improve consistency in how errors are presented to users.

Do not re-print errors in the command wrapper that have already been printed internally, but keep the errors to signal that the exit code should be 1.

Only show usage for command argument errors, not errors happening internally in the command functions. (6094e00)

v0.15.0

04 Sep 14:36
Compare
Choose a tag to compare

v0.15.0 (2024-09-04)

Feature

  • feat(python-sdk): access and create collections (#22)

Adds numerous.collection function which creates or reads the collection,
and allows recursive collection access. (be13de3)