ecfr 1.0.10 → 1.0.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: 9b831994e070ea609002c625540be87ee5c8642f0eb0643acd35b37eec986025
4
- data.tar.gz: d81a7ec6ca04d5c6b5793ddb8aa1040fce4cf722083b7551d11f3e71ccb4d18d
3
+ metadata.gz: a4f0797427f53d66ef5b452b7cbed5e904bd0d40014b67bfa8da1605f4494ec1
4
+ data.tar.gz: bcc927258c65452fa05834441efaf1e20cf7c6ce3a1d5f62f76fb8d00e65a386
5
5
  SHA512:
6
- metadata.gz: 5b8a21441cd709b5892ba8520ac4b06f7958d56122bff98b9864f96f8a7dfd3077d822e5686838214f50ea68c421ba7589205d716ece8c418aded50cd43cb0e4
7
- data.tar.gz: 6d3b97c5c427bfd015ffd5e3bfea2e5343d0f9e5a9d604c11c852a339e1056826ef2d328307c4960e34e1d2a898eba3c0e60290998ddbdbe212544defdd5cd90
6
+ metadata.gz: 36e1f0309682992dca52fb647d9b1f18e5359d06d4bc6775db8e9f70612c5f3455d7a7a7423e546a5e3ae394ad8d4c903895d0a712e7bd1d1be7d331f7e01b78
7
+ data.tar.gz: cf200a1cd4c2fa7f6acdbe4b6e7fdf0d6be1a9e0f427ddfc721472d505e9450f8d0376547f8738373fb7cdbf73790c2abd906e3b4836b2db70fb0b3eb90d0934
data/CHANGELOG.md CHANGED
@@ -1,5 +1,9 @@
1
1
  ## [Unreleased]
2
2
 
3
+ ## [1.0.11] - 2023-06-22
4
+ ### Updates
5
+ - Support more robust site notifications(24010c96)
6
+
3
7
  ## [1.0.10] - 2023-06-15
4
8
  ### Bugfixes
5
9
  - Fix client to respect port numbers when determing client reuse (1afbb6)
data/Gemfile.lock CHANGED
@@ -1,7 +1,7 @@
1
1
  PATH
2
2
  remote: .
3
3
  specs:
4
- ecfr (1.0.2)
4
+ ecfr (1.0.11)
5
5
  activemodel (~> 6.0)
6
6
  activesupport (~> 6.0)
7
7
  faraday (~> 2.0)
@@ -21,7 +21,7 @@ GEM
21
21
  ast (2.4.2)
22
22
  coderay (1.1.3)
23
23
  concurrent-ruby (1.1.9)
24
- connection_pool (2.4.0)
24
+ connection_pool (2.4.1)
25
25
  diff-lcs (1.4.4)
26
26
  ethon (0.16.0)
27
27
  ffi (>= 1.15.0)
@@ -3,19 +3,19 @@ module Ecfr
3
3
  class SiteNotification < Base
4
4
  result_key :notifications
5
5
 
6
- attribute :last_updated_by,
7
- desc: "email of user who last updated the notification"
8
6
  attribute :message,
9
7
  desc: "notification content"
10
8
  attribute :notification_type,
11
- desc: "where the notification should be displayed; either `global` or `global_top`"
9
+ desc: "where the notification should be displayed;
10
+ one of 'basic', 'error', 'feature', 'info', 'special', or 'warning'"
11
+ attribute :location,
12
+ desc: "the location on eCFR.gov that notification will be displayed;
13
+ one of 'all', 'content', 'search' or 'table_of_contents'
14
+ ('top' is the only possible value for the 'special' type)"
12
15
 
13
- attribute :active,
16
+ attribute :user_dismissible,
14
17
  type: :boolean
15
18
 
16
- attribute :updated_at,
17
- type: :datetime
18
-
19
19
  SITE_NOTIFICATIONS_PATH = "v1/notifications.json"
20
20
 
21
21
  #
data/lib/ecfr/version.rb CHANGED
@@ -1,5 +1,5 @@
1
1
  # frozen_string_literal: true
2
2
 
3
3
  module Ecfr
4
- VERSION = "1.0.10"
4
+ VERSION = "1.0.11"
5
5
  end
metadata CHANGED
@@ -1,14 +1,14 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: ecfr
3
3
  version: !ruby/object:Gem::Version
4
- version: 1.0.10
4
+ version: 1.0.11
5
5
  platform: ruby
6
6
  authors:
7
7
  - Peregrinator
8
8
  autorequire:
9
9
  bindir: exe
10
10
  cert_chain: []
11
- date: 2023-06-15 00:00:00.000000000 Z
11
+ date: 2023-06-22 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: activemodel