gouda 0.1.10 → 0.1.11

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: 194787c234288ffdeede62d80c4b4bb2fc32f9fc14dff756176ce1962ebacd99
4
- data.tar.gz: 2c02e284e17e80640c279057c66afcbd34d40ccac3ab730a59572c21562c0430
3
+ metadata.gz: 9b4b5340ec99f15fe7a62bc9a63642862219dc149d38d2e7e519f2ed655747e0
4
+ data.tar.gz: 817fe1a0ef4a2b107ad07ce28c3e627e79ffe3cf5fb1be06089165e07e432ec5
5
5
  SHA512:
6
- metadata.gz: 52ded3cb575eedb5392d51cfe9a358d4a76792a65c3764bbf7ad091c5d17740cfdb7429278a8389abb15533ff97298810e954595c5d7621044e7d6bf2e728f60
7
- data.tar.gz: 4df3f4ab5d53ef0acbf4c9be87500e6c64e2333444035de113337822894b7ab414b68970a6f6c4194c65a1042ab4f4f86276aec7b4ab48ea1a46b1c8ad67c56f
6
+ metadata.gz: 0aa57b5dedc0a7fe3126d965fe377ebb00dc8f407d7a01877886b57c2f35f45bd2c254d370949a65ec44f3704353b2741509ff099acc0c285aa752ab500805a1
7
+ data.tar.gz: 29f6d58da6179f0af817c541fdf9e0ca2fbf00fa83cab2d69c780a221761b26d08679a02419afbba93070d7d19babed436727a2cf994471fa94aabf7c359a7b8
data/CHANGELOG.md CHANGED
@@ -47,4 +47,8 @@
47
47
 
48
48
  ## [0.1.10] - 2024-07-03
49
49
 
50
- - Fix: remove logger overrides that Gouda should install, as this causes problems for Rails apps hosting Gouda
50
+ - Fix: remove logger overrides that Gouda should install, as this causes problems for Rails apps hosting Gouda
51
+
52
+ ## [0.1.11] - 2024-07-03
53
+
54
+ - Fix: make sure the Gouda logger config does not get used during Rails initialization
data/lib/gouda/railtie.rb CHANGED
@@ -43,14 +43,10 @@ module Gouda
43
43
  Gouda.config.preserve_job_records = config_from_rails[:preserve_job_records]
44
44
  Gouda.config.polling_sleep_interval_seconds = config_from_rails[:polling_sleep_interval_seconds]
45
45
  Gouda.config.worker_thread_count = config_from_rails[:worker_thread_count]
46
- if Gouda.config.logger
47
- Gouda.config.logger.level = config_from_rails[:log_level] || Gouda.config.log_level
48
- end
49
46
  end
50
47
  else
51
48
  Gouda.config.preserve_job_records = false
52
49
  Gouda.config.polling_sleep_interval_seconds = 0.2
53
- Gouda.config.logger.level = Gouda.config.log_level
54
50
  end
55
51
 
56
52
  Gouda::Scheduler.build_scheduler_entries_list!
data/lib/gouda/version.rb CHANGED
@@ -1,5 +1,5 @@
1
1
  # frozen_string_literal: true
2
2
 
3
3
  module Gouda
4
- VERSION = "0.1.10"
4
+ VERSION = "0.1.11"
5
5
  end
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: gouda
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.1.10
4
+ version: 0.1.11
5
5
  platform: ruby
6
6
  authors:
7
7
  - Sebastian van Hesteren