gitlab-labkit 2.7.0 → 2.8.0
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/.mise.toml +6 -0
- data/lib/labkit/fields.rb +1 -1
- metadata +1 -1
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA256:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: a0038ac3c9b17772bb517d4e2fc9e61ca26d05647e3de991c4899dfc867f4d88
|
|
4
|
+
data.tar.gz: 041f4b6ee0f7257738b0bb7663adcbca06c9f520152cd7f7b8397b31ed280d7c
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: ee2a000a091c0eb8433911f6a0e17d7921c1477204ed9f5e5fb54a3b8d625c8361b7653134cb5231c7b78e4fdc6df74c1b3c9d92424b1a17533f35257b913115
|
|
7
|
+
data.tar.gz: dd0a54427b6a2181bfad09efda0536ca4c0b703e2ee8182214a0ce02079f7ee207423f4e7f7d4f40f564a98d2e2d6eaeac8b4e312cf288450c2c0d8e6d146c4f
|
data/.mise.toml
CHANGED
|
@@ -1,5 +1,11 @@
|
|
|
1
1
|
[settings]
|
|
2
2
|
legacy_version_file = false
|
|
3
|
+
# Install precompiled Ruby instead of building from source. The from-source
|
|
4
|
+
# build compiles a vendored OpenSSL (ruby-build's `needs_openssl` check fails
|
|
5
|
+
# because CI images ship the OpenSSL runtime but no dev headers/pkg-config),
|
|
6
|
+
# and that compile is slow and fails in CI. Precompiled Ruby bundles its own
|
|
7
|
+
# OpenSSL and sidesteps it. This becomes mise's default in 2026.8.0.
|
|
8
|
+
ruby.compile = false
|
|
3
9
|
|
|
4
10
|
[tools]
|
|
5
11
|
# Please continue to use `.tool-versions` to specify tool versions, rather than adding them directly here.
|
data/lib/labkit/fields.rb
CHANGED
|
@@ -206,7 +206,7 @@ module Labkit
|
|
|
206
206
|
Fields::SEVERITY => %w[level],
|
|
207
207
|
Fields::LOG_MESSAGE => %w[msg custom_message extra.message fields.message graphql.message reason color_message exception.gitaly],
|
|
208
208
|
Fields::CLASS_NAME => %w[class author_class exception.class extra.class extra.class_name],
|
|
209
|
-
Fields::SERVICE_NAME => %w[service grpc.service_name auth_service
|
|
209
|
+
Fields::SERVICE_NAME => %w[service grpc.service_name auth_service component subcomponent],
|
|
210
210
|
Fields::GL_ORGANIZATION_ID => %w[organization_id],
|
|
211
211
|
Fields::GL_PROJECT_PATH => %w[project_path full_path root_pipeline_project_path requested_project_path auth_project_path extra.gl_project_path],
|
|
212
212
|
}.freeze
|