where_is_waldo 0.1.1 → 0.1.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: e8d42866099dafaaf3fcbcd2ea265cdff18d6eff9ffe040df788f59ff97f7f92
4
- data.tar.gz: 2362c64ad821aae70425e26dafbb3a227903fbd70f7c33817aeaaa878e8f2586
3
+ metadata.gz: f1f429edefae4d492dd5693b50112c2573ad1869e9771fe6bb8ff740cfcb195f
4
+ data.tar.gz: 38ce0d06a28fe595ec70f08289737f20420ace8854bfd1ee26e3bd94025509d9
5
5
  SHA512:
6
- metadata.gz: 0b96cfebe30d871334617f83ab6aa5ef9087e95f5dc5886b061b86a7556c9e1cc5edb2b15329713f7f0887dd5f9d2958d4cbe21cb731f31cdbb53df60a511db6
7
- data.tar.gz: 9905f053dd841bea8d9563de3f488c7ef81093ea0c202835e4d4556108f678f1b636bc559627ef299ac2e7cdb9fea2bbc08cf33145aab134b07f026a0cbff35d
6
+ metadata.gz: ae4e3d676d6334390fe4d43cf19f86edd15bfbec3514446c947d10c5e364d6094a2b79ee54f5f7bf550ccd95895331a9248ab227c2bfcfe5b967f9098da6bf91
7
+ data.tar.gz: bd93a48197762af1999330abb33bca574216ea1982fbdc29c0f4100da885a3c5213604ed3dd01b80d477b911f835a39829bccd8cc63a86f6c761f567c4c36c56
data/CHANGELOG.md CHANGED
@@ -3,6 +3,25 @@
3
3
  Notable changes to where_is_waldo. Format loosely follows
4
4
  [Keep a Changelog](https://keepachangelog.com/).
5
5
 
6
+ ## 0.1.2
7
+
8
+ ### Fixed
9
+
10
+ - Drop the manual `config.autoload_paths <<` lines for `app/services`,
11
+ `app/channels`, `app/jobs`, and `app/models` from the engine. `Rails::Engine`
12
+ already globs every `app/*` directory into the engine's autoload **and**
13
+ eager-load paths, so the entries were redundant — and because
14
+ `config.autoload_paths` is autoload-only, they marked those directories as
15
+ not-eager-loadable, which can trip Zeitwerk in eager-loading (production)
16
+ hosts. Zeitwerk still picks up all four directories.
17
+
18
+ ### Security (development dependencies only)
19
+
20
+ - `axios` → `1.18.0`+ (via a `resolutions` pin; reached only through
21
+ `start-server-and-test` → `wait-on`) and `loofah` → `2.25.2`. Neither is
22
+ shipped in the published gem or npm package — the npm package declares no
23
+ runtime `dependencies` — so released `0.1.1` artifacts were not affected.
24
+
6
25
  ## 0.1.1
7
26
 
8
27
  ### Fixed
data/VERSION CHANGED
@@ -1 +1 @@
1
- 0.1.1
1
+ 0.1.2
@@ -4,11 +4,6 @@ module WhereIsWaldo
4
4
  class Engine < ::Rails::Engine
5
5
  isolate_namespace WhereIsWaldo
6
6
 
7
- config.autoload_paths << File.expand_path("../../app/services", __dir__)
8
- config.autoload_paths << File.expand_path("../../app/channels", __dir__)
9
- config.autoload_paths << File.expand_path("../../app/jobs", __dir__)
10
- config.autoload_paths << File.expand_path("../../app/models", __dir__)
11
-
12
7
  # Configure Presence model associations after all code is loaded
13
8
  config.after_initialize do
14
9
  WhereIsWaldo::Presence.configure_associations! if WhereIsWaldo::Presence.respond_to?(:configure_associations!)
metadata CHANGED
@@ -1,14 +1,14 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: where_is_waldo
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.1.1
4
+ version: 0.1.2
5
5
  platform: ruby
6
6
  authors:
7
7
  - Scott Gibson
8
8
  autorequire:
9
9
  bindir: bin
10
10
  cert_chain: []
11
- date: 2026-07-15 00:00:00.000000000 Z
11
+ date: 2026-07-23 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: rails