Skip to content

Releases: vespa-engine/vespa

Vespa CLI 8.553.3

22 Jul 12:01
e5dc86c
Compare
Choose a tag to compare

The command-line tool for Vespa.ai.

Use it on Vespa instances running locally, remotely or in the cloud.
Prefer web service API's to this in production.

See Vespa documentation and getting started with Vespa
CLI
.

Run make to build and test - make sure to use go 1.18 or higher.

Vespa CLI 8.551.21

17 Jul 11:27
91c8fc1
Compare
Choose a tag to compare

The command-line tool for Vespa.ai.

Use it on Vespa instances running locally, remotely or in the cloud.
Prefer web service API's to this in production.

See Vespa documentation and getting started with Vespa
CLI
.

Run make to build and test - make sure to use go 1.18 or higher.

Vespa CLI 8.550.14

16 Jul 10:49
f25fa31
Compare
Choose a tag to compare

The command-line tool for Vespa.ai.

Use it on Vespa instances running locally, remotely or in the cloud.
Prefer web service API's to this in production.

See Vespa documentation and getting started with Vespa
CLI
.

Run make to build and test - make sure to use go 1.18 or higher.

Vespa Language Server 2.4.3

15 Jul 13:54
e7f5e92
Compare
Choose a tag to compare

The Language-server for Vespa schemas

Use the jar file to integrate the language server into your favorite editor.

For Visual Studio Code and IntelliJ the language server should also be available in the marketplace for the editor.

Schema Language Server in Neovim

Requirements

Requires Java 17 or newer.

Optional: lspconfig plugin for nvim.

Installation

Download schema-language-server-jar-with-dependencies.jar.

Using lspconfig

The language server is registered at lspconfig as vespa_ls. If you have lspconfig installed, all that needs to
be done is to enable the language server.

Register .sd, .profile and .yql as filetypes (in init.lua):

vim.filetype.add {
  extension = {
    profile = 'sd',
    sd = 'sd',
    yql = 'yql'
  }
}

Create a config for schema language server (in init.lua):

vim.lsp.config('vespa_ls', {
    cmd = { 'java', '-jar', '/path/to/vespa-language-server_X.X.X.jar' },
    -- on_attach = ...
})

vim.lsp.enable('vespa_ls')

Manual Installation

If you don't want to use lspconfig you can refer to the LSP documentation for Neovim for manually registering the server.

What's New

  • Added support for 'elementwise' rank feature.
  • Improved ranking expression analysis and diagnostics.

Vespa CLI 8.542.42

30 Jun 11:47
93fdb6d
Compare
Choose a tag to compare

The command-line tool for Vespa.ai.

Use it on Vespa instances running locally, remotely or in the cloud.
Prefer web service API's to this in production.

See Vespa documentation and getting started with Vespa
CLI
.

Run make to build and test - make sure to use go 1.18 or higher.

Vespa CLI 8.538.52

23 Jun 11:34
be9e9cb
Compare
Choose a tag to compare

The command-line tool for Vespa.ai.

Use it on Vespa instances running locally, remotely or in the cloud.
Prefer web service API's to this in production.

See Vespa documentation and getting started with Vespa
CLI
.

Run make to build and test - make sure to use go 1.18 or higher.

Vespa CLI 8.536.21

19 Jun 07:57
416f346
Compare
Choose a tag to compare

The command-line tool for Vespa.ai.

Use it on Vespa instances running locally, remotely or in the cloud.
Prefer web service API's to this in production.

See Vespa documentation and getting started with Vespa
CLI
.

Run make to build and test - make sure to use go 1.18 or higher.

Vespa CLI 8.533.16

13 Jun 07:07
6aae6dc
Compare
Choose a tag to compare

The command-line tool for Vespa.ai.

Use it on Vespa instances running locally, remotely or in the cloud.
Prefer web service API's to this in production.

See Vespa documentation and getting started with Vespa
CLI
.

Run make to build and test - make sure to use go 1.18 or higher.

Vespa Language Server 2.4.2

05 Jun 09:19
98978cd
Compare
Choose a tag to compare

The Language-server for Vespa schemas

Use the jar file to integration the language server into your favorite editor.

For Visual Studio Code and IntelliJ the language server should also be available in the marketplace for the editor.

Schema Language Server in Neovim

Requirements

Requires java to be excutable on the system.

Optional: lspconfig plugin for nvim.

Installation

Download schema-language-server-jar-with-dependencies.jar.

Using lspconfig

Register .sd and .profile as filetypes (in init.lua):

vim.filetype.add {
  extension = {
    profile = 'sd',
    sd = 'sd'
  }
}

Create a config for schema language server (in init.lua):

local lspconfig = require "lspconfig"
local configs = require "lspconfig.configs"

if not configs.schemals then
    configs.schemals = {
        default_config = {
            filetypes = { 'sd' },
            cmd = { 'java', '-jar', '/path/to/schema-language-server-jar-with-dependencies.jar' },
            root_dir = lspconfig.util.root_pattern('.')
        },
    }
end

lspconfig.schemals.setup{
    -- optional on_attach function for setting keybindings etc.
    on_attach = function(client, bufnr)
       	-- local opts = {buffer = bufnr, remap = false}
	    -- vim.keymap.set("n", "gd", function() vim.lsp.buf.definition() end, opts)
    end
}

Manual Installation

If you don't want to use lspconfig you can refer to the LSP documentation for Neovim for manually registering the server.

What's New

  • Improved completion in YQL files.
  • Added support for chunk in indexing expressions
  • Minor bug fixes.

Vespa CLI 8.526.15

28 May 15:40
6c4a638
Compare
Choose a tag to compare

The command-line tool for Vespa.ai.

Use it on Vespa instances running locally, remotely or in the cloud.
Prefer web service API's to this in production.

See Vespa documentation and getting started with Vespa
CLI
.

Run make to build and test - make sure to use go 1.18 or higher.