Skip to content

Commit

Permalink
Merge pull request #314 from da-ar/release-prep
Browse files Browse the repository at this point in the history
(GH-313) Prepare 1.3.0 Release
  • Loading branch information
sanfrancrisko authored Sep 30, 2021
2 parents 22bc531 + b612bb7 commit a3627b2
Show file tree
Hide file tree
Showing 8 changed files with 20 additions and 8 deletions.
11 changes: 11 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -6,6 +6,17 @@ Check [Keep a Changelog](http://keepachangelog.com/) for recommendations on how

## Unreleased

## 1.3.0 - 2021-09-30

### Changed

- ([Commit](https://github.com/puppetlabs/puppet-editor-services/pull/314/commits/239de128a166c694b7ef88f916d46aaf4ec9ecd5)) Update puppet-lint to 2.5.2
- ([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

### Fixed

- ([GH-311](https://github.com/puppetlabs/puppet-editor-services/issues/311)) Languageserver doesn't start with Puppet 7.11.0

## 1.2.0 - 2021-05-26

### Added
Expand Down
4 changes: 2 additions & 2 deletions Rakefile
Original file line number Diff line number Diff line change
Expand Up @@ -54,8 +54,8 @@ task :gem_revendor do
gem_list = [
{
:directory => 'puppet-lint',
:github_repo => 'https://github.com/rodjek/puppet-lint.git',
:github_ref => '2.4.2',
:github_repo => 'https://github.com/puppetlabs/puppet-lint.git',
:github_ref => '2.5.2',
},
{
:directory => 'hiera-eyaml',
Expand Down
2 changes: 1 addition & 1 deletion lib/puppet-languageserver/static_data/bolt-boltlib.json

Large diffs are not rendered by default.

1 change: 1 addition & 0 deletions lib/puppet-languageserver/static_data/bolt-log.json
Original file line number Diff line number Diff line change
@@ -0,0 +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}]}]}]}
2 changes: 1 addition & 1 deletion lib/puppet-languageserver/static_data/bolt-out.json
Original file line number Diff line number Diff line change
@@ -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}]}]}]}
{"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}]}]}]}
2 changes: 1 addition & 1 deletion lib/puppet_editor_services/version.rb
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
# frozen_string_literal: true

module PuppetEditorServices
PUPPETEDITORSERVICESVERSION = '1.2.0' unless defined? PUPPETEDITORSERVICESVERSION
PUPPETEDITORSERVICESVERSION = '1.3.0' unless defined? PUPPETEDITORSERVICESVERSION

# @api public
#
Expand Down
4 changes: 2 additions & 2 deletions tools/bolt_introspect/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -22,5 +22,5 @@ This should regenerate all of the bolt files in `/lib/puppet-languageserver/stat
| Component | Version |
| --------------- | ------- |
| Bolt | 3.8.1 |
| Editor Services | 1.2.0 |
| Bolt | 3.18.0 |
| Editor Services | 1.3.0 |
2 changes: 1 addition & 1 deletion vendor/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ Note - To improve the packaging size, test files etc. were stripped from the Gem
Gem List
--------

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

0 comments on commit a3627b2

Please sign in to comment.