stellar-base 0.23.0.rc1 → 0.23.0.rc2

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (4) hide show
  1. checksums.yaml +4 -4
  2. data/CHANGELOG.md +149 -0
  3. data/lib/stellar/version.rb +1 -1
  4. metadata +8 -7
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: b0374689ad0aea387b1a9364e4a4008767fee2e654434d7ed83034c183e77015
4
- data.tar.gz: 46642a42072f2f7ad5e2ce5e8ccb9e4cff2d8991173adc1d7627b2bfa8660e5e
3
+ metadata.gz: 3f64a35c5eb47bfa8040c4486337eda24bab4016e9009aae6efc0bf7e177c919
4
+ data.tar.gz: 835b73de784daaeca652261baff0f2aff22606e465308954938f2ca41773cc95
5
5
  SHA512:
6
- metadata.gz: b928d1453197e01d277f26cefec2176dd54ec7cce1d558fd4c8b828021ddec9daf2be6dc597a9836a14c6b8f88381798632894c64b098324a1b168d8650ab53e
7
- data.tar.gz: 8fc5fdb48d02bb67e18123038a592e321fe24689ed4fb44c7913b0fb8357fc6e1b675d6e3fb96acecc1a7de512ce0cf947aaddd95ffebdd3d62a07cd0ff587f8
6
+ metadata.gz: ae8f2a920a9084610976de5efa719e37a32d9d8a1221ecb071a7d9ab85f8af026e9a6ac8bbb2b149a8265877bee28ed83fc175ead0f1203d93728ddb302d0dd2
7
+ data.tar.gz: d916c3ef5da72b34f32fa274bfe94206a0b6ee6b8dc2dd2a7a1585534be58b753b3ea3f4a832bc671577700b0fb2d1fcc66ac9f5d955d34f00444492503db199
@@ -0,0 +1,149 @@
1
+ # Changelog
2
+
3
+ All notable changes to this project will be documented in this
4
+ file. This project adheres to [Semantic Versioning](http://semver.org/).
5
+
6
+ As this project is pre 1.0, breaking changes may happen for minor version
7
+ bumps. A breaking change will get clearly notified in this log.
8
+
9
+ ## [0.22.0](https://github.com/stellar/ruby-stellar-base/compare/v0.21.0...v0.22.0) - 2020-03-26
10
+ ### Added
11
+ - Add TransactionBuilder ([#54](https://github.com/stellar/ruby-stellar-base/issues/54))
12
+
13
+ ### Changed
14
+ - Regenerate XDR files ([#57](https://github.com/stellar/ruby-stellar-base/issues/57))
15
+ - Allow asset objects to be passed instead of list of parameters ([#59](https://github.com/stellar/ruby-stellar-base/issues/59))
16
+
17
+ ## [0.21.0](https://github.com/bloom-solutions/ruby-stellar-base/compare/v0.20.0...v0.21.0) - 2019-10-04
18
+ ### Changed
19
+ - [Stellar Protocol 12 compatibility](https://github.com/bloom-solutions/ruby-stellar-base/pull/51).
20
+ - XDR changes for path payment
21
+ - constant renames, which may cause breaking changes if referred to directly
22
+
23
+ ## [0.20.0](https://github.com/bloom-solutions/ruby-stellar-base/compare/v0.19.0...v0.20.0) - 2019-05-22
24
+ ### Added
25
+ - Stellar Protocol 11 compatibility (#48)
26
+ - XDR changes for [CAP-0006 Buy Offers](https://github.com/stellar/stellar-protocol/blob/master/core/cap-0006.md)
27
+ - XDR changes for [CAP-0020 Bucket Initial Entries](https://github.com/stellar/stellar-protocol/blob/master/core/cap-0020.md)
28
+ - Add `manage_buy_offer`, `manage_sell_offer` and `create_passive_sell_offer` factory methods to `Stellar::Transaction` and `Stellar::Operation`
29
+
30
+ ### Changed
31
+ - Deprecate `manage_offer` and `create_passive_offer` factory methods in `Stellar::Transaction` and `Stellar::Operation`
32
+ - Add an option to pass the exact stellar-core revision into `xdr:update` Rake task
33
+
34
+ ## [0.19.0](https://github.com/bloom-solutions/ruby-stellar-base/compare/v0.18.0...v0.19.0)
35
+ ### Changed
36
+ - Loosen ActiveSupport to >= 5.0.0
37
+
38
+ ## [0.18.0](https://github.com/bloom-solutions/ruby-stellar-base/compare/v0.17.0...v0.18.0)
39
+ ### Added
40
+ - Update XDR definitions for stellar-core v10.0.0 (introduces Liabilities and other changes to support asset-backed offers as per [CAP-0003 Specification](https://github.com/stellar/stellar-protocol/blob/master/core/cap-0003.md#specification))
41
+ - Add factories for ledger, transaction, operation.
42
+
43
+ ### Changed
44
+ - Use rbnacl instead of rbnacl-libsodium (the latter has been [deprecated](https://github.com/crypto-rb/rbnacl-libsodium/issues/29))
45
+
46
+ ## [0.17.0](https://github.com/bloom-solutions/ruby-stellar-base/compare/v0.16.0...v0.17.0)
47
+ ### Fixed
48
+ - Rename `Stellar::SignerKey#onetime_signer` helper to `Stellar::SignerKey#hash_x`, add preimage validations
49
+
50
+ ## [0.16.0](https://github.com/bloom-solutions/ruby-stellar-base/compare/v0.15.0...v0.16.0)
51
+ ### Added
52
+ - Create co-signers conveniently using helpers `ed25519(keypair)`, `preauthorized_transaction(tx)` and `onetime_signer(preimage)` from `Stellar::SignerKey` module
53
+ - Merge two transactions with `Stellar::TransactionEnvelope#merge`
54
+
55
+ ### Fixed
56
+ - Source account overriding in Stellar::Transaction#to_operations
57
+
58
+ ## [0.15.0](https://github.com/bloom-solutions/ruby-stellar-base/compare/v0.14.0...v0.15.0)
59
+ ### Added
60
+ - `Stellar::Operation.change_trust` can accept `Stellar::Asset` instance for `line`
61
+
62
+ ### Fixed
63
+ - Protect `Stellar::Operation.change_trust` against malicious arguments, in the event that developers pass this argument directly from user input
64
+
65
+ ## [0.14.0](https://github.com/bloom-solutions/ruby-stellar-base/compare/v0.13.0...v0.14.0)
66
+
67
+ ### Added
68
+ - We now support the bump sequence operation with `Operation.bump_sequence`.
69
+
70
+ ### Changed
71
+ - Update XDR definitions for stellar-core 0.10.0 support
72
+ - `Operation.change_trust` learned how to use a default for the `:limit` parameter
73
+ - `StrKey` learned about new version bytes `pre_auth_tx` and `hash_x`
74
+
75
+ ## [0.13.0](https://github.com/bloom-solutions/ruby-stellar-base/compare/v0.12.0...v0.13.0)
76
+
77
+ ### Changed
78
+ - Update XDR definitions for stellar-core 0.9.1 support
79
+
80
+ ### Added
81
+ - Added `#signer_key` helper to `KeyPair`
82
+
83
+ ## [0.12.0](https://github.com/bloom-solutions/ruby-stellar-base/compare/v0.11.0...v0.12.0)
84
+
85
+ ### Changed
86
+ - Avoid modifying $LOAD_PATH to fix load order issues
87
+ - Update XDR definitions for stellar-core 0.6 support
88
+
89
+ ### Removed
90
+
91
+ - BREAKING CHANGE: Removed support for JRuby.
92
+
93
+ ## [0.11.0](https://github.com/bloom-solutions/ruby-stellar-base/compare/v0.10.0...v0.11.0)
94
+
95
+ ### Added
96
+ - Added support for `manage_data` operations
97
+
98
+ ### Changed
99
+ - `Stellar::Transaction#to_envelope` can now be used without arguments, returning a `Stellar::TransactionEnvelope` with zero signatures.
100
+
101
+ ## [0.10.0](https://github.com/bloom-solutions/ruby-stellar-base/compare/v0.9.0...v0.10.0)
102
+
103
+ - Added memo helpers to `Stellar::Transaction.for_account`, allowing any operation builder (such as `Stellar::Transaction.payment) to provide a custom memo using the `:memo` attribute.
104
+
105
+ ## [0.9.0](https://github.com/bloom-solutions/ruby-stellar-base/compare/v0.8.0...v0.9.0)
106
+
107
+ ### Changed
108
+ - XDR Definitions have been updated to stellar-core commit eed89649c2060b8e9dacffe2cec4e8b258b32416
109
+
110
+ ## [0.8.0](https://github.com/bloom-solutions/ruby-stellar-base/compare/v0.7.0...v0.8.0)
111
+
112
+ ### Changed
113
+ - BREAKING CHANGE: The default network for this library is now the stellar test network.
114
+ To enable this library for the production network use `Stellar.default_network = Stellar::Networks::PUBLIC`
115
+ at the head of your script or in your configuration function.
116
+
117
+ ## [0.7.0](https://github.com/bloom-solutions/ruby-stellar-base/compare/v0.6.1...v0.7.0)
118
+
119
+ ### Changed
120
+
121
+ - Bump xdr dependency to 1.0.0
122
+
123
+ ## [0.6.1](https://github.com/bloom-solutions/ruby-stellar-base/compare/v0.6.0...v0.6.1)
124
+
125
+ ### Changed
126
+
127
+ - Update default fee for transactions to new minimum of 100 stroops
128
+
129
+
130
+ ## [0.6.0](https://github.com/bloom-solutions/ruby-stellar-base/compare/v0.5.0...v0.6.0)
131
+
132
+ ### Changed
133
+
134
+ - Update to latest xdr (stellar-core commit ad22bccafbbc14a358f05a989f7b95714dc9d4c6)
135
+
136
+ ## [0.5.0](https://github.com/bloom-solutions/ruby-stellar-base/compare/v0.4.0...v0.5.0)
137
+
138
+ ### Changed
139
+
140
+ - Update to latest xdr
141
+
142
+ ## [0.4.0](https://github.com/bloom-solutions/ruby-stellar-base/compare/v0.3.0...v0.4.0)
143
+
144
+ ### Changed
145
+ - BREAKING CHANGE: "Amounts", that is, input parameters that represent a
146
+ certain amount of a given asset, such as the `:starting_balance` option for
147
+ `Operation.create_account` are now interpreted using the convention of 7
148
+ fixed-decimal places. For example, specifying a payment where the amount is
149
+ `50` will result in a transaction with an amount set to `500000000`.
@@ -1,5 +1,5 @@
1
1
  module Stellar
2
2
  module Base
3
- VERSION = "0.23.0.rc1"
3
+ VERSION = "0.23.0.rc2"
4
4
  end
5
5
  end
metadata CHANGED
@@ -1,14 +1,14 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: stellar-base
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.23.0.rc1
4
+ version: 0.23.0.rc2
5
5
  platform: ruby
6
6
  authors:
7
7
  - Scott Fleckenstein
8
- autorequire:
8
+ autorequire:
9
9
  bindir: bin
10
10
  cert_chain: []
11
- date: 2020-06-02 00:00:00.000000000 Z
11
+ date: 2020-06-10 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: xdr
@@ -80,13 +80,14 @@ dependencies:
80
80
  - - ">="
81
81
  - !ruby/object:Gem::Version
82
82
  version: 5.0.0
83
- description:
83
+ description:
84
84
  email:
85
85
  - scott@stellar.org
86
86
  executables: []
87
87
  extensions: []
88
88
  extra_rdoc_files: []
89
89
  files:
90
+ - CHANGELOG.md
90
91
  - LICENSE
91
92
  - README.md
92
93
  - generated/stellar-base-generated.rb
@@ -304,7 +305,7 @@ homepage: https://github.com/stellar/ruby-stellar-base
304
305
  licenses:
305
306
  - Apache-2.0
306
307
  metadata: {}
307
- post_install_message:
308
+ post_install_message:
308
309
  rdoc_options: []
309
310
  require_paths:
310
311
  - generated
@@ -320,8 +321,8 @@ required_rubygems_version: !ruby/object:Gem::Requirement
320
321
  - !ruby/object:Gem::Version
321
322
  version: 1.3.1
322
323
  requirements: []
323
- rubygems_version: 3.1.3
324
- signing_key:
324
+ rubygems_version: 3.1.4
325
+ signing_key:
325
326
  specification_version: 4
326
327
  summary: 'Stellar client library: XDR'
327
328
  test_files: []