Skip to content
Merged

v1.41 #2105

Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion .github/workflows/rust.yml
Original file line number Diff line number Diff line change
Expand Up @@ -111,7 +111,7 @@ jobs:
with:
auto-install: true
cache: true
proto-version: '0.52.3' # Keep in sync
proto-version: '0.53.0' # Keep in sync
- uses: mozilla-actions/[email protected]
if: ${{ vars.ENABLE_SCCACHE == 'true' }}
# Fixes issues where proto can't find a version because nothing is pinned globally
Expand Down
15 changes: 15 additions & 0 deletions .yarn/versions/f9e7200f.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,15 @@
releases:
'@moonrepo/cli': minor
'@moonrepo/core-linux-arm64-gnu': minor
'@moonrepo/core-linux-arm64-musl': minor
'@moonrepo/core-linux-x64-gnu': minor
'@moonrepo/core-linux-x64-musl': minor
'@moonrepo/core-macos-arm64': minor
'@moonrepo/core-macos-x64': minor
'@moonrepo/core-windows-x64-msvc': minor
'@moonrepo/types': minor

declined:
- '@moonrepo/report'
- '@moonrepo/runtime'
- website
57 changes: 57 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,62 @@
# Changelog

## Unreleased

#### 💥 Breaking

- **WASM API**
- Removed `ParseLockOutput.packages` field.

#### 🚀 Updates

- Added a new
[Deno toolchain implementation](https://github.com/moonrepo/plugins/tree/master/toolchains/deno),
powered entirely by our new WASM plugin system. It can be enabled with the `unstable_deno`
identifier.
- Supports tiers 1, 2, and 3!
- Parses `deno.json` and `deno.jsonc` manifest files.
- Parses `deno.lock` lock files.
- Will install dependencies with `deno install`.
- Pairs with the `unstable_javascript` toolchain.
- And much more!
- Added a new task input type that allows you to depend on changes to a project's files directly,
instead of depending on a project's task.
- Added URI support: `project://<id>`
- Added object support: `project: '<id>'`
- Can filter with globs or by file group.
- Can reference all project dependencies with `^`.
- Added a new task input type for referencing file groups within the owning project.
- Added URI support: `group://<name>`
- Added object support: `group: '<name>'`
- This is similar to the `@files`, `@globs`, etc, token functions.
- Added URI and object support for task output types, similar to inputs.
- `file://<path>` and `file: '<path>'`
- `glob://<pattern>` and `glob: '<pattern>'`
- Added `optional` support to file outputs.
- Added new values to the `runInCI` task option:
- `only` - Only run the task in CI, and not locally, when affected.
- `skip` - Skip running in CI but run locally and allow task relationships to be valid.

#### 🧰 Toolchains

- **JavaScript**
- Added Deno support. Can customize `packageManager` with `deno`.
- Added workspace member caching to reduce fs operations.
- Updated `install_dependencies` and `setup_environment` to take project toolchain configuration
into account.

#### 🧩 Plugins

- **WASM API**
- Added `ManifestDependencyConfig.reference` field.
- Added `SyncProjectInput.toolchain_workspace_config` field.

#### ⚙️ Internal

- Updated proto to [v0.53.0](https://github.com/moonrepo/proto/releases/tag/v0.53.0) (from 0.52.3).
- Updated Rust to v1.90.0.
- Updated dependencies.

## 1.40.5

#### 🧰 Toolchains
Expand Down
Loading
Loading