Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 6 additions & 0 deletions clients/googly_cloud_storage/CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,12 @@ All notable changes to this package are documented here.
This file is maintained by `mix googly.release`; edit an entry to add detail
before you publish.

## 0.1.2 - 2026-07-03

- Read upload `File.Stream` data as raw bytes, so the request `Content-Length` matches the body actually sent (line-mode streams no longer corrupt uploads).
- Sanitize Google's descriptions in generated docs, so ExDoc builds cleanly without HTML warnings.
- Fix README usage examples to call real function heads from this client.

## 0.1.1 - 2026-07-02

- Fix RFC 6570 reserved expansion for `{+name}` resource-path parameters, so path values containing `/` (e.g. object names) are no longer over-encoded.
Expand Down
6 changes: 3 additions & 3 deletions clients/googly_cloud_storage/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ A modern, self-contained Elixir client for the Google Cloud Storage JSON API, ge

```elixir
def deps do
[{:googly_cloud_storage, "~> 0.1.1"}]
[{:googly_cloud_storage, "~> 0.1.2"}]
end
```

Expand All @@ -26,9 +26,9 @@ token = Goth.fetch!(MyApp.Goth).token
```

Every call returns `{:ok, decoded}` on success. Failures are
`{:error, %Googly.CloudStorage.Error{}}` for an error *response* (HTTP 4xx/5xx), or
`{:error, %Googly.CloudStorage.Error{}}` for an error _response_ (HTTP 4xx/5xx), or
`{:error, exception}` (e.g. `%Req.TransportError{}`) for transport-level failures.

## Docs

* [Upstream API reference](https://developers.google.com/storage/docs/json_api/)
- [Upstream API reference](https://developers.google.com/storage/docs/json_api/)
2 changes: 1 addition & 1 deletion clients/googly_cloud_storage/mix.exs
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
defmodule Googly.CloudStorage.MixProject do
use Mix.Project

@version "0.1.1"
@version "0.1.2"

def project do
[
Expand Down
6 changes: 6 additions & 0 deletions clients/googly_cloud_vision/CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,12 @@ All notable changes to this package are documented here.
This file is maintained by `mix googly.release`; edit an entry to add detail
before you publish.

## 0.1.2 - 2026-07-03

- Read upload `File.Stream` data as raw bytes, so the request `Content-Length` matches the body actually sent (line-mode streams no longer corrupt uploads).
- Sanitize Google's descriptions in generated docs, so ExDoc builds cleanly without HTML warnings.
- Fix README usage examples to call real function heads from this client.

## 0.1.1 - 2026-07-02

- Fix RFC 6570 reserved expansion for `{+name}` resource-path parameters, so path values containing `/` (e.g. object names) are no longer over-encoded.
Expand Down
6 changes: 3 additions & 3 deletions clients/googly_cloud_vision/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ A modern, self-contained Elixir client for the Google Cloud Vision API, generate

```elixir
def deps do
[{:googly_cloud_vision, "~> 0.1.1"}]
[{:googly_cloud_vision, "~> 0.1.2"}]
end
```

Expand All @@ -26,9 +26,9 @@ token = Goth.fetch!(MyApp.Goth).token
```

Every call returns `{:ok, decoded}` on success. Failures are
`{:error, %Googly.CloudVision.Error{}}` for an error *response* (HTTP 4xx/5xx), or
`{:error, %Googly.CloudVision.Error{}}` for an error _response_ (HTTP 4xx/5xx), or
`{:error, exception}` (e.g. `%Req.TransportError{}`) for transport-level failures.

## Docs

* [Upstream API reference](https://cloud.google.com/vision/)
- [Upstream API reference](https://cloud.google.com/vision/)
2 changes: 1 addition & 1 deletion clients/googly_cloud_vision/mix.exs
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
defmodule Googly.CloudVision.MixProject do
use Mix.Project

@version "0.1.1"
@version "0.1.2"

def project do
[
Expand Down
6 changes: 6 additions & 0 deletions clients/googly_document_ai/CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,12 @@ All notable changes to this package are documented here.
This file is maintained by `mix googly.release`; edit an entry to add detail
before you publish.

## 0.1.2 - 2026-07-03

- Read upload `File.Stream` data as raw bytes, so the request `Content-Length` matches the body actually sent (line-mode streams no longer corrupt uploads).
- Sanitize Google's descriptions in generated docs, so ExDoc builds cleanly without HTML warnings.
- Fix README usage examples to call real function heads from this client.

## 0.1.1 - 2026-07-02

- Fix RFC 6570 reserved expansion for `{+name}` resource-path parameters, so path values containing `/` (e.g. object names) are no longer over-encoded.
Expand Down
6 changes: 3 additions & 3 deletions clients/googly_document_ai/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ A modern, self-contained Elixir client for the Google Cloud Document AI API, gen

```elixir
def deps do
[{:googly_document_ai, "~> 0.1.1"}]
[{:googly_document_ai, "~> 0.1.2"}]
end
```

Expand All @@ -26,9 +26,9 @@ token = Goth.fetch!(MyApp.Goth).token
```

Every call returns `{:ok, decoded}` on success. Failures are
`{:error, %Googly.DocumentAI.Error{}}` for an error *response* (HTTP 4xx/5xx), or
`{:error, %Googly.DocumentAI.Error{}}` for an error _response_ (HTTP 4xx/5xx), or
`{:error, exception}` (e.g. `%Req.TransportError{}`) for transport-level failures.

## Docs

* [Upstream API reference](https://cloud.google.com/document-ai/docs/)
- [Upstream API reference](https://cloud.google.com/document-ai/docs/)
2 changes: 1 addition & 1 deletion clients/googly_document_ai/mix.exs
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
defmodule Googly.DocumentAI.MixProject do
use Mix.Project

@version "0.1.1"
@version "0.1.2"

def project do
[
Expand Down
Loading