Huge News!Announcing our $40M Series B led by Abstract Ventures.Learn More
Socket
Sign inDemoInstall
Socket

@ansible/ansible-language-server

Package Overview
Dependencies
Maintainers
4
Versions
45
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

@ansible/ansible-language-server - npm Package Compare versions

Comparing version 0.2.5 to 0.2.6

0001-Release-0.2.6-from-GitHub-Actions-CI-CD.patch

65

CHANGELOG.md

@@ -0,1 +1,2 @@

<!-- markdownlint-disable no-duplicate-heading -->
# Change Log

@@ -8,9 +9,69 @@

## [0.2.6] - 2021-10-29
### Bugfixes
* Fix autocompletion of the builtin modules with EE (#94) @ganeshrn
## [0.2.5] - 2021-10-23
### Bugfixes
* Added a guard for linting only playbook files with the Ansible's
built-in syntax-check when ansible-lint is unavailable. This is used for
providing the diagnostics information (#89) @priyamsahoo
## [0.2.4] - 2021-10-19
### Major changes
The most notable changes that happened were:
* Renaming and publishing the package under the `@ansible` scope on
Npmjs. The new name is `@ansible/ansible-language-server` now
(#10) @webknjaz
* Deprecation of the initial `ansible-language-server` npm package that
existed in the global namespace prior to the rename @ganeshrn
* Adding the auto-completion and diagnostics support for Ansible
Execution Environments @ganeshrn
### Changes
* Started falling back to checking playbooks with the Ansible's built-in
syntax-check when `ansible-lint` is not installed or disabled (#5)
@priyamsahoo
* Set the minimum runtime prerequisites to `npm > 7.11.2` and
`node >= 12` (#23) @ssbarnea
* Updated the default settings value to use fully qualified collection
name (FQCN) during autocompletion (#37) @priyamsahoo
* Added auto-completion support for Ansible Execution Environments
(#42 #54 #55) @ganeshrn
* Added diagnostics support for Ansible Execution Environments (#53)
@ganeshrn
* Updated module completion return statement to support sorting as per
FQCN (#57) @priyamsahoo
### Bugfixes
* Added a fix to check that the module paths are directories before
globbing them during the documentation lookup (#38) @kimbernator
* Implemented documentation fragment discovery (#40) @tomaciazek
* Fixed sort `slice()` exception issue in `ansibleConfig` service (#76)
@ssbarnea
* Fixed an issue with progress handling when `ansible-lint` falls back
to `syntax check` (#88) @yaegassy
### Misc
* Replaced `decode`/`encodeURI` with a native VS Code mechanism (#8)
@tomaciazek
* Implemented the release CD via `workflow_dispatch` (#65) @webknjaz
## [0.1.0-1] - 2021-07-28
- Update npm package to include out folder
* Updated the npm package to include the `out/` folder
## [0.1.0] - 2021-07-28
- Initial ansible language server release. Based on the vscode-ansible plugin
* Initial ansible language server release. Based on the `vscode-ansible` plugin
developed by [Tomasz Maciążek](https://github.com/tomaciazek)

18

out/server/src/services/executionEnvironment.js

@@ -228,9 +228,8 @@ "use strict";

const updatedHostDocPath = [];
if (fs.existsSync(hostPluginDocCacheBasePath)) {
containerPluginPaths.forEach((srcPath) => {
updatedHostDocPath.push(path.join(hostPluginDocCacheBasePath, srcPath));
});
}
else {
containerPluginPaths.forEach((srcPath) => {
containerPluginPaths.forEach((srcPath) => {
const destPath = path.join(hostPluginDocCacheBasePath, srcPath);
if (fs.existsSync(destPath)) {
updatedHostDocPath.push(destPath);
}
else {
if (srcPath === '' ||

@@ -240,3 +239,2 @@ !this.isPluginInPath(containerName, srcPath, searchKind)) {

}
const destPath = path.join(hostPluginDocCacheBasePath, srcPath);
const destPathFolder = destPath

@@ -253,4 +251,4 @@ .split(path.sep)

updatedHostDocPath.push(destPath);
});
}
}
});
return updatedHostDocPath;

@@ -257,0 +255,0 @@ });

@@ -7,3 +7,3 @@ {

"license": "MIT",
"version": "0.2.5",
"version": "0.2.6",
"contributors": [

@@ -10,0 +10,0 @@ {

Sorry, the diff of this file is not supported yet

SocketSocket SOC 2 Logo

Product

  • Package Alerts
  • Integrations
  • Docs
  • Pricing
  • FAQ
  • Roadmap
  • Changelog

Packages

npm

Stay in touch

Get open source security insights delivered straight into your inbox.


  • Terms
  • Privacy
  • Security

Made with ⚡️ by Socket Inc