From 775633121a02448169ef6a2c6dbe350bb07369aa Mon Sep 17 00:00:00 2001 From: Dmitrii Ubskii <18616863+dmitrii-ubskii@users.noreply.github.com> Date: Thu, 11 Dec 2025 11:45:41 +0000 Subject: [PATCH 1/2] add cti dataset to bazel --- BUILD | 1 + use-cases/cyber-threat-intelligence/BUILD | 34 +++++++++++++++++++++++ 2 files changed, 35 insertions(+) create mode 100644 use-cases/cyber-threat-intelligence/BUILD diff --git a/BUILD b/BUILD index be6895f..2e522ed 100644 --- a/BUILD +++ b/BUILD @@ -29,6 +29,7 @@ pkg_tar( "//use-cases/bookstore:bookstore-dataset", "//use-cases/social-network:social-network-dataset", "//use-cases/identity-and-access-management:iam-dataset", + "//use-cases/cyber-threat-intelligence:cti-dataset", ], ) diff --git a/use-cases/cyber-threat-intelligence/BUILD b/use-cases/cyber-threat-intelligence/BUILD new file mode 100644 index 0000000..c4533fc --- /dev/null +++ b/use-cases/cyber-threat-intelligence/BUILD @@ -0,0 +1,34 @@ +# Licensed to the Apache Software Foundation (ASF) under one +# or more contributor license agreements. See the NOTICE file +# distributed with this work for additional information +# regarding copyright ownership. The ASF licenses this file +# to you under the Apache License, Version 2.0 (the +# "License"); you may not use this file except in compliance +# with the License. You may obtain a copy of the License at +# +# http://www.apache.org/licenses/LICENSE-2.0 +# +# Unless required by applicable law or agreed to in writing, +# software distributed under the License is distributed on an +# "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY +# KIND, either express or implied. See the License for the +# specific language governing permissions and limitations +# under the License. + +package(default_visibility = ["//visibility:public"]) + +load("@rules_pkg//:mappings.bzl", "pkg_files") + +pkg_files( + name = "cti-dataset", + srcs = [ + ":schema.tql", + ":data.tql", + ], + renames = { + ":schema.tql" : "cti-schema.tql", + ":data.tql" : "cti-data.tql", + }, +) + + From 0223b13a94c5aaa29eb749ff3938f5d3bbaacfd2 Mon Sep 17 00:00:00 2001 From: Dmitrii Ubskii <18616863+dmitrii-ubskii@users.noreply.github.com> Date: Thu, 11 Dec 2025 11:46:07 +0000 Subject: [PATCH 2/2] bump version --- VERSION | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/VERSION b/VERSION index 240bba9..5cdb444 100644 --- a/VERSION +++ b/VERSION @@ -1 +1 @@ -3.7.0 \ No newline at end of file +3.7.1 \ No newline at end of file