Skip to content

Releases: pesde-pkg/pesde

v0.5.0-rc.16

08 Dec 13:12
13594d6
Compare
Choose a tag to compare
v0.5.0-rc.16 Pre-release
Pre-release

0.5.0-rc.16 - 2024-12-08

The previous release changed how scripts work. Read about it here.

Fixed

  • Do not require lib or bin exports if package exports scripts by @daimond113

v0.5.0-rc.15

08 Dec 13:10
7311427
Compare
Choose a tag to compare
v0.5.0-rc.15 Pre-release
Pre-release

0.5.0-rc.15 - 2024-12-08

This release changes how scripts work. They will no longer be synced to ~/.pesde/scripts, instead they have become a pesde package. To support this they will be linked to .pesde/{alias}/{script_name}.luau. To migrate, add the following:

[dev_dependencies]
scripts = { name = "pesde/scripts_rojo", version = "^0.1.0", target = "lune" }
rojo = { name = "pesde/rojo", version = "^7.4.4", target = "lune" }

and change your scripts section to this:

[scripts]
roblox_sync_config_generator = ".pesde/scripts/roblox_sync_config_generator.luau"
sourcemap_generator = ".pesde/scripts/sourcemap_generator.luau"

This change should make scripts much easier to use and allows them to be versioned properly.

Added

  • Add improved CLI styling by @daimond113
  • Install pesde dependencies before Wally to support scripts packages by @daimond113
  • Support packages exporting scripts by @daimond113
  • Support using workspace root as a member by @daimond113

Removed

  • Remove special scripts repo handling to favour standard packages by @daimond113

Fixed

  • Link dependencies before type extraction to support more use cases by @daimond113
  • Strip .luau extension from linker modules' require paths to comply with Luau by @daimond113
  • Correctly handle graph paths for resolving overriden packages by @daimond113
  • Do not require -- in bin package executables on Unix by @daimond113

v0.5.0-rc.14

30 Nov 10:51
f69c05a
Compare
Choose a tag to compare
v0.5.0-rc.14 Pre-release
Pre-release

0.5.0-rc.14 - 2024-11-30

Fixed

  • Fix includes not supporting root files by @daimond113

v0.5.0-rc.13

28 Nov 17:39
43d0949
Compare
Choose a tag to compare
v0.5.0-rc.13 Pre-release
Pre-release

0.5.0-rc.13 - 2024-11-28

Added

  • Print that no updates are available in outdated command by @daimond113
  • Support negated globs in workspace_members field by @daimond113
  • Make includes use glob patterns by @daimond113
  • Use symlinks for workspace dependencies to not require reinstalling by @daimond113
  • Add auth token command to print the auth token for the index by @daimond113
  • Support specifying which external registries are allowed on registries by @daimond113

Fixed

  • Install dependencies of packages in x command by @daimond113

Performance

v0.5.0-rc.12

22 Nov 18:55
9268159
Compare
Choose a tag to compare
v0.5.0-rc.12 Pre-release
Pre-release

0.5.0-rc.12 - 2024-11-22

Added

Fixed

  • Fix peer dependencies being resolved incorrectly by @daimond113
  • Set PESDE_ROOT to the correct path in pesde run by @daimond113

v0.5.0-rc.11

20 Nov 19:20
8531252
Compare
Choose a tag to compare
v0.5.0-rc.11 Pre-release
Pre-release

0.5.0-rc.11 - 2024-11-20

Fixed

  • Add back mistakenly removed updates check caching by @daimond113
  • Set download error source to inner error to propagate the error by @daimond113
  • Correctly copy workspace packages by @daimond113

v0.5.0-rc.9

16 Nov 14:44
00b470b
Compare
Choose a tag to compare
v0.5.0-rc.9 Pre-release
Pre-release

0.5.0-rc.9 - 2024-11-16

Fixed

Changed

  • self-upgrade now will check for updates by itself by default by @daimond113

v0.5.0-rc.10

16 Nov 17:52
c5d6054
Compare
Choose a tag to compare
v0.5.0-rc.10 Pre-release
Pre-release

0.5.0-rc.10 - 2024-11-16

Fixed

  • Fix self-install doing a cross-device move by @daimond113

Changed

  • Only store pesde_version executables in the version cache by @daimond113

v0.5.0-rc.8

12 Nov 15:23
1be3bf5
Compare
Choose a tag to compare
v0.5.0-rc.8 Pre-release
Pre-release

0.5.0-rc.8 - 2024-11-12

This release includes a major switch to async Rust. If something worked before and now doesn't please open an issue.

Added

  • Add --index flag to publish command to publish to a specific index by @daimond113

Fixed

  • Use a different algorithm for finding a CAS directory to avoid issues with mounted drives by @daimond113
  • Remove default.project.json from Git pesde dependencies by @daimond113
  • Correctly (de)serialize workspace specifiers by @daimond113
  • Fix CAS finder algorithm issues with Windows by @daimond113
  • Fix CAS finder algorithm's AlreadyExists error by @daimond113
  • Use moved path when setting file to read-only by @daimond113

Changed

  • Switched to fs-err for better errors with file system operations by @daimond113
  • Use body bytes over multipart for publishing packages by @daimond113

Performance

v0.5.0-rc.7

30 Oct 19:06
7057211
Compare
Choose a tag to compare
v0.5.0-rc.7 Pre-release
Pre-release

0.5.0-rc.7 - 2024-10-30

Added

Fixed

  • Use updated aliases when reusing lockfile dependencies by @daimond113
  • Listen for device flow completion without requiring pressing enter by @daimond113
  • Sync scripts repo in background by @daimond113
  • Don't make CAS files read-only on Windows (file removal is disallowed if the file is read-only) by @daimond113
  • Validate package names are lowercase by @daimond113

Performance

Changed

  • Optimize boolean expression in publish command by @daimond113