Skip to content

Releases: palantir/foundry-platform-python

0.92.0

24 Feb 13:28
0.92.0
ccff944

Choose a tag to compare

💡 Improvements

  • Improve client initialization performance by lazily importing the resource clients. (#145)

0.91.0

24 Feb 13:19
0.91.0
c53eb1c

Choose a tag to compare

No documented user-facing changes

0.90.0

21 Feb 18:50
0.90.0
45daa4a

Choose a tag to compare

🐛 Fixes

  • Fix bug where certain endpoints that had optional return types had non-optional return types in the method definition (#142)

0.89.0

21 Feb 18:45
0.89.0
4ad05d8

Choose a tag to compare

No documented user-facing changes

0.88.0

21 Feb 13:15
0.88.0
b17bd7e

Choose a tag to compare

✨ Features

  • Link error classes to operations. This allows developers to catch specific error conditions when making API requests. For example:

    from foundry.v2.datasets.errors import DatasetNotFound
    
    try:
        dataset = foundry_client.datasets.Dataset.get("ri.foundry.main.dataset.abc")
        ...
    except DatasetNotFound as e:
        print("Dataset not found", e.parameters["datasetRid"])
    ``` ([#140](https://github.com/palantir/foundry-platform-python/pull/140))

0.87.0

20 Feb 19:16
0.87.0
d7bdcb8

Choose a tag to compare

No documented user-facing changes

0.86.0

19 Feb 15:11
0.86.0
248e83e

Choose a tag to compare

💡 Improvements

  • Add BLOBSTER_CODE resource type (#138)

0.85.0

18 Feb 13:37
0.85.0
7be78bc

Choose a tag to compare

💡 Improvements

  • Add ComputeModulePipelineAuth auth class (beta) (#137)

0.84.0

15 Feb 20:15
0.84.0
f87f85b

Choose a tag to compare

No documented user-facing changes

0.83.0

14 Feb 19:07
0.83.0
6aad70d

Choose a tag to compare

💡 Improvements

  • We now pass the verify details to the httpx.Proxy when using an HTTPS Proxy server. (#134)