diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 5a805997..a1cfc9e0 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -24,8 +24,7 @@ jobs: runs-on: ${{ github.repository == 'stainless-sdks/sent-dm-ruby' && 'depot-ubuntu-24.04' || 'ubuntu-latest' }} if: |- github.repository == 'stainless-sdks/sent-dm-ruby' && - (github.event_name == 'push' || github.event.pull_request.head.repo.fork) && - (github.event_name != 'push' || github.event.head_commit.message != 'codegen metadata') + (github.event_name == 'push' || github.event.pull_request.head.repo.fork) && (github.event_name != 'push' || github.event.head_commit.message != 'codegen metadata') steps: - uses: actions/checkout@v6 - name: Set up Ruby diff --git a/.release-please-manifest.json b/.release-please-manifest.json index f7014c35..e82003f4 100644 --- a/.release-please-manifest.json +++ b/.release-please-manifest.json @@ -1,3 +1,3 @@ { - ".": "0.11.0" + ".": "0.11.1" } \ No newline at end of file diff --git a/.stats.yml b/.stats.yml index 2b935dca..80245e8d 100644 --- a/.stats.yml +++ b/.stats.yml @@ -1,4 +1,4 @@ configured_endpoints: 40 -openapi_spec_url: https://storage.googleapis.com/stainless-sdk-openapi-specs/sent%2Fsent-dm-aa5788f722a5500abb87ae7d7dd559e5802d3f45abbc525d105ca1010f553070.yml -openapi_spec_hash: e122ccb2f2f3062194364f20fd58fee1 +openapi_spec_url: https://storage.googleapis.com/stainless-sdk-openapi-specs/sent%2Fsent-dm-a627d7c1ba09325f368c463f7857bfa3607e88e7b3fca92e7196aecaabbb4b48.yml +openapi_spec_hash: 8bcc1ab737348c24c4f069485cf6cf48 config_hash: d8e8429147c4e214ff53c11e7ab2a1a6 diff --git a/CHANGELOG.md b/CHANGELOG.md index 67a3367d..b8e2f426 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,5 +1,18 @@ # Changelog +## 0.11.1 (2026-03-30) + +Full Changelog: [v0.11.0...v0.11.1](https://github.com/sentdm/sent-dm-ruby/compare/v0.11.0...v0.11.1) + +### Bug Fixes + +* **internal:** correct multipart form field name encoding ([f7565bc](https://github.com/sentdm/sent-dm-ruby/commit/f7565bc81745d8eeb2319554d783b4ff8622aeea)) + + +### Chores + +* **ci:** support opting out of skipping builds on metadata-only commits ([a7b09ef](https://github.com/sentdm/sent-dm-ruby/commit/a7b09ef0bc8d45db861446221594acd016193d04)) + ## 0.11.0 (2026-03-25) Full Changelog: [v0.10.1...v0.11.0](https://github.com/sentdm/sent-dm-ruby/compare/v0.10.1...v0.11.0) diff --git a/Gemfile.lock b/Gemfile.lock index 54fd57ee..6c287e09 100644 --- a/Gemfile.lock +++ b/Gemfile.lock @@ -11,7 +11,7 @@ GIT PATH remote: . specs: - sentdm (0.11.0) + sentdm (0.11.1) cgi connection_pool diff --git a/README.md b/README.md index ff2ed93e..fe27e373 100644 --- a/README.md +++ b/README.md @@ -26,7 +26,7 @@ To use this gem, install via Bundler by adding the following to your application ```ruby -gem "sentdm", "~> 0.11.0" +gem "sentdm", "~> 0.11.1" ``` diff --git a/lib/sentdm/internal/util.rb b/lib/sentdm/internal/util.rb index cc17931b..6eb86c99 100644 --- a/lib/sentdm/internal/util.rb +++ b/lib/sentdm/internal/util.rb @@ -571,8 +571,7 @@ def encode_query_params(query) y << "Content-Disposition: form-data" unless key.nil? - name = ERB::Util.url_encode(key.to_s) - y << "; name=\"#{name}\"" + y << "; name=\"#{key}\"" end case val diff --git a/lib/sentdm/version.rb b/lib/sentdm/version.rb index c7e9ceee..0cdbfef4 100644 --- a/lib/sentdm/version.rb +++ b/lib/sentdm/version.rb @@ -1,5 +1,5 @@ # frozen_string_literal: true module Sentdm - VERSION = "0.11.0" + VERSION = "0.11.1" end