Compare commits

4 Commits

7 changed files with 79 additions and 12 deletions

5
.gitignore vendored
View File

@@ -1 +1,6 @@
.osc
_scmsync.obsinfo
_buildconfig-*
_buildinfo-*.xml
lua-language-server-*-build/
lua-language-server/

View File

@@ -3,13 +3,13 @@
<service name="obs_scm" mode="manual">
<param name="scm">git</param>
<param name="url">https://github.com/LuaLS/lua-language-server</param>
<param name="revision">refs/tags/3.13.6</param>
<param name="revision">refs/tags/3.15.0</param>
<param name="versionformat">@PARENT_TAG@</param>
<param name="submodules">enable</param>
</service>
<service name="set_version" mode="manual" />
<service name="tar" mode="buildtime" />
<service name="recompress" mode="buildtime">
<service name="tar" mode="manual" />
<service name="recompress" mode="manual">
<param name="file">*.tar</param>
<param name="compression">gz</param>
</service>

BIN
lua-language-server-3.13.6.obscpio (Stored with Git LFS)

Binary file not shown.

BIN
lua-language-server-3.15.0.tar.gz (Stored with Git LFS) Normal file

Binary file not shown.

View File

@@ -1,3 +1,64 @@
-------------------------------------------------------------------
Tue Jul 22 12:27:33 UTC 2025 - Matej Cepl <mcepl@cepl.eu>
- Update to 3.15.0:
- [fix] Linux debugging server not starting by @jpeletier
- feat: support hex color with # by @seblyng
- Fix gcc15 build by @CppCXY
- docs: add missing locale. by @qwertycxz
- Support Custom Addons Path for Enhanced Editor Flexibility by
@IronBlood
- Prevent class methods from triggering missing fields
diagnostics (Fixes #3175) by @CWood-sdf
- fix: large unions no longer erroneously fail to match later
variants by @DoubleThoughtTheProgrammer
- Traditional Chinese translation by @AlexCai2019
- Switch to storing upstream soruces as a tarball … saving 60MB
on each version is just too much to overlook.
-------------------------------------------------------------------
Mon Apr 14 06:27:26 UTC 2025 - Richard Rahl <rrahl0@opensuse.org>
- update to 3.14.0:
* feat: provide ES localisation
* Diagnostics for unnecessary assert
* fix: return empty response to textDocument/formatting if no changes
* fix: return empty response to textDocument/completion if completion
disabled
- move tests to a bcond_with condition, as they are very flaky, even
on x86_64, most of the time it runs on second try, sometimes 5+
-------------------------------------------------------------------
Wed Mar 26 20:37:12 UTC 2025 - Richard Rahl <rrahl0@opensuse.org>
- update to 3.13.9:
* remove the limit for analyzing the literal table
- update to 3.13.8:
* fix: respect ignoreDir in --check CLI
* Merge branch 'master' into fix-ignore-in-check
* Chore: Update help messages
* limit 100 items for performance reason
- update to 3.13.7:
* Fix changelog links
* fix: incorrect arg skip pattern for --check_out_path=
* fix: incorrect file names in doc.json
* fix: reimplement section luals.config in doc.json
* fix: use fs.canonical() instead of fs.absolute()
* fix: incorrect error message for --doc-update.
* chore: refactoring
* fix: default path for --doc_out_path is the current directory
* fix: remove extra ./ prefix in check report when using --check=.
* fix_doc_config
* fix_doc_defaultpath
* fix: osdate is not allowed in os.time
* fix: another regression related to type narrow and generic since v3.10.1
* fix: fix type annotations for bit module
* fix: correct pattern links for string methods
* Correct version for math.type and math.ult
* Update changelog.md
* fix: type narrowing bugs with literal fields
* feat: add --help
-------------------------------------------------------------------
Tue Mar 4 13:23:11 UTC 2025 - Richard Rahl <rrahl0@opensuse.org>

View File

@@ -1,4 +1,4 @@
name: lua-language-server
version: 3.13.6
mtime: 1738826052
commit: b0b5c8f17fdcb6f8d6244eca48b8fc053e9b15ea
version: 3.15.0
mtime: 1750844709
commit: 32fec3cc99af8b9a1e45c2455a8c3bd0d3e38f66

View File

@@ -17,8 +17,9 @@
#
%bcond_with tests
Name: lua-language-server
Version: 3.13.6
Version: 3.15.0
Release: 0
Summary: Lua Language Server coded by Lua
License: MIT
@@ -59,8 +60,8 @@ install -d %{buildroot}%{_bindir}
sed -e 's#@LIBEXECDIR@#%{_libexecdir}#' %{SOURCE1} > %{buildroot}%{_bindir}/%{name}
chmod 0755 %{buildroot}%{_bindir}/%{name}
%ifarch x86_64
#tests are very flaky on non x86_64
%if %{with tests}
#tests are very flaky on all arches
%check
./3rd/luamake/luamake unit-test
%endif