elasticgraph-admin 1.0.2 → 1.0.3.rc1

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 CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: d2d5dbd7386be43f2fafd26327ebbc05ecb41425b8dc6b07c6c089e63b71cb82
4
- data.tar.gz: cfe67f700491ae53767a774dda553341117891f4af7a8b7d86ae20c6c1691260
3
+ metadata.gz: 3f1e765c02e6ded91c78e97917ddaadd9334e4ed4c169036f455033a07a0820f
4
+ data.tar.gz: 4839510e02572e60b5088b44162278196c3ed6a4b19ba77b1cf359455435376a
5
5
  SHA512:
6
- metadata.gz: c4bf8ea3cf01c74c505b0cef19223e6099be13e2cb199632aa2ef988ac472b58dd0bf52f8839ae54934394381304137006b4cd6582ad031173e6587ec90e7582
7
- data.tar.gz: 50b69944b2643602723081aa3662fc49092067a310d92170a38a692167b6f9117752ce162964a7a6cc28e818b5c4a5d945c6d2632bd4f8dbe8a85b316bd3c20a
6
+ metadata.gz: 742722471eddcf9f9c7c15ca7b5a32d842661f93552058c1e1e5d14836b24bdbfcffd971553b3672f7eb86cd937fed2934af90891ef1a52f3e3d1c885bfdb34e
7
+ data.tar.gz: 75c563b08295a3c5892af946ecde96c16607e4acc1f2027902dce72acbb559bdb4cae35d27ea3a17935f4fc69e2c5714bf72816f5fa7d4e11b4c931b9c92edde
data/LICENSE.txt CHANGED
@@ -1,6 +1,6 @@
1
1
  The MIT License (MIT)
2
2
 
3
- Copyright (c) 2024 - 2025 Block, Inc.
3
+ Copyright (c) 2024 - 2026 Block, Inc.
4
4
 
5
5
  Permission is hereby granted, free of charge, to any person obtaining a copy
6
6
  of this software and associated documentation files (the "Software"), to deal
@@ -1,4 +1,4 @@
1
- # Copyright 2024 - 2025 Block, Inc.
1
+ # Copyright 2024 - 2026 Block, Inc.
2
2
  #
3
3
  # Use of this source code is governed by an MIT-style
4
4
  # license that can be found in the LICENSE file or at
@@ -1,4 +1,4 @@
1
- # Copyright 2024 - 2025 Block, Inc.
1
+ # Copyright 2024 - 2026 Block, Inc.
2
2
  #
3
3
  # Use of this source code is governed by an MIT-style
4
4
  # license that can be found in the LICENSE file or at
@@ -1,4 +1,4 @@
1
- # Copyright 2024 - 2025 Block, Inc.
1
+ # Copyright 2024 - 2026 Block, Inc.
2
2
  #
3
3
  # Use of this source code is governed by an MIT-style
4
4
  # license that can be found in the LICENSE file or at
@@ -1,4 +1,4 @@
1
- # Copyright 2024 - 2025 Block, Inc.
1
+ # Copyright 2024 - 2026 Block, Inc.
2
2
  #
3
3
  # Use of this source code is governed by an MIT-style
4
4
  # license that can be found in the LICENSE file or at
@@ -1,4 +1,4 @@
1
- # Copyright 2024 - 2025 Block, Inc.
1
+ # Copyright 2024 - 2026 Block, Inc.
2
2
  #
3
3
  # Use of this source code is governed by an MIT-style
4
4
  # license that can be found in the LICENSE file or at
@@ -1,4 +1,4 @@
1
- # Copyright 2024 - 2025 Block, Inc.
1
+ # Copyright 2024 - 2026 Block, Inc.
2
2
  #
3
3
  # Use of this source code is governed by an MIT-style
4
4
  # license that can be found in the LICENSE file or at
@@ -1,4 +1,4 @@
1
- # Copyright 2024 - 2025 Block, Inc.
1
+ # Copyright 2024 - 2026 Block, Inc.
2
2
  #
3
3
  # Use of this source code is governed by an MIT-style
4
4
  # license that can be found in the LICENSE file or at
@@ -1,4 +1,4 @@
1
- # Copyright 2024 - 2025 Block, Inc.
1
+ # Copyright 2024 - 2026 Block, Inc.
2
2
  #
3
3
  # Use of this source code is governed by an MIT-style
4
4
  # license that can be found in the LICENSE file or at
@@ -1,4 +1,4 @@
1
- # Copyright 2024 - 2025 Block, Inc.
1
+ # Copyright 2024 - 2026 Block, Inc.
2
2
  #
3
3
  # Use of this source code is governed by an MIT-style
4
4
  # license that can be found in the LICENSE file or at
@@ -34,10 +34,8 @@ module ElasticGraph
34
34
  task :perform do
35
35
  print_in_color "#{"=" * 80}\nNOTE: Performing datastore cluster updates for real!\n#{"=" * 80}", RED_COLOR_CODE
36
36
 
37
- index_defs = update_clusters_for(admin)
38
- output.puts "Finished updating datastore clusters. Validating index consistency..."
39
- admin.datastore_indexing_router.validate_mapping_completeness_of!(:all_accessible_cluster_names, *index_defs)
40
- output.puts "Done."
37
+ update_clusters_for(admin)
38
+ output.puts "Finished updating datastore clusters."
41
39
  end
42
40
 
43
41
  desc "Dry-runs the configuration of datastore clusters, including indices, settings, and scripts"
@@ -1,4 +1,4 @@
1
- # Copyright 2024 - 2025 Block, Inc.
1
+ # Copyright 2024 - 2026 Block, Inc.
2
2
  #
3
3
  # Use of this source code is governed by an MIT-style
4
4
  # license that can be found in the LICENSE file or at
@@ -63,8 +63,6 @@ module ElasticGraph
63
63
  require "elastic_graph/indexer/datastore_indexing_router"
64
64
  Indexer::DatastoreIndexingRouter.new(
65
65
  datastore_clients_by_name: datastore_core.clients_by_name,
66
- mappings_by_index_def_name: schema_artifacts.index_mappings_by_index_def_name,
67
- monotonic_clock: monotonic_clock,
68
66
  logger: datastore_core.logger
69
67
  )
70
68
  end
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: elasticgraph-admin
3
3
  version: !ruby/object:Gem::Version
4
- version: 1.0.2
4
+ version: 1.0.3.rc1
5
5
  platform: ruby
6
6
  authors:
7
7
  - Myron Marston
@@ -17,56 +17,56 @@ dependencies:
17
17
  requirements:
18
18
  - - '='
19
19
  - !ruby/object:Gem::Version
20
- version: 1.0.2
20
+ version: 1.0.3.rc1
21
21
  type: :runtime
22
22
  prerelease: false
23
23
  version_requirements: !ruby/object:Gem::Requirement
24
24
  requirements:
25
25
  - - '='
26
26
  - !ruby/object:Gem::Version
27
- version: 1.0.2
27
+ version: 1.0.3.rc1
28
28
  - !ruby/object:Gem::Dependency
29
29
  name: elasticgraph-indexer
30
30
  requirement: !ruby/object:Gem::Requirement
31
31
  requirements:
32
32
  - - '='
33
33
  - !ruby/object:Gem::Version
34
- version: 1.0.2
34
+ version: 1.0.3.rc1
35
35
  type: :runtime
36
36
  prerelease: false
37
37
  version_requirements: !ruby/object:Gem::Requirement
38
38
  requirements:
39
39
  - - '='
40
40
  - !ruby/object:Gem::Version
41
- version: 1.0.2
41
+ version: 1.0.3.rc1
42
42
  - !ruby/object:Gem::Dependency
43
43
  name: elasticgraph-schema_artifacts
44
44
  requirement: !ruby/object:Gem::Requirement
45
45
  requirements:
46
46
  - - '='
47
47
  - !ruby/object:Gem::Version
48
- version: 1.0.2
48
+ version: 1.0.3.rc1
49
49
  type: :runtime
50
50
  prerelease: false
51
51
  version_requirements: !ruby/object:Gem::Requirement
52
52
  requirements:
53
53
  - - '='
54
54
  - !ruby/object:Gem::Version
55
- version: 1.0.2
55
+ version: 1.0.3.rc1
56
56
  - !ruby/object:Gem::Dependency
57
57
  name: elasticgraph-support
58
58
  requirement: !ruby/object:Gem::Requirement
59
59
  requirements:
60
60
  - - '='
61
61
  - !ruby/object:Gem::Version
62
- version: 1.0.2
62
+ version: 1.0.3.rc1
63
63
  type: :runtime
64
64
  prerelease: false
65
65
  version_requirements: !ruby/object:Gem::Requirement
66
66
  requirements:
67
67
  - - '='
68
68
  - !ruby/object:Gem::Version
69
- version: 1.0.2
69
+ version: 1.0.3.rc1
70
70
  - !ruby/object:Gem::Dependency
71
71
  name: rake
72
72
  requirement: !ruby/object:Gem::Requirement
@@ -74,6 +74,9 @@ dependencies:
74
74
  - - "~>"
75
75
  - !ruby/object:Gem::Version
76
76
  version: '13.3'
77
+ - - ">="
78
+ - !ruby/object:Gem::Version
79
+ version: 13.3.1
77
80
  type: :runtime
78
81
  prerelease: false
79
82
  version_requirements: !ruby/object:Gem::Requirement
@@ -81,48 +84,51 @@ dependencies:
81
84
  - - "~>"
82
85
  - !ruby/object:Gem::Version
83
86
  version: '13.3'
87
+ - - ">="
88
+ - !ruby/object:Gem::Version
89
+ version: 13.3.1
84
90
  - !ruby/object:Gem::Dependency
85
91
  name: elasticgraph-elasticsearch
86
92
  requirement: !ruby/object:Gem::Requirement
87
93
  requirements:
88
94
  - - '='
89
95
  - !ruby/object:Gem::Version
90
- version: 1.0.2
96
+ version: 1.0.3.rc1
91
97
  type: :development
92
98
  prerelease: false
93
99
  version_requirements: !ruby/object:Gem::Requirement
94
100
  requirements:
95
101
  - - '='
96
102
  - !ruby/object:Gem::Version
97
- version: 1.0.2
103
+ version: 1.0.3.rc1
98
104
  - !ruby/object:Gem::Dependency
99
105
  name: elasticgraph-opensearch
100
106
  requirement: !ruby/object:Gem::Requirement
101
107
  requirements:
102
108
  - - '='
103
109
  - !ruby/object:Gem::Version
104
- version: 1.0.2
110
+ version: 1.0.3.rc1
105
111
  type: :development
106
112
  prerelease: false
107
113
  version_requirements: !ruby/object:Gem::Requirement
108
114
  requirements:
109
115
  - - '='
110
116
  - !ruby/object:Gem::Version
111
- version: 1.0.2
117
+ version: 1.0.3.rc1
112
118
  - !ruby/object:Gem::Dependency
113
119
  name: elasticgraph-schema_definition
114
120
  requirement: !ruby/object:Gem::Requirement
115
121
  requirements:
116
122
  - - '='
117
123
  - !ruby/object:Gem::Version
118
- version: 1.0.2
124
+ version: 1.0.3.rc1
119
125
  type: :development
120
126
  prerelease: false
121
127
  version_requirements: !ruby/object:Gem::Requirement
122
128
  requirements:
123
129
  - - '='
124
130
  - !ruby/object:Gem::Version
125
- version: 1.0.2
131
+ version: 1.0.3.rc1
126
132
  email:
127
133
  - myron@squareup.com
128
134
  executables: []
@@ -146,10 +152,10 @@ licenses:
146
152
  - MIT
147
153
  metadata:
148
154
  bug_tracker_uri: https://github.com/block/elasticgraph/issues
149
- changelog_uri: https://github.com/block/elasticgraph/releases/tag/v1.0.2
150
- documentation_uri: https://block.github.io/elasticgraph/api-docs/v1.0.2/
155
+ changelog_uri: https://github.com/block/elasticgraph/releases/tag/v1.0.3.rc1
156
+ documentation_uri: https://block.github.io/elasticgraph/api-docs/v1.0.3.rc1/
151
157
  homepage_uri: https://block.github.io/elasticgraph/
152
- source_code_uri: https://github.com/block/elasticgraph/tree/v1.0.2/elasticgraph-admin
158
+ source_code_uri: https://github.com/block/elasticgraph/tree/v1.0.3.rc1/elasticgraph-admin
153
159
  gem_category: core
154
160
  rdoc_options: []
155
161
  require_paths:
@@ -161,14 +167,14 @@ required_ruby_version: !ruby/object:Gem::Requirement
161
167
  version: '3.4'
162
168
  - - "<"
163
169
  - !ruby/object:Gem::Version
164
- version: '3.5'
170
+ version: '4.1'
165
171
  required_rubygems_version: !ruby/object:Gem::Requirement
166
172
  requirements:
167
173
  - - ">="
168
174
  - !ruby/object:Gem::Version
169
175
  version: '0'
170
176
  requirements: []
171
- rubygems_version: 3.6.9
177
+ rubygems_version: 4.0.3
172
178
  specification_version: 4
173
179
  summary: Administers a datastore for an ElasticGraph project.
174
180
  test_files: []