Release opencode-rails alpha6
This commit is contained in:
@@ -1,5 +1,14 @@
|
||||
# Changelog
|
||||
|
||||
## 0.0.1.alpha6 - 2026-07-18
|
||||
|
||||
### Bumped
|
||||
|
||||
- Runtime dependency `opencode-ruby` pinned to `= 0.0.1.alpha6`. Rails turns
|
||||
now establish and validate the OpenCode SSE subscription before submitting
|
||||
`prompt_async`, and automatic SSE reconnects reopen only the subscription
|
||||
without replaying the user prompt.
|
||||
|
||||
## 0.0.1.alpha5 - 2026-07-15
|
||||
|
||||
### Bumped
|
||||
|
||||
@@ -29,6 +29,10 @@ bundle install
|
||||
|
||||
Runtime deps: `activerecord`, `activestorage`, `activesupport` (>= 7.1). Depends on `opencode-ruby` for the underlying HTTP/SSE primitives.
|
||||
|
||||
During the alpha series both gems are pinned in lockstep. Version 0.0.1.alpha6
|
||||
uses a subscribe-ready-before-prompt transport contract and reconnects an
|
||||
accepted turn without posting its prompt again.
|
||||
|
||||
## Quickstart
|
||||
|
||||
```ruby
|
||||
|
||||
@@ -11,5 +11,5 @@
|
||||
# We can't reuse the same constant from a second gem, so we use a
|
||||
# distinct, non-namespaced constant.
|
||||
module Opencode
|
||||
RAILS_VERSION = "0.0.1.alpha5"
|
||||
RAILS_VERSION = "0.0.1.alpha6"
|
||||
end
|
||||
|
||||
@@ -37,7 +37,7 @@ Gem::Specification.new do |spec|
|
||||
# this gem builds on. During alpha both gems evolve in lockstep — we pin
|
||||
# exactly (= not ~>) so that consumers always pick the version this gem
|
||||
# was tested against.
|
||||
spec.add_runtime_dependency "opencode-ruby", "= 0.0.1.alpha5"
|
||||
spec.add_runtime_dependency "opencode-ruby", "= 0.0.1.alpha6"
|
||||
|
||||
# Rails sub-libraries used at runtime. Depending on these individually
|
||||
# (instead of the `rails` umbrella) avoids forcing host apps to load
|
||||
|
||||
Reference in New Issue
Block a user