fluent-plugin-openlineage 0.1.1 → 0.1.3
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/.github/dependabot.yml +6 -0
- data/.github/workflows/linux.yml +30 -0
- data/README.md +1 -1
- data/fluent-plugin-openlineage.gemspec +1 -1
- data/lib/fluent/plugin/parser_openlineage.rb +1 -1
- metadata +4 -2
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA256:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: 5fdbb9e6c771a776670fa767bc3125b52f2d3606b2ef1bc632254419999b2eeb
|
4
|
+
data.tar.gz: 0ca7fd258542000dc19477e15eaa283e1666f08b897dc17a09d14579a9652410
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: a8156a1f544bdad9147199344e6ce70ab87dbc15d8c82f82ed5bf52e81ec041aafbdaedb5043793f929c0e89c360a69cb889a446e535d01c360b5ecdd1db1265
|
7
|
+
data.tar.gz: 1745c06449343f64e8830161f23115cfd5a42fa9a9494760f05163c26b471e59528243938dcce1f85c5cd198af5570e811cce171111229ebe7d66c21a0e13cf6
|
@@ -0,0 +1,30 @@
|
|
1
|
+
name: linux
|
2
|
+
on:
|
3
|
+
push:
|
4
|
+
branches: [main]
|
5
|
+
pull_request:
|
6
|
+
branches: [main]
|
7
|
+
jobs:
|
8
|
+
build:
|
9
|
+
runs-on: ${{ matrix.os }}
|
10
|
+
continue-on-error: ${{ matrix.experimental }}
|
11
|
+
strategy:
|
12
|
+
fail-fast: false
|
13
|
+
matrix:
|
14
|
+
ruby: [ '3.2', '3.1', '3.0' ]
|
15
|
+
os:
|
16
|
+
- ubuntu-latest
|
17
|
+
experimental: [false]
|
18
|
+
name: Ruby ${{ matrix.ruby }} unit testing on ${{ matrix.os }}
|
19
|
+
steps:
|
20
|
+
- uses: actions/checkout@v4
|
21
|
+
- uses: ruby/setup-ruby@v1
|
22
|
+
with:
|
23
|
+
ruby-version: ${{ matrix.ruby }}
|
24
|
+
- name: unit testing
|
25
|
+
env:
|
26
|
+
CI: true
|
27
|
+
run: |
|
28
|
+
gem install bundler rake
|
29
|
+
bundle install --jobs 4 --retry 3
|
30
|
+
bundle exec rake spec
|
data/README.md
CHANGED
@@ -1,5 +1,5 @@
|
|
1
1
|
# Fluent-plugin-openlineage, a plugin for [Fluentd](https://www.fluentd.org)
|
2
|
-
[](https://badge.fury.io/rb/fluent-plugin-openlineage)
|
3
3
|
|
4
4
|
fluent-plugin-openlineage is a Fluentd plugin that verifies if a JSON matches the OpenLineage schema.
|
5
5
|
It is intended to be used together with a [Fluentd Application](https://github.com/fluent/fluentd).
|
@@ -3,7 +3,7 @@ $LOAD_PATH.unshift(lib) unless $LOAD_PATH.include?(lib)
|
|
3
3
|
|
4
4
|
Gem::Specification.new do |spec|
|
5
5
|
spec.name = "fluent-plugin-openlineage"
|
6
|
-
spec.version = "0.1.
|
6
|
+
spec.version = "0.1.3"
|
7
7
|
spec.authors = ["Pawel Leszczynski"]
|
8
8
|
spec.email = ["leszczynski.pawel@gmail.com"]
|
9
9
|
|
@@ -63,7 +63,7 @@ module Fluent
|
|
63
63
|
def enrich_oneOf_errors(json)
|
64
64
|
errors = []
|
65
65
|
@schema["oneOf"].each { |ref|
|
66
|
-
changed_schema = @schema
|
66
|
+
changed_schema = Marshal.load(Marshal.dump(@schema))
|
67
67
|
changed_schema.delete("oneOf")
|
68
68
|
changed_schema["$ref"] = ref["$ref"]
|
69
69
|
validator = RustyJSONSchema.build(changed_schema)
|
metadata
CHANGED
@@ -1,14 +1,14 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: fluent-plugin-openlineage
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 0.1.
|
4
|
+
version: 0.1.3
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- Pawel Leszczynski
|
8
8
|
autorequire:
|
9
9
|
bindir: bin
|
10
10
|
cert_chain: []
|
11
|
-
date: 2024-08-
|
11
|
+
date: 2024-08-05 00:00:00.000000000 Z
|
12
12
|
dependencies:
|
13
13
|
- !ruby/object:Gem::Dependency
|
14
14
|
name: bundler
|
@@ -93,6 +93,8 @@ executables: []
|
|
93
93
|
extensions: []
|
94
94
|
extra_rdoc_files: []
|
95
95
|
files:
|
96
|
+
- ".github/dependabot.yml"
|
97
|
+
- ".github/workflows/linux.yml"
|
96
98
|
- ".gitignore"
|
97
99
|
- ".idea/.gitignore"
|
98
100
|
- ".idea/fluentd.iml"
|