@moonrepo/cli 1.8.2 → 1.9.0

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (3) hide show
  1. package/CHANGELOG.md +37 -1110
  2. package/README.md +2 -2
  3. package/package.json +8 -8
package/CHANGELOG.md CHANGED
@@ -1,5 +1,41 @@
1
1
  # Changelog
2
2
 
3
+ ## 1.9.0
4
+
5
+ #### 🚀 Updates
6
+
7
+ - Added VCS hooks management support.
8
+ - Added `vcs.hooks` and `vcs.syncHooks` settings to `.moon/workspace.yml`.
9
+ - Added `moon sync hooks` command.
10
+ - Added `--clean` and `--force` flags to `moon sync codeowners` command.
11
+ - Updated `moon init` to:
12
+ - Detect an applicable VCS provider and set the `vcs.provider` setting.
13
+ - Convert a detected tool version to a fully-qualified semantic version.
14
+ - **Node.js**
15
+ - Moved syncing logic from `InstallNodeDeps` action to `SetupNodeTool` action. This includes
16
+ syncing `packageManager`, `engines`, and version files. This should feel more natural.
17
+
18
+ #### 🐞 Fixes
19
+
20
+ - Fixed an issue where task hashes would be different between Windows and Unix machines.
21
+ - Root cause is that arguments would use different path separators.
22
+ - Fixed an issue where `dev`, `start`, or `serve` tasks would not always be marked as `local`.
23
+ - Fixed an issue where inherited tasks parameters (inputs, deps, etc) would sometimes be lost based
24
+ on the merge strategy.
25
+ - Fixed an issue with dependency graph cycle detection.
26
+
27
+ #### ⚙️ Internal
28
+
29
+ - Updated to proto v0.11.
30
+ - Dropped SVN support since it was never finished and doesn't work.
31
+ - Improved VCS file handling, caching, and performance.
32
+
33
+ ## 1.8.3
34
+
35
+ #### 🐞 Fixes
36
+
37
+ - Fixed an issue where command line arguments were incorrectly escaped in Bash shells.
38
+
3
39
  ## 1.8.2
4
40
 
5
41
  #### 🐞 Fixes
@@ -32,8 +68,7 @@
32
68
  - Added a new action to the graph, `SyncWorkspace`, that'll be used for workspace-level checks.
33
69
  - Added `workspace.syncing` and `workspace.synced` webhooks.
34
70
  - Added `MOON_OUTPUT_STYLE` and `MOON_RETRY_COUNT` environment variables.
35
-
36
- - Rust
71
+ - **Rust**
37
72
  - Improved Cargo workspace root and members detection.
38
73
 
39
74
  #### ⚙️ Internal
@@ -325,1111 +360,3 @@
325
360
  Woodpecker.
326
361
  - Will now attempt to detect CD environments for more accurate metrics.
327
362
  - We now create a [cache directory tag](https://bford.info/cachedir) in `.moon/cache`.
328
-
329
- ## 0.26.6
330
-
331
- #### 🐞 Fixes
332
-
333
- - Fixed an issue where using a custom project language would break the project graph cache.
334
-
335
- ## 0.26.5
336
-
337
- #### 🐞 Fixes
338
-
339
- - Fixed an issue with pnpm lockfile parsing.
340
- - Fixed an issue where the project graph cache wouldn't be invalidated if moon was ran from a
341
- sub-directory.
342
-
343
- ## 0.26.4
344
-
345
- #### 🐞 Fixes
346
-
347
- - Fixed an issue where failing tasks ran with the global `moon` binary wouldn't bubble up the
348
- correct exit code.
349
- - Fixed an issue where a root-level project was synced as a TypeScript project reference to itself.
350
-
351
- ## 0.26.3
352
-
353
- #### 🚀 Updates
354
-
355
- - Task `inputs` declared as literal file paths will now be logged to the console as a warning when
356
- they do not exist during hashing.
357
-
358
- #### 🐞 Fixes
359
-
360
- - Fixed an issue when project dependencies that form a cycle would recurse indefinitely and panic.
361
-
362
- ## 0.26.2
363
-
364
- #### 🐞 Fixes
365
-
366
- - Fixed an issue where tasks with `cache` disabled were considered empty hashes when declared as a
367
- dependency of another task.
368
- - Fixed an issue where matching against `package.json` workspaces would sometimes fail.
369
- - Fixed an issue where glob parsing would sometimes fail on Windows.
370
-
371
- ## 0.26.1
372
-
373
- #### 🚀 Updates
374
-
375
- - Unknown config fields will now display a warning.
376
-
377
- #### 🐞 Fixes
378
-
379
- - Fixed an issue where `moon docker setup` couldn't find the manifest file for staged builds.
380
-
381
- #### ⚙️ Internal
382
-
383
- - Added a `MOON_DEBUG_PROCESS_ENV` env var for debugging processes.
384
- - Updated glob failures to include the glob expression for easier debugging.
385
-
386
- ## 0.26.0
387
-
388
- #### 💥 Breaking
389
-
390
- - Toolchain has been moved to `~/.proto` from `~/.moon`. This should be a transparent change, but at
391
- minimum your tools will be re-downloaded and installed.
392
- - Targets that generate an empty hash are now considered a failure, as they may be an edge case not
393
- accounted for.
394
-
395
- #### 🚀 Updates
396
-
397
- - Added a `moon docker setup` command for efficiently installing project dependencies.
398
- - Added a `moon query hash` command for inspecting the hash manifest.
399
- - Added a `moon query hash-diff` command for diffing 2 hashes.
400
- - Updated moon's toolchain to build upon [proto](https://github.com/moonrepo/proto), our new
401
- toolchain layer.
402
- - Updated our toolchain and configuration to take `.prototools` into account.
403
-
404
- #### 🐞 Fixes
405
-
406
- - Fixed hashing to avoid including `git status` files when running in CI.
407
- - Fixed an issue where dependencies of an affected target were not always being ran.
408
- - Fixed an issue where gitignored folders were being considered projects if the globs matched.
409
- - Fixed an issue where project-level glob negations (starting with `!`) weren't being handled
410
- correctly.
411
-
412
- #### ⚙️ Internal
413
-
414
- - Updated terminal checkpoint colors for tools to pink (to match proto).
415
- - Migrated to rustls from openssl. Please report any TLS/SSL issues.
416
- - Loosened `package.json` parsing.
417
-
418
- ## 0.25.4
419
-
420
- #### 🐞 Fixes
421
-
422
- - Fixed an issue where an object `browser` field in `package.json` would fail to parse.
423
- - Fixed an issue where checking for a new version would constantly run.
424
- - Fixed an issue where `moon upgrade` would not report a newer available version.
425
-
426
- ## 0.25.3
427
-
428
- #### 🐞 Fixes
429
-
430
- - Fixed an issue where workspace relative `outputs` were not being included in the hashed tarball.
431
-
432
- #### ⚙️ Internal
433
-
434
- - Reduced new version check to once every 12 hours.
435
-
436
- ## 0.25.2
437
-
438
- #### 🐞 Fixes
439
-
440
- - Fixed an issue where hashing would attempt to hash a directory and crash.
441
- - Fixed an issue where attempting to hash a large number of files (think 10,000) would hang.
442
- - Fixed an issue where offline checks would take longer than expected.
443
- - Fixed an issue where the project graph cache would not invalidate when Rust internals have
444
- changed.
445
-
446
- ## 0.25.1
447
-
448
- #### 🚀 Updates
449
-
450
- - Added a `--force` flag to `moon run` that will bypass affected checks. Useful for always forcing a
451
- run in CI.
452
-
453
- #### 🐞 Fixes
454
-
455
- - Fixed an issue where `moon init` would panic while checking for a newer version.
456
-
457
- ## 0.25.0
458
-
459
- #### 💥 Breaking
460
-
461
- - Updated `node.version` and `node.<packageManager>.version` to no longer default to a hard-coded
462
- version. When not defined, will fallback to the binary available on `PATH`.
463
- - Updated touched files (in context and queries) to be workspace relative paths instead of absolute.
464
-
465
- #### 🚀 Updates
466
-
467
- - Added experimental Deno tier 2 support.
468
- - Added offline (no internet connection) support.
469
- - Added project-level TypeScript settings via `toolchain.typescript` in `moon.yml`.
470
- - Updated `language` setting in `moon.yml` to support any custom language.
471
- - Updated project, task, and target identifiers to support periods (`.`).
472
-
473
- ##### Moonbase
474
-
475
- - CI runs can now be tracked in moonbase to gather insights and metrics.
476
-
477
- #### 🐞 Fixes
478
-
479
- - Fixed an issue where task outputs were considered as input sources when hashing, causing
480
- unnecessary cache misses.
481
-
482
- #### ⚙️ Internal
483
-
484
- - Updated Rust to v1.67.
485
- - Updated local development to support BSD based unix distros.
486
- - Added `context` to `pipeline.started` and `pipeline.finished` events.
487
- - Refactored glob matching to use workspace relative paths instead of absolute. Please report an
488
- issue if hashing or affected detection is now inaccurate.
489
- - We now build against older operating systems in an attempt to solve GLIBC version errors.
490
-
491
- ## 0.24.3
492
-
493
- #### 🐞 Fixes
494
-
495
- - Fixed an issue where `moon query projects --affected` would hang indefinitely waiting for stdin.
496
- - Fixed an issue where changing `projects` globs wouldn't immediately invalidate the cache.
497
-
498
- ## 0.24.2
499
-
500
- #### 🚀 Updates
501
-
502
- - Added Homebrew as an installation option.
503
- - Added a `moon upgrade` command to upgrade moon to the latest version.
504
-
505
- #### 🐞 Fixes
506
-
507
- - Fixed `moon bin` failing, even when a tool has been configured.
508
-
509
- ## 0.24.1
510
-
511
- #### 🐞 Fixes
512
-
513
- - Fixed an issue around comparison estimate calculation for run reports.
514
-
515
- ## 0.24.0
516
-
517
- Remote caching is now publicly available through our new service
518
- [moonbase](https://moonrepo.dev/moonbase)! Sign up for a [free account](https://moonrepo.app/) and
519
- immediately see the benefits in your CI pipelines.
520
-
521
- #### 💥 Breaking
522
-
523
- - Moved `moon query projects` JSON output behind a `--json` flag.
524
- - Moved `moon query touched-files` JSON output behind a `--json` flag.
525
-
526
- #### 🚀 Updates
527
-
528
- - Added a `moon completions` command for generating shell completions.
529
- - Added [TypeScript v5](https://devblogs.microsoft.com/typescript/announcing-typescript-5-0-beta/)
530
- support.
531
- - Added a `hasher.walkStrategy` setting to `.moon/workspace.yml`.
532
- - Updated `moon query projects` and `moon query touched-files` default output to be easily readable
533
- and parseable.
534
-
535
- ##### Projects
536
-
537
- - Added a `platform` setting to `moon.yml`, allowing the default platform to be defined for all
538
- tasks.
539
- - Updated task `outputs` to support token functions (`@group`, `@globs`, etc).
540
-
541
- ##### Runner
542
-
543
- - Added an `--interactive` flag to `moon run` to force a target to run in interactive mode.
544
- - Updated tasks marked as `local` to always run in interactive mode.
545
-
546
- #### 🐞 Fixes
547
-
548
- - Fixed an issue where moon would write to `package.json` or `tsconfig.json` with no changes,
549
- causing modified events to trigger.
550
-
551
- #### ⚙️ Internal
552
-
553
- - Added initial Go lang support to our toolchain.
554
- - Added a `comparisonEstimate` block to run reports.
555
- - Added `baselineDuration` and `estimatedSavings` to `pipeline.finished` events.
556
-
557
- ## 0.23.4
558
-
559
- #### 🐞 Fixes
560
-
561
- - Fixed an issue where pnpm lockfile parsing would fail when not workspaces enabled.
562
-
563
- ## 0.23.3
564
-
565
- #### 🐞 Fixes
566
-
567
- - Fixed an issue where `git ls-files --deduplicate` wasn't available on older git versions.
568
-
569
- #### ⚙️ Internal
570
-
571
- - Minor internal changes for upcoming remote caching changes.
572
-
573
- ## 0.23.2
574
-
575
- #### 🐞 Fixes
576
-
577
- - Fixed a recursion issue when attempting to install dependencies and a post-install script would
578
- trigger the process again.
579
- - Fixed an issue where a task may be hashed with the incorrect Node.js version.
580
- - Fixed an issue when running Node.js tasks and the toolchain has not been configured.
581
- - Fixed a typo when installing npm dependencies: `node install` -> `npm install`
582
-
583
- #### 0.23.1
584
-
585
- #### 🐞 Fixes
586
-
587
- - Fixed an issue where scoped tasks were not being inherited for projects that relied on language
588
- detection.
589
-
590
- #### 0.23.0
591
-
592
- #### 💥 Breaking
593
-
594
- - Renamed `.moon/project.yml` to `.moon/tasks.yml`.
595
- - Moved `runner.implicitDeps` from `.moon/workspace.yml` to `.moon/tasks.yml` as `implicitDeps`.
596
- - Moved `runner.implicitInputs` from `.moon/workspace.yml` to `.moon/tasks.yml` as `implicitInputs`.
597
-
598
- #### 🚀 Updates
599
-
600
- - We've improved our task inheritance model to support scoped inheritance based on a project's
601
- `language` and `type`.
602
- - Now supports `.moon/tasks/<language>.yml` and `.moon/tasks/<language>-<type>.yml` configuration
603
- files.
604
- - Added a top-level `env` setting to `moon.yml`.
605
- - Updated task `outputs` to support globs.
606
- - Updated `moon migrate from-turborepo` to preserve globs in outputs.
607
- - Updated project graph to no longer cache when there's no VCS root.
608
- - Updated pnpm to use the new `pnpm dedupe` command when the version is >= 7.26.0.
609
-
610
- #### 🐞 Fixes
611
-
612
- - Fixed an issue where directories in task `inputs` not using `**/*` would crash git.
613
- - Fixed an issue where the project graph cache was not always resetting based on changes.
614
- - Fixed an issue where run report action durations were innacurate.
615
-
616
- #### ⚙️ Internal
617
-
618
- - Updated our internal hasher to also take into account untracked files when hashing a directory.
619
-
620
- #### 0.22.0
621
-
622
- #### 💥 Breaking
623
-
624
- - Renamed the `runner.*` webhook events to `pipeline.*`.
625
- - Renamed the `--upstream` option to `--remote`.
626
- - Removed the `--report` option from `moon check` and `moon run` commands. Reports are now always
627
- created.
628
-
629
- #### 🚀 Updates
630
-
631
- - We've improved our smart hashing for other use cases besides task running. The first improvement
632
- is that we now hash dependencies to determine whether to run a dependency install, or to skip!
633
- This is much more accurate than before, which only relied on lockfile modified timestamps.
634
- - Added a `moon migrate from-turborepo` command to migrate from Turborepo to moon.
635
- - Updated `moon docker` commands to take into account other programming languages when scaffolding
636
- files.
637
-
638
- ##### Config
639
-
640
- - Added a `versionConstraint` setting to `.moon/workspace.yml` that enforces a requirement on the
641
- running moon binary.
642
-
643
- ##### Pipeline
644
-
645
- - We've refactored the pipeline to use a new thread pool strategy so that we have more control over
646
- concurrency. This also paves the way for future output reporters.
647
- - Added global `--concurrency` option to all `moon` commands, allowing the thread count to be
648
- customized.
649
-
650
- ##### Projects
651
-
652
- - Updated the `project` fields in `moon.yml` to be optional, excluding `description`.
653
-
654
- ##### Toolchain
655
-
656
- - Added Bun as a tier 1 language (doesn't do much at the moment).
657
- - Our toolchain now creates shims for all installed tools, and also utilizes these shims when
658
- executing commands in the pipeline. (Unix only)
659
-
660
- #### 🐞 Fixes
661
-
662
- - Fixed an issue where `~/.moon` is deleted, but local caching isn't aware of it missing and fails
663
- to run a target.
664
- - Fixed an issue where long-running processes would not exit even after moon has exited.
665
-
666
- ## 0.21.4
667
-
668
- #### 🐞 Fixes
669
-
670
- - Fixed an issue where `runFromWorkspaceRoot` wasn't working correctly for node module binaries.
671
-
672
- ## 0.21.3
673
-
674
- #### 🚀 Updates
675
-
676
- - Updated all global CLI arguments (`--log`, etc) to be able to passed anywhere in the command line.
677
- They no longer have to be passed _before_ the command.
678
-
679
- #### 🐞 Fixes
680
-
681
- - Fixed an issue where a task's `platform` was being incorrectly merged when inheriting global
682
- tasks.
683
-
684
- ## 0.21.2
685
-
686
- #### 🚀 Updates
687
-
688
- - Added a `--json` flag to `moon dep-graph` and `moon project-graph` that will return the nodes and
689
- edges data as JSON.
690
-
691
- #### ⚙️ Internal
692
-
693
- - We now include the version and file path of the moon binary being executed in the logs for
694
- debugging purposes.
695
- - Updated remote caching to use a new upload endpoint.
696
-
697
- ## 0.21.1
698
-
699
- #### 🐞 Fixes
700
-
701
- - Fixed an issue with `moon project-graph` that would not include nodes without edges.
702
- - Fixed an issue running the install script in WSL.
703
-
704
- ## 0.21.0
705
-
706
- #### 🚀 Updates
707
-
708
- - We've rewritten our project graph to use eager-loading instead of lazy-loading to improve
709
- performance, and to avoid mutating borrowed data across threads in Rust. We're also no longer
710
- cloning project information unnecessarily, which is a massive memory reduction boost.
711
- - We've also rewritten our dependency graph in a similar fashion, and are now able to efficiently
712
- reference data from the project graph while building the dependency chain.
713
- - You may now install the `@moonrepo/cli` package globally with pnpm and yarn. When running these
714
- globals, moon will attempt to use the binary found in the repo's node modules.
715
-
716
- ##### Core
717
-
718
- - Added a new cache level, `read-write`, that can be passed to `--cache` or `MOON_CACHE`. This is
719
- now the default level, while `write` is now a write-only level.
720
- - Added `--minimal` to `moon init` for quick scaffolding and prototyping.
721
- - Updated the system platform to include the operating system and architecture when hashing.
722
- - Updated remote caching to use presigned URLs when available.
723
-
724
- ##### Graphs
725
-
726
- - Updated `moon dep-graph` and `moon project-graph` to serve interactive graph visualizers using the
727
- cytoscape library. The DOT output has moved behind a `--dot` flag.
728
-
729
- ##### Runner
730
-
731
- - Added `--updateCache` (`-u`) to `moon check` and `moon run` that force updates the cache and
732
- bypasses any existing cache.
733
- - Added `args` and `env` as valid values for the `affectedFiles` task option.
734
- - Updated `moon run` and `moon query touched-files` to support a list of `--status` options.
735
- - Updated pnpm prune to use the [pnpm-deduplicate](https://www.npmjs.com/package/pnpm-deduplicate)
736
- package.
737
-
738
- ##### Toolchain
739
-
740
- - Added 24 hour temporary caching to version manifests to improve performance.
741
- - Updated default versions of tools:
742
- - pnpm 7.14.0 -> 7.18.2
743
- - yarn 3.2.4 -> 3.3.0
744
-
745
- #### 🐞 Fixes
746
-
747
- - Fixed an issue where "installing yarn" would constantly show.
748
- - Fixed an issue on Windows where `package.json` and `tsconfig.json` would change newlines
749
- unexpectedly when saving.
750
- - Fixed an issue with `^:deps` that would resolve projects with a non-matching task.
751
-
752
- #### ⚙️ Internal
753
-
754
- - Updated Rust to v1.66.
755
-
756
- ## 0.20.3
757
-
758
- #### 🐞 Fixes
759
-
760
- - Fixed an issue where Node.js arm64 was no longer working within the toolchain.
761
-
762
- ## 0.20.2
763
-
764
- #### 🐞 Fixes
765
-
766
- - Fixed an issue where env files (`.env`) would not be considered as task inputs. We've also updated
767
- `env_file` to be an implicit input.
768
- - Fixed an issue where changes to a nested `package.json` were not triggering automatic installs.
769
-
770
- ## 0.20.1
771
-
772
- #### 🐞 Fixes
773
-
774
- - Fixed a "byte index is out of bounds" panic when a task has caching disabled.
775
-
776
- ## 0.20.0
777
-
778
- #### 💥 Breaking
779
-
780
- - Moved the `node` and `typescript` settings from `.moon/workspace.yml` to a new config,
781
- `.moon/toolchain.yml`.
782
- - Moved the `workspace.node` and `workspace.typescript` settings in `moon.yml` to `toolchain.node`
783
- and `toolchain.typescript`.
784
-
785
- #### 🚀 Updates
786
-
787
- - Added `runner.archivableTargets` to `.moon/workspace.yml` to control which targets are cached as
788
- archives.
789
- - Added `vcs.remoteCandidates` to `.moon/workspace.yml` to customize the remotes for git to query
790
- against.
791
- - Added support for `moduleSuffixes` and `moduleDetection` in TypeScript `tsconfig.json` compiler
792
- options.
793
- - Added Google Cloud Build and AWS CodeBuild to the list of CI providers to detect. results.
794
-
795
- ##### Toolchain
796
-
797
- - Implemented a new toolchain, that is more efficient and performant.
798
- - Will now log to the terminal when node, npm, etc, are being installed for the first time.
799
-
800
- ##### Runner
801
-
802
- - Updated the terminal output to include a shortened version of each task hash.
803
- - Reworked the terminal output when running multiple tasks in parallel, or for long-running
804
- processes.
805
- - Implemented a new file tree diffing algorithm that speeds up task output hydration by 10x.
806
- - Updated pnpm to no longer run `pnpm prune` while deduping dependencies, as it produces unexpected
807
- results.
808
-
809
- ##### Generator
810
-
811
- - Added `path_join` and `path_relative` template filters.
812
- - Added pre-defined template variables for the working dir, destination, and workspace root.
813
-
814
- #### 🐞 Fixes
815
-
816
- - When writing JSON files, it will now respect the `indent_style = tab` setting in the closest
817
- `.editorconfig`.
818
- - When writing YAML files, indentation and formatting will be inferred from the closest
819
- `.editorconfig` as best as possible.
820
- - Fixed an issue where parsing `yarn.lock` would panic on certain Windows machines.
821
- - Fixed an issue where `moon docker prune` would remove required node modules.
822
-
823
- #### ⚙️ Internal
824
-
825
- - Migrated our json/yaml libraries to the official serde crates.
826
- - Migrated to nextest for better testing performance.
827
-
828
- ## 0.19.1
829
-
830
- #### 🚀 Updates
831
-
832
- - Task `affectedFiles` will also be set via the `MOON_AFFECTED_FILES` env var.
833
-
834
- #### 🐞 Fixes
835
-
836
- - The runner will no longer attempt to install dependencies if running against affected files.
837
- - Fixed some unexpected panics in relation to non-installed tools.
838
-
839
- ## 0.19.0
840
-
841
- #### 💥 Breaking
842
-
843
- - We've refactored how npm/pnpm/yarn work in the toolchain. Previously, they were installed as
844
- global packages (or via corepack) within the configured `~/.moon/tools/node` version. This
845
- approach worked but was susceptible to collisions, so now, these package managers are installed
846
- individually as their own tools at `~/.moon/tools/npm`, etc. This change should be transparent to
847
- you, but we're documenting it just in case something breaks!
848
- - We've updated the dependency graph so that `InstallDeps` based actions use the task's `platform`
849
- instead of the project's `language` as the tool to install. This allows for granular control at
850
- the task level, and also unlocks the ability for project's to utilize multiple languages in the
851
- future.
852
-
853
- #### 🚀 Updates
854
-
855
- - When writing JSON files, indentation and formatting will be inferred from the closest
856
- `.editorconfig` as best as possible.
857
- - When applicable, `moon ci` will group and collapse logs based on the current CI/CD environment.
858
- - Updated webhook payloads to contain information about the current CI/CD environment under the
859
- `environment` field.
860
-
861
- ##### Runner
862
-
863
- - Added an `affectedFiles` task option, allowing a filtered list of paths based on affected files to
864
- be passed as command line arguments. Perfect for git hooks!
865
-
866
- ##### Generator
867
-
868
- - When generating files and a JSON or YAML file exists at the destination, you now have the option
869
- of merging files, instead of replacing entirely.
870
-
871
- #### 🐞 Fixes
872
-
873
- - Fixed an issue where passthrough args were incorrectly being passed to non-primary targets when
874
- using `moon run`.
875
- - Fixed an issue where a root-level project was not being marked as affected based on touched files.
876
- - Fixed an issue where tool version overrides at the project-level were not properly being set, and
877
- configuration that is root-only was being referenced in projects.
878
- - Fixed some CLI arguments that should be ran mutually exclusive with other arguments.
879
- - Task hashes will now properly invalidate if their dependencies hashes have also changed.
880
-
881
- #### ⚙️ Internal
882
-
883
- - Updated Rust to v1.65.
884
-
885
- ## 0.18.2
886
-
887
- #### 🐞 Fixes
888
-
889
- - Another attempt at fixing missing cache issues.
890
- - Fixed an issue where moon would crash on old git versions (< 2.22.0) attempting to get the branch
891
- name. We encourage everyone to use v2.22 as the git minimum version.
892
-
893
- ## 0.18.1
894
-
895
- #### 🚀 Updates
896
-
897
- - Improved the resolution and hashing of `package.json` dependencies for Yarn and pnpm.
898
-
899
- #### 🐞 Fixes
900
-
901
- - Fixed an issue where caching would fail on missing `stdout.log` and `stderr.log` files.
902
-
903
- ## 0.18.0
904
-
905
- #### 🚀 Updates
906
-
907
- - Refactored `moon init` heavily for a better onboarding experience.
908
- - Each tool is now configured individually, with its own prompts. Tools can also be skipped.
909
- - Tools can now be initialized _after_ moon already exists, ala `moon init --tool node`.
910
- - Fixed many issues around the templates and rendering.
911
- - Updated the `moon check` command to support an `--all` flag.
912
- - Updated `moon migrate` commands to throw an error if the work tree is dirty. This can be bypassed
913
- with the new `--skipTouchedFilesCheck` option.
914
- - Updated the `projects` setting in `.moon/workspace.yml` to support globs _and_ a map in unison.
915
- - Updated default versions of tools:
916
- - node 16.17.0 -> 18.12.0
917
- - pnpm 7.12.1 -> 7.14.0
918
- - yarn 3.2.3 -> 3.2.4
919
-
920
- ##### Runner
921
-
922
- - Added a `node.binExecArgs` setting to `.moon/workspace.yml`, so that additional `node` CLI
923
- arguments may be passed when executing the binary to run targets.
924
- - Updated the task `command` to default to "noop" when not defined.
925
- - The stdout and stderr of ran targets are now stored as individual log files in
926
- `.moon/cache/states/<project>/<task>`. This allows CI environments to cache them as artifacts,
927
- upload/download them, or simply help developers debug broken jobs.
928
- - Also, these log files are now stored in the output tarballs.
929
-
930
- #### ⚙️ Internal
931
-
932
- - Timestamps have been updated to UTC _without timezone_.
933
- - Implemented a benchmarking system to start capturing performance changes.
934
- - Improved language and platform interoperability.
935
- - Extended configurations will now be temporarily cached for 4 hours.
936
-
937
- ## 0.17.0
938
-
939
- #### 💥 Breaking
940
-
941
- - Refactored project and task name/id cleaning. Previously, unsupported characters were simply
942
- removed. Instead, we now replace them with dashes for better readability.
943
- - The task `type` in `moon.yml` and `.moon/project.yml` has been renamed to `platform`.
944
- - The `$taskType` token has been renamed to `$taskPlatform`.
945
-
946
- #### 🚀 Updates
947
-
948
- - All YAML configuration files can now use
949
- [aliases and anchors](https://support.atlassian.com/bitbucket-cloud/docs/yaml-anchors/)!
950
- - The `moon check` command can now use the `--report` option.
951
-
952
- ##### Tasks
953
-
954
- - When defining `deps` within the current project, the `~:` prefix is now optional. For example,
955
- `~:build` can now be written as simply `build`.
956
-
957
- ##### Generator
958
-
959
- - Enum variables can now declare an object form for `values`, so that a custom label can be provided
960
- for each value item.
961
- - Added JSON schema support for the `template.yml` config.
962
-
963
- ##### Notifier
964
-
965
- - Implemented a new service for notifying you about events happening in moon. The first feature in
966
- this service is webhooks!
967
- - Added a new `notifier.webhookUrl` setting to `.moon/workspace.yml`, in which the webhooks endpoint
968
- can be defined.
969
-
970
- #### ⚡️ Performance
971
-
972
- - Enabled [mimalloc](https://github.com/microsoft/mimalloc). This reduces memory cost and increases
973
- runtime performance.
974
- - Enabled link-time optimization, increases runtime performance.
975
-
976
- ## 0.16.1
977
-
978
- #### 🐞 Fixes
979
-
980
- - Fixed an issue where `moon init` would generate a config with invalid settings.
981
- - Fixed an issue where downloading a tool would fail, but moon would still continue.
982
-
983
- ## 0.16.0
984
-
985
- #### 🚀 Updates
986
-
987
- ##### Projects
988
-
989
- - Projects can now override the workspace configured Node.js version on a per-project basis using
990
- the new `workspace.node.version` setting in `moon.yml`. However, this does not override the
991
- package manager!
992
- - Package managers workspaces (via `package.json`) are no longer required. When not enabled, or a
993
- project is not within the workspace, it will install dependencies directly within the project
994
- root, and will utilize its own lockfile.
995
-
996
- ##### TypeScript
997
-
998
- - Added a new `typescript.routeOutDirToCache` setting to `.moon/workspace.yml`, that will update the
999
- `outDir` compiler option to route to `.moon/cache/types`.
1000
- - Added a new `typescript.syncProjectReferencesToPaths` setting to `.moon/workspace.yml`, that will
1001
- map project references to compiler option `paths` aliases.
1002
-
1003
- ##### Generator
1004
-
1005
- - Template files can now be suffixed with `.tera` or `.twig` for syntax highlighting.
1006
-
1007
- ##### Runner
1008
-
1009
- - The running command will now be displayed when installing dependencies (npm install, etc). This
1010
- can be toggled with the `runner.logRunningCommand` setting.
1011
- - The dedupe command will now be displayed when running if the `node.dedupeOnLockfileChange` setting
1012
- is enabled.
1013
- - Added a new `runner.implicitDeps` setting to `.moon/workspace.yml`, that will add task `deps` to
1014
- _all_ tasks.
1015
-
1016
- #### 📚 Docs
1017
-
1018
- - Config file settings will now link to their API types.
1019
-
1020
- #### ⚙️ Internal
1021
-
1022
- - We've renamed and restructured the `.moon/cache` directory. If you were relying on any of these
1023
- files, you'll need to update your implementation.
1024
- - Updated Cargo dependencies. A big change was clap v3 -> v4, so if you encounter any CLI issues,
1025
- please report.
1026
-
1027
- ## 0.15.0
1028
-
1029
- #### 🚀 Updates
1030
-
1031
- - When running multiple targets in parallel, we've reworked the output prefix to be uniform amongst
1032
- all targets, and to be colored to uniquely identify each target.
1033
- - Added a new `moon docker scaffold` command for scaffolding a skeleton workspace for use within
1034
- `Dockerfile`s.
1035
- - Added a new `moon docker prune` command for pruning the Docker environment for a build/deply.
1036
- - Added frontmatter support to all template files.
1037
- - Added a `node.yarn.plugins` setting to `.moon/workspace.yml`.
1038
- - Updated run reports (via `--report`) to include additional information, like the total duration,
1039
- and estimated time savings.
1040
- - Updated default versions of tools:
1041
- - node 16.16.0 -> 16.17.0
1042
- - npm 8.16.0 -> 8.19.2
1043
- - pnpm 7.9.0 -> 7.12.1
1044
- - yarn 3.2.2 -> 3.2.3
1045
-
1046
- #### 🐞 Fixes
1047
-
1048
- - Added missing `.npmrc` to the list of pnpm config files.
1049
- - Improved the handling of Rust/Go binaries shipped in pnpm node modules.
1050
-
1051
- #### ⚙️ Internal
1052
-
1053
- - Updated Rust to v1.64.
1054
- - Windows:
1055
- - Will always use PowerShell and avoids `cmd.exe` entirely.
1056
- - Reworked commands that run through PowerShell to pass arguments via stdin.
1057
-
1058
- ## 0.14.1
1059
-
1060
- #### 🐞 Fixes
1061
-
1062
- - Fixed an issue where alias warnings were logged while scanning the dependency graph.
1063
- - Windows:
1064
- - Updated `*.cmd` executions to run with PowerShell when available. This resolves issues around
1065
- file paths with special characters or spaces.
1066
-
1067
- ## 0.14.0
1068
-
1069
- #### 🎉 Release
1070
-
1071
- - Released a new GitHub action,
1072
- [`moonrepo/run-report-action`](https://github.com/marketplace/actions/moon-ci-run-reports)!
1073
-
1074
- #### 💥 Breaking
1075
-
1076
- - Reworked how caching/hashing works when running in a Docker container/image. If the VCS root
1077
- cannot be found, we disable caching. This removes the requirement of mounting a `.git` volume for
1078
- Docker.
1079
-
1080
- #### 🚀 Updates
1081
-
1082
- - Added a new `moon generate` command, for code generation and scaffolding.
1083
- - Added a `generator` setting to `.moon/workspace.yml`, for controlling aspects of the generator and
1084
- its templates.
1085
- - Updated the project graph to scan and find implicit dependencies based on language specific
1086
- semantics. For example, will determine moon project relationships based on `package.json` names
1087
- and dependencies.
1088
- - Updated `moon setup` to also install Node.js dependencies.
1089
-
1090
- #### 🐞 Fixes
1091
-
1092
- - Fixed an issue where project and task names were not being cleaned/formatted properly.
1093
-
1094
- ## 0.13.0
1095
-
1096
- #### 💥 Breaking
1097
-
1098
- - The `node` setting in `.moon/workspace.yml` is now optional, allowing repos to opt-out of Node.js
1099
- support (in preparation for future languages support). This shouldn't affect you if the setting is
1100
- already explicitly defined.
1101
- - Renamed `actionRunner` setting to `runner` in `.moon/workspace.yml`.
1102
-
1103
- #### 🚀 Updates
1104
-
1105
- - Added a new `moon check` command, for running all build/test tasks for a project(s).
1106
- - Added a `hasher` setting to `.moon/workspace.yml`, for controlling aspects of smart hashing.
1107
- - Updated hashing to utilize the resolved version from the lockfile when applicable.
1108
- - Updated the action runner to fail when an output is defined and the output does not exist after
1109
- being ran.
1110
- - Released a new `@moonrepo/types` npm package.
1111
-
1112
- #### ⚙️ Internal
1113
-
1114
- - The `SetupToolchain` action has been updated to be language/platform aware, and as such, was split
1115
- into `SetupNodeTool` and `SetupSystemTool`.
1116
- - Output is now buffered when running a target. This should reduce tearing and increase performance.
1117
- - Upgraded all Cargo dependencies.
1118
-
1119
- ## 0.12.1
1120
-
1121
- #### 🐞 Fixes
1122
-
1123
- - Fixed `init` templates being populated with the wrong default values.
1124
- - Fixed the "creation time is not available for the filesystem" error when running in Docker.
1125
-
1126
- ## 0.12.0
1127
-
1128
- #### 💥 Breaking
1129
-
1130
- - The `typescript` setting in `.moon/workspace.yml` is now optional, allowing repos to opt-out of
1131
- TypeScript support. This shouldn't affect you if the setting is already explicitly defined.
1132
-
1133
- #### 🚀 Updates
1134
-
1135
- - Added support for Linux ARM GNU (`aarch64-unknown-linux-gnu`).
1136
- - Added support for Linux ARM musl (`aarch64-unknown-linux-musl`).
1137
- - Added a `workspace.typescript` setting to `moon.yml`, allowing TypeScript support to be toggled
1138
- per project.
1139
- - Added a `--report` option to the `moon run` command, for generating run reports for debugging.
1140
- - Added an `--affected` option to the `moon query projects` command.
1141
- - Updated the task `command` to also support inline arguments. You can now merge `command` and
1142
- `args` into a single field.
1143
-
1144
- ## 0.11.1
1145
-
1146
- #### 🐞 Fixes
1147
-
1148
- - Fixed an issue where `system` tasks were hashing incorrect contents.
1149
- - Fixed an issue where `envFile` is enabled and the relevant `.env` file may not exist in CI.
1150
-
1151
- ## 0.11.0
1152
-
1153
- #### 🚀 Updates
1154
-
1155
- - Added a `moon clean` command for manually clearing the cache.
1156
- - Added an `actionRunner.cacheLifetime` setting to `.moon/workspace.yml`, for controlling the stale
1157
- cache threshold.
1158
- - Added an `envFile` option to tasks, allowing `.env` files to be loaded for environment variables.
1159
- - Added a `local` setting to tasks, that marks the task for local development only.
1160
- - Updated the `outputStyle` task option with additional variants: `buffer`, `buffer-only-failure`,
1161
- `hash`, `none`.
1162
- - Updated `moon run` to support running multiple targets concurrently.
1163
-
1164
- #### 🐞 Fixes
1165
-
1166
- - Fixed an issue where output hydration was bypassing "off" cache.
1167
- - Fixed an issue where parsing a node module binary would panic.
1168
- - Fixed an issue where moon would panic attempting to read non-JS code shipped in node modules (Rust
1169
- or Go binaries).
1170
- - Fixed an issue where project globs would pickup dot folders (`.git`, `.moon`, etc) or
1171
- `node_modules`.
1172
- - Fixed an issue where project names were stripping capital letters when using globs.
1173
-
1174
- #### ⚙️ Internal
1175
-
1176
- - Updated Rust to v1.63.
1177
-
1178
- ## 0.10.0
1179
-
1180
- #### 💥 Breaking
1181
-
1182
- - Task outputs are now cached as `.tar.gz` archives, instead of being copied as-is. This shouldn't
1183
- affect consumers, but we're raising awareness in case of any platform specific issues.
1184
- - Renamed the project-level `project.yml` file to `moon.yml`. The `.moon/project.yml` file has not
1185
- changed.
1186
-
1187
- #### 🚀 Updates
1188
-
1189
- - Projects now support language specific aliases, which can be used as a drop-in replacement for
1190
- names within targets and dependencies.
1191
- - Project and tasks names now support forward slashes (`/`).
1192
- - Added a `node.aliasPackageNames` setting to `.moon/workspace.yml`, that aliases the `package.json`
1193
- name to the respective project.
1194
- - Added an experimental `outputStyle` option to tasks, providing some control of how stdout/stderr
1195
- is handled.
1196
- - Added a `runDepsInParallel` option to tasks, that controls whether task dependencies run in
1197
- parallel or serial (in order).
1198
- - Updated tasks to automatically detect their `type` (when undefined) based on their defined
1199
- `command`. Will attempt to match against common system commands, like `rm`, `mkdir`, etc.
1200
- - When in CI, Node.js will not install dependencies if they were already installed before moon runs.
1201
- This should avoid unintentional and unnecessary double installs.
1202
- - Updated default versions of tools:
1203
- - node 16.15.0 -> 16.16.0
1204
- - npm 8.10.0 -> 8.16.0
1205
- - pnpm 7.1.5 -> 7.9.0
1206
- - yarn 3.2.1 -> 3.2.2
1207
-
1208
- #### 🐞 Fixes
1209
-
1210
- - Fixed some issues where task outputs were not being hydrated based on the state of the
1211
- target/project.
1212
- - Fixed an issue where task outputs were not considered for hash generation.
1213
-
1214
- ## 0.9.1
1215
-
1216
- #### 🐞 Fixes
1217
-
1218
- - Fixed an issue where a root-level project cannot be configured with a glob. Updated `projects`
1219
- glob matching to support `'.'`.
1220
- - Fixed an issue where moon was setup in a sub-folder. Updated git/svn to traverse upwards to find
1221
- the applicable root (`.git`, etc).
1222
-
1223
- ## 0.9.0
1224
-
1225
- #### 💥 Breaking
1226
-
1227
- We've refactored our smart hashing layer to take into account different platforms (a task's type) in
1228
- an effort to be more accurate, which now results in different hashes for the same build. Any
1229
- previous builds are no longer valid and can be removed.
1230
-
1231
- #### 🚀 Updates
1232
-
1233
- - Updated task `type` to be automatically inferred when the value is unknown, based on the owning
1234
- project's `language` (`javascript` = node, `bash` = system, etc).
1235
- - Updated `dependsOn` in `project.yml` to support an object form, where a scope (production,
1236
- development, peer) can also be defined. This maps to the appropriate field in `package.json` when
1237
- syncing.
1238
- - Added `batch` as a supported value for the project `language` setting (Windows counter-part to
1239
- `bash`).
1240
- - Added a `cache` option to tasks, which will disable smart hashing and output caching.
1241
- - Added a `node.dependencyVersionFormat` setting to `.moon/workspace.yml`, to customize the version
1242
- format when syncing dependencies.
1243
- - Added environment variable support to task `inputs` and `actionRunner.implicitInputs`, in the
1244
- format of `$ENV_VAR`.
1245
-
1246
- #### 🐞 Fixes
1247
-
1248
- - Fixed an issue where pnpm didn't work with `node-linker=isolated` for nested node modules.
1249
- - Fixed an issue where failing processes would display an empty error message.
1250
-
1251
- #### ⚙️ Internal
1252
-
1253
- - Outputs are now copied to `.moon/cache/outputs` instead of being hardlinked.
1254
- - Package binaries are now resolved to their canonical path when a symlink.
1255
-
1256
- ### 0.8.1
1257
-
1258
- #### 🐞 Fixes
1259
-
1260
- - Fixed a crash when `node.packageManager` was set to "pnpm" or "yarn" but `node.pnpm` or
1261
- `node.yarn` fields were not set.
1262
-
1263
- ## 0.8.0
1264
-
1265
- This release was largely focused on interoperability with the Node.js ecosystem, specifically
1266
- `package.json` scripts. It's the first step in many steps, so stay tuned!
1267
-
1268
- #### 🚀 Updates
1269
-
1270
- - Added a special `noop` command for tasks.
1271
- - Added a `moon migrate from-package-json` command for migrating `package.json` scripts to
1272
- `project.yml` tasks.
1273
- - Added a `moon sync` command for manually syncing all projects in the workspace to a healthy state.
1274
- - Added a `node.inferTasksFromScripts` setting to `.moon/workspace.yml`, that will automatically
1275
- infer tasks from `package.json` scripts (with caveats).
1276
- - Added aliases for popular commands:
1277
- - `moon r` -> `moon run`
1278
- - `moon p` -> `moon project`
1279
- - `moon pg` -> `moon project-graph`
1280
- - `moon dg` -> `moon dep-graph`
1281
-
1282
- #### 🐞 Fixes
1283
-
1284
- - Fixed an issue where files being hashed with git were not being cached accordingly.
1285
-
1286
- #### ⚙️ Internal
1287
-
1288
- - Runfiles are no longer cleaned up when running tasks.
1289
- - Reworked `package.json` and `tsconfig.json` handling to avoid race conditions.
1290
-
1291
- ## 0.7.0
1292
-
1293
- #### 💥 Breaking
1294
-
1295
- - The `language` and `type` settings in `project.yml` now default to "unknown" when the setting is
1296
- not defined, or the config does not exist. However, the language will also now be inferred
1297
- (below).
1298
-
1299
- #### 🚀 Updates
1300
-
1301
- - Updated project `language` to be automatically inferred when the value is unknown, based on the
1302
- existence of config files (`package.json` = javascript, `tsconfig.json` = typescript).
1303
- - Updated the `InstallNodeDeps` action to install dependencies when a `package.json` change is
1304
- detected.
1305
- - Added a `moon dep-graph` command for displaying the entire dependency graph in DOT format.
1306
- - Added `--language` and `--type` filter options to `moon query projects`.
1307
- - Added `$language`, `$projectType`, and `$taskType` token variables.
1308
- - Added `dev` as a non-CI task identifier (alongside `start` and `serve`).
1309
- - Token variables can now be used within task `inputs`.
1310
- - Multiple token variables can now be used within the same string.
1311
-
1312
- #### 🐞 Fixes
1313
-
1314
- - Fixed an issue where package binaries would not execute on pnpm.
1315
-
1316
- ## 0.6.0
1317
-
1318
- #### 🚀 Updates
1319
-
1320
- - Added a new `@group` token that can be used be task `args` and `inputs`.
1321
- - Added a `moon query` command for querying information about moon, the environment, and more.
1322
- - To start, `moon query touched-files` can be used to query touched files. The same files
1323
- `moon ci` and `moon run` use.
1324
- - Also `moon query projects` can be used to query about projects in the project graph.
1325
- - Added `bash` as a supported value for the project `language` setting.
1326
- - Added `typescript.createMissingConfig` and `typescript.rootOptionsConfigFileName` settings to
1327
- `.moon/workspace.yml`.
1328
- - Updated TypeScript project reference syncing to automatically create missing `tsconfig.json`s.
1329
- - Updated `moon setup` and `moon teardown` to display spinners while running.
1330
-
1331
- #### 🐞 Fixes
1332
-
1333
- - Fixed an issue with a globally installed moon not being executable in PowerShell.
1334
- - Fixed an issue with empty files being passed to `git hash-object`.
1335
- - Fixed an issue where a `git merge-base` could not be resolved when base and head are provided.
1336
-
1337
- #### ⚙️ Internal
1338
-
1339
- - Updated Rust to v1.62.
1340
- - Refactored our action runner to support additional languages in the future.
1341
- - Refactored Windows to execute package binaries with `node.exe` directly, instead of with
1342
- `cmd.exe` + the `.bin/*.cmd` file.
1343
-
1344
- ## 0.5.0
1345
-
1346
- #### 🚀 Updates
1347
-
1348
- - Added caching to our VCS layer which should greatly reduce the amount of `git` commands being
1349
- executed.
1350
- - Updated `moon init` to detect `vcs.manager` and `vcs.defaultBranch` from the environment.
1351
-
1352
- #### ⚙️ Internal
1353
-
1354
- - We now detect the current Windows terminal using the `COMSPEC` environment variable, instead of
1355
- defaulting to `cmd.exe`.
1356
- - Improved our configuration layer so that error messages include more metadata.
1357
- - Added `#[track_caller]` to more easily diagnose panics.
1358
-
1359
- ### 0.4.1
1360
-
1361
- #### 🐞 Fixes
1362
-
1363
- - Fixed logs unintentionally logging non-moon messages.
1364
-
1365
- ## 0.4.0
1366
-
1367
- #### 🚀 Updates
1368
-
1369
- - Added an `extends` setting to `.moon/workspace.yml` and `.moon/project.yml`.
1370
- - Added a `actionRunner.logRunningCommand` setting to `.moon/workspace.yml` for logging the task
1371
- command being ran.
1372
- - Added a global `--logFile` option to the CLI. Also supports a new `MOON_LOG_FILE` environment
1373
- variable.
1374
- - When targets are being ran in parallel, their output is now prefixed with the target name to
1375
- differentiate. This is currently only enabled in CI.
1376
-
1377
- #### 🐞 Fixes
1378
-
1379
- - More fixes around terminal color output and handling.
1380
-
1381
- #### 📚 Documentation
1382
-
1383
- - Add "released in version" badges/labels to new features across all docs.
1384
-
1385
- #### ⚙️ Internal
1386
-
1387
- - Temporarily disabling offline internet checks as it has issues with VPNs. Will revisit in the
1388
- future.
1389
-
1390
- ### 0.3.1
1391
-
1392
- #### 🐞 Fixes
1393
-
1394
- - Fixed an issue where tasks referencing workspace relative files were not being marked as affected.
1395
- - Fixed some issues during `moon init` config generation.
1396
- - Improved offline checks by also verifying against Google's DNS.
1397
-
1398
- ## 0.3.0
1399
-
1400
- #### 💥 Breaking
1401
-
1402
- - Moved the `project.type` setting in `project.yml` to the top-level. Is now simply `type`.
1403
-
1404
- #### 🚀 Updates
1405
-
1406
- - Added support for a list of globs when configuring the `projects` setting in
1407
- `.moon/workspace.yml`.
1408
- - Added a `actionRunner.inheritColorsForPipedTasks` setting to `.moon/workspace.yml` for inheriting
1409
- terminal colors for piped tasks.
1410
- - Added a `language` setting to `project.yml` for defining the primary programming language of a
1411
- project.
1412
- - Added a global `--color` option to the CLI. Also supports a new `MOON_COLOR` environment variable.
1413
-
1414
- #### 🐞 Fixes
1415
-
1416
- - Fixed many issues around terminal color output and handling.
1417
-
1418
- ## 0.2.0
1419
-
1420
- #### 🚀 Updates
1421
-
1422
- - Added support for macOS silicon (`aarch64-apple-darwin`).
1423
- - Added support for Linux musl (`x86_64-unknown-linux-musl`).
1424
- - Added support for the `MOON_LOG` environment variable.
1425
- - Added duration timestamps to all ran tasks in the terminal.
1426
- - Updated the JSON schemas to use the new package manager versions.
1427
- - Updated git file diffing to use `git merge-base` as the base reference.
1428
- - Updated `moon run` to exit early if there are no tasks for the provided target.
1429
- - Hashing will now ignore files that matched a pattern found in the root `.gitignore`.
1430
- - Passthrough args can now be defined for multi-target runs (`:target`).
1431
-
1432
- #### 🐞 Fixes
1433
-
1434
- - Fixed an issue with the `.moon/workspace.yml` template being generating with invalid whitespace
1435
- during `moon init`.
package/README.md CHANGED
@@ -83,8 +83,7 @@ and provide a first-class developer experience.
83
83
  - **Code generation** - Easily scaffold new applications, libraries, tooling, and more!
84
84
  - **Dependency workspaces** - Works alongside package manager workspaces so that projects have
85
85
  distinct dependency trees.
86
- - **Ownership metadata** - Declare an owner, maintainers, support channels, and more, for LDAP or
87
- another integration.
86
+ - **Code ownership** - Declare owners, maintainers, support channels, and more. Generate CODEOWNERS.
88
87
 
89
88
  #### Orchestration
90
89
 
@@ -102,3 +101,4 @@ and provide a first-class developer experience.
102
101
  gathering and insights.
103
102
  - **Terminal notifications** - Receives notifications in your chosen terminal when builds are
104
103
  successful... or are not.
104
+ - **Git hooks** - Manage Git hooks to enforce workflows and requirements for contributors.
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@moonrepo/cli",
3
- "version": "1.8.2",
3
+ "version": "1.9.0",
4
4
  "description": "moon command line and core system.",
5
5
  "keywords": [
6
6
  "moon",
@@ -29,12 +29,12 @@
29
29
  "detect-libc": "^2.0.1"
30
30
  },
31
31
  "optionalDependencies": {
32
- "@moonrepo/core-linux-arm64-gnu": "^1.8.2",
33
- "@moonrepo/core-linux-arm64-musl": "^1.8.2",
34
- "@moonrepo/core-linux-x64-gnu": "^1.8.2",
35
- "@moonrepo/core-linux-x64-musl": "^1.8.2",
36
- "@moonrepo/core-macos-arm64": "^1.8.2",
37
- "@moonrepo/core-macos-x64": "^1.8.2",
38
- "@moonrepo/core-windows-x64-msvc": "^1.8.2"
32
+ "@moonrepo/core-linux-arm64-gnu": "^1.9.0",
33
+ "@moonrepo/core-linux-arm64-musl": "^1.9.0",
34
+ "@moonrepo/core-linux-x64-gnu": "^1.9.0",
35
+ "@moonrepo/core-linux-x64-musl": "^1.9.0",
36
+ "@moonrepo/core-macos-arm64": "^1.9.0",
37
+ "@moonrepo/core-macos-x64": "^1.9.0",
38
+ "@moonrepo/core-windows-x64-msvc": "^1.9.0"
39
39
  }
40
40
  }