newrelic_rpm 4.8.0.341 → 6.13.1
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +5 -5
- data/.github/ISSUE_TEMPLATE/bug_report.md +31 -0
- data/.github/ISSUE_TEMPLATE/config.yml +5 -0
- data/.github/ISSUE_TEMPLATE/feature_request.md +24 -0
- data/.github/actions/annotate/README.md +79 -0
- data/.github/actions/annotate/action.yml +6 -0
- data/.github/actions/annotate/dist/index.js +433 -0
- data/.github/actions/annotate/index.js +25 -0
- data/.github/actions/annotate/package-lock.json +172 -0
- data/.github/actions/annotate/package.json +30 -0
- data/.github/actions/annotate/pre-commit +5 -0
- data/.github/actions/build-ruby/README.md +79 -0
- data/.github/actions/build-ruby/action.yml +15 -0
- data/.github/actions/build-ruby/dist/index.js +52683 -0
- data/.github/actions/build-ruby/index.js +514 -0
- data/.github/actions/build-ruby/package-lock.json +581 -0
- data/.github/actions/build-ruby/package.json +32 -0
- data/.github/actions/build-ruby/pre-commit +5 -0
- data/.github/pull_request_template.md +16 -0
- data/.github/workflows/ci.yml +212 -0
- data/.github/workflows/pr_review_checklist.yml +22 -0
- data/.github/workflows/release.yml +78 -0
- data/.github/workflows/scripts/rubygems-authenticate.py +13 -0
- data/.github/workflows/scripts/rubygems-publish.rb +32 -0
- data/.github/workflows/snyk.yml +27 -0
- data/.github/workflows/stale.yml +21 -0
- data/.gitignore +9 -0
- data/.yardopts +4 -1
- data/CHANGELOG.md +868 -3
- data/CONTRIBUTING.md +106 -19
- data/Gemfile +6 -2
- data/Guardfile +18 -1
- data/LICENSE +208 -38
- data/README.md +81 -88
- data/ROADMAP.md +24 -0
- data/Rakefile +2 -0
- data/THIRD_PARTY_NOTICES.md +213 -0
- data/bin/nrdebug +1 -1
- data/config.dot +3 -12
- data/init.rb +1 -1
- data/install.rb +1 -1
- data/lib/new_relic/agent.rb +145 -31
- data/lib/new_relic/agent/adaptive_sampler.rb +104 -0
- data/lib/new_relic/agent/agent.rb +192 -190
- data/lib/new_relic/agent/agent_logger.rb +5 -1
- data/lib/new_relic/agent/attribute_filter.rb +85 -25
- data/lib/new_relic/agent/attribute_processing.rb +1 -1
- data/lib/new_relic/agent/attributes.rb +152 -0
- data/lib/new_relic/agent/audit_logger.rb +1 -1
- data/lib/new_relic/agent/autostart.rb +20 -15
- data/lib/new_relic/agent/chained_call.rb +1 -1
- data/lib/new_relic/agent/commands/agent_command.rb +1 -1
- data/lib/new_relic/agent/commands/agent_command_router.rb +3 -22
- data/lib/new_relic/agent/commands/thread_profiler_session.rb +1 -1
- data/lib/new_relic/agent/configuration.rb +1 -1
- data/lib/new_relic/agent/configuration/default_source.rb +375 -67
- data/lib/new_relic/agent/configuration/dotted_hash.rb +1 -1
- data/lib/new_relic/agent/configuration/environment_source.rb +5 -3
- data/lib/new_relic/agent/configuration/event_harvest_config.rb +45 -0
- data/lib/new_relic/agent/configuration/high_security_source.rb +2 -3
- data/lib/new_relic/agent/configuration/manager.rb +54 -43
- data/lib/new_relic/agent/configuration/manual_source.rb +1 -1
- data/lib/new_relic/agent/configuration/mask_defaults.rb +1 -1
- data/lib/new_relic/agent/configuration/security_policy_source.rb +238 -0
- data/lib/new_relic/agent/configuration/server_source.rb +46 -5
- data/lib/new_relic/agent/configuration/yaml_source.rb +12 -7
- data/lib/new_relic/agent/connect/request_builder.rb +61 -0
- data/lib/new_relic/agent/connect/response_handler.rb +61 -0
- data/lib/new_relic/agent/custom_event_aggregator.rb +17 -6
- data/lib/new_relic/agent/database.rb +21 -3
- data/lib/new_relic/agent/database/explain_plan_helpers.rb +12 -1
- data/lib/new_relic/agent/database/obfuscation_helpers.rb +2 -2
- data/lib/new_relic/agent/database/obfuscator.rb +1 -1
- data/lib/new_relic/agent/database/postgres_explain_obfuscator.rb +1 -1
- data/lib/new_relic/agent/datastores.rb +12 -11
- data/lib/new_relic/agent/datastores/metric_helper.rb +2 -3
- data/lib/new_relic/agent/datastores/mongo.rb +2 -2
- data/lib/new_relic/agent/datastores/mongo/event_formatter.rb +3 -3
- data/lib/new_relic/agent/datastores/mongo/metric_translator.rb +1 -1
- data/lib/new_relic/agent/datastores/mongo/obfuscator.rb +9 -9
- data/lib/new_relic/agent/datastores/mongo/statement_formatter.rb +1 -1
- data/lib/new_relic/agent/datastores/redis.rb +1 -1
- data/lib/new_relic/agent/deprecator.rb +1 -1
- data/lib/new_relic/agent/distributed_tracing.rb +216 -0
- data/lib/new_relic/agent/distributed_tracing/cross_app_payload.rb +44 -0
- data/lib/new_relic/agent/distributed_tracing/cross_app_tracing.rb +248 -0
- data/lib/new_relic/agent/distributed_tracing/distributed_trace_attributes.rb +84 -0
- data/lib/new_relic/agent/distributed_tracing/distributed_trace_metrics.rb +75 -0
- data/lib/new_relic/agent/distributed_tracing/distributed_trace_payload.rb +165 -0
- data/lib/new_relic/agent/distributed_tracing/distributed_trace_transport_type.rb +39 -0
- data/lib/new_relic/agent/distributed_tracing/trace_context.rb +246 -0
- data/lib/new_relic/agent/distributed_tracing/trace_context_payload.rb +126 -0
- data/lib/new_relic/agent/encoding_normalizer.rb +1 -1
- data/lib/new_relic/agent/error_collector.rb +51 -20
- data/lib/new_relic/agent/error_event_aggregator.rb +14 -7
- data/lib/new_relic/agent/error_trace_aggregator.rb +2 -1
- data/lib/new_relic/agent/event_aggregator.rb +34 -15
- data/lib/new_relic/agent/event_buffer.rb +1 -1
- data/lib/new_relic/agent/event_listener.rb +1 -1
- data/lib/new_relic/agent/event_loop.rb +1 -1
- data/lib/new_relic/agent/external.rb +31 -29
- data/lib/new_relic/agent/guid_generator.rb +28 -0
- data/lib/new_relic/agent/harvester.rb +1 -1
- data/lib/new_relic/agent/heap.rb +140 -0
- data/lib/new_relic/agent/hostname.rb +16 -2
- data/lib/new_relic/agent/http_clients/abstract.rb +82 -0
- data/lib/new_relic/agent/http_clients/curb_wrappers.rb +25 -20
- data/lib/new_relic/agent/http_clients/excon_wrappers.rb +29 -14
- data/lib/new_relic/agent/http_clients/http_rb_wrappers.rb +18 -22
- data/lib/new_relic/agent/http_clients/httpclient_wrappers.rb +11 -12
- data/lib/new_relic/agent/http_clients/net_http_wrappers.rb +17 -5
- data/lib/new_relic/agent/http_clients/typhoeus_wrappers.rb +5 -7
- data/lib/new_relic/agent/http_clients/uri_util.rb +12 -11
- data/lib/new_relic/agent/instrumentation.rb +1 -1
- data/lib/new_relic/agent/instrumentation/action_cable_subscriber.rb +26 -43
- data/lib/new_relic/agent/instrumentation/action_controller_subscriber.rb +56 -74
- data/lib/new_relic/agent/instrumentation/action_view_subscriber.rb +82 -56
- data/lib/new_relic/agent/instrumentation/active_job.rb +19 -17
- data/lib/new_relic/agent/instrumentation/active_merchant.rb +1 -1
- data/lib/new_relic/agent/instrumentation/active_record.rb +85 -38
- data/lib/new_relic/agent/instrumentation/active_record_helper.rb +82 -24
- data/lib/new_relic/agent/instrumentation/active_record_notifications.rb +168 -0
- data/lib/new_relic/agent/instrumentation/active_record_prepend.rb +102 -31
- data/lib/new_relic/agent/instrumentation/active_record_subscriber.rb +47 -57
- data/lib/new_relic/agent/instrumentation/active_storage.rb +23 -0
- data/lib/new_relic/agent/instrumentation/active_storage_subscriber.rb +63 -0
- data/lib/new_relic/agent/instrumentation/acts_as_solr.rb +24 -8
- data/lib/new_relic/agent/instrumentation/authlogic.rb +1 -1
- data/lib/new_relic/agent/instrumentation/bunny.rb +115 -44
- data/lib/new_relic/agent/instrumentation/controller_instrumentation.rb +18 -12
- data/lib/new_relic/agent/instrumentation/curb.rb +121 -35
- data/lib/new_relic/agent/instrumentation/data_mapper.rb +6 -4
- data/lib/new_relic/agent/instrumentation/delayed_job_instrumentation.rb +61 -25
- data/lib/new_relic/agent/instrumentation/excon.rb +2 -2
- data/lib/new_relic/agent/instrumentation/excon/connection.rb +8 -5
- data/lib/new_relic/agent/instrumentation/excon/middleware.rb +4 -3
- data/lib/new_relic/agent/instrumentation/grape.rb +46 -35
- data/lib/new_relic/agent/instrumentation/http.rb +8 -5
- data/lib/new_relic/agent/instrumentation/httpclient.rb +7 -5
- data/lib/new_relic/agent/instrumentation/ignore_actions.rb +1 -1
- data/lib/new_relic/agent/instrumentation/memcache.rb +5 -3
- data/lib/new_relic/agent/instrumentation/memcache/dalli.rb +10 -6
- data/lib/new_relic/agent/instrumentation/merb/controller.rb +1 -1
- data/lib/new_relic/agent/instrumentation/merb/errors.rb +1 -1
- data/lib/new_relic/agent/instrumentation/middleware_proxy.rb +13 -5
- data/lib/new_relic/agent/instrumentation/middleware_tracing.rb +20 -11
- data/lib/new_relic/agent/instrumentation/mongo.rb +11 -5
- data/lib/new_relic/agent/instrumentation/mongodb_command_subscriber.rb +39 -7
- data/lib/new_relic/agent/instrumentation/net.rb +60 -23
- data/lib/new_relic/agent/instrumentation/notifications_subscriber.rb +100 -0
- data/lib/new_relic/agent/instrumentation/padrino.rb +40 -16
- data/lib/new_relic/agent/instrumentation/passenger_instrumentation.rb +1 -1
- data/lib/new_relic/agent/instrumentation/queue_time.rb +1 -1
- data/lib/new_relic/agent/instrumentation/rack.rb +36 -13
- data/lib/new_relic/agent/instrumentation/rails/action_controller.rb +1 -1
- data/lib/new_relic/agent/instrumentation/rails/action_web_service.rb +1 -1
- data/lib/new_relic/agent/instrumentation/rails3/action_controller.rb +1 -1
- data/lib/new_relic/agent/instrumentation/rails_middleware.rb +1 -1
- data/lib/new_relic/agent/instrumentation/{rails5 → rails_notifications}/action_cable.rb +8 -5
- data/lib/new_relic/agent/instrumentation/{rails5 → rails_notifications}/action_controller.rb +4 -4
- data/lib/new_relic/agent/instrumentation/{rails4 → rails_notifications}/action_view.rb +4 -4
- data/lib/new_relic/agent/instrumentation/rainbows_instrumentation.rb +1 -1
- data/lib/new_relic/agent/instrumentation/rake.rb +56 -22
- data/lib/new_relic/agent/instrumentation/redis.rb +141 -56
- data/lib/new_relic/agent/instrumentation/resque.rb +21 -37
- data/lib/new_relic/agent/instrumentation/sequel.rb +2 -3
- data/lib/new_relic/agent/instrumentation/sequel_helper.rb +1 -1
- data/lib/new_relic/agent/instrumentation/sidekiq.rb +48 -24
- data/lib/new_relic/agent/instrumentation/sinatra.rb +62 -23
- data/lib/new_relic/agent/instrumentation/sinatra/ignorer.rb +1 -1
- data/lib/new_relic/agent/instrumentation/sinatra/transaction_namer.rb +1 -1
- data/lib/new_relic/agent/instrumentation/sunspot.rb +1 -1
- data/lib/new_relic/agent/instrumentation/typhoeus.rb +27 -10
- data/lib/new_relic/agent/internal_agent_error.rb +1 -1
- data/lib/new_relic/agent/javascript_instrumentor.rb +19 -16
- data/lib/new_relic/agent/log_once.rb +1 -1
- data/lib/new_relic/agent/logging.rb +139 -0
- data/lib/new_relic/agent/memory_logger.rb +1 -1
- data/lib/new_relic/agent/messaging.rb +15 -59
- data/lib/new_relic/agent/method_tracer.rb +42 -25
- data/lib/new_relic/agent/method_tracer_helpers.rb +5 -5
- data/lib/new_relic/agent/monitors.rb +27 -0
- data/lib/new_relic/agent/monitors/cross_app_monitor.rb +110 -0
- data/lib/new_relic/agent/monitors/distributed_tracing_monitor.rb +27 -0
- data/lib/new_relic/agent/{inbound_request_monitor.rb → monitors/inbound_request_monitor.rb} +4 -4
- data/lib/new_relic/agent/{synthetics_monitor.rb → monitors/synthetics_monitor.rb} +4 -7
- data/lib/new_relic/agent/new_relic_service.rb +174 -63
- data/lib/new_relic/agent/new_relic_service/encoders.rb +1 -1
- data/lib/new_relic/agent/new_relic_service/json_marshaller.rb +1 -2
- data/lib/new_relic/agent/new_relic_service/marshaller.rb +6 -27
- data/lib/new_relic/agent/new_relic_service/security_policy_settings.rb +61 -0
- data/lib/new_relic/agent/noticible_error.rb +22 -0
- data/lib/new_relic/agent/null_logger.rb +1 -1
- data/lib/new_relic/agent/obfuscator.rb +1 -1
- data/lib/new_relic/agent/parameter_filtering.rb +19 -6
- data/lib/new_relic/agent/payload_metric_mapping.rb +1 -1
- data/lib/new_relic/agent/pipe_channel_manager.rb +1 -1
- data/lib/new_relic/agent/pipe_service.rb +5 -1
- data/lib/new_relic/agent/prepend_supportability.rb +1 -1
- data/lib/new_relic/agent/priority_sampled_buffer.rb +95 -0
- data/lib/new_relic/agent/range_extensions.rb +1 -1
- data/lib/new_relic/agent/rules_engine.rb +1 -1
- data/lib/new_relic/agent/rules_engine/replacement_rule.rb +1 -1
- data/lib/new_relic/agent/rules_engine/segment_terms_rule.rb +1 -1
- data/lib/new_relic/agent/sampler.rb +1 -1
- data/lib/new_relic/agent/sampler_collection.rb +1 -1
- data/lib/new_relic/agent/samplers/cpu_sampler.rb +1 -1
- data/lib/new_relic/agent/samplers/delayed_job_sampler.rb +1 -1
- data/lib/new_relic/agent/samplers/memory_sampler.rb +1 -1
- data/lib/new_relic/agent/samplers/object_sampler.rb +1 -1
- data/lib/new_relic/agent/samplers/vm_sampler.rb +1 -1
- data/lib/new_relic/agent/span_event_aggregator.rb +49 -0
- data/lib/new_relic/agent/span_event_primitive.rb +206 -0
- data/lib/new_relic/agent/sql_sampler.rb +23 -7
- data/lib/new_relic/agent/stats.rb +1 -1
- data/lib/new_relic/agent/stats_engine.rb +4 -4
- data/lib/new_relic/agent/stats_engine/gc_profiler.rb +1 -1
- data/lib/new_relic/agent/stats_engine/stats_hash.rb +1 -1
- data/lib/new_relic/agent/supported_versions.rb +3 -3
- data/lib/new_relic/agent/synthetics_event_aggregator.rb +6 -13
- data/lib/new_relic/agent/system_info.rb +18 -8
- data/lib/new_relic/agent/threading/agent_thread.rb +6 -4
- data/lib/new_relic/agent/threading/backtrace_node.rb +1 -1
- data/lib/new_relic/agent/threading/backtrace_service.rb +4 -4
- data/lib/new_relic/agent/threading/thread_profile.rb +10 -24
- data/lib/new_relic/agent/timestamp_sampled_buffer.rb +19 -0
- data/lib/new_relic/agent/tracer.rb +509 -0
- data/lib/new_relic/agent/transaction.rb +191 -278
- data/lib/new_relic/agent/transaction/abstract_segment.rb +38 -5
- data/lib/new_relic/agent/transaction/datastore_segment.rb +30 -5
- data/lib/new_relic/agent/transaction/distributed_tracer.rb +171 -0
- data/lib/new_relic/agent/transaction/distributed_tracing.rb +123 -71
- data/lib/new_relic/agent/transaction/external_request_segment.rb +41 -89
- data/lib/new_relic/agent/transaction/message_broker_segment.rb +7 -8
- data/lib/new_relic/agent/transaction/request_attributes.rb +1 -1
- data/lib/new_relic/agent/transaction/segment.rb +42 -2
- data/lib/new_relic/agent/transaction/slowest_sample_buffer.rb +1 -1
- data/lib/new_relic/agent/transaction/synthetics_sample_buffer.rb +1 -1
- data/lib/new_relic/agent/transaction/trace.rb +7 -23
- data/lib/new_relic/agent/transaction/trace_builder.rb +1 -2
- data/lib/new_relic/agent/transaction/trace_context.rb +168 -0
- data/lib/new_relic/agent/transaction/trace_node.rb +12 -8
- data/lib/new_relic/agent/transaction/tracing.rb +2 -100
- data/lib/new_relic/agent/transaction/transaction_sample_buffer.rb +1 -1
- data/lib/new_relic/agent/transaction_error_primitive.rb +13 -22
- data/lib/new_relic/agent/transaction_event_aggregator.rb +7 -16
- data/lib/new_relic/agent/transaction_event_primitive.rb +31 -42
- data/lib/new_relic/agent/transaction_event_recorder.rb +8 -16
- data/lib/new_relic/agent/transaction_metrics.rb +1 -1
- data/lib/new_relic/agent/transaction_sampler.rb +3 -14
- data/lib/new_relic/agent/transaction_time_aggregator.rb +155 -0
- data/lib/new_relic/agent/utilization/aws.rb +1 -1
- data/lib/new_relic/agent/utilization/azure.rb +1 -1
- data/lib/new_relic/agent/utilization/gcp.rb +1 -1
- data/lib/new_relic/agent/utilization/pcf.rb +1 -1
- data/lib/new_relic/agent/utilization/vendor.rb +1 -1
- data/lib/new_relic/agent/utilization_data.rb +37 -2
- data/lib/new_relic/agent/vm.rb +1 -1
- data/lib/new_relic/agent/vm/jruby_vm.rb +1 -1
- data/lib/new_relic/agent/vm/monotonic_gc_profiler.rb +1 -1
- data/lib/new_relic/agent/vm/mri_vm.rb +1 -1
- data/lib/new_relic/agent/vm/snapshot.rb +1 -1
- data/lib/new_relic/agent/worker_loop.rb +1 -1
- data/lib/new_relic/cli/command.rb +1 -1
- data/lib/new_relic/cli/commands/deployments.rb +2 -2
- data/lib/new_relic/cli/commands/install.rb +4 -3
- data/lib/new_relic/coerce.rb +32 -7
- data/lib/new_relic/collection_helper.rb +1 -1
- data/lib/new_relic/constants.rb +38 -0
- data/lib/new_relic/control.rb +1 -1
- data/lib/new_relic/control/class_methods.rb +8 -2
- data/lib/new_relic/control/frameworks.rb +1 -1
- data/lib/new_relic/control/frameworks/external.rb +1 -1
- data/lib/new_relic/control/frameworks/merb.rb +1 -1
- data/lib/new_relic/control/frameworks/rails.rb +1 -1
- data/lib/new_relic/control/frameworks/rails3.rb +1 -1
- data/lib/new_relic/control/frameworks/rails4.rb +1 -1
- data/lib/new_relic/control/frameworks/{rails5.rb → rails_notifications.rb} +2 -2
- data/lib/new_relic/control/frameworks/ruby.rb +1 -1
- data/lib/new_relic/control/frameworks/sinatra.rb +1 -1
- data/lib/new_relic/control/instance_methods.rb +30 -4
- data/lib/new_relic/control/instrumentation.rb +1 -1
- data/lib/new_relic/control/server_methods.rb +1 -1
- data/lib/new_relic/delayed_job_injection.rb +1 -1
- data/lib/new_relic/dependency_detection.rb +5 -5
- data/lib/new_relic/environment_report.rb +6 -2
- data/lib/new_relic/helper.rb +1 -1
- data/lib/new_relic/language_support.rb +1 -1
- data/lib/new_relic/latest_changes.rb +4 -4
- data/lib/new_relic/local_environment.rb +1 -1
- data/lib/new_relic/metric_data.rb +1 -1
- data/lib/new_relic/metric_spec.rb +1 -1
- data/lib/new_relic/noticed_error.rb +39 -18
- data/lib/new_relic/rack.rb +1 -1
- data/lib/new_relic/rack/agent_hooks.rb +1 -1
- data/lib/new_relic/rack/agent_middleware.rb +2 -2
- data/lib/new_relic/rack/browser_monitoring.rb +16 -9
- data/lib/new_relic/recipes.rb +1 -1
- data/lib/new_relic/recipes/capistrano3.rb +6 -3
- data/lib/new_relic/recipes/capistrano_legacy.rb +1 -1
- data/lib/new_relic/supportability_helper.rb +15 -1
- data/lib/new_relic/version.rb +4 -4
- data/lib/newrelic_rpm.rb +1 -1
- data/lib/sequel/extensions/newrelic_instrumentation.rb +3 -3
- data/lib/sequel/plugins/newrelic_instrumentation.rb +2 -2
- data/lib/tasks/all.rb +1 -1
- data/lib/tasks/config.rake +1 -2
- data/lib/tasks/multiverse.rb +35 -1
- data/lib/tasks/newrelic.rb +1 -1
- data/lib/tasks/tests.rake +6 -1
- data/newrelic_rpm.gemspec +23 -17
- data/recipes/newrelic.rb +1 -1
- data/test/agent_helper.rb +357 -78
- metadata +154 -60
- data/.travis.yml +0 -173
- data/lib/new_relic/agent/busy_calculator.rb +0 -117
- data/lib/new_relic/agent/commands/xray_session.rb +0 -55
- data/lib/new_relic/agent/commands/xray_session_collection.rb +0 -161
- data/lib/new_relic/agent/cross_app_monitor.rb +0 -140
- data/lib/new_relic/agent/cross_app_tracing.rb +0 -143
- data/lib/new_relic/agent/distributed_trace_monitor.rb +0 -29
- data/lib/new_relic/agent/distributed_trace_payload.rb +0 -223
- data/lib/new_relic/agent/distributed_trace_priority_sampled_buffer.rb +0 -72
- data/lib/new_relic/agent/http_clients/abstract_request.rb +0 -31
- data/lib/new_relic/agent/instrumentation/active_record_4.rb +0 -42
- data/lib/new_relic/agent/instrumentation/active_record_5.rb +0 -36
- data/lib/new_relic/agent/instrumentation/evented_subscriber.rb +0 -104
- data/lib/new_relic/agent/instrumentation/rails4/action_controller.rb +0 -32
- data/lib/new_relic/agent/instrumentation/rails5/action_view.rb +0 -27
- data/lib/new_relic/agent/sampled_buffer.rb +0 -68
- data/lib/new_relic/agent/sized_buffer.rb +0 -23
- data/lib/new_relic/agent/synthetics_event_buffer.rb +0 -40
- data/lib/new_relic/agent/throughput_monitor.rb +0 -59
- data/lib/new_relic/agent/transaction/attributes.rb +0 -153
- data/lib/new_relic/agent/transaction/xray_sample_buffer.rb +0 -64
- data/lib/new_relic/agent/transaction_state.rb +0 -145
- data/lib/new_relic/agent/transaction_timings.rb +0 -57
- data/lib/new_relic/metrics.rb +0 -13
- data/lib/tasks/versions.html.erb +0 -28
- data/lib/tasks/versions.postface.html +0 -8
- data/lib/tasks/versions.preface.html +0 -9
- data/lib/tasks/versions.rake +0 -65
- data/lib/tasks/versions.txt.erb +0 -14
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
|
-
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
2
|
+
SHA256:
|
3
|
+
metadata.gz: 97813a208eb3ad21826b8069ad1978523f4fc24d1c823e2ef887a33242f8dc93
|
4
|
+
data.tar.gz: 8ccc2df94bcffa988b31ffb8f4015b2ce6ab7997c8690386e3ef6a77fcdefe6b
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 609270a7843fc1b63aef90f1e5892532f8e28e2bfbbbb077e7b3024851931ca62f68ef18bc6c2c1f5abe35db5f01d6c5d438553a7d0761a07f08d40d341604af
|
7
|
+
data.tar.gz: 44413974581e5334c04ed78d8c6802d0ffef07ec7fbfc20e785cabf6bb45b3331e01f6499d70da57aee368e69e50c1c0986d672b4c68760f1c4b09d55da4faa6
|
@@ -0,0 +1,31 @@
|
|
1
|
+
---
|
2
|
+
name: Bug report
|
3
|
+
about: Create a report to help us improve
|
4
|
+
title: ''
|
5
|
+
labels: ''
|
6
|
+
assignees: ''
|
7
|
+
|
8
|
+
---
|
9
|
+
|
10
|
+
^^ Provide a general summary of the issue in the title above. ^^
|
11
|
+
|
12
|
+
## Description
|
13
|
+
Describe the problem you're encountering.
|
14
|
+
TIP: Do NOT share sensitive information, whether personal, proprietary, or otherwise!
|
15
|
+
|
16
|
+
## Expected Behavior
|
17
|
+
Tell us what you expected to happen.
|
18
|
+
|
19
|
+
## [Troubleshooting](https://discuss.newrelic.com/t/troubleshooting-frameworks/108787) or [NR Diag](https://docs.newrelic.com/docs/using-new-relic/cross-product-functions/troubleshooting/new-relic-diagnostics) results
|
20
|
+
Provide any other relevant log data.
|
21
|
+
TIP: Scrub logs and diagnostic information for sensitive information
|
22
|
+
|
23
|
+
## Steps to Reproduce
|
24
|
+
Please be as specific as possible.
|
25
|
+
TIP: Link a sample application that demonstrates the issue.
|
26
|
+
|
27
|
+
## Your Environment
|
28
|
+
Include as many relevant details about your environment as possible including the running version of the Ruby agent, the Ruby version being used and any other relevant environment information
|
29
|
+
|
30
|
+
## Additional context
|
31
|
+
Add any other context about the problem here. For example, relevant community posts or support tickets.
|
@@ -0,0 +1,24 @@
|
|
1
|
+
---
|
2
|
+
name: Feature request
|
3
|
+
about: Suggest an idea for this project
|
4
|
+
title: ''
|
5
|
+
labels: ''
|
6
|
+
assignees: ''
|
7
|
+
|
8
|
+
---
|
9
|
+
|
10
|
+
### Is your feature request related to a problem? Please describe.
|
11
|
+
A clear and concise description of what the problem is. Ex. I'm always frustrated when [...]
|
12
|
+
|
13
|
+
### Feature Description
|
14
|
+
A clear and concise description of the feature you want or need.
|
15
|
+
|
16
|
+
### Describe Alternatives
|
17
|
+
A clear and concise description of any alternative solutions or features you've considered. Are there examples you could link us to?
|
18
|
+
|
19
|
+
### Additional context
|
20
|
+
Add any other context here.
|
21
|
+
|
22
|
+
### Priority
|
23
|
+
Please help us better understand this feature request by choosing a priority from the following options:
|
24
|
+
[Nice to Have, Really Want, Must Have, Blocker]
|
@@ -0,0 +1,79 @@
|
|
1
|
+
|
2
|
+
# Install Node
|
3
|
+
|
4
|
+
Using Homebrew, install Node (npm will be installed with Node):
|
5
|
+
|
6
|
+
```
|
7
|
+
brew install node
|
8
|
+
```
|
9
|
+
|
10
|
+
# Install Yarn
|
11
|
+
|
12
|
+
Yarn provides dependency management, so install it:
|
13
|
+
|
14
|
+
```
|
15
|
+
brew install yarn
|
16
|
+
```
|
17
|
+
|
18
|
+
# Install NCC
|
19
|
+
|
20
|
+
NCC is used to compile the *.js into a dist/index.js
|
21
|
+
|
22
|
+
```
|
23
|
+
npm i -g @zeit/ncc
|
24
|
+
```
|
25
|
+
|
26
|
+
# Build the dist/index.js
|
27
|
+
|
28
|
+
```
|
29
|
+
yarn run package
|
30
|
+
```
|
31
|
+
|
32
|
+
# Installing new javascript packages
|
33
|
+
|
34
|
+
Adding new javascript packages is fairly straightforward. If you're adding a github @actions/xxx package,
|
35
|
+
simply refer to it by its short-hand name:
|
36
|
+
|
37
|
+
```
|
38
|
+
npm install @actions/core
|
39
|
+
```
|
40
|
+
|
41
|
+
# Optional pre-commit hook
|
42
|
+
|
43
|
+
A pre-commit hook is provided that can help keep dist/index.js in tune with local changes
|
44
|
+
|
45
|
+
|
46
|
+
# Using Node as a REPL
|
47
|
+
|
48
|
+
If you're developing or working on the index.js script, it can be handy to try out stuff
|
49
|
+
locally. To do that, use Node to start up a REPL shell by running it from the action's folder:
|
50
|
+
|
51
|
+
```
|
52
|
+
cd .github/workflow/actions/annotate
|
53
|
+
node
|
54
|
+
```
|
55
|
+
|
56
|
+
Example session:
|
57
|
+
|
58
|
+
```javascript
|
59
|
+
Welcome to Node.js v14.3.0.
|
60
|
+
Type ".help" for more information.
|
61
|
+
> const os = require('os')
|
62
|
+
undefined
|
63
|
+
> const fs = require('fs')
|
64
|
+
undefined
|
65
|
+
> const path = require('path')
|
66
|
+
undefined
|
67
|
+
>
|
68
|
+
> const core = require('@actions/core')
|
69
|
+
undefined
|
70
|
+
> core.startGroup("hello")
|
71
|
+
::group::hello
|
72
|
+
undefined
|
73
|
+
> console.debug("hello")
|
74
|
+
hello
|
75
|
+
undefined
|
76
|
+
> core.endGroup()
|
77
|
+
::endgroup::
|
78
|
+
undefined
|
79
|
+
```
|
@@ -0,0 +1,433 @@
|
|
1
|
+
module.exports =
|
2
|
+
/******/ (function(modules, runtime) { // webpackBootstrap
|
3
|
+
/******/ "use strict";
|
4
|
+
/******/ // The module cache
|
5
|
+
/******/ var installedModules = {};
|
6
|
+
/******/
|
7
|
+
/******/ // The require function
|
8
|
+
/******/ function __webpack_require__(moduleId) {
|
9
|
+
/******/
|
10
|
+
/******/ // Check if module is in cache
|
11
|
+
/******/ if(installedModules[moduleId]) {
|
12
|
+
/******/ return installedModules[moduleId].exports;
|
13
|
+
/******/ }
|
14
|
+
/******/ // Create a new module (and put it into the cache)
|
15
|
+
/******/ var module = installedModules[moduleId] = {
|
16
|
+
/******/ i: moduleId,
|
17
|
+
/******/ l: false,
|
18
|
+
/******/ exports: {}
|
19
|
+
/******/ };
|
20
|
+
/******/
|
21
|
+
/******/ // Execute the module function
|
22
|
+
/******/ var threw = true;
|
23
|
+
/******/ try {
|
24
|
+
/******/ modules[moduleId].call(module.exports, module, module.exports, __webpack_require__);
|
25
|
+
/******/ threw = false;
|
26
|
+
/******/ } finally {
|
27
|
+
/******/ if(threw) delete installedModules[moduleId];
|
28
|
+
/******/ }
|
29
|
+
/******/
|
30
|
+
/******/ // Flag the module as loaded
|
31
|
+
/******/ module.l = true;
|
32
|
+
/******/
|
33
|
+
/******/ // Return the exports of the module
|
34
|
+
/******/ return module.exports;
|
35
|
+
/******/ }
|
36
|
+
/******/
|
37
|
+
/******/
|
38
|
+
/******/ __webpack_require__.ab = __dirname + "/";
|
39
|
+
/******/
|
40
|
+
/******/ // the startup function
|
41
|
+
/******/ function startup() {
|
42
|
+
/******/ // Load entry module and return exports
|
43
|
+
/******/ return __webpack_require__(305);
|
44
|
+
/******/ };
|
45
|
+
/******/
|
46
|
+
/******/ // run startup
|
47
|
+
/******/ return startup();
|
48
|
+
/******/ })
|
49
|
+
/************************************************************************/
|
50
|
+
/******/ ({
|
51
|
+
|
52
|
+
/***/ 87:
|
53
|
+
/***/ (function(module) {
|
54
|
+
|
55
|
+
module.exports = require("os");
|
56
|
+
|
57
|
+
/***/ }),
|
58
|
+
|
59
|
+
/***/ 305:
|
60
|
+
/***/ (function(__unusedmodule, __unusedexports, __webpack_require__) {
|
61
|
+
|
62
|
+
const fs = __webpack_require__(747)
|
63
|
+
const core = __webpack_require__(968)
|
64
|
+
const command = __webpack_require__(823)
|
65
|
+
|
66
|
+
async function main() {
|
67
|
+
const workspacePath = process.env.GITHUB_WORKSPACE
|
68
|
+
const errorFilename = `${workspacePath}/errors.txt`
|
69
|
+
|
70
|
+
try {
|
71
|
+
|
72
|
+
if (fs.existsSync(errorFilename)) {
|
73
|
+
let lines = fs.readFileSync(errorFilename).toString('utf8')
|
74
|
+
command.issueCommand('error', undefined, lines)
|
75
|
+
}
|
76
|
+
else {
|
77
|
+
core.info(`No ${errorFilename} present. Skipping!`)
|
78
|
+
}
|
79
|
+
}
|
80
|
+
catch (error) {
|
81
|
+
core.setFailed(`Action failed with error ${error}`)
|
82
|
+
}
|
83
|
+
|
84
|
+
}
|
85
|
+
|
86
|
+
main()
|
87
|
+
|
88
|
+
|
89
|
+
/***/ }),
|
90
|
+
|
91
|
+
/***/ 622:
|
92
|
+
/***/ (function(module) {
|
93
|
+
|
94
|
+
module.exports = require("path");
|
95
|
+
|
96
|
+
/***/ }),
|
97
|
+
|
98
|
+
/***/ 747:
|
99
|
+
/***/ (function(module) {
|
100
|
+
|
101
|
+
module.exports = require("fs");
|
102
|
+
|
103
|
+
/***/ }),
|
104
|
+
|
105
|
+
/***/ 823:
|
106
|
+
/***/ (function(__unusedmodule, exports, __webpack_require__) {
|
107
|
+
|
108
|
+
"use strict";
|
109
|
+
|
110
|
+
var __importStar = (this && this.__importStar) || function (mod) {
|
111
|
+
if (mod && mod.__esModule) return mod;
|
112
|
+
var result = {};
|
113
|
+
if (mod != null) for (var k in mod) if (Object.hasOwnProperty.call(mod, k)) result[k] = mod[k];
|
114
|
+
result["default"] = mod;
|
115
|
+
return result;
|
116
|
+
};
|
117
|
+
Object.defineProperty(exports, "__esModule", { value: true });
|
118
|
+
const os = __importStar(__webpack_require__(87));
|
119
|
+
/**
|
120
|
+
* Commands
|
121
|
+
*
|
122
|
+
* Command Format:
|
123
|
+
* ::name key=value,key=value::message
|
124
|
+
*
|
125
|
+
* Examples:
|
126
|
+
* ::warning::This is the message
|
127
|
+
* ::set-env name=MY_VAR::some value
|
128
|
+
*/
|
129
|
+
function issueCommand(command, properties, message) {
|
130
|
+
const cmd = new Command(command, properties, message);
|
131
|
+
process.stdout.write(cmd.toString() + os.EOL);
|
132
|
+
}
|
133
|
+
exports.issueCommand = issueCommand;
|
134
|
+
function issue(name, message = '') {
|
135
|
+
issueCommand(name, {}, message);
|
136
|
+
}
|
137
|
+
exports.issue = issue;
|
138
|
+
const CMD_STRING = '::';
|
139
|
+
class Command {
|
140
|
+
constructor(command, properties, message) {
|
141
|
+
if (!command) {
|
142
|
+
command = 'missing.command';
|
143
|
+
}
|
144
|
+
this.command = command;
|
145
|
+
this.properties = properties;
|
146
|
+
this.message = message;
|
147
|
+
}
|
148
|
+
toString() {
|
149
|
+
let cmdStr = CMD_STRING + this.command;
|
150
|
+
if (this.properties && Object.keys(this.properties).length > 0) {
|
151
|
+
cmdStr += ' ';
|
152
|
+
let first = true;
|
153
|
+
for (const key in this.properties) {
|
154
|
+
if (this.properties.hasOwnProperty(key)) {
|
155
|
+
const val = this.properties[key];
|
156
|
+
if (val) {
|
157
|
+
if (first) {
|
158
|
+
first = false;
|
159
|
+
}
|
160
|
+
else {
|
161
|
+
cmdStr += ',';
|
162
|
+
}
|
163
|
+
cmdStr += `${key}=${escapeProperty(val)}`;
|
164
|
+
}
|
165
|
+
}
|
166
|
+
}
|
167
|
+
}
|
168
|
+
cmdStr += `${CMD_STRING}${escapeData(this.message)}`;
|
169
|
+
return cmdStr;
|
170
|
+
}
|
171
|
+
}
|
172
|
+
/**
|
173
|
+
* Sanitizes an input into a string so it can be passed into issueCommand safely
|
174
|
+
* @param input input to sanitize into a string
|
175
|
+
*/
|
176
|
+
function toCommandValue(input) {
|
177
|
+
if (input === null || input === undefined) {
|
178
|
+
return '';
|
179
|
+
}
|
180
|
+
else if (typeof input === 'string' || input instanceof String) {
|
181
|
+
return input;
|
182
|
+
}
|
183
|
+
return JSON.stringify(input);
|
184
|
+
}
|
185
|
+
exports.toCommandValue = toCommandValue;
|
186
|
+
function escapeData(s) {
|
187
|
+
return toCommandValue(s)
|
188
|
+
.replace(/%/g, '%25')
|
189
|
+
.replace(/\r/g, '%0D')
|
190
|
+
.replace(/\n/g, '%0A');
|
191
|
+
}
|
192
|
+
function escapeProperty(s) {
|
193
|
+
return toCommandValue(s)
|
194
|
+
.replace(/%/g, '%25')
|
195
|
+
.replace(/\r/g, '%0D')
|
196
|
+
.replace(/\n/g, '%0A')
|
197
|
+
.replace(/:/g, '%3A')
|
198
|
+
.replace(/,/g, '%2C');
|
199
|
+
}
|
200
|
+
//# sourceMappingURL=command.js.map
|
201
|
+
|
202
|
+
/***/ }),
|
203
|
+
|
204
|
+
/***/ 968:
|
205
|
+
/***/ (function(__unusedmodule, exports, __webpack_require__) {
|
206
|
+
|
207
|
+
"use strict";
|
208
|
+
|
209
|
+
var __awaiter = (this && this.__awaiter) || function (thisArg, _arguments, P, generator) {
|
210
|
+
function adopt(value) { return value instanceof P ? value : new P(function (resolve) { resolve(value); }); }
|
211
|
+
return new (P || (P = Promise))(function (resolve, reject) {
|
212
|
+
function fulfilled(value) { try { step(generator.next(value)); } catch (e) { reject(e); } }
|
213
|
+
function rejected(value) { try { step(generator["throw"](value)); } catch (e) { reject(e); } }
|
214
|
+
function step(result) { result.done ? resolve(result.value) : adopt(result.value).then(fulfilled, rejected); }
|
215
|
+
step((generator = generator.apply(thisArg, _arguments || [])).next());
|
216
|
+
});
|
217
|
+
};
|
218
|
+
var __importStar = (this && this.__importStar) || function (mod) {
|
219
|
+
if (mod && mod.__esModule) return mod;
|
220
|
+
var result = {};
|
221
|
+
if (mod != null) for (var k in mod) if (Object.hasOwnProperty.call(mod, k)) result[k] = mod[k];
|
222
|
+
result["default"] = mod;
|
223
|
+
return result;
|
224
|
+
};
|
225
|
+
Object.defineProperty(exports, "__esModule", { value: true });
|
226
|
+
const command_1 = __webpack_require__(823);
|
227
|
+
const os = __importStar(__webpack_require__(87));
|
228
|
+
const path = __importStar(__webpack_require__(622));
|
229
|
+
/**
|
230
|
+
* The code to exit an action
|
231
|
+
*/
|
232
|
+
var ExitCode;
|
233
|
+
(function (ExitCode) {
|
234
|
+
/**
|
235
|
+
* A code indicating that the action was successful
|
236
|
+
*/
|
237
|
+
ExitCode[ExitCode["Success"] = 0] = "Success";
|
238
|
+
/**
|
239
|
+
* A code indicating that the action was a failure
|
240
|
+
*/
|
241
|
+
ExitCode[ExitCode["Failure"] = 1] = "Failure";
|
242
|
+
})(ExitCode = exports.ExitCode || (exports.ExitCode = {}));
|
243
|
+
//-----------------------------------------------------------------------
|
244
|
+
// Variables
|
245
|
+
//-----------------------------------------------------------------------
|
246
|
+
/**
|
247
|
+
* Sets env variable for this action and future actions in the job
|
248
|
+
* @param name the name of the variable to set
|
249
|
+
* @param val the value of the variable. Non-string values will be converted to a string via JSON.stringify
|
250
|
+
*/
|
251
|
+
// eslint-disable-next-line @typescript-eslint/no-explicit-any
|
252
|
+
function exportVariable(name, val) {
|
253
|
+
const convertedVal = command_1.toCommandValue(val);
|
254
|
+
process.env[name] = convertedVal;
|
255
|
+
command_1.issueCommand('set-env', { name }, convertedVal);
|
256
|
+
}
|
257
|
+
exports.exportVariable = exportVariable;
|
258
|
+
/**
|
259
|
+
* Registers a secret which will get masked from logs
|
260
|
+
* @param secret value of the secret
|
261
|
+
*/
|
262
|
+
function setSecret(secret) {
|
263
|
+
command_1.issueCommand('add-mask', {}, secret);
|
264
|
+
}
|
265
|
+
exports.setSecret = setSecret;
|
266
|
+
/**
|
267
|
+
* Prepends inputPath to the PATH (for this action and future actions)
|
268
|
+
* @param inputPath
|
269
|
+
*/
|
270
|
+
function addPath(inputPath) {
|
271
|
+
command_1.issueCommand('add-path', {}, inputPath);
|
272
|
+
process.env['PATH'] = `${inputPath}${path.delimiter}${process.env['PATH']}`;
|
273
|
+
}
|
274
|
+
exports.addPath = addPath;
|
275
|
+
/**
|
276
|
+
* Gets the value of an input. The value is also trimmed.
|
277
|
+
*
|
278
|
+
* @param name name of the input to get
|
279
|
+
* @param options optional. See InputOptions.
|
280
|
+
* @returns string
|
281
|
+
*/
|
282
|
+
function getInput(name, options) {
|
283
|
+
const val = process.env[`INPUT_${name.replace(/ /g, '_').toUpperCase()}`] || '';
|
284
|
+
if (options && options.required && !val) {
|
285
|
+
throw new Error(`Input required and not supplied: ${name}`);
|
286
|
+
}
|
287
|
+
return val.trim();
|
288
|
+
}
|
289
|
+
exports.getInput = getInput;
|
290
|
+
/**
|
291
|
+
* Sets the value of an output.
|
292
|
+
*
|
293
|
+
* @param name name of the output to set
|
294
|
+
* @param value value to store. Non-string values will be converted to a string via JSON.stringify
|
295
|
+
*/
|
296
|
+
// eslint-disable-next-line @typescript-eslint/no-explicit-any
|
297
|
+
function setOutput(name, value) {
|
298
|
+
command_1.issueCommand('set-output', { name }, value);
|
299
|
+
}
|
300
|
+
exports.setOutput = setOutput;
|
301
|
+
/**
|
302
|
+
* Enables or disables the echoing of commands into stdout for the rest of the step.
|
303
|
+
* Echoing is disabled by default if ACTIONS_STEP_DEBUG is not set.
|
304
|
+
*
|
305
|
+
*/
|
306
|
+
function setCommandEcho(enabled) {
|
307
|
+
command_1.issue('echo', enabled ? 'on' : 'off');
|
308
|
+
}
|
309
|
+
exports.setCommandEcho = setCommandEcho;
|
310
|
+
//-----------------------------------------------------------------------
|
311
|
+
// Results
|
312
|
+
//-----------------------------------------------------------------------
|
313
|
+
/**
|
314
|
+
* Sets the action status to failed.
|
315
|
+
* When the action exits it will be with an exit code of 1
|
316
|
+
* @param message add error issue message
|
317
|
+
*/
|
318
|
+
function setFailed(message) {
|
319
|
+
process.exitCode = ExitCode.Failure;
|
320
|
+
error(message);
|
321
|
+
}
|
322
|
+
exports.setFailed = setFailed;
|
323
|
+
//-----------------------------------------------------------------------
|
324
|
+
// Logging Commands
|
325
|
+
//-----------------------------------------------------------------------
|
326
|
+
/**
|
327
|
+
* Gets whether Actions Step Debug is on or not
|
328
|
+
*/
|
329
|
+
function isDebug() {
|
330
|
+
return process.env['RUNNER_DEBUG'] === '1';
|
331
|
+
}
|
332
|
+
exports.isDebug = isDebug;
|
333
|
+
/**
|
334
|
+
* Writes debug message to user log
|
335
|
+
* @param message debug message
|
336
|
+
*/
|
337
|
+
function debug(message) {
|
338
|
+
command_1.issueCommand('debug', {}, message);
|
339
|
+
}
|
340
|
+
exports.debug = debug;
|
341
|
+
/**
|
342
|
+
* Adds an error issue
|
343
|
+
* @param message error issue message. Errors will be converted to string via toString()
|
344
|
+
*/
|
345
|
+
function error(message) {
|
346
|
+
command_1.issue('error', message instanceof Error ? message.toString() : message);
|
347
|
+
}
|
348
|
+
exports.error = error;
|
349
|
+
/**
|
350
|
+
* Adds an warning issue
|
351
|
+
* @param message warning issue message. Errors will be converted to string via toString()
|
352
|
+
*/
|
353
|
+
function warning(message) {
|
354
|
+
command_1.issue('warning', message instanceof Error ? message.toString() : message);
|
355
|
+
}
|
356
|
+
exports.warning = warning;
|
357
|
+
/**
|
358
|
+
* Writes info to log with console.log.
|
359
|
+
* @param message info message
|
360
|
+
*/
|
361
|
+
function info(message) {
|
362
|
+
process.stdout.write(message + os.EOL);
|
363
|
+
}
|
364
|
+
exports.info = info;
|
365
|
+
/**
|
366
|
+
* Begin an output group.
|
367
|
+
*
|
368
|
+
* Output until the next `groupEnd` will be foldable in this group
|
369
|
+
*
|
370
|
+
* @param name The name of the output group
|
371
|
+
*/
|
372
|
+
function startGroup(name) {
|
373
|
+
command_1.issue('group', name);
|
374
|
+
}
|
375
|
+
exports.startGroup = startGroup;
|
376
|
+
/**
|
377
|
+
* End an output group.
|
378
|
+
*/
|
379
|
+
function endGroup() {
|
380
|
+
command_1.issue('endgroup');
|
381
|
+
}
|
382
|
+
exports.endGroup = endGroup;
|
383
|
+
/**
|
384
|
+
* Wrap an asynchronous function call in a group.
|
385
|
+
*
|
386
|
+
* Returns the same type as the function itself.
|
387
|
+
*
|
388
|
+
* @param name The name of the group
|
389
|
+
* @param fn The function to wrap in the group
|
390
|
+
*/
|
391
|
+
function group(name, fn) {
|
392
|
+
return __awaiter(this, void 0, void 0, function* () {
|
393
|
+
startGroup(name);
|
394
|
+
let result;
|
395
|
+
try {
|
396
|
+
result = yield fn();
|
397
|
+
}
|
398
|
+
finally {
|
399
|
+
endGroup();
|
400
|
+
}
|
401
|
+
return result;
|
402
|
+
});
|
403
|
+
}
|
404
|
+
exports.group = group;
|
405
|
+
//-----------------------------------------------------------------------
|
406
|
+
// Wrapper action state
|
407
|
+
//-----------------------------------------------------------------------
|
408
|
+
/**
|
409
|
+
* Saves state for current action, the state can only be retrieved by this action's post job execution.
|
410
|
+
*
|
411
|
+
* @param name name of the state to store
|
412
|
+
* @param value value to store. Non-string values will be converted to a string via JSON.stringify
|
413
|
+
*/
|
414
|
+
// eslint-disable-next-line @typescript-eslint/no-explicit-any
|
415
|
+
function saveState(name, value) {
|
416
|
+
command_1.issueCommand('save-state', { name }, value);
|
417
|
+
}
|
418
|
+
exports.saveState = saveState;
|
419
|
+
/**
|
420
|
+
* Gets the value of an state set by this action's main execution.
|
421
|
+
*
|
422
|
+
* @param name name of the state to get
|
423
|
+
* @returns string
|
424
|
+
*/
|
425
|
+
function getState(name) {
|
426
|
+
return process.env[`STATE_${name}`] || '';
|
427
|
+
}
|
428
|
+
exports.getState = getState;
|
429
|
+
//# sourceMappingURL=core.js.map
|
430
|
+
|
431
|
+
/***/ })
|
432
|
+
|
433
|
+
/******/ });
|