Skip to content

Commit 571cb1b

Browse files
committed
v0.26.0
1 parent 30c25b5 commit 571cb1b

File tree

5 files changed

+22
-15
lines changed

5 files changed

+22
-15
lines changed

Gemfile.lock

Lines changed: 6 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
PATH
22
remote: base
33
specs:
4-
stellar-base (0.25.0)
4+
stellar-base (0.26.0)
55
activesupport (>= 5.0.0, < 7.0)
66
base32 (>= 0.3.0, < 1.0)
77
digest-crc (>= 0.5.0, < 1.0)
@@ -11,11 +11,11 @@ PATH
1111
PATH
1212
remote: sdk
1313
specs:
14-
stellar-sdk (0.25.0)
14+
stellar-sdk (0.26.0)
1515
activesupport (>= 5.0.0, < 7.0)
1616
excon (>= 0.71.0, < 1.0)
1717
hyperclient (>= 0.7.0, < 1.0)
18-
stellar-base (= 0.25.0)
18+
stellar-base (= 0.26.0)
1919
toml-rb (>= 1.1.1, < 3.0)
2020

2121
GEM
@@ -87,7 +87,7 @@ GEM
8787
faraday_hal_middleware
8888
faraday_middleware
8989
net-http-digest_auth
90-
i18n (1.8.5)
90+
i18n (1.8.7)
9191
concurrent-ruby (~> 1.0)
9292
json (2.3.1)
9393
json (2.3.1-java)
@@ -178,11 +178,10 @@ GEM
178178
rubocop-performance (= 1.8.1)
179179
thor (1.0.1)
180180
thread_safe (0.3.6)
181-
thread_safe (0.3.6-java)
182181
toml-rb (2.0.1)
183182
citrus (~> 3.0, > 3.0)
184183
tty-color (0.5.2)
185-
tzinfo (1.2.7)
184+
tzinfo (1.2.9)
186185
thread_safe (~> 0.1)
187186
unicode-display_width (1.7.0)
188187
vcr (6.0.0)
@@ -199,7 +198,7 @@ GEM
199198
rainbow
200199
tty-color
201200
yard
202-
zeitwerk (2.4.1)
201+
zeitwerk (2.4.2)
203202

204203
PLATFORMS
205204
java

base/CHANGELOG.md

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,10 @@ and this project adheres to [Semantic Versioning](http://semver.org/).
77
As this project is pre 1.0, breaking changes may happen for minor version
88
bumps. A breaking change will get clearly notified in this log.
99

10-
## [Unreleased](https://github.com/stellar/ruby-stellar-sdk/compare/v0.25.0...master)
10+
## [Unreleased](https://github.com/stellar/ruby-stellar-sdk/compare/v0.26.0...master)
11+
12+
## [0.26.0](https://github.com/stellar/ruby-stellar-sdk/compare/v0.25.0...0.26.0) - 2021-02-05
13+
- No changes
1114

1215
## [0.25.0](https://github.com/stellar/ruby-stellar-sdk/compare/v0.24.0...v0.25.0) - 2020-10-30
1316
### Added

base/lib/stellar/base/version.rb

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
module Stellar
22
module Base
3-
VERSION = "0.25.0"
3+
VERSION = "0.26.0"
44
end
55
end

sdk/CHANGELOG.md

Lines changed: 10 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -4,12 +4,17 @@ All notable changes to this project will be documented in this file.
44
The format is based on [Keep a Changelog](http://keepachangelog.com/)
55
and this project adheres to [Semantic Versioning](http://semver.org/).
66

7-
## [Unreleased](https://github.com/stellar/ruby-stellar-sdk/compare/v0.25.0...master)
8-
- `Stellar::SEP10` is updated to comply with SEP10 v3.1.0
9-
- `build_challenge_tx` now accepts `auth_domain`. If it is passed, challenge tx will contain an additional operation, that will be used later for validation
10-
- `read_challenge_tx` now accepts `auth_domain`. If it is passed, challenge will be also validated for complience with it
7+
## [Unreleased](https://github.com/stellar/ruby-stellar-sdk/compare/v0.26.0...master)
118

12-
## [0.25.0](https://github.com/stellar/ruby-stellar-sdk/compare/v0.24.0...0.25.0)
9+
## [0.26.0](https://github.com/stellar/ruby-stellar-sdk/compare/v0.25.0...v0.26.0) - 2021-02-05
10+
### Changed
11+
- `Stellar::SEP10` is updated to comply with SEP10 v3.0.0 and v3.1.0
12+
- `read_challenge_tx`` now verifies `domain` in challenge auth operation, as per SEP10 v3.0.0
13+
- it is now possible to provide `auth_domain` parameter to enforce auth server domain verification:
14+
- `build_challenge_tx` will encode the extra auth domain operation into the challenge tx
15+
- `read_challenge_tx` will verify that the challenge includes the correct auth domain operation
16+
17+
## [0.25.0](https://github.com/stellar/ruby-stellar-sdk/compare/v0.24.0...v0.25.0) - 2020-10-30
1318
### Changed
1419
- `Stellar::SEP10` is updated to comply with SEP10 v2.1.0
1520
- `build_challenge_tx` now accepts `domain` instead of `anchor_name`, using the

sdk/lib/stellar/sdk/version.rb

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
module Stellar
22
module SDK
3-
VERSION = "0.25.0"
3+
VERSION = "0.26.0"
44
end
55
end

0 commit comments

Comments
 (0)