From 2fed59a7e5c955726bae245c7066f466b814ed63 Mon Sep 17 00:00:00 2001 From: confused-Techie Date: Thu, 15 Aug 2024 17:08:44 -0700 Subject: [PATCH 1/4] Add new changelog entries --- CHANGELOG.md | 21 +++++++++++++++++++++ packages/welcome/lib/changelog-view.js | 11 +++++++---- 2 files changed, 28 insertions(+), 4 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index f75fe9ec2d..619f8b3e7b 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -6,6 +6,27 @@ ## [Unreleased] +## 1.120.0 + +- Resolved some issues of using `pulsar -p` to access `ppm` in the command line on Windows. +- Added a new icon for Pulsar on Windows, increasing it's visual fidelity in most locations. +- [snippets] Fixed an issue with expanding snippet variables in certain scenarios if the snippet inserted new lines into the buffer. +- Updated misconfigured links in the `CONTRIBUTING.md` file. +- [ppm] Resolved in issue that could prevent renaming an existing package. + +### Pulsar +- Updated: ppm: Update ppm to commit d9bcff111146547e1f4dec63 [@DeeDeeG](https://github.com/pulsar-edit/pulsar/pull/1075) +- Fixed: [snippets] Fix incorrect range traversal when resolving variables [@savetheclocktower](https://github.com/pulsar-edit/pulsar/pull/1043) +- Added: [windows] Improve Icon [@confused-Techie](https://github.com/pulsar-edit/pulsar/pull/1072) +- Added: Use a different strategy for `pulsar -p` on Windows... [@savetheclocktower](https://github.com/pulsar-edit/pulsar/pull/1063) +- Fixed: CONTRIBUTING.MD link to section fixed [@gsabatini2016](https://github.com/pulsar-edit/pulsar/pull/1067) + +### PPM +- Updated: Begin less reliance on `async` package: Await as we go [@confused-Techie](https://github.com/pulsar-edit/ppm/pull/134) +- Fixed: Fix incorrect behavior on package rename [@savetheclocktower](https://github.com/pulsar-edit/ppm/pull/135) +- Updated: Update many dependencies [@DeeDeeG](https://github.com/pulsar-edit/ppm/pull/133) +- Revert: Revert "CI: Work around a weird bug in Yarn v1.x" [@DeeDeeG](https://github.com/pulsar-edit/ppm/pull/131) + ## 1.119.0 - Changed `language-php` to continue syntax-highlighting even when encountering unbalanced PHP tags. (Avoid throwing a syntax error) diff --git a/packages/welcome/lib/changelog-view.js b/packages/welcome/lib/changelog-view.js index 51ac57db59..493d429151 100644 --- a/packages/welcome/lib/changelog-view.js +++ b/packages/welcome/lib/changelog-view.js @@ -50,16 +50,19 @@ export default class ChangeLogView {

Feel free to read our Full Change Log.

From 59b7743b5daae4755c7cbcf369d0317052c963c1 Mon Sep 17 00:00:00 2001 From: confused-Techie Date: Thu, 15 Aug 2024 18:38:27 -0700 Subject: [PATCH 2/4] New changelog entry --- CHANGELOG.md | 1 + 1 file changed, 1 insertion(+) diff --git a/CHANGELOG.md b/CHANGELOG.md index 619f8b3e7b..bee060e854 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -15,6 +15,7 @@ - [ppm] Resolved in issue that could prevent renaming an existing package. ### Pulsar +- Fixed: Tree-sitter rolling fixes 1.120 edition [@savetheclocktower](https://github.com/pulsar-edit/pulsar/pull/1062) - Updated: ppm: Update ppm to commit d9bcff111146547e1f4dec63 [@DeeDeeG](https://github.com/pulsar-edit/pulsar/pull/1075) - Fixed: [snippets] Fix incorrect range traversal when resolving variables [@savetheclocktower](https://github.com/pulsar-edit/pulsar/pull/1043) - Added: [windows] Improve Icon [@confused-Techie](https://github.com/pulsar-edit/pulsar/pull/1072) From b41cfa4ea978eeff34ea32a45bff100377315d4c Mon Sep 17 00:00:00 2001 From: DeeDeeG Date: Thu, 15 Aug 2024 21:42:51 -0400 Subject: [PATCH 3/4] Changelog: Add note for the Tree-sitter 1.20.0 edition changes --- CHANGELOG.md | 1 + packages/welcome/lib/changelog-view.js | 3 +++ 2 files changed, 4 insertions(+) diff --git a/CHANGELOG.md b/CHANGELOG.md index bee060e854..5201933bba 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -13,6 +13,7 @@ - [snippets] Fixed an issue with expanding snippet variables in certain scenarios if the snippet inserted new lines into the buffer. - Updated misconfigured links in the `CONTRIBUTING.md` file. - [ppm] Resolved in issue that could prevent renaming an existing package. +- Various Tree-sitter improvements (folds, indents, custom queries, grammar updates...) ### Pulsar - Fixed: Tree-sitter rolling fixes 1.120 edition [@savetheclocktower](https://github.com/pulsar-edit/pulsar/pull/1062) diff --git a/packages/welcome/lib/changelog-view.js b/packages/welcome/lib/changelog-view.js index 493d429151..f1fdcfd5d0 100644 --- a/packages/welcome/lib/changelog-view.js +++ b/packages/welcome/lib/changelog-view.js @@ -64,6 +64,9 @@ export default class ChangeLogView {
  • [ppm] Resolved in issue that could prevent renaming an existing package.
  • +
  • + Various Tree-sitter improvements (folds, indents, custom queries, grammar updates...) +
  • From 43b39930ef301e07d4c233642c2b1ca9f7099405 Mon Sep 17 00:00:00 2001 From: DeeDeeG Date: Thu, 15 Aug 2024 21:43:50 -0400 Subject: [PATCH 4/4] Changelog: Fix typo ("in" --> "an") --- CHANGELOG.md | 2 +- packages/welcome/lib/changelog-view.js | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 5201933bba..aa42ccf9ec 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -12,7 +12,7 @@ - Added a new icon for Pulsar on Windows, increasing it's visual fidelity in most locations. - [snippets] Fixed an issue with expanding snippet variables in certain scenarios if the snippet inserted new lines into the buffer. - Updated misconfigured links in the `CONTRIBUTING.md` file. -- [ppm] Resolved in issue that could prevent renaming an existing package. +- [ppm] Resolved an issue that could prevent renaming an existing package. - Various Tree-sitter improvements (folds, indents, custom queries, grammar updates...) ### Pulsar diff --git a/packages/welcome/lib/changelog-view.js b/packages/welcome/lib/changelog-view.js index f1fdcfd5d0..f66a0b1c9f 100644 --- a/packages/welcome/lib/changelog-view.js +++ b/packages/welcome/lib/changelog-view.js @@ -62,7 +62,7 @@ export default class ChangeLogView { Updated misconfigured links in the CONTRIBUTING.md file.
  • - [ppm] Resolved in issue that could prevent renaming an existing package. + [ppm] Resolved an issue that could prevent renaming an existing package.
  • Various Tree-sitter improvements (folds, indents, custom queries, grammar updates...)