pg_eventstore 0.2.1 → 0.2.2

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: d8d3f73730a86f5a8d8849da2faa8c2e24a937e5d062b51928ae3f4034030f54
4
- data.tar.gz: 47c6381424341a8b5b86e7dd8e66c0f090d8485755b6e7fc79a9d5e33c5cbde1
3
+ metadata.gz: b8c492f46288f9c4c5d3912cad3aba0664bf91693a2273785654e6a96f634668
4
+ data.tar.gz: 6cbc3ab33fd7d9ed71ae8664ad95b784fffd07ead7d56a7046f481f36eecc531
5
5
  SHA512:
6
- metadata.gz: fc542c87250be7e2c840ae526cca7dcd9dee55bf7069572b7fc669564c4173a0ec4334a5714dfb92f874cf8717a087ba474ae4aa7697c36dc541883346a12383
7
- data.tar.gz: deedd9c173935973dc7330365acd21e4125d5abb9e23975af3a19fc1c6549c3a9944ae0420753034af5d5ed7b60c793d90e90ced0b866ec410a42cc6306400dc
6
+ metadata.gz: efe92ab2610b9bbf0e33fc6ed98a7104737ad9f02a7217651b7f7354a7c3b25008a01033b71f7057279dd5ad21846cab3fbd4408941b4f6a6015532651ba40e6
7
+ data.tar.gz: cf31608048782d34203643b02374ff52afbed8760e0dbbff7e5026c6c518d26f489c396412f8ec88a52fbaf1dbd22a5788feb1873bfc1c59b7cfce8080b8e4b2
data/CHANGELOG.md CHANGED
@@ -1,8 +1,12 @@
1
- ## [0.2.1] - 2023-12-13
1
+ ## [0.2.2] - 2023-12-14
2
+
3
+ - Fix `pg_eventstore:drop` rake task to also drop `migrations` table
4
+
5
+ ## [0.2.1] - 2023-12-14
2
6
 
3
7
  Under certain circumstances `PG::TRSerializationFailure` exception wasn't retried. Adjust connection's states list to fix that.
4
8
 
5
- ## [0.2.0] - 2023-12-13
9
+ ## [0.2.0] - 2023-12-14
6
10
 
7
11
  - Improve performance by reviewing indexes
8
12
  - Implement migrations
@@ -53,6 +53,7 @@ namespace :pg_eventstore do
53
53
  conn.exec <<~SQL
54
54
  DROP TABLE IF EXISTS public.events;
55
55
  DROP TABLE IF EXISTS public.streams;
56
+ DROP TABLE IF EXISTS public.migrations;
56
57
  DROP EXTENSION IF EXISTS "uuid-ossp";
57
58
  DROP EXTENSION IF EXISTS pgcrypto;
58
59
  SQL
@@ -1,5 +1,5 @@
1
1
  # frozen_string_literal: true
2
2
 
3
3
  module PgEventstore
4
- VERSION = "0.2.1"
4
+ VERSION = "0.2.2"
5
5
  end
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: pg_eventstore
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.2.1
4
+ version: 0.2.2
5
5
  platform: ruby
6
6
  authors:
7
7
  - Ivan Dzyzenko