gitlab-cloud-connector 1.5.0 → 1.6.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/config/add_ons/duo_amazon_q.yml +2 -0
- data/config/add_ons/duo_nano.yml +2 -0
- data/config/unit_primitives/amazon_q_integration.yml +2 -0
- data/config/unit_primitives/complete_code.yml +1 -0
- data/config/unit_primitives/documentation_search.yml +1 -0
- data/config/unit_primitives/duo_chat.yml +1 -0
- data/config/unit_primitives/generate_code.yml +1 -0
- data/lib/gitlab/cloud_connector/data_model/associations.rb +5 -0
- data/lib/gitlab/cloud_connector/version.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: 1cf0282d318a235b687f93d6d4aba4b7d46b5538b4fb3b73e5efaffd3f7d072a
|
4
|
+
data.tar.gz: e4b7ed6254b4b6dc74de3bb36ff214261f7a32e814d81e26d16917175244049d
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 14b6cb27c307fe57a69aea14881e6df85115489d25e0ef891915f76c76991b7a6711456b906c658f91a60f087fb52c09a7188f577b1eb5215725fbcacaccb6d8
|
7
|
+
data.tar.gz: 83753b28c5568a82b37a701917cebce18d049216c34cd4ca85c3ec8011ebcad05bf629d802903fe96185550458acc9b025e83dd7c9037dee9b0d46468b30d17f
|
@@ -22,6 +22,11 @@ module Gitlab
|
|
22
22
|
private
|
23
23
|
|
24
24
|
def load_association_records(association_name)
|
25
|
+
value = Array(instance_variable_get(:"@#{association_name}"))
|
26
|
+
|
27
|
+
# Check if the association is already loaded.
|
28
|
+
return value if !value.empty? && value.all?(Gitlab::CloudConnector::DataModel::Base)
|
29
|
+
|
25
30
|
names = Array(self[association_name])
|
26
31
|
association_class = Gitlab::CloudConnector::DataModel.const_get(association_name.to_s.classify)
|
27
32
|
association_class.select { |record| names.include?(record.name.to_s) }
|
metadata
CHANGED
@@ -1,14 +1,14 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: gitlab-cloud-connector
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 1.
|
4
|
+
version: 1.6.0
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- Nikola Milojevic
|
8
8
|
autorequire:
|
9
9
|
bindir: exe
|
10
10
|
cert_chain: []
|
11
|
-
date: 2025-
|
11
|
+
date: 2025-04-01 00:00:00.000000000 Z
|
12
12
|
dependencies:
|
13
13
|
- !ruby/object:Gem::Dependency
|
14
14
|
name: activesupport
|
@@ -95,7 +95,9 @@ files:
|
|
95
95
|
- Makefile
|
96
96
|
- README.md
|
97
97
|
- Rakefile
|
98
|
+
- config/add_ons/duo_amazon_q.yml
|
98
99
|
- config/add_ons/duo_enterprise.yml
|
100
|
+
- config/add_ons/duo_nano.yml
|
99
101
|
- config/add_ons/duo_pro.yml
|
100
102
|
- config/backend_services/ai_gateway.yml
|
101
103
|
- config/backend_services/ai_gateway_agent.yml
|