solana_rpc_ruby 1.1.1 → 1.2.0

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.
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: 2b473e11604fa0d409efbe09260aa85bf467a1b76b6fa014e7a0716e019b3c5e
4
- data.tar.gz: 7e116f4bdb58358bf85c3260eb526be306445d87ec87788648ee40ffbd9bd80d
3
+ metadata.gz: 445e4852f291cb7e6d417e3a3277905c7c2935ed40ec9cdca3e1d5f2f599f8ab
4
+ data.tar.gz: 36f27011567ebd56e0f0b86db2fa93c04e66c55351d0307a014b432a3988f8e5
5
5
  SHA512:
6
- metadata.gz: 5013b6799259a02d77cc232e3a1456a2de52b71c93c31e78a376c702656ed7c6444577e2f4467ceb8c5aa7df7b9b78d4bb05ee27711f003e08d6576c15b84fc4
7
- data.tar.gz: ada8e45a050f6bc74e712f9a61a2e8b62032a6a9e60e8a21627c99dd5ce48673833b3cc119c6a893b117dcb81233e1aa8c196bb5cd27145bf684ab88b9c257cb
6
+ metadata.gz: 9be80c9efcff01f3324cee479e4262cafd9ca8cc43dfc7d19e6bf537f336428a5bacf124b4d920955c364638fd355e9bdbe33bf425bc458a2d37025bbfbb794e
7
+ data.tar.gz: 86e7db1d6cdf6b2a5b208b7b5b8fdae6766fbeb5e919ff8dfd23c845c9c8d5105827f4609d10ad01581f0049a1dfbd1c9e9ded0937f621ad7912856837397da2
data/CHANGELOG.md CHANGED
@@ -11,3 +11,25 @@
11
11
  ## 1.1.1
12
12
  * Fix SolanaRpcRuby::ApiError occurring when websocket program runs for too long
13
13
  (#<SolanaRpcRuby::ApiError: NoMethodError undefined method ping)
14
+
15
+ ## 1.1.2
16
+ * Unify LICENSE it's now MIT everywhere.
17
+ * Add Ruby 3.0 to CI run.
18
+ * Add new badges.
19
+ * Handle new errors (Errno::ECONNREFUSED, SocketError)
20
+ * Code maintenance and cleanup.
21
+
22
+ ## 1.1.3
23
+ * Increase open_timeout and read_timeout.
24
+ * New specs.
25
+
26
+ ## 1.1.4
27
+ * Removes deprecated constant
28
+
29
+ ## 1.2.0
30
+ * Fix handling commitment param in methods
31
+ * Add RPC and websocket methods added by solana core to RPC recently
32
+ * Add new params to methods added by solana core
33
+ * Add warns to deprecated methods
34
+ * Update docs
35
+ * Small fixes