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
23 changes: 23 additions & 0 deletions .devcontainer/Dockerfile
Original file line number Diff line number Diff line change
@@ -0,0 +1,23 @@
# syntax=docker/dockerfile:1
FROM debian:bookworm-slim

RUN apt-get update && apt-get install -y \
libxkbcommon0 \
ca-certificates \
git \
golang \
unzip \
libc++1 \
vim \
&& apt-get clean autoclean

# Ensure UTF-8 encoding
ENV LANG=C.UTF-8
ENV LC_ALL=C.UTF-8

ENV GOPATH=/go
ENV PATH=$GOPATH/bin:$PATH

WORKDIR /workspace

COPY . /workspace
2 changes: 1 addition & 1 deletion .release-please-manifest.json
Original file line number Diff line number Diff line change
@@ -1,3 +1,3 @@
{
".": "1.47.0"
".": "1.47.1"
}
2 changes: 1 addition & 1 deletion .stats.yml
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
configured_endpoints: 118
openapi_spec_url: https://storage.googleapis.com/stainless-sdk-openapi-specs/orb%2Forb-7936e3f73bbe1d59d27fd7a8a226985927b38fdec1c936c77577381699fb6140.yml
openapi_spec_hash: 1d3f9ed5fbdb0e40d56d6acd9d1736e2
config_hash: e6db17547fe854b1c240407cf4c6dc9e
config_hash: 895e36fb2d717958770fd4cf883f4b74
14 changes: 14 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,19 @@
# Changelog

## 1.47.1 (2025-12-05)

Full Changelog: [v1.47.0...v1.47.1](https://github.com/orbcorp/orb-go/compare/v1.47.0...v1.47.1)

### Bug Fixes

* **mcp:** correct code tool API endpoint ([91074bb](https://github.com/orbcorp/orb-go/commit/91074bb87aa83bdf0a7e2f99e68793133ee65ba7))


### Chores

* elide duplicate aliases ([773a968](https://github.com/orbcorp/orb-go/commit/773a9681b34543cbaea84d274d53c6693cd9e70c))
* **internal:** codegen related update ([7040904](https://github.com/orbcorp/orb-go/commit/7040904c6b6001a6cd29b84eae7f688a488a71ef))

## 1.47.0 (2025-12-03)

Full Changelog: [v1.46.0...v1.47.0](https://github.com/orbcorp/orb-go/compare/v1.46.0...v1.47.0)
Expand Down
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@ Or to pin the version:
<!-- x-release-please-start-version -->

```sh
go get -u 'github.com/orbcorp/[email protected].0'
go get -u 'github.com/orbcorp/[email protected].1'
```

<!-- x-release-please-end -->
Expand Down
2 changes: 1 addition & 1 deletion internal/version.go
Original file line number Diff line number Diff line change
Expand Up @@ -2,4 +2,4 @@

package internal

const PackageVersion = "1.47.0" // x-release-please-version
const PackageVersion = "1.47.1" // x-release-please-version