activejob 7.2.0.beta2 → 7.2.0.beta3
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 +4 -4
 - data/CHANGELOG.md +5 -0
 - data/lib/active_job/gem_version.rb +1 -1
 - data/lib/active_job/logging.rb +16 -2
 - metadata +10 -10
 
    
        checksums.yaml
    CHANGED
    
    | 
         @@ -1,7 +1,7 @@ 
     | 
|
| 
       1 
1 
     | 
    
         
             
            ---
         
     | 
| 
       2 
2 
     | 
    
         
             
            SHA256:
         
     | 
| 
       3 
     | 
    
         
            -
              metadata.gz:  
     | 
| 
       4 
     | 
    
         
            -
              data.tar.gz:  
     | 
| 
      
 3 
     | 
    
         
            +
              metadata.gz: '095e17b4c3c9bc52e96fed04da1ee40db027c5b4af279c781084f9f99f6200ba'
         
     | 
| 
      
 4 
     | 
    
         
            +
              data.tar.gz: 81971f7fa3052ba987114af359e5a4ddda0623c497b56420f7e5ec16aa596ce2
         
     | 
| 
       5 
5 
     | 
    
         
             
            SHA512:
         
     | 
| 
       6 
     | 
    
         
            -
              metadata.gz:  
     | 
| 
       7 
     | 
    
         
            -
              data.tar.gz:  
     | 
| 
      
 6 
     | 
    
         
            +
              metadata.gz: c629e166b47598ee4d536af3759321fb441a84a5bd44b59e01314d3d41e7ba04d95ac2d1a6606bc676cc55613ff64f3003cc8b41e6b9378344b178ec7106afe8
         
     | 
| 
      
 7 
     | 
    
         
            +
              data.tar.gz: 0b8f3c5568656dcdf1ce7bfa4f4d9cddef2244f036bea014fc0e407ce0374445dd1b7d9372790e0b0b8302a2344abf788e61b44ef1ef883297ab804526a33c64
         
     | 
    
        data/CHANGELOG.md
    CHANGED
    
    
    
        data/lib/active_job/logging.rb
    CHANGED
    
    | 
         @@ -4,17 +4,31 @@ require "active_support/tagged_logging" 
     | 
|
| 
       4 
4 
     | 
    
         
             
            require "active_support/logger"
         
     | 
| 
       5 
5 
     | 
    
         | 
| 
       6 
6 
     | 
    
         
             
            module ActiveJob
         
     | 
| 
       7 
     | 
    
         
            -
              module Logging 
     | 
| 
      
 7 
     | 
    
         
            +
              module Logging
         
     | 
| 
       8 
8 
     | 
    
         
             
                extend ActiveSupport::Concern
         
     | 
| 
       9 
9 
     | 
    
         | 
| 
       10 
10 
     | 
    
         
             
                included do
         
     | 
| 
      
 11 
     | 
    
         
            +
                  ##
         
     | 
| 
      
 12 
     | 
    
         
            +
                  # Accepts a logger conforming to the interface of Log4r or the default
         
     | 
| 
      
 13 
     | 
    
         
            +
                  # Ruby +Logger+ class. You can retrieve this logger by calling +logger+ on
         
     | 
| 
      
 14 
     | 
    
         
            +
                  # either an Active Job job class or an Active Job job instance.
         
     | 
| 
       11 
15 
     | 
    
         
             
                  cattr_accessor :logger, default: ActiveSupport::TaggedLogging.new(ActiveSupport::Logger.new(STDOUT))
         
     | 
| 
      
 16 
     | 
    
         
            +
             
     | 
| 
      
 17 
     | 
    
         
            +
                  ##
         
     | 
| 
      
 18 
     | 
    
         
            +
                  # Configures whether a job's arguments should be logged. This can be
         
     | 
| 
      
 19 
     | 
    
         
            +
                  # useful when a job's arguments may be sensitive and so should not be
         
     | 
| 
      
 20 
     | 
    
         
            +
                  # logged.
         
     | 
| 
      
 21 
     | 
    
         
            +
                  #
         
     | 
| 
      
 22 
     | 
    
         
            +
                  # The value defaults to +true+, but this can be configured with
         
     | 
| 
      
 23 
     | 
    
         
            +
                  # +config.active_job.log_arguments+. Additionally, individual jobs can
         
     | 
| 
      
 24 
     | 
    
         
            +
                  # also configure a value, which will apply to themselves and any
         
     | 
| 
      
 25 
     | 
    
         
            +
                  # subclasses.
         
     | 
| 
       12 
26 
     | 
    
         
             
                  class_attribute :log_arguments, instance_accessor: false, default: true
         
     | 
| 
       13 
27 
     | 
    
         | 
| 
       14 
28 
     | 
    
         
             
                  around_enqueue(prepend: true) { |_, block| tag_logger(&block) }
         
     | 
| 
       15 
29 
     | 
    
         
             
                end
         
     | 
| 
       16 
30 
     | 
    
         | 
| 
       17 
     | 
    
         
            -
                def perform_now
         
     | 
| 
      
 31 
     | 
    
         
            +
                def perform_now # :nodoc:
         
     | 
| 
       18 
32 
     | 
    
         
             
                  tag_logger(self.class.name, self.job_id) { super }
         
     | 
| 
       19 
33 
     | 
    
         
             
                end
         
     | 
| 
       20 
34 
     | 
    
         | 
    
        metadata
    CHANGED
    
    | 
         @@ -1,14 +1,14 @@ 
     | 
|
| 
       1 
1 
     | 
    
         
             
            --- !ruby/object:Gem::Specification
         
     | 
| 
       2 
2 
     | 
    
         
             
            name: activejob
         
     | 
| 
       3 
3 
     | 
    
         
             
            version: !ruby/object:Gem::Version
         
     | 
| 
       4 
     | 
    
         
            -
              version: 7.2.0. 
     | 
| 
      
 4 
     | 
    
         
            +
              version: 7.2.0.beta3
         
     | 
| 
       5 
5 
     | 
    
         
             
            platform: ruby
         
     | 
| 
       6 
6 
     | 
    
         
             
            authors:
         
     | 
| 
       7 
7 
     | 
    
         
             
            - David Heinemeier Hansson
         
     | 
| 
       8 
8 
     | 
    
         
             
            autorequire:
         
     | 
| 
       9 
9 
     | 
    
         
             
            bindir: bin
         
     | 
| 
       10 
10 
     | 
    
         
             
            cert_chain: []
         
     | 
| 
       11 
     | 
    
         
            -
            date: 2024- 
     | 
| 
      
 11 
     | 
    
         
            +
            date: 2024-07-11 00:00:00.000000000 Z
         
     | 
| 
       12 
12 
     | 
    
         
             
            dependencies:
         
     | 
| 
       13 
13 
     | 
    
         
             
            - !ruby/object:Gem::Dependency
         
     | 
| 
       14 
14 
     | 
    
         
             
              name: activesupport
         
     | 
| 
         @@ -16,14 +16,14 @@ dependencies: 
     | 
|
| 
       16 
16 
     | 
    
         
             
                requirements:
         
     | 
| 
       17 
17 
     | 
    
         
             
                - - '='
         
     | 
| 
       18 
18 
     | 
    
         
             
                  - !ruby/object:Gem::Version
         
     | 
| 
       19 
     | 
    
         
            -
                    version: 7.2.0. 
     | 
| 
      
 19 
     | 
    
         
            +
                    version: 7.2.0.beta3
         
     | 
| 
       20 
20 
     | 
    
         
             
              type: :runtime
         
     | 
| 
       21 
21 
     | 
    
         
             
              prerelease: false
         
     | 
| 
       22 
22 
     | 
    
         
             
              version_requirements: !ruby/object:Gem::Requirement
         
     | 
| 
       23 
23 
     | 
    
         
             
                requirements:
         
     | 
| 
       24 
24 
     | 
    
         
             
                - - '='
         
     | 
| 
       25 
25 
     | 
    
         
             
                  - !ruby/object:Gem::Version
         
     | 
| 
       26 
     | 
    
         
            -
                    version: 7.2.0. 
     | 
| 
      
 26 
     | 
    
         
            +
                    version: 7.2.0.beta3
         
     | 
| 
       27 
27 
     | 
    
         
             
            - !ruby/object:Gem::Dependency
         
     | 
| 
       28 
28 
     | 
    
         
             
              name: globalid
         
     | 
| 
       29 
29 
     | 
    
         
             
              requirement: !ruby/object:Gem::Requirement
         
     | 
| 
         @@ -104,10 +104,10 @@ licenses: 
     | 
|
| 
       104 
104 
     | 
    
         
             
            - MIT
         
     | 
| 
       105 
105 
     | 
    
         
             
            metadata:
         
     | 
| 
       106 
106 
     | 
    
         
             
              bug_tracker_uri: https://github.com/rails/rails/issues
         
     | 
| 
       107 
     | 
    
         
            -
              changelog_uri: https://github.com/rails/rails/blob/v7.2.0. 
     | 
| 
       108 
     | 
    
         
            -
              documentation_uri: https://api.rubyonrails.org/v7.2.0. 
     | 
| 
      
 107 
     | 
    
         
            +
              changelog_uri: https://github.com/rails/rails/blob/v7.2.0.beta3/activejob/CHANGELOG.md
         
     | 
| 
      
 108 
     | 
    
         
            +
              documentation_uri: https://api.rubyonrails.org/v7.2.0.beta3/
         
     | 
| 
       109 
109 
     | 
    
         
             
              mailing_list_uri: https://discuss.rubyonrails.org/c/rubyonrails-talk
         
     | 
| 
       110 
     | 
    
         
            -
              source_code_uri: https://github.com/rails/rails/tree/v7.2.0. 
     | 
| 
      
 110 
     | 
    
         
            +
              source_code_uri: https://github.com/rails/rails/tree/v7.2.0.beta3/activejob
         
     | 
| 
       111 
111 
     | 
    
         
             
              rubygems_mfa_required: 'true'
         
     | 
| 
       112 
112 
     | 
    
         
             
            post_install_message:
         
     | 
| 
       113 
113 
     | 
    
         
             
            rdoc_options: []
         
     | 
| 
         @@ -120,11 +120,11 @@ required_ruby_version: !ruby/object:Gem::Requirement 
     | 
|
| 
       120 
120 
     | 
    
         
             
                  version: 3.1.0
         
     | 
| 
       121 
121 
     | 
    
         
             
            required_rubygems_version: !ruby/object:Gem::Requirement
         
     | 
| 
       122 
122 
     | 
    
         
             
              requirements:
         
     | 
| 
       123 
     | 
    
         
            -
              - - " 
     | 
| 
      
 123 
     | 
    
         
            +
              - - ">="
         
     | 
| 
       124 
124 
     | 
    
         
             
                - !ruby/object:Gem::Version
         
     | 
| 
       125 
     | 
    
         
            -
                  version:  
     | 
| 
      
 125 
     | 
    
         
            +
                  version: '0'
         
     | 
| 
       126 
126 
     | 
    
         
             
            requirements: []
         
     | 
| 
       127 
     | 
    
         
            -
            rubygems_version: 3. 
     | 
| 
      
 127 
     | 
    
         
            +
            rubygems_version: 3.5.11
         
     | 
| 
       128 
128 
     | 
    
         
             
            signing_key:
         
     | 
| 
       129 
129 
     | 
    
         
             
            specification_version: 4
         
     | 
| 
       130 
130 
     | 
    
         
             
            summary: Job framework with pluggable queues.
         
     |