diff --git a/.devcontainer/Dockerfile b/.devcontainer/Dockerfile new file mode 100644 index 00000000..8ea34be9 --- /dev/null +++ b/.devcontainer/Dockerfile @@ -0,0 +1,23 @@ +# syntax=docker/dockerfile:1 +FROM debian:bookworm-slim AS stainless + +RUN apt-get update && apt-get install -y \ + nodejs \ + npm \ + yarnpkg \ + && apt-get clean autoclean + +# Ensure UTF-8 encoding +ENV LANG=C.UTF-8 +ENV LC_ALL=C.UTF-8 + +# Yarn +RUN ln -sf /usr/bin/yarnpkg /usr/bin/yarn + +WORKDIR /workspace + +COPY package.json yarn.lock /workspace/ + +RUN yarn install + +COPY . /workspace diff --git a/.release-please-manifest.json b/.release-please-manifest.json index 0ecd4ce8..a173ce42 100644 --- a/.release-please-manifest.json +++ b/.release-please-manifest.json @@ -1,3 +1,3 @@ { - ".": "5.37.0" + ".": "5.37.1" } diff --git a/.stats.yml b/.stats.yml index 8fee554b..f7ecd1ab 100644 --- a/.stats.yml +++ b/.stats.yml @@ -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 diff --git a/CHANGELOG.md b/CHANGELOG.md index edfd2042..b8e9e46c 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,5 +1,13 @@ # Changelog +## 5.37.1 (2025-12-05) + +Full Changelog: [v5.37.0...v5.37.1](https://github.com/orbcorp/orb-node/compare/v5.37.0...v5.37.1) + +### Bug Fixes + +* **mcp:** return correct lines on typescript errors ([970c546](https://github.com/orbcorp/orb-node/commit/970c5461959e54c33514c56be74ffc177612ba48)) + ## 5.37.0 (2025-12-03) Full Changelog: [v5.36.0...v5.37.0](https://github.com/orbcorp/orb-node/compare/v5.36.0...v5.37.0) diff --git a/package.json b/package.json index c4b930e5..567ad6c5 100644 --- a/package.json +++ b/package.json @@ -1,6 +1,6 @@ { "name": "orb-billing", - "version": "5.37.0", + "version": "5.37.1", "description": "The official TypeScript library for the Orb API", "author": "Orb ", "types": "dist/index.d.ts", diff --git a/src/version.ts b/src/version.ts index 41e42a8e..d512d6e5 100644 --- a/src/version.ts +++ b/src/version.ts @@ -1 +1 @@ -export const VERSION = '5.37.0'; // x-release-please-version +export const VERSION = '5.37.1'; // x-release-please-version