Skip to content

Commit

Permalink
updated release info to alpha1.7
Browse files Browse the repository at this point in the history
  • Loading branch information
catmando committed Apr 5, 2021
1 parent a39ae68 commit 28770aa
Show file tree
Hide file tree
Showing 16 changed files with 32 additions and 21 deletions.
1 change: 1 addition & 0 deletions current-status.md
Original file line number Diff line number Diff line change
Expand Up @@ -10,6 +10,7 @@ We now are issuing 1.0 release candidates weekly until all issues are either clo

| Release<br/>Date | Version | Open<br/>Issues | Documentation<br/>Sections<br/>Draft Ready | Documentation<br/>Sections<br/>WIP |
|--------------|---------|-------------|-------|------|
| April 5, 2021 | 1.0.alpha1.7 | 147 | 35 | 10 |
| March 29, 2021 | 1.0.alpha1.6 | 167 | 35 | 10 |

> Open issues includes enhancements, documentation, and discussion issues as well as few bugs.
Expand Down
2 changes: 1 addition & 1 deletion readme.md
Original file line number Diff line number Diff line change
Expand Up @@ -46,7 +46,7 @@ We now are issuing 1.0 release candidates weekly until all issues are either clo

| Release<br/>Date | Version | Open<br/>Issues | Documentation<br/>Sections<br/>Draft Ready | Documentation<br/>Sections<br/>WIP |
|--------------|---------|-------------|-------|------|
| March 29, 2021 | 1.0.alpha1.6 | 167 | 35 | 10 |
| April 5, 2021 | 1.0.alpha1.7 | 147 | 35 | 10 |

> Open issues includes enhancements, documentation, and discussion issues as well as few bugs.
>
Expand Down
24 changes: 17 additions & 7 deletions release-notes/1.0.alpha1.7.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,35 +2,45 @@

| Release<br/>Date | Version | Open<br/>Issues | Documentation<br/>Sections<br/>Draft Ready | Documentation<br/>Sections<br/>WIP |
|--------------|---------|-------------|-------|------|
| April 5, 2021 | 1.0.alpha1.7 | ??? | ?? | ?? |
| April 5, 2021 | 1.0.alpha1.7 | 147 | 35 | 10 |
| March 29, 2021 | 1.0.alpha1.6 | 167 | 35 | 10 |
> Open issues includes enhancements, documentation, and discussion issues as well as few bugs.
> Open issues includes enhancements, documentation, and discussion issues as well as few bugs. Additional issues
may be closed that are not documented below because of duplicates, documentation updates, and old issues previously closed.
>
> The documentation WIP (work in progress) numbers are approx, as more sections may be added.
### New Major Features

None

### Breaking Changes

### Security
None

### Added
+ [#116](https://github.com/hyperstack-org/hyperstack/issues/116) ActiveRecord `where` implemented
### Security Fixes

None

### Feature Added
+ [#400](https://github.com/hyperstack-org/hyperstack/issues/400) Relationship and Scope Collections will delegate to the Target model on method missing.
+ [#116](https://github.com/hyperstack-org/hyperstack/issues/116) ActiveRecord `where` implemented

### Fixed
+ [#396](https://github.com/hyperstack-org/hyperstack/issues/396) Fixed: Rejected promises do not move operations to the failure track
+ [#399](https://github.com/hyperstack-org/hyperstack/issues/399) Pluck now takes multiple keys
+ [#396](https://github.com/hyperstack-org/hyperstack/issues/396) Fixed: Rejected promises do not move operations to the failure track
+ [#388](https://github.com/hyperstack-org/hyperstack/issues/388) HyperModel and HyperOperation will load without ActiveRecord
+ [#358](https://github.com/hyperstack-org/hyperstack/issues/358) Fixed: (again) changing primary_key causes some failures
+ [#322](https://github.com/hyperstack-org/hyperstack/issues/322) Fixed: Could not return falsy value from an observe block
+ [#127](https://github.com/hyperstack-org/hyperstack/issues/127) Complex expressions work better in on_client (due to upgrade in Parser gem)
+ [#123](https://github.com/hyperstack-org/hyperstack/issues/123) `public_columns_hash` now thread safe.
+ [#119](https://github.com/hyperstack-org/hyperstack/issues/119) `destroy` now updates errors properly and will not mark the record as destroyed unless destroy was successful



### Not Reproducible
+ [#47](https://github.com/hyperstack-org/hyperstack/issues/47) Added spec - passing a proc for children works fine.
+ [#108](https://github.com/hyperstack-org/hyperstack/issues/108) Can't repeat - possibly STI class != STI type field while data is loading
+ [#47](https://github.com/hyperstack-org/hyperstack/issues/47) Added spec - passing a proc for children works fine.

### Deprecated

None
2 changes: 1 addition & 1 deletion ruby/hyper-component/lib/hyperstack/component/version.rb
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
module Hyperstack
module Component
VERSION = '1.0.alpha1.6' # '1.0.alpha1.5'
VERSION = '1.0.alpha1.7' # '1.0.alpha1.5'
end
end
2 changes: 1 addition & 1 deletion ruby/hyper-console/lib/hyperloop/console/version.rb
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
module Hyperloop
module Console
VERSION = '1.0.alpha1.6'
VERSION = '1.0.alpha1.7'
end
end
2 changes: 1 addition & 1 deletion ruby/hyper-i18n/lib/hyper-i18n/version.rb
Original file line number Diff line number Diff line change
@@ -1,3 +1,3 @@
module HyperI18n
VERSION = '1.0.alpha1.6'
VERSION = '1.0.alpha1.7'
end
2 changes: 1 addition & 1 deletion ruby/hyper-i18n/lib/hyperstack/i18n/version.rb
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
module Hyperstack
module I18n
VERSION = '1.0.alpha1.6'
VERSION = '1.0.alpha1.7'
end
end
2 changes: 1 addition & 1 deletion ruby/hyper-model/lib/hyper_model/version.rb
Original file line number Diff line number Diff line change
@@ -1,3 +1,3 @@
module HyperModel
VERSION = '1.0.alpha1.6'
VERSION = '1.0.alpha1.7'
end
2 changes: 1 addition & 1 deletion ruby/hyper-operation/lib/hyper-operation/version.rb
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
module Hyperstack
class Operation
VERSION = '1.0.alpha1.6'
VERSION = '1.0.alpha1.7'
end
end
2 changes: 1 addition & 1 deletion ruby/hyper-router/lib/hyperstack/router/version.rb
Original file line number Diff line number Diff line change
@@ -1,3 +1,3 @@
module HyperRouter
VERSION = '1.0.alpha1.6'
VERSION = '1.0.alpha1.7'
end
2 changes: 1 addition & 1 deletion ruby/hyper-spec/lib/hyper-spec/version.rb
Original file line number Diff line number Diff line change
@@ -1,3 +1,3 @@
module HyperSpec
VERSION = '1.0.alpha1.6'
VERSION = '1.0.alpha1.7'
end
2 changes: 1 addition & 1 deletion ruby/hyper-state/lib/hyperstack/state/version.rb
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
module Hyperstack
module State
VERSION = '1.0.alpha1.6'
VERSION = '1.0.alpha1.7'
end
end
2 changes: 1 addition & 1 deletion ruby/hyper-store/lib/hyperstack/legacy/store/version.rb
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
module Hyperstack
module Legacy
module Store
VERSION = '1.0.alpha1.6'
VERSION = '1.0.alpha1.7'
end
end
end
2 changes: 1 addition & 1 deletion ruby/hyper-trace/lib/hyper_trace/version.rb
Original file line number Diff line number Diff line change
@@ -1,3 +1,3 @@
module HyperTrace
VERSION = '1.0.alpha1.6'
VERSION = '1.0.alpha1.7'
end
2 changes: 1 addition & 1 deletion ruby/hyperstack-config/lib/hyperstack/config/version.rb
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
module Hyperstack
module Config
VERSION = '1.0.alpha1.6'
VERSION = '1.0.alpha1.7'
end
end
2 changes: 1 addition & 1 deletion ruby/rails-hyperstack/lib/hyperstack/version.rb
Original file line number Diff line number Diff line change
@@ -1,3 +1,3 @@
module Hyperstack
ROUTERVERSION = VERSION = '1.0.alpha1.6'
ROUTERVERSION = VERSION = '1.0.alpha1.7'
end

0 comments on commit 28770aa

Please sign in to comment.