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
2 changes: 1 addition & 1 deletion .release-please-manifest.json
Original file line number Diff line number Diff line change
@@ -1,3 +1,3 @@
{
".": "0.1.0-alpha.3"
".": "0.1.0-alpha.4"
}
4 changes: 2 additions & 2 deletions .stats.yml
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
configured_endpoints: 41
openapi_spec_url: https://storage.googleapis.com/stainless-sdk-openapi-specs/finch%2Ffinch-63d6857158c2634529b468b53df0b9c02f42d6f9783399939a38986e3137a86f.yml
openapi_spec_hash: 2c3aea6ae3e0a3dd7ac65c25b8fdc24d
openapi_spec_url: https://storage.googleapis.com/stainless-sdk-openapi-specs/finch%2Ffinch-3224f142ed1542ed2535c155e8eb23b7ea10470c12448d60c3ce584126073a93.yml
openapi_spec_hash: 6c4b213ed5e4f7d1b369e04e4bfb5164
config_hash: 8303e755d3e16cf28542d5f0aec83851
16 changes: 16 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,21 @@
# Changelog

## 0.1.0-alpha.4 (2025-03-31)

Full Changelog: [v0.1.0-alpha.3...v0.1.0-alpha.4](https://github.com/Finch-API/finch-api-ruby/compare/v0.1.0-alpha.3...v0.1.0-alpha.4)

### Features

* **api:** api update ([#79](https://github.com/Finch-API/finch-api-ruby/issues/79)) ([382667d](https://github.com/Finch-API/finch-api-ruby/commit/382667da8c8b9fd9dca9c8be1e903a26f8c39d3a))
* **internal:** converter interface should recurse without schema ([#77](https://github.com/Finch-API/finch-api-ruby/issues/77)) ([54c0c14](https://github.com/Finch-API/finch-api-ruby/commit/54c0c146c432894dafd73fbe17ad2fe7a931a2d5))


### Chores

* **internal:** minor refactoring of utils ([#76](https://github.com/Finch-API/finch-api-ruby/issues/76)) ([9b88b83](https://github.com/Finch-API/finch-api-ruby/commit/9b88b83a6775fb547dceb5ed3c54c67f47587609))
* **internal:** version bump ([#74](https://github.com/Finch-API/finch-api-ruby/issues/74)) ([5b79b2c](https://github.com/Finch-API/finch-api-ruby/commit/5b79b2c834848a5e4413f52e9e3383205f51b5d7))
* remove unnecessary & confusing module ([#78](https://github.com/Finch-API/finch-api-ruby/issues/78)) ([c8fe96f](https://github.com/Finch-API/finch-api-ruby/commit/c8fe96f6528184a2d15385e2607be024329c5c6d))

## 0.1.0-alpha.3 (2025-03-27)

Full Changelog: [v0.1.0-alpha.2...v0.1.0-alpha.3](https://github.com/Finch-API/finch-api-ruby/compare/v0.1.0-alpha.2...v0.1.0-alpha.3)
Expand Down
2 changes: 1 addition & 1 deletion Gemfile.lock
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ GIT
PATH
remote: .
specs:
finch-api (0.1.0.pre.alpha.3)
finch-api (0.1.0.pre.alpha.4)
connection_pool

GEM
Expand Down
2 changes: 1 addition & 1 deletion Rakefile
Original file line number Diff line number Diff line change
Expand Up @@ -11,15 +11,15 @@

xargs = %w[xargs --no-run-if-empty --null --max-procs=0 --max-args=300 --]

task(default: [:test])
multitask(default: [:test])

multitask(:test) do
rb =

Check warning on line 17 in Rakefile

View workflow job for this annotation

GitHub Actions / lint

Layout/TrailingWhitespace: Trailing whitespace detected.
FileList[ENV.fetch("TEST", "./test/**/*_test.rb")]
.map { "require_relative(#{_1.dump});" }
.join

ruby(*%w[-w -e], rb, verbose: false) { fail unless _1 }

Check warning on line 22 in Rakefile

View workflow job for this annotation

GitHub Actions / lint

Style/SignalException: Always use `raise` to signal exceptions.
end

RuboCop::RakeTask.new(:rubocop) do |t|
Expand Down
1 change: 0 additions & 1 deletion lib/finch-api.rb
Original file line number Diff line number Diff line change
@@ -1,8 +1,8 @@
# frozen_string_literal: true

Check warning on line 1 in lib/finch-api.rb

View workflow job for this annotation

GitHub Actions / lint

Naming/FileName: The name of this source file (`finch-api.rb`) should use snake_case.

# We already ship the preferred sorbet manifests in the package itself.
# `tapioca` currently does not offer us a way to opt out of unnecessary compilation.
if Object.const_defined?(:Tapioca) && caller.chain([$0]).chain(ARGV).grep(/tapioca/)

Check warning on line 5 in lib/finch-api.rb

View workflow job for this annotation

GitHub Actions / lint

Style/SpecialGlobalVars: Prefer `$PROGRAM_NAME` over `$0`.
Warning.warn(
<<~WARN
\n
Expand Down Expand Up @@ -36,7 +36,6 @@
# Package files.
require_relative "finch-api/version"
require_relative "finch-api/util"
require_relative "finch-api/extern"
require_relative "finch-api/base_model"
require_relative "finch-api/base_page"
require_relative "finch-api/request_options"
Expand Down
Loading
Loading