1.0.0-rc61
(fix): Move default environment resolution from request functions to root client instantiation.
Without this change, a non-default base URL set on the client initialization is never
used. The default environment fallback was happening at the request layer, which meant
any base_url passed to individual requests would fall back to the default environment
if not explicitly provided in request_options—even when the root client was initialized
with a custom base_url.
1.0.0-rc60
(feat): Add extraDependencies and extraDevDependencies config flags to Ruby v2 SDK generator.
These options allow users to specify additional gem dependencies to include in the
generated gemspec (extraDependencies) and Gemfile (extraDevDependencies). Values are
written directly as version constraints (e.g., { "my-gem": "~> 6.0" } produces
spec.add_dependency "my-gem", "~> 6.0").