Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

chore: release #1737

Merged
merged 1 commit into from
Nov 1, 2024
Merged
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
84 changes: 42 additions & 42 deletions Cargo.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

14 changes: 14 additions & 0 deletions crates/bench/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,14 @@
# Changelog

All notable changes to this project will be documented in this file.

The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/),
and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html).

## [Unreleased]

## [0.0.2](https://github.com/farm-fe/farm/compare/farmfe_bench-v0.0.1...farmfe_bench-v0.0.2) - 2024-10-31

### Other

- simplify string formatting for readability ([#1828](https://github.com/farm-fe/farm/pull/1828))
6 changes: 3 additions & 3 deletions crates/bench/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "farmfe_bench"
version = "0.0.1"
version = "0.0.2"
edition = "2021"
authors = ["brightwu(吴明亮) <1521488775@qq.com>"]
license = "MIT"
Expand All @@ -11,8 +11,8 @@ documentation = "https://docs.rs/farmfe_bench"

[dependencies]
criterion2 = { version = "0.11.0", default-features = false }
farmfe_core = { path = "../core", version = "0.6.4" }
farmfe_compiler = { path = "../compiler", version = "0.0.11" }
farmfe_core = { path = "../core", version = "0.7.0" }
farmfe_compiler = { path = "../compiler", version = "0.0.12" }

[[bench]]
name = "compiler_bench"
Expand Down
26 changes: 26 additions & 0 deletions crates/compiler/CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -6,6 +6,32 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0

## [Unreleased]

## [0.0.12](https://github.com/farm-fe/farm/compare/farmfe_compiler-v0.0.11...farmfe_compiler-v0.0.12) - 2024-10-31

### Added

- *(plugins)* add primitives to support sub-compiler usage ([#1887](https://github.com/farm-fe/farm/pull/1887))

### Fixed

- plugin circle call & dynamic import ([#1901](https://github.com/farm-fe/farm/pull/1901))
- wrong esm introp helper order when using top level await ([#1897](https://github.com/farm-fe/farm/pull/1897))
- css resolving issue ([#1834](https://github.com/farm-fe/farm/pull/1834))
- namespace import MemberProp name failed ([#1826](https://github.com/farm-fe/farm/pull/1826))
- lazy compilation cache && postcss tailwind does not work on windows ([#1808](https://github.com/farm-fe/farm/pull/1808))
- arcgis lazy compile fail ([#1750](https://github.com/farm-fe/farm/pull/1750))
- html runtime inject failed when build multiple page ([#1760](https://github.com/farm-fe/farm/pull/1760))
- globalThis undefined ([#1726](https://github.com/farm-fe/farm/pull/1726))
- [#1672](https://github.com/farm-fe/farm/pull/1672) ([#1692](https://github.com/farm-fe/farm/pull/1692))
- bundle import namespace name uniq ([#1696](https://github.com/farm-fe/farm/pull/1696))
- single bundle ([#1653](https://github.com/farm-fe/farm/pull/1653))

### Other

- simplify string formatting for readability ([#1828](https://github.com/farm-fe/farm/pull/1828))
- *(refactor)* refactor stats and visualizer ([#1739](https://github.com/farm-fe/farm/pull/1739))
- remove `query_string` when `emit_file` to `resource_map` in `plugin_static_assets` ([#1746](https://github.com/farm-fe/farm/pull/1746))

## [0.0.11](https://github.com/farm-fe/farm/compare/farmfe_compiler-v0.0.10...farmfe_compiler-v0.0.11) - 2024-07-25

### Added
Expand Down
Loading