activeadmin 2.11.1 → 2.11.2

Sign up to get free protection for your applications and to get access to all the features.

Potentially problematic release.


This version of activeadmin might be problematic. Click here for more details.

checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: 40e545429e58f56877c3374a3b41adb6e02b15dba7ce6155ecef68d606d63edf
4
- data.tar.gz: 6e479ebfc7d021502f8df7d11c57ea444bd0c7714be57673575d559b3871f7da
3
+ metadata.gz: 26f9266cffc8d0e054be977056ba02e2c09803db4f3690235112df2dbaa5b054
4
+ data.tar.gz: 8d7a87d3e2f53f5279cf100129149710e3886a633c902c7cd657ad0008b6c397
5
5
  SHA512:
6
- metadata.gz: d355e9804b0a59fb57708115c0ff5d3542ffb89e5b02c27e022bd4820747c587de4b26cfcca9894c28f573515d41d79ee4b78a98f627ebb17fbb19dab1e37929
7
- data.tar.gz: 17ba06abb61b0a7c74bf0e00201890c9a9e5021a2daa7c8866473f66b8497d3c948875fbffef761585d0b4f9b4fb75b2710142ae365b2f38c730531342d769d0
6
+ metadata.gz: f783a8a7dba38645b4c62d11c384c54ceff4a198ea90eaab237c5b87293e82033ddfcbf00e5d7fd15c346b12debdb402a5f96f9b86891576ef34cd87644d3dcd
7
+ data.tar.gz: 55cd5df702122eaac4dc70cc7a072754edc1141553056896268ac3c0c7176b8876a8bafac61fe75cec064d58d3d4b03e15b36e3d4c52102a5f6dfb5e44d47214
data/CHANGELOG.md CHANGED
@@ -2,6 +2,12 @@
2
2
 
3
3
  ## Unreleased
4
4
 
5
+ ## 2.11.2 [☰](https://github.com/activeadmin/activeadmin/compare/v2.11.1..v2.11.2)
6
+
7
+ ### Bug Fixes
8
+
9
+ * Fix disappearing BOM option for `CSVBuilder`. [#7170] by [@Karoid]
10
+
5
11
  ## 2.11.1 [☰](https://github.com/activeadmin/activeadmin/compare/v2.11.0..v2.11.1)
6
12
 
7
13
  ### Enhancements
@@ -730,6 +736,7 @@ Please check [0-6-stable] for previous changes.
730
736
  [#6959]: https://github.com/activeadmin/activeadmin/pull/6959
731
737
  [#7095]: https://github.com/activeadmin/activeadmin/pull/7095
732
738
  [#7127]: https://github.com/activeadmin/activeadmin/pull/7127
739
+ [#7170]: https://github.com/activeadmin/activeadmin/pull/7170
733
740
  [#7181]: https://github.com/activeadmin/activeadmin/pull/7181
734
741
  [#7205]: https://github.com/activeadmin/activeadmin/pull/7205
735
742
  [#7235]: https://github.com/activeadmin/activeadmin/pull/7235
@@ -800,6 +807,7 @@ Please check [0-6-stable] for previous changes.
800
807
  [@jscheid]: https://github.com/jscheid
801
808
  [@juril33t]: https://github.com/juril33t
802
809
  [@jwesorick]: https://github.com/jwesorick
810
+ [@Karoid]: https://github.com/Karoid
803
811
  [@kjeldahl]: https://github.com/kjeldahl
804
812
  [@ko-lem]: https://github.com/ko-lem
805
813
  [@kobeumut]: https://github.com/kobeumut
@@ -45,9 +45,9 @@ module ActiveAdmin
45
45
  def build(controller, csv)
46
46
  @collection = controller.send :find_collection, except: :pagination
47
47
  columns = exec_columns controller.view_context
48
- bom = options.delete :byte_order_mark
48
+ bom = options[:byte_order_mark]
49
49
  column_names = options.delete(:column_names) { true }
50
- csv_options = options.except :encoding_options, :humanize_name
50
+ csv_options = options.except :encoding_options, :humanize_name, :byte_order_mark
51
51
 
52
52
  csv << bom if bom
53
53
 
@@ -1,4 +1,4 @@
1
1
  # frozen_string_literal: true
2
2
  module ActiveAdmin
3
- VERSION = "2.11.1"
3
+ VERSION = "2.11.2"
4
4
  end
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: activeadmin
3
3
  version: !ruby/object:Gem::Version
4
- version: 2.11.1
4
+ version: 2.11.2
5
5
  platform: ruby
6
6
  authors:
7
7
  - Charles Maresh
@@ -15,7 +15,7 @@ authors:
15
15
  autorequire:
16
16
  bindir: bin
17
17
  cert_chain: []
18
- date: 2022-03-25 00:00:00.000000000 Z
18
+ date: 2022-04-12 00:00:00.000000000 Z
19
19
  dependencies:
20
20
  - !ruby/object:Gem::Dependency
21
21
  name: arbre
@@ -578,7 +578,7 @@ required_rubygems_version: !ruby/object:Gem::Requirement
578
578
  - !ruby/object:Gem::Version
579
579
  version: '0'
580
580
  requirements: []
581
- rubygems_version: 3.3.7
581
+ rubygems_version: 3.3.11
582
582
  signing_key:
583
583
  specification_version: 4
584
584
  summary: Active Admin is a Ruby on Rails plugin for generating administration style