Revisions of lua-language-server

buildservice-autocommit accepted request 1136998 from Matej Cepl's avatar Matej Cepl (mcepl) (revision 37)
baserev update by copy to link target
Matej Cepl's avatar Matej Cepl (mcepl) accepted request 1136986 from Kyle Scheuing's avatar Kyle Scheuing (Oppzippy) (revision 36)
- Upgrade to 3.7.4:
  - fix: doc.type.function resolve only existing arg.extends
  - Add a rawdesc field to exported docs
  - support c like comments
  - translated some options to zh-cn
buildservice-autocommit accepted request 1136248 from Matej Cepl's avatar Matej Cepl (mcepl) (revision 35)
baserev update by copy to link target
Matej Cepl's avatar Matej Cepl (mcepl) accepted request 1135805 from Kyle Scheuing's avatar Kyle Scheuing (Oppzippy) (revision 34)
- Upgrade to 3.7.3:
  - fix: can not infer arg type in some cases
buildservice-autocommit accepted request 1077998 from Factory Maintainer's avatar Factory Maintainer (factory-maintainer) (revision 33)
baserev update by copy to link target
Matej Cepl's avatar Matej Cepl (mcepl) committed (revision 32)
- Upgrade to 3.6.18:
  - Make functions in string api accept numbers
  - Don't override lm.bindir and lm.EXE_DIR in make.lua
  - add: description for config.addonManager.enable
  - Don't override lm.bindir and lm.EXE_DIR in make.lua
  - add: description for config.addonManager.enable
  - add: addon manager setting to template
  - README updates
  - Array of a class type does not get completion
  - Improve math.abs annotation
  - meta: newproxy can accept a userdata value
buildservice-autocommit accepted request 1065615 from Matej Cepl's avatar Matej Cepl (mcepl) (revision 31)
baserev update by copy to link target
Matej Cepl's avatar Matej Cepl (mcepl) accepted request 1065412 from Andreas Schneider's avatar Andreas Schneider (gladiac) (revision 30)
- Update to version 3.6.11:
  * https://github.com/sumneko/lua-language-server/blob/3.6.11/changelog.md
    or packaged changelog.md
buildservice-autocommit accepted request 1061574 from Matej Cepl's avatar Matej Cepl (mcepl) (revision 29)
baserev update by copy to link target
Matej Cepl's avatar Matej Cepl (mcepl) committed (revision 28)
Fix SPEC file
Matej Cepl's avatar Matej Cepl (mcepl) accepted request 1061407 from Andreas Schneider's avatar Andreas Schneider (gladiac) (revision 27)
- Update to version 3.6.7:
  * https://github.com/sumneko/lua-language-server/blob/3.6.7/changelog.md
    or packaged changelog.md
- Fixed setting CFLAGS and LDFLAGS
- Added %check section
- Moved lua-language-server binary to /usr/libexec
buildservice-autocommit accepted request 1006079 from Matej Cepl's avatar Matej Cepl (mcepl) (revision 26)
baserev update by copy to link target
Matej Cepl's avatar Matej Cepl (mcepl) accepted request 1005755 from Soc Virnyl Estela's avatar Soc Virnyl Estela (uncomfyhalomacro) (revision 25)
- Update to version 3.5.6:
  * fix #1506
  * meta template: luajit add cdata type
  * fix #1537
  * Replace old variable return syntax
  * fix: string.match return type
  * string.find returns any for now
  * update submodules
  * update 3rd-api
- Remove time_includes.patch
buildservice-autocommit accepted request 991164 from Matej Cepl's avatar Matej Cepl (mcepl) (revision 24)
baserev update by copy to link target
Matej Cepl's avatar Matej Cepl (mcepl) committed (revision 23)
- Update to 3.5.0:
  - meta: openresty add api run_worker_thread
  - bugfix:allow get() in sharedict return value and nil
  - table new/clear function actual use scenarios
  - #1325: add missing paramter type for getfenv
  - Meta: make osdate accept strings
  - More tag descriptions
  - fix typos in annotation
- Update to 3.4.1:
  - Fix dofile returns multiple values ---@return any ...
  - add 3rd luafilesystem
  - OpenResty type annotation updates
  - fixing grammar in error message
- Add time_includes.patch to fix missing #includes
  (gh#sumneko/lua-language-server#1377).
buildservice-autocommit accepted request 985951 from Matej Cepl's avatar Matej Cepl (mcepl) (revision 22)
baserev update by copy to link target
Matej Cepl's avatar Matej Cepl (mcepl) committed (revision 21)
- Update to 3.4.0:
  - NEW diagnostics:
        cast-local-type
        assign-type-mismatch
        param-type-mismatch
        unknown-cast-variable
        cast-type-mismatch
        missing-return-value
        redundant-return-value
        missing-return
        return-type-mismatch
  - NEW settings:
        diagnostics.groupSeverity
        diagnostics.groupFileStatus
        type.castNumberToInteger
        type.weakUnionCheck
        hint.semicolon
  - CHG infer nil as redundant return value
    local function f() end
    local x = f() -- `x` is `nil` instead of `unknown`
  - CHG infer called function by params num
    ---@overload fun(x: number, y: number):string
    ---@overload fun(x: number):number
    ---@return boolean
    local function f() end
    local n1 = f()     -- `n1` is `boolean`
    local n2 = f(0)    -- `n2` is `number`
    local n3 = f(0, 0) -- `n3` is `string`
  - CHG semicolons and parentheses can be used in DocTable
    ---@type { (x: number); (y: boolean) }
buildservice-autocommit accepted request 979571 from Matej Cepl's avatar Matej Cepl (mcepl) (revision 20)
baserev update by copy to link target
Matej Cepl's avatar Matej Cepl (mcepl) accepted request 979563 from Soc Virnyl Estela's avatar Soc Virnyl Estela (uncomfyhalomacro) (revision 19)
- Update to version 3.2.4:
  * Include files required to compile by @sharksforarms in #1157 
  * NEW settings:
      - workspace.supportScheme: ["file", "untitled", "git"]
      - diagnostics.disableScheme: ["git"]
  * NEW folding: support folding ---@alias
  * CHG if rootUri or workspaceFolder is set to ROOT or HOME, this extension will refuse to load these directories and show an error message.
  * CHG show warning message when scanning more than 100,000 files.
  * CHG upgrade LSP to 3.17
  * FIX hover: can not union table with other basic types
  * FIX #1125
  * FIX #1131
  * FIX #1134
  * FIX #1141
  * FIX #1144
  * FIX #1150
  * FIX #1155

- Also improved _service file to download submodules with `osc service disabledrun` for easy updating from other contributors.
buildservice-autocommit accepted request 969189 from Matej Cepl's avatar Matej Cepl (mcepl) (revision 18)
baserev update by copy to link target
Displaying revisions 1 - 20 of 37
openSUSE Build Service is sponsored by