elasticsearch-mcp-server 0.0.1__tar.gz → 0.0.5__tar.gz
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.
Potentially problematic release.
This version of elasticsearch-mcp-server might be problematic. Click here for more details.
- {elasticsearch_mcp_server-0.0.1 → elasticsearch_mcp_server-0.0.5}/PKG-INFO +1 -1
- {elasticsearch_mcp_server-0.0.1 → elasticsearch_mcp_server-0.0.5}/cliff.toml +23 -32
- {elasticsearch_mcp_server-0.0.1 → elasticsearch_mcp_server-0.0.5}/pyproject.toml +1 -1
- {elasticsearch_mcp_server-0.0.1 → elasticsearch_mcp_server-0.0.5}/.env +0 -0
- {elasticsearch_mcp_server-0.0.1 → elasticsearch_mcp_server-0.0.5}/.github/workflows/pypi-publish.yaml +0 -0
- {elasticsearch_mcp_server-0.0.1 → elasticsearch_mcp_server-0.0.5}/.github/workflows/release.yml +0 -0
- {elasticsearch_mcp_server-0.0.1 → elasticsearch_mcp_server-0.0.5}/.gitignore +0 -0
- {elasticsearch_mcp_server-0.0.1 → elasticsearch_mcp_server-0.0.5}/.python-version +0 -0
- {elasticsearch_mcp_server-0.0.1 → elasticsearch_mcp_server-0.0.5}/LICENSE +0 -0
- {elasticsearch_mcp_server-0.0.1 → elasticsearch_mcp_server-0.0.5}/Makefile +0 -0
- {elasticsearch_mcp_server-0.0.1 → elasticsearch_mcp_server-0.0.5}/README.md +0 -0
- {elasticsearch_mcp_server-0.0.1 → elasticsearch_mcp_server-0.0.5}/docker-compose.yml +0 -0
- {elasticsearch_mcp_server-0.0.1 → elasticsearch_mcp_server-0.0.5}/src/elasticsearch_mcp_server/__init__.py +0 -0
- {elasticsearch_mcp_server-0.0.1 → elasticsearch_mcp_server-0.0.5}/src/elasticsearch_mcp_server/es_client.py +0 -0
- {elasticsearch_mcp_server-0.0.1 → elasticsearch_mcp_server-0.0.5}/src/elasticsearch_mcp_server/server.py +0 -0
- {elasticsearch_mcp_server-0.0.1 → elasticsearch_mcp_server-0.0.5}/src/elasticsearch_mcp_server/tools/cluster.py +0 -0
- {elasticsearch_mcp_server-0.0.1 → elasticsearch_mcp_server-0.0.5}/src/elasticsearch_mcp_server/tools/document.py +0 -0
- {elasticsearch_mcp_server-0.0.1 → elasticsearch_mcp_server-0.0.5}/src/elasticsearch_mcp_server/tools/index.py +0 -0
- {elasticsearch_mcp_server-0.0.1 → elasticsearch_mcp_server-0.0.5}/uv.lock +0 -0
|
@@ -2,15 +2,13 @@
|
|
|
2
2
|
# https://git-cliff.org/docs/configuration
|
|
3
3
|
|
|
4
4
|
[changelog]
|
|
5
|
-
# changelog header
|
|
5
|
+
# template for the changelog header
|
|
6
6
|
header = """
|
|
7
7
|
# Changelog\n
|
|
8
|
-
All notable changes to this project will be documented in this file. See [conventional commits](https://www.conventionalcommits.org/) for commit guidelines.\n
|
|
9
8
|
"""
|
|
10
9
|
# template for the changelog body
|
|
11
10
|
# https://keats.github.io/tera/docs/#introduction
|
|
12
11
|
body = """
|
|
13
|
-
---
|
|
14
12
|
{% if version %}\
|
|
15
13
|
{% if previous.version %}\
|
|
16
14
|
## [{{ version | trim_start_matches(pat="v") }}]($REPO/compare/{{ previous.version }}..{{ version }}) - {{ timestamp | date(format="%Y-%m-%d") }}
|
|
@@ -26,14 +24,14 @@ body = """
|
|
|
26
24
|
| filter(attribute="scope")
|
|
27
25
|
| sort(attribute="scope") %}
|
|
28
26
|
- **({{commit.scope}})**{% if commit.breaking %} [**breaking**]{% endif %} \
|
|
29
|
-
{{ commit.message
|
|
27
|
+
{{ commit.message }} - ([{{ commit.id | truncate(length=7, end="") }}]($REPO/commit/{{ commit.id }})) - @{{ commit.author.name }}
|
|
30
28
|
{%- endfor -%}
|
|
31
29
|
{% raw %}\n{% endraw %}\
|
|
32
30
|
{%- for commit in commits %}
|
|
33
31
|
{%- if commit.scope -%}
|
|
34
32
|
{% else -%}
|
|
35
33
|
- {% if commit.breaking %} [**breaking**]{% endif %}\
|
|
36
|
-
{{ commit.message
|
|
34
|
+
{{ commit.message }} - ([{{ commit.id | truncate(length=7, end="") }}]($REPO/commit/{{ commit.id }})) - @{{ commit.author.name }}
|
|
37
35
|
{% endif -%}
|
|
38
36
|
{% endfor -%}
|
|
39
37
|
{% endfor %}\n
|
|
@@ -53,43 +51,36 @@ postprocessors = [
|
|
|
53
51
|
# parse the commits based on https://www.conventionalcommits.org
|
|
54
52
|
conventional_commits = true
|
|
55
53
|
# filter out the commits that are not conventional
|
|
56
|
-
filter_unconventional =
|
|
54
|
+
filter_unconventional = true
|
|
57
55
|
# process each line of a commit as an individual commit
|
|
58
56
|
split_commits = false
|
|
59
57
|
# regex for preprocessing the commit messages
|
|
60
58
|
commit_preprocessors = [
|
|
61
|
-
# { pattern = '\((\w+\s)?#([0-9]+)\)', replace = "([#${2}](https://github.com/
|
|
59
|
+
# { pattern = '\((\w+\s)?#([0-9]+)\)', replace = "([#${2}](https://github.com/cr7258/elasticsearch-mcp-server/issues/${2}))"}, # replace issue numbers
|
|
62
60
|
]
|
|
63
61
|
# regex for parsing and grouping commits
|
|
64
62
|
commit_parsers = [
|
|
65
|
-
|
|
66
|
-
|
|
67
|
-
|
|
68
|
-
|
|
69
|
-
|
|
70
|
-
|
|
71
|
-
|
|
72
|
-
|
|
73
|
-
|
|
74
|
-
|
|
75
|
-
|
|
76
|
-
|
|
77
|
-
|
|
78
|
-
|
|
63
|
+
{ message = "^feat", group = "<!-- 0 -->⛰️ Features" },
|
|
64
|
+
{ message = "^fix", group = "<!-- 1 -->🐛 Bug Fixes" },
|
|
65
|
+
{ message = "^doc", group = "<!-- 3 -->📚 Documentation" },
|
|
66
|
+
{ message = "^perf", group = "<!-- 4 -->⚡ Performance" },
|
|
67
|
+
{ message = "^refactor\\(clippy\\)", skip = true },
|
|
68
|
+
{ message = "^refactor", group = "<!-- 2 -->🚜 Refactor" },
|
|
69
|
+
{ message = "^style", group = "<!-- 5 -->🎨 Styling" },
|
|
70
|
+
{ message = "^test", group = "<!-- 6 -->🧪 Testing" },
|
|
71
|
+
{ message = "^chore\\(release\\): prepare for", skip = true },
|
|
72
|
+
{ message = "^chore\\(deps.*\\)", skip = true },
|
|
73
|
+
{ message = "^chore\\(pr\\)", skip = true },
|
|
74
|
+
{ message = "^chore\\(pull\\)", skip = true },
|
|
75
|
+
{ message = "^chore\\(npm\\).*yarn\\.lock", skip = true },
|
|
76
|
+
{ message = "^chore|^ci", group = "<!-- 7 -->⚙️ Miscellaneous Tasks" },
|
|
77
|
+
{ body = ".*security", group = "<!-- 8 -->🛡️ Security" },
|
|
78
|
+
{ message = "^revert", group = "<!-- 9 -->◀️ Revert" },
|
|
79
79
|
]
|
|
80
|
-
|
|
81
|
-
protect_breaking_commits = false
|
|
80
|
+
|
|
82
81
|
# filter out the commits that are not matched by commit parsers
|
|
83
82
|
filter_commits = false
|
|
84
|
-
# regex for matching git tags
|
|
85
|
-
tag_pattern = "v[0-9].*"
|
|
86
|
-
# regex for skipping tags
|
|
87
|
-
skip_tags = "v0.1.0-beta.1"
|
|
88
|
-
# regex for ignoring tags
|
|
89
|
-
ignore_tags = ""
|
|
90
83
|
# sort the tags topologically
|
|
91
84
|
topo_order = false
|
|
92
85
|
# sort the commits inside sections by oldest/newest order
|
|
93
|
-
sort_commits = "oldest"
|
|
94
|
-
# limit the number of commits included in the changelog.
|
|
95
|
-
# limit_commits = 42
|
|
86
|
+
sort_commits = "oldest"
|
|
File without changes
|
|
File without changes
|
{elasticsearch_mcp_server-0.0.1 → elasticsearch_mcp_server-0.0.5}/.github/workflows/release.yml
RENAMED
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|