apidae 1.4.21 → 1.4.23

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: f4d5f5f9bc9b33c787db377cb40da8a7ee00bfc0eecc273a411dfecc20c43368
4
- data.tar.gz: 1d1723dff9d5f7ecf1001080ebfb14909cee764a23706c99d09f371cdb4233d8
3
+ metadata.gz: 25915d76b489457d5f8742026e8e20066d07847cf25deb9cf7bcf91923b57f5a
4
+ data.tar.gz: 96cd987d844341b96dfbb50cf8c930b102a9f089e07ff954f03f41dd70655298
5
5
  SHA512:
6
- metadata.gz: b035a7ccc0f62d3cbf2c5bdd7f92bed90e11d594763ed5ef43d4fd736bc0a0911d1b62ae952dabde250d4ab8371dde99b10377879966c0dad97052a8f0ab50af
7
- data.tar.gz: c709384b5e6f3e4eaab6cb7672c46337f6c473246a79bb98bfa3f8be115829ab01a0fd74f91264fdbf3b2646fe23c2da9bb5cb6f27be0ca83002e51e93e1ae7f
6
+ metadata.gz: a3735ee05bdf9b60238a30d2a8a62e0281e51aa531da1b7bfea528bac560b3f4b709fc76f015ae3ee72438848e9689b75ac7958d7868591240236d829a9c08f9
7
+ data.tar.gz: 2aca45e0611f334c047285059953a952d1f7fae27e81260376373fb9df5392477c6859628f04ab8e2ab7cbc6a42e96881d3c5909d0570efaf387a2c8730e315c
@@ -264,6 +264,7 @@ module Apidae
264
264
  first: opts[:first] || 0,
265
265
  count: opts[:count] || MAX_COUNT,
266
266
  selectionIds: opts[:selection_ids],
267
+ locales: opts[:locales] || (apidae_project&.locales.blank? ? [DEFAULT_LOCALE] : apidae_project.locales),
267
268
  identifiants: opts[:obj_ids],
268
269
  dateDebut: opts[:from],
269
270
  dateFin: opts[:to],
@@ -1,3 +1,3 @@
1
1
  module Apidae
2
- VERSION = "1.4.21"
2
+ VERSION = "1.4.23"
3
3
  end
@@ -14240,6 +14240,30 @@ callback this way:
14240
14240
  That block runs when the application boots, and every time there is a reload.
14241
14241
  For historical reasons, it may run twice, so it has to be idempotent.
14242
14242
 
14243
+ Check the "Autoloading and Reloading Constants" guide to learn more about how
14244
+ Rails autoloads and reloads.
14245
+ (called from <top (required)> at /Users/jbvilain/workspace/code/apidae-engine-rails/test/dummy/config/environment.rb:5)
14246
+ DEPRECATION WARNING: Initialization autoloaded the constants Apidae::ApidaeHelper, Apidae::ApplicationHelper, Apidae::ApiHelper, Apidae::DashboardHelper, Apidae::ExtendableHelper, Apidae::ImportHelper, Apidae::ObjectsHelper, Apidae::ReferencesHelper, Apidae::SelectionsHelper, and Apidae::ApplicationController.
14247
+
14248
+ Being able to do this is deprecated. Autoloading during initialization is going
14249
+ to be an error condition in future versions of Rails.
14250
+
14251
+ Reloading does not reboot the application, and therefore code executed during
14252
+ initialization does not run again. So, if you reload Apidae::ApidaeHelper, for example,
14253
+ the expected changes won't be reflected in that stale Module object.
14254
+
14255
+ `config.autoloader` is set to `classic`. These autoloaded constants would have been unloaded if `config.autoloader` had been set to `:zeitwerk`.
14256
+
14257
+ In order to autoload safely at boot time, please wrap your code in a reloader
14258
+ callback this way:
14259
+
14260
+ Rails.application.reloader.to_prepare do
14261
+ # Autoload classes and modules needed at boot time here.
14262
+ end
14263
+
14264
+ That block runs when the application boots, and every time there is a reload.
14265
+ For historical reasons, it may run twice, so it has to be idempotent.
14266
+
14243
14267
  Check the "Autoloading and Reloading Constants" guide to learn more about how
14244
14268
  Rails autoloads and reloads.
14245
14269
  (called from <top (required)> at /Users/jbvilain/workspace/code/apidae-engine-rails/test/dummy/config/environment.rb:5)
metadata CHANGED
@@ -1,14 +1,14 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: apidae
3
3
  version: !ruby/object:Gem::Version
4
- version: 1.4.21
4
+ version: 1.4.23
5
5
  platform: ruby
6
6
  authors:
7
7
  - Jean-Baptiste Vilain
8
8
  autorequire:
9
9
  bindir: bin
10
10
  cert_chain: []
11
- date: 2026-01-14 00:00:00.000000000 Z
11
+ date: 2026-01-22 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: rails