nulogy_message_bus_producer 5.0.1.alpha → 5.0.2

Sign up to get free protection for your applications and to get access to all the features.
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: 6469231e65ac9191158b50c6f205a8ec0abd858ccf6f412ddf4d2e58f3a1f766
4
- data.tar.gz: 4c24a505738d5fde9383ff979bf308507975631bef8d0e8b838b74afc865b024
3
+ metadata.gz: 93bda3d0310b1f2596d6a3af465802bce9e4228dc493fa82890ed3b226cc0ced
4
+ data.tar.gz: 15d8b2383df3a0774aabc90a2eb9bf5e55b385a34675afaa670b0f80699d7dc6
5
5
  SHA512:
6
- metadata.gz: 41aa06fed83395f568271c9b17f46fbad1049be4eb9921150b57ee0fa835d24b139baa54ebe2115fb07beae321cba30a01bc7bfc61cedfbc5c64bf047a802b8b
7
- data.tar.gz: '098f623e6aa24b1734667c438c2d106b16cb842877990b4a4a0592435cf262deb6e71f744cf204553903f3df7a10e0ff5e860a9fea345d32356010316da577f5'
6
+ metadata.gz: 777d0800870a6bd0f0300207e9340c77a8699493d12d37f70a7e18813c84eb9141bd7d967438ee51cb5e548d46608487cd9f9cc32381ff1b9b74da5907946823
7
+ data.tar.gz: b56d6df225a3ea86f7cfffab25f54b04cfa561bb1b60819b915c17ff4b45f9fc4b735b1cbc7d67cb4861be27115c149f6f665803ad0964ad3ae5c628ea4e74d7
@@ -1,3 +1,3 @@
1
1
  module NulogyMessageBusProducer
2
- VERSION = "5.0.1.alpha".freeze
2
+ VERSION = "5.0.2".freeze
3
3
  end
metadata CHANGED
@@ -1,14 +1,14 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: nulogy_message_bus_producer
3
3
  version: !ruby/object:Gem::Version
4
- version: 5.0.1.alpha
4
+ version: 5.0.2
5
5
  platform: ruby
6
6
  authors:
7
7
  - Nulogy
8
8
  autorequire:
9
9
  bindir: bin
10
10
  cert_chain: []
11
- date: 2022-06-21 00:00:00.000000000 Z
11
+ date: 2023-01-09 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: graphql
@@ -16,14 +16,14 @@ dependencies:
16
16
  requirements:
17
17
  - - '='
18
18
  - !ruby/object:Gem::Version
19
- version: 2.0.11
19
+ version: 2.0.16
20
20
  type: :runtime
21
21
  prerelease: false
22
22
  version_requirements: !ruby/object:Gem::Requirement
23
23
  requirements:
24
24
  - - '='
25
25
  - !ruby/object:Gem::Version
26
- version: 2.0.11
26
+ version: 2.0.16
27
27
  - !ruby/object:Gem::Dependency
28
28
  name: railties
29
29
  requirement: !ruby/object:Gem::Requirement
@@ -313,8 +313,6 @@ files:
313
313
  - spec/dummy/config/storage.yml
314
314
  - spec/dummy/db/migrate/20201005164116_create_active_storage_tables.active_storage.rb
315
315
  - spec/dummy/db/schema.rb
316
- - spec/dummy/log/development.log
317
- - spec/dummy/log/test.log
318
316
  - spec/dummy/package.json
319
317
  - spec/dummy/public/404.html
320
318
  - spec/dummy/public/422.html
@@ -356,9 +354,9 @@ required_ruby_version: !ruby/object:Gem::Requirement
356
354
  version: '2.6'
357
355
  required_rubygems_version: !ruby/object:Gem::Requirement
358
356
  requirements:
359
- - - ">"
357
+ - - ">="
360
358
  - !ruby/object:Gem::Version
361
- version: 1.3.1
359
+ version: '0'
362
360
  requirements: []
363
361
  rubygems_version: 3.2.15
364
362
  signing_key:
@@ -415,8 +413,6 @@ test_files:
415
413
  - spec/dummy/config.ru
416
414
  - spec/dummy/db/migrate/20201005164116_create_active_storage_tables.active_storage.rb
417
415
  - spec/dummy/db/schema.rb
418
- - spec/dummy/log/development.log
419
- - spec/dummy/log/test.log
420
416
  - spec/dummy/package.json
421
417
  - spec/dummy/public/404.html
422
418
  - spec/dummy/public/422.html
@@ -1,110 +0,0 @@
1
-  (112.4ms) CREATE DATABASE "nulogy_message_bus_producer_development" ENCODING = 'utf8'
2
-  (1.7ms) CREATE DATABASE "nulogy_message_bus_producer_test" ENCODING = 'utf8'
3
- SQL (3.6ms) CREATE EXTENSION IF NOT EXISTS "plpgsql"
4
- SQL (7.0ms) CREATE EXTENSION IF NOT EXISTS "uuid-ossp"
5
-  (2.0ms) DROP TABLE IF EXISTS "message_bus_subscription_events" CASCADE
6
-  (10.2ms) CREATE TABLE "message_bus_subscription_events" ("id" uuid NOT NULL PRIMARY KEY, "subscription_id" uuid NOT NULL, "partition_key" character varying NOT NULL, "topic_name" character varying NOT NULL, "company_uuid" uuid NOT NULL, "event_json" json NOT NULL, "created_at" timestamp)
7
-  (4.3ms) CREATE INDEX "index_nulogy_mb_producer_subscription_events_on_created_at" ON "message_bus_subscription_events" ("created_at")
8
-  (1.4ms) DROP TABLE IF EXISTS "message_bus_subscriptions" CASCADE
9
-  (5.8ms) CREATE TABLE "message_bus_subscriptions" ("id" uuid NOT NULL PRIMARY KEY, "subscription_group_id" uuid NOT NULL, "event_type" character varying NOT NULL, "topic_name" character varying NOT NULL, "query" character varying NOT NULL, "schema_key" text NOT NULL, "created_at" timestamp NOT NULL, "updated_at" timestamp NOT NULL)
10
-  (3.9ms) CREATE INDEX "index_nulogy_mb_producer_subscriptions_on_event_type" ON "message_bus_subscriptions" ("event_type")
11
-  (6.2ms) CREATE TABLE "schema_migrations" ("version" character varying NOT NULL PRIMARY KEY)
12
-  (1.9ms) SELECT "schema_migrations"."version" FROM "schema_migrations" ORDER BY "schema_migrations"."version" ASC
13
-  (2.8ms) INSERT INTO "schema_migrations" (version) VALUES (20201005164116)
14
-  (2.9ms) INSERT INTO "schema_migrations" (version) VALUES
15
- (20200611150212),
16
- (20201005150212);
17
-
18
- 
19
-  (6.4ms) CREATE TABLE "ar_internal_metadata" ("key" character varying NOT NULL PRIMARY KEY, "value" character varying, "created_at" timestamp NOT NULL, "updated_at" timestamp NOT NULL)
20
- ActiveRecord::InternalMetadata Load (1.7ms) SELECT "ar_internal_metadata".* FROM "ar_internal_metadata" WHERE "ar_internal_metadata"."key" = $1 LIMIT $2 [["key", "environment"], ["LIMIT", 1]]
21
-  (1.7ms) BEGIN
22
- ActiveRecord::InternalMetadata Create (3.6ms) INSERT INTO "ar_internal_metadata" ("key", "value", "created_at", "updated_at") VALUES ($1, $2, $3, $4) RETURNING "key" [["key", "environment"], ["value", "development"], ["created_at", "2021-02-24 16:55:39.029462"], ["updated_at", "2021-02-24 16:55:39.029462"]]
23
-  (1.8ms) COMMIT
24
- ActiveRecord::InternalMetadata Load (1.3ms) SELECT "ar_internal_metadata".* FROM "ar_internal_metadata" WHERE "ar_internal_metadata"."key" = $1 LIMIT $2 [["key", "environment"], ["LIMIT", 1]]
25
-  (2.7ms) BEGIN
26
-  (1.7ms) COMMIT
27
- SQL (1.8ms) CREATE EXTENSION IF NOT EXISTS "plpgsql"
28
- SQL (5.9ms) CREATE EXTENSION IF NOT EXISTS "uuid-ossp"
29
-  (2.8ms) DROP TABLE IF EXISTS "message_bus_subscription_events" CASCADE
30
-  (10.6ms) CREATE TABLE "message_bus_subscription_events" ("id" uuid NOT NULL PRIMARY KEY, "subscription_id" uuid NOT NULL, "partition_key" character varying NOT NULL, "topic_name" character varying NOT NULL, "company_uuid" uuid NOT NULL, "event_json" json NOT NULL, "created_at" timestamp)
31
-  (4.0ms) CREATE INDEX "index_nulogy_mb_producer_subscription_events_on_created_at" ON "message_bus_subscription_events" ("created_at")
32
-  (2.5ms) DROP TABLE IF EXISTS "message_bus_subscriptions" CASCADE
33
-  (5.9ms) CREATE TABLE "message_bus_subscriptions" ("id" uuid NOT NULL PRIMARY KEY, "subscription_group_id" uuid NOT NULL, "event_type" character varying NOT NULL, "topic_name" character varying NOT NULL, "query" character varying NOT NULL, "schema_key" text NOT NULL, "created_at" timestamp NOT NULL, "updated_at" timestamp NOT NULL)
34
-  (5.2ms) CREATE INDEX "index_nulogy_mb_producer_subscriptions_on_event_type" ON "message_bus_subscriptions" ("event_type")
35
-  (6.5ms) CREATE TABLE "schema_migrations" ("version" character varying NOT NULL PRIMARY KEY)
36
-  (1.9ms) SELECT "schema_migrations"."version" FROM "schema_migrations" ORDER BY "schema_migrations"."version" ASC
37
-  (2.6ms) INSERT INTO "schema_migrations" (version) VALUES (20201005164116)
38
-  (2.8ms) INSERT INTO "schema_migrations" (version) VALUES
39
- (20200611150212),
40
- (20201005150212);
41
-
42
- 
43
-  (5.8ms) CREATE TABLE "ar_internal_metadata" ("key" character varying NOT NULL PRIMARY KEY, "value" character varying, "created_at" timestamp NOT NULL, "updated_at" timestamp NOT NULL)
44
- ActiveRecord::InternalMetadata Load (1.5ms) SELECT "ar_internal_metadata".* FROM "ar_internal_metadata" WHERE "ar_internal_metadata"."key" = $1 LIMIT $2 [["key", "environment"], ["LIMIT", 1]]
45
-  (1.2ms) BEGIN
46
- ActiveRecord::InternalMetadata Create (2.1ms) INSERT INTO "ar_internal_metadata" ("key", "value", "created_at", "updated_at") VALUES ($1, $2, $3, $4) RETURNING "key" [["key", "environment"], ["value", "development"], ["created_at", "2021-02-24 16:55:39.212380"], ["updated_at", "2021-02-24 16:55:39.212380"]]
47
-  (1.9ms) COMMIT
48
- ActiveRecord::InternalMetadata Load (1.3ms) SELECT "ar_internal_metadata".* FROM "ar_internal_metadata" WHERE "ar_internal_metadata"."key" = $1 LIMIT $2 [["key", "environment"], ["LIMIT", 1]]
49
-  (1.2ms) BEGIN
50
- ActiveRecord::InternalMetadata Update (1.4ms) UPDATE "ar_internal_metadata" SET "value" = $1, "updated_at" = $2 WHERE "ar_internal_metadata"."key" = $3 [["value", "test"], ["updated_at", "2021-02-24 16:55:39.221998"], ["key", "environment"]]
51
-  (1.7ms) COMMIT
52
-  (1.7ms) SELECT "schema_migrations"."version" FROM "schema_migrations" ORDER BY "schema_migrations"."version" ASC
53
-  (210.1ms) CREATE DATABASE "nulogy_message_bus_producer_development" ENCODING = 'utf8'
54
-  (3.0ms) CREATE DATABASE "nulogy_message_bus_producer_test" ENCODING = 'utf8'
55
- SQL (1.9ms) CREATE EXTENSION IF NOT EXISTS "plpgsql"
56
- SQL (6.4ms) CREATE EXTENSION IF NOT EXISTS "uuid-ossp"
57
-  (2.1ms) DROP TABLE IF EXISTS "message_bus_subscription_events" CASCADE
58
-  (11.7ms) CREATE TABLE "message_bus_subscription_events" ("id" uuid NOT NULL PRIMARY KEY, "subscription_id" uuid NOT NULL, "partition_key" character varying NOT NULL, "topic_name" character varying NOT NULL, "company_uuid" uuid NOT NULL, "event_json" json NOT NULL, "created_at" timestamp)
59
-  (4.0ms) CREATE INDEX "index_nulogy_mb_producer_subscription_events_on_created_at" ON "message_bus_subscription_events" ("created_at")
60
-  (1.7ms) DROP TABLE IF EXISTS "message_bus_subscriptions" CASCADE
61
-  (6.1ms) CREATE TABLE "message_bus_subscriptions" ("id" uuid NOT NULL PRIMARY KEY, "subscription_group_id" uuid NOT NULL, "event_type" character varying NOT NULL, "topic_name" character varying NOT NULL, "query" character varying NOT NULL, "schema_key" text NOT NULL, "created_at" timestamp NOT NULL, "updated_at" timestamp NOT NULL)
62
-  (3.7ms) CREATE INDEX "index_nulogy_mb_producer_subscriptions_on_event_type" ON "message_bus_subscriptions" ("event_type")
63
-  (5.8ms) CREATE TABLE "schema_migrations" ("version" character varying NOT NULL PRIMARY KEY)
64
-  (1.9ms) SELECT "schema_migrations"."version" FROM "schema_migrations" ORDER BY "schema_migrations"."version" ASC
65
-  (2.4ms) INSERT INTO "schema_migrations" (version) VALUES (20201005164116)
66
-  (2.4ms) INSERT INTO "schema_migrations" (version) VALUES
67
- (20200611150212),
68
- (20201005150212);
69
-
70
- 
71
-  (7.6ms) CREATE TABLE "ar_internal_metadata" ("key" character varying NOT NULL PRIMARY KEY, "value" character varying, "created_at" timestamp(6) NOT NULL, "updated_at" timestamp(6) NOT NULL)
72
- ActiveRecord::InternalMetadata Load (2.0ms) SELECT "ar_internal_metadata".* FROM "ar_internal_metadata" WHERE "ar_internal_metadata"."key" = $1 LIMIT $2 [["key", "environment"], ["LIMIT", 1]]
73
- TRANSACTION (1.4ms) BEGIN
74
- ActiveRecord::InternalMetadata Create (2.2ms) INSERT INTO "ar_internal_metadata" ("key", "value", "created_at", "updated_at") VALUES ($1, $2, $3, $4) RETURNING "key" [["key", "environment"], ["value", "development"], ["created_at", "2022-06-20 20:28:29.159971"], ["updated_at", "2022-06-20 20:28:29.159971"]]
75
- TRANSACTION (2.7ms) COMMIT
76
- ActiveRecord::InternalMetadata Load (1.8ms) SELECT "ar_internal_metadata".* FROM "ar_internal_metadata" WHERE "ar_internal_metadata"."key" = $1 LIMIT $2 [["key", "environment"], ["LIMIT", 1]]
77
- ActiveRecord::InternalMetadata Load (1.6ms) SELECT "ar_internal_metadata".* FROM "ar_internal_metadata" WHERE "ar_internal_metadata"."key" = $1 LIMIT $2 [["key", "schema_sha1"], ["LIMIT", 1]]
78
- TRANSACTION (2.0ms) BEGIN
79
- ActiveRecord::InternalMetadata Create (1.7ms) INSERT INTO "ar_internal_metadata" ("key", "value", "created_at", "updated_at") VALUES ($1, $2, $3, $4) RETURNING "key" [["key", "schema_sha1"], ["value", "2d5bee88577a387c3beb2618b50260b1d5b2a437"], ["created_at", "2022-06-20 20:28:29.179910"], ["updated_at", "2022-06-20 20:28:29.179910"]]
80
- TRANSACTION (2.1ms) COMMIT
81
- SQL (2.3ms) CREATE EXTENSION IF NOT EXISTS "plpgsql"
82
- SQL (6.8ms) CREATE EXTENSION IF NOT EXISTS "uuid-ossp"
83
-  (2.0ms) DROP TABLE IF EXISTS "message_bus_subscription_events" CASCADE
84
-  (11.1ms) CREATE TABLE "message_bus_subscription_events" ("id" uuid NOT NULL PRIMARY KEY, "subscription_id" uuid NOT NULL, "partition_key" character varying NOT NULL, "topic_name" character varying NOT NULL, "company_uuid" uuid NOT NULL, "event_json" json NOT NULL, "created_at" timestamp)
85
-  (13.9ms) CREATE INDEX "index_nulogy_mb_producer_subscription_events_on_created_at" ON "message_bus_subscription_events" ("created_at")
86
-  (2.2ms) DROP TABLE IF EXISTS "message_bus_subscriptions" CASCADE
87
-  (8.9ms) CREATE TABLE "message_bus_subscriptions" ("id" uuid NOT NULL PRIMARY KEY, "subscription_group_id" uuid NOT NULL, "event_type" character varying NOT NULL, "topic_name" character varying NOT NULL, "query" character varying NOT NULL, "schema_key" text NOT NULL, "created_at" timestamp NOT NULL, "updated_at" timestamp NOT NULL)
88
-  (5.4ms) CREATE INDEX "index_nulogy_mb_producer_subscriptions_on_event_type" ON "message_bus_subscriptions" ("event_type")
89
-  (7.8ms) CREATE TABLE "schema_migrations" ("version" character varying NOT NULL PRIMARY KEY)
90
-  (2.0ms) SELECT "schema_migrations"."version" FROM "schema_migrations" ORDER BY "schema_migrations"."version" ASC
91
-  (2.3ms) INSERT INTO "schema_migrations" (version) VALUES (20201005164116)
92
-  (2.6ms) INSERT INTO "schema_migrations" (version) VALUES
93
- (20200611150212),
94
- (20201005150212);
95
-
96
- 
97
-  (7.4ms) CREATE TABLE "ar_internal_metadata" ("key" character varying NOT NULL PRIMARY KEY, "value" character varying, "created_at" timestamp(6) NOT NULL, "updated_at" timestamp(6) NOT NULL)
98
- ActiveRecord::InternalMetadata Load (1.7ms) SELECT "ar_internal_metadata".* FROM "ar_internal_metadata" WHERE "ar_internal_metadata"."key" = $1 LIMIT $2 [["key", "environment"], ["LIMIT", 1]]
99
- TRANSACTION (1.3ms) BEGIN
100
- ActiveRecord::InternalMetadata Create (1.6ms) INSERT INTO "ar_internal_metadata" ("key", "value", "created_at", "updated_at") VALUES ($1, $2, $3, $4) RETURNING "key" [["key", "environment"], ["value", "development"], ["created_at", "2022-06-20 20:28:29.336938"], ["updated_at", "2022-06-20 20:28:29.336938"]]
101
- TRANSACTION (1.9ms) COMMIT
102
- ActiveRecord::InternalMetadata Load (1.7ms) SELECT "ar_internal_metadata".* FROM "ar_internal_metadata" WHERE "ar_internal_metadata"."key" = $1 LIMIT $2 [["key", "environment"], ["LIMIT", 1]]
103
- TRANSACTION (1.4ms) BEGIN
104
- ActiveRecord::InternalMetadata Update (1.5ms) UPDATE "ar_internal_metadata" SET "value" = $1, "updated_at" = $2 WHERE "ar_internal_metadata"."key" = $3 [["value", "test"], ["updated_at", "2022-06-20 20:28:29.349516"], ["key", "environment"]]
105
- TRANSACTION (1.6ms) COMMIT
106
- ActiveRecord::InternalMetadata Load (1.9ms) SELECT "ar_internal_metadata".* FROM "ar_internal_metadata" WHERE "ar_internal_metadata"."key" = $1 LIMIT $2 [["key", "schema_sha1"], ["LIMIT", 1]]
107
- TRANSACTION (1.2ms) BEGIN
108
- ActiveRecord::InternalMetadata Create (1.8ms) INSERT INTO "ar_internal_metadata" ("key", "value", "created_at", "updated_at") VALUES ($1, $2, $3, $4) RETURNING "key" [["key", "schema_sha1"], ["value", "2d5bee88577a387c3beb2618b50260b1d5b2a437"], ["created_at", "2022-06-20 20:28:29.360140"], ["updated_at", "2022-06-20 20:28:29.360140"]]
109
- TRANSACTION (1.7ms) COMMIT
110
-  (2.6ms) SELECT "schema_migrations"."version" FROM "schema_migrations" ORDER BY "schema_migrations"."version" ASC