From 657026a11ec6d4160a825a7e804576713eabfbe9 Mon Sep 17 00:00:00 2001 From: confused_techie Date: Fri, 22 Mar 2024 07:22:08 -0700 Subject: [PATCH 1/3] 1.115.0 Changelog Entries --- CHANGELOG.md | 15 +++++++++++++++ packages/welcome/lib/changelog-view.js | 22 +++++----------------- 2 files changed, 20 insertions(+), 17 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 0657be76f..2515f8eb1 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -7,6 +7,21 @@ ## [Unreleased] - Fixed some folds in Ruby like `unless`, some blocks, multiline comments, function calls, and different array syntaxes for strings and keywords. +## 1.115.0 +- Improved the accuracy of indentation hinting in modern Tree-sitter grammars, especially in multi-cursor scenarios. +- Improved the ability of the user to opt into a specific kind of grammar for a specific language. +- Changed the behavior of the `grammar-selector` package so that it will show the user's preferred grammar for a specific language. +- Updated to version `0.20.9` of `web-tree-sitter`. +- Improved syntax highlighting, indentation, and code folding in various languages, including TypeScript, shell scripts, Ruby, and C/C++. + +### Pulsar +- Fixed: Fixed folds for Ruby [@mauricioszabo](https://github.com/pulsar-edit/pulsar/pull/956) +- Fixed: Tree-sitter fixes: 1.115 edition [@savetheclocktower](https://github.com/pulsar-edit/pulsar/pull/941) +- Updated: cirrus: Update Rolling upload token again [@DeeDeeG](https://github.com/pulsar-edit/pulsar/pull/960) +- Fixed: cirrus: Various fixes for macOS Cirrus CI [@DeeDeeG](https://github.com/pulsar-edit/pulsar/pull/961) +- Fixed: Fix(fuzzy-finder) fs.lstatSync throws Exception if not a file or dir [@schadomi7](https://github.com/pulsar-edit/pulsar/pull/944) +- Updated: CI: Update Rolling upload token for Cirrus CI [@DeeDeeG](https://github.com/pulsar-edit/pulsar/pull/936) +- Updated: Cirrus: Install older dotenv gem version ~> 2.8 (< 3) [@DeeDeeG](https://github.com/pulsar-edit/pulsar/pull/937) ## 1.114.0 diff --git a/packages/welcome/lib/changelog-view.js b/packages/welcome/lib/changelog-view.js index 43099ef2e..34481a946 100644 --- a/packages/welcome/lib/changelog-view.js +++ b/packages/welcome/lib/changelog-view.js @@ -50,31 +50,19 @@ export default class ChangeLogView {

Feel free to read our Full Change Log.

From 219e42da38ecc06b4e224f476196f69122189485 Mon Sep 17 00:00:00 2001 From: DeeDeeG Date: Fri, 22 Mar 2024 19:57:50 -0400 Subject: [PATCH 2/3] changelog: Fix typo in a contributor's GitHub handle --- CHANGELOG.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 2515f8eb1..438a3c7f2 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -36,7 +36,7 @@ - Bumped dugite to make the github package compatible with ARM Linux. ### Pulsar -- Fixed: fix(tree-sitter): pass node text to grammar [@claytoncarter](https://github.com/pulsar-edit/pulsar/pull/860) +- Fixed: fix(tree-sitter): pass node text to grammar [@claytonrcarter](https://github.com/pulsar-edit/pulsar/pull/860) - Fixed: Fix issue with Markdown rendering after line break in strict mode [@savetheclocktower](https://github.com/pulsar-edit/pulsar/pull/889) - Updated: Update README badges [@Daeraxa](https://github.com/pulsar-edit/pulsar/pull/891) - Updated: Update copyright year to 2024 [@Daeraxa](https://github.com/pulsar-edit/pulsar/pull/870) @@ -57,7 +57,7 @@ ### PPM - Fixed: Fix test failure due to missing atom command [@toddy15](https://github.com/pulsar-edit/ppm/pull/124) - Updated: Update syntax-variables.less to include language entity colors [@savetheclocktower](https://github.com/pulsar-edit/ppm/pull/123) -- Added: feat(link): add --force flag [@claytoncarter](https://github.com/pulsar-edit/ppm/pull/122) +- Added: feat(link): add --force flag [@claytonrcarter](https://github.com/pulsar-edit/ppm/pull/122) ### github - Updated: Bump dugite to 2.5.2 [@DeeDeeG](https://github.com/pulsar-edit/github/pull/39) From d3853eee34a76a61dbb119b4ac7db7254bd3bd90 Mon Sep 17 00:00:00 2001 From: DeeDeeG Date: Fri, 22 Mar 2024 20:16:06 -0400 Subject: [PATCH 3/3] changelog: Adjust/add changelog entry for PR 956 --- CHANGELOG.md | 3 ++- packages/welcome/lib/changelog-view.js | 3 +++ 2 files changed, 5 insertions(+), 1 deletion(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 438a3c7f2..8a6e6a8e1 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -6,8 +6,9 @@ ## [Unreleased] -- Fixed some folds in Ruby like `unless`, some blocks, multiline comments, function calls, and different array syntaxes for strings and keywords. ## 1.115.0 + +- Fixed some folds in Ruby like `unless`, some blocks, multiline comments, function calls, and different array syntaxes for strings and keywords. - Improved the accuracy of indentation hinting in modern Tree-sitter grammars, especially in multi-cursor scenarios. - Improved the ability of the user to opt into a specific kind of grammar for a specific language. - Changed the behavior of the `grammar-selector` package so that it will show the user's preferred grammar for a specific language. diff --git a/packages/welcome/lib/changelog-view.js b/packages/welcome/lib/changelog-view.js index 34481a946..391335f0f 100644 --- a/packages/welcome/lib/changelog-view.js +++ b/packages/welcome/lib/changelog-view.js @@ -49,6 +49,9 @@ export default class ChangeLogView {

Take a look at some of the awesome things {atom.branding.name} has changed:

Feel free to read our Full Change Log.

    +
  • + Fixed some folds in Ruby like unless, some blocks, multiline comments, function calls, and different array syntaxes for strings and keywords. +
  • Improved the accuracy of indentation hinting in modern Tree-sitter grammars, especially in multi-cursor scenarios.