Skip to content

Commit a3627b2

Browse files
author
sanfrancrisko
authored
Merge pull request #314 from da-ar/release-prep
(GH-313) Prepare 1.3.0 Release
2 parents 22bc531 + b612bb7 commit a3627b2

File tree

8 files changed

+20
-8
lines changed

8 files changed

+20
-8
lines changed

CHANGELOG.md

Lines changed: 11 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -6,6 +6,17 @@ Check [Keep a Changelog](http://keepachangelog.com/) for recommendations on how
66

77
## Unreleased
88

9+
## 1.3.0 - 2021-09-30
10+
11+
### Changed
12+
13+
- ([Commit](https://github.com/puppetlabs/puppet-editor-services/pull/314/commits/239de128a166c694b7ef88f916d46aaf4ec9ecd5)) Update puppet-lint to 2.5.2
14+
- ([Commit](https://github.com/puppetlabs/puppet-editor-services/pull/314/commits/84be8fb50d259c9f26a7d721560a3700b6577101)) Update bolt static metadata to 3.18.0)) Update puppet-lint to 2.5.2
15+
16+
### Fixed
17+
18+
- ([GH-311](https://github.com/puppetlabs/puppet-editor-services/issues/311)) Languageserver doesn't start with Puppet 7.11.0
19+
920
## 1.2.0 - 2021-05-26
1021

1122
### Added

Rakefile

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -54,8 +54,8 @@ task :gem_revendor do
5454
gem_list = [
5555
{
5656
:directory => 'puppet-lint',
57-
:github_repo => 'https://github.com/rodjek/puppet-lint.git',
58-
:github_ref => '2.4.2',
57+
:github_repo => 'https://github.com/puppetlabs/puppet-lint.git',
58+
:github_ref => '2.5.2',
5959
},
6060
{
6161
:directory => 'hiera-eyaml',

lib/puppet-languageserver/static_data/bolt-boltlib.json

Lines changed: 1 addition & 1 deletion
Large diffs are not rendered by default.
Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
{"functions":[{"key":"log::error","calling_source":null,"source":null,"line":null,"char":null,"length":null,"doc":"Log an error message.\n\nMessages logged at this level typically indicate that the plan encountered an\nerror that can be recovered from. For example, you might log a message at the\n`error` level if you want to inform the user an action running on a target\nfailed but that the plan will continue running.\n\nSee [Logs](logs.md) for more information about Bolt's log levels.\n\n> **Note:** Not available in apply block","function_version":4,"signatures":[{"key":"log::error(Any $message)","doc":"Log an error message.\n\nMessages logged at this level typically indicate that the plan encountered an\nerror that can be recovered from. For example, you might log a message at the\n`error` level if you want to inform the user an action running on a target\nfailed but that the plan will continue running.\n\nSee [Logs](logs.md) for more information about Bolt's log levels.\n\n> **Note:** Not available in apply block","return_types":["Undef"],"parameters":[{"name":"message","doc":"The message to log.","types":["Any"],"signature_key_offset":15,"signature_key_length":8}]}]},{"key":"log::warn","calling_source":null,"source":null,"line":null,"char":null,"length":null,"doc":"Log a warning message.\n\nMessages logged at this level typically include messages about deprecated\nbehavior or potentially harmful situations that might affect the plan run.\nFor example, you might log a message at the `warn` level if you are\nplanning to make a breaking change to your plan in a future release and\nwant to notify users.\n\nSee [Logs](logs.md) for more information about Bolt's log levels.\n\n> **Note:** Not available in apply block","function_version":4,"signatures":[{"key":"log::warn(Any $message)","doc":"Log a warning message.\n\nMessages logged at this level typically include messages about deprecated\nbehavior or potentially harmful situations that might affect the plan run.\nFor example, you might log a message at the `warn` level if you are\nplanning to make a breaking change to your plan in a future release and\nwant to notify users.\n\nSee [Logs](logs.md) for more information about Bolt's log levels.\n\n> **Note:** Not available in apply block","return_types":["Undef"],"parameters":[{"name":"message","doc":"The message to log.","types":["Any"],"signature_key_offset":14,"signature_key_length":8}]}]},{"key":"log::info","calling_source":null,"source":null,"line":null,"char":null,"length":null,"doc":"Log an info message.\n\nMessages logged at this level typically include high-level information about\nwhat a plan is doing. For example, you might log a message at the `info` level\nthat informs users that the plan is reading a file on disk.\n\nSee [Logs](logs.md) for more information about Bolt's log levels.\n\n> **Note:** Not available in apply block","function_version":4,"signatures":[{"key":"log::info(Any $message)","doc":"Log an info message.\n\nMessages logged at this level typically include high-level information about\nwhat a plan is doing. For example, you might log a message at the `info` level\nthat informs users that the plan is reading a file on disk.\n\nSee [Logs](logs.md) for more information about Bolt's log levels.\n\n> **Note:** Not available in apply block","return_types":["Undef"],"parameters":[{"name":"message","doc":"The message to log.","types":["Any"],"signature_key_offset":14,"signature_key_length":8}]}]},{"key":"log::debug","calling_source":null,"source":null,"line":null,"char":null,"length":null,"doc":"Log a debugging message.\n\nMessages logged at this level typically include detailed information about\nwhat a plan is doing. For example, you might log a message at the `debug`\nlevel that shows what value is returned from a function invocation.\n\nSee [Logs](logs.md) for more information about Bolt's log levels.\n\n> **Note:** Not available in apply block","function_version":4,"signatures":[{"key":"log::debug(Any $message)","doc":"Log a debugging message.\n\nMessages logged at this level typically include detailed information about\nwhat a plan is doing. For example, you might log a message at the `debug`\nlevel that shows what value is returned from a function invocation.\n\nSee [Logs](logs.md) for more information about Bolt's log levels.\n\n> **Note:** Not available in apply block","return_types":["Undef"],"parameters":[{"name":"message","doc":"The message to log.","types":["Any"],"signature_key_offset":15,"signature_key_length":8}]}]},{"key":"log::trace","calling_source":null,"source":null,"line":null,"char":null,"length":null,"doc":"Log a trace message.\n\nMessages logged at this level typically include the most detailed information\nabout what a plan is doing. For example, you might log a message at the `trace`\nlevel that describes how a plan is manipulating data.\n\nSee [Logs](logs.md) for more information about Bolt's log levels.\n\n> **Note:** Not available in apply block","function_version":4,"signatures":[{"key":"log::trace(Any $message)","doc":"Log a trace message.\n\nMessages logged at this level typically include the most detailed information\nabout what a plan is doing. For example, you might log a message at the `trace`\nlevel that describes how a plan is manipulating data.\n\nSee [Logs](logs.md) for more information about Bolt's log levels.\n\n> **Note:** Not available in apply block","return_types":["Undef"],"parameters":[{"name":"message","doc":"The message to log.","types":["Any"],"signature_key_offset":15,"signature_key_length":8}]}]},{"key":"log::fatal","calling_source":null,"source":null,"line":null,"char":null,"length":null,"doc":"Log a fatal message.\n\nMessages logged at this level indicate that the plan encountered an error that\ncould not be recovered from. For example, you might log a message at the\n`fatal` level if a service is unavailable and the plan cannot continue running\nwithout it.\n\nSee [Logs](logs.md) for more information about Bolt's log levels.\n\n> **Note:** Not available in apply block","function_version":4,"signatures":[{"key":"log::fatal(Any $message)","doc":"Log a fatal message.\n\nMessages logged at this level indicate that the plan encountered an error that\ncould not be recovered from. For example, you might log a message at the\n`fatal` level if a service is unavailable and the plan cannot continue running\nwithout it.\n\nSee [Logs](logs.md) for more information about Bolt's log levels.\n\n> **Note:** Not available in apply block","return_types":["Undef"],"parameters":[{"name":"message","doc":"The message to log.","types":["Any"],"signature_key_offset":15,"signature_key_length":8}]}]}]}
Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
{"functions":[{"key":"out::message","calling_source":null,"source":null,"line":null,"char":null,"length":null,"doc":"Output a message for the user.\n\nThis will print a message to stdout when using the human output format,\nand print to stderr when using the json output format\n\n> **Note:** Not available in apply block","function_version":4,"signatures":[{"key":"out::message(Any $message)","doc":"Output a message for the user.\n\nThis will print a message to stdout when using the human output format,\nand print to stderr when using the json output format\n\n> **Note:** Not available in apply block","return_types":["Undef"],"parameters":[{"name":"message","doc":"The message to output.","types":["Any"],"signature_key_offset":17,"signature_key_length":8}]}]}]}
1+
{"functions":[{"key":"out::verbose","calling_source":null,"source":null,"line":null,"char":null,"length":null,"doc":"Output a message for the user when running in verbose mode.\n\nThis will print a message to stdout when using the human output format,\nand print to stderr when using the json output format. Messages are\nalso logged at the `debug` level. For more information about logs, see\n[Logs](logs.md).\n\n> **Note:** Not available in apply block","function_version":4,"signatures":[{"key":"out::verbose(Any $message)","doc":"Output a message for the user when running in verbose mode.\n\nThis will print a message to stdout when using the human output format,\nand print to stderr when using the json output format. Messages are\nalso logged at the `debug` level. For more information about logs, see\n[Logs](logs.md).\n\n> **Note:** Not available in apply block","return_types":["Undef"],"parameters":[{"name":"message","doc":"The message to output.","types":["Any"],"signature_key_offset":17,"signature_key_length":8}]}]},{"key":"out::message","calling_source":null,"source":null,"line":null,"char":null,"length":null,"doc":"Output a message for the user.\n\nThis will print a message to stdout when using the human output format,\nand print to stderr when using the json output format. Messages are\nalso logged at the `info` level. For more information about logs, see\n[Logs](logs.md).\n\n> **Note:** Not available in apply block","function_version":4,"signatures":[{"key":"out::message(Any $message)","doc":"Output a message for the user.\n\nThis will print a message to stdout when using the human output format,\nand print to stderr when using the json output format. Messages are\nalso logged at the `info` level. For more information about logs, see\n[Logs](logs.md).\n\n> **Note:** Not available in apply block","return_types":["Undef"],"parameters":[{"name":"message","doc":"The message to output.","types":["Any"],"signature_key_offset":17,"signature_key_length":8}]}]}]}

lib/puppet_editor_services/version.rb

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
# frozen_string_literal: true
22

33
module PuppetEditorServices
4-
PUPPETEDITORSERVICESVERSION = '1.2.0' unless defined? PUPPETEDITORSERVICESVERSION
4+
PUPPETEDITORSERVICESVERSION = '1.3.0' unless defined? PUPPETEDITORSERVICESVERSION
55

66
# @api public
77
#

tools/bolt_introspect/README.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -22,5 +22,5 @@ This should regenerate all of the bolt files in `/lib/puppet-languageserver/stat
2222
2323
| Component | Version |
2424
| --------------- | ------- |
25-
| Bolt | 3.8.1 |
26-
| Editor Services | 1.2.0 |
25+
| Bolt | 3.18.0 |
26+
| Editor Services | 1.3.0 |

vendor/README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@ Note - To improve the packaging size, test files etc. were stripped from the Gem
1111
Gem List
1212
--------
1313

14-
* puppet-lint (https://github.com/rodjek/puppet-lint.git ref 2.4.2)
14+
* puppet-lint (https://github.com/puppetlabs/puppet-lint.git ref 2.5.2)
1515
* hiera-eyaml (https://github.com/voxpupuli/hiera-eyaml ref v2.1.0)
1616
* puppetfile-resolver (https://github.com/glennsarti/puppetfile-resolver.git ref 0.3.0)
1717
* molinillo (https://github.com/CocoaPods/Molinillo.git ref 0.6.6)

0 commit comments

Comments
 (0)