openaijamodel: gpt-5-mini-2025-08-07
パイプラインバインディング設定のフィールド名が pipeline から stream に変更
Key Points
- フィールド名が変更
- 旧フィールドは非推奨
- ランタイムAPIに影響なし
Summary
パイプラインバインディングの設定フィールド名 pipeline が stream に変更されました。旧フィールドは現在も受け付けられますが非推奨です。設定を stream に更新して deprecation 警告を回避してください。
Key Points
- 対象: wrangler.toml / wrangler.jsonc の
pipelinesバインディング - 変更前:
pipeline = "<STREAM_ID>" - 変更後:
stream = "<STREAM_ID>" - バインディング名、TypeScript 型、ランタイム API(例:
env.MY_PIPELINE.send(...))は変更なし - 他のコードやランタイムの修正は不要
Example
# before
[[pipelines]]
binding = "MY_PIPELINE"
pipeline = "<STREAM_ID>"
# after
[[pipelines]]
binding = "MY_PIPELINE"
stream = "<STREAM_ID>"
Action for engineers
- 設定ファイル内の
pipelineをstreamに置換してデprecation 警告を解消する - ランタイム呼び出しや型の変更は不要
参考: Writing to streams