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

release: v0.5.0 proposal #4821

Merged
merged 20 commits into from
Jan 10, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
Show all changes
20 commits
Select commit Hold shift + click to select a range
d7d87e6
feat: align chunkIds default value with webpack (#4822)
hardfist Dec 4, 2023
99cdfb9
refactor(rspack_core): remove nodejs_resolver and `experiments.rspack…
Boshen Jan 3, 2024
34a7206
refactor: replace devServer.hot by HotModuleReplacementPlugin (#5193)
ahabhgk Jan 3, 2024
dc80a19
refactor: enable disableApplyEntryLazily by default (#5179)
ahabhgk Jan 3, 2024
9d36121
feat: remove transform by default (#5185)
h-a-n-a Jan 3, 2024
140cfe0
refactor: remove builtin:sass-loader for 0.5 (#5177)
ahabhgk Jan 3, 2024
6939561
feat: remove extended resolve extensions (#5184)
h-a-n-a Jan 3, 2024
45f100a
chore: remove deprecated splitChunksPlugin (#5208)
JSerFeng Jan 4, 2024
620bbd4
refactor: remove deprecated builtins options (#5207)
ahabhgk Jan 4, 2024
fe99c05
feat: remove experiments.incrementalRebuild option (#5225)
jerrykingxyz Jan 4, 2024
fafde30
chore: add module federation interop example (#5224)
ahabhgk Jan 4, 2024
eb1f38e
refactor: move swc helpers and react-refresh to peer (#5228)
ahabhgk Jan 4, 2024
be59383
fix(mf1.5): add resolve alias for mf runtime (#5239)
ahabhgk Jan 5, 2024
b439489
feat: add remoteInitOptions as initContainer params (#5247)
ahabhgk Jan 8, 2024
267c341
chore: fix template version (#5261)
hardfist Jan 8, 2024
861e724
fix: not enable rspack-plugin-react-refresh when mode set to 'product…
hardfist Jan 8, 2024
8b59186
chore: fixed mf 1.5 runtime version (#5275)
ahabhgk Jan 9, 2024
78f2f32
Release Packages:0.5.0 (#5281)
github-actions[bot] Jan 9, 2024
21a3e3d
Merge branch '0.5.0'
ahabhgk Jan 10, 2024
0793c70
chore: disable missing-files e2e
ahabhgk Jan 10, 2024
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
The table of contents is too big for display.
Diff view
Diff view
  •  
  •  
  •  
2 changes: 0 additions & 2 deletions .github/CODEOWNERS
Original file line number Diff line number Diff line change
Expand Up @@ -49,7 +49,6 @@ pnpm-lock.yaml

# Loaders

/crates/rspack_loader_sass @web-infra-dev/rspack-dx
/crates/rspack_loader_swc @web-infra-dev/rspack-dx

# Plugins
Expand All @@ -58,7 +57,6 @@ pnpm-lock.yaml
/crates/rspack_plugin_banner @web-infra-dev/rspack-dx
/crates/rspack_plugin_copy @web-infra-dev/rspack-dx
/crates/rspack_plugin_css @web-infra-dev/rspack-ux
/crates/rspack_plugin_dev_friendly_split_chunks @web-infra-dev/rspack-ux
/crates/rspack_plugin_devtool @web-infra-dev/rspack-dx
/crates/rspack_plugin_entry @web-infra-dev/rspack-dx
/crates/rspack_plugin_externals @web-infra-dev/rspack-dx
Expand Down
145 changes: 0 additions & 145 deletions Cargo.lock

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

33 changes: 0 additions & 33 deletions crates/node_binding/binding.d.ts
Original file line number Diff line number Diff line change
Expand Up @@ -160,7 +160,6 @@ export const enum BuiltinPluginName {
WebWorkerTemplatePlugin = 'WebWorkerTemplatePlugin',
MergeDuplicateChunksPlugin = 'MergeDuplicateChunksPlugin',
SplitChunksPlugin = 'SplitChunksPlugin',
OldSplitChunksPlugin = 'OldSplitChunksPlugin',
ShareRuntimePlugin = 'ShareRuntimePlugin',
ContainerPlugin = 'ContainerPlugin',
ContainerReferencePlugin = 'ContainerReferencePlugin',
Expand Down Expand Up @@ -620,15 +619,7 @@ export interface RawBannerPluginOptions {

export interface RawBuiltins {
css?: RawCssPluginConfig
presetEnv?: RawPresetEnv
treeShaking: string
react: RawReactOptions
decorator?: RawDecoratorOptions
noEmitAssets: boolean
emotion?: string
devFriendlySplitChunks: boolean
pluginImport?: Array<RawPluginImportConfig>
relay?: RawRelayConfig
}

export interface RawCacheGroupOptions {
Expand Down Expand Up @@ -744,15 +735,6 @@ export interface RawCssPluginConfig {
modules: RawCssModulesConfig
}

export interface RawDecoratorOptions {
legacy: boolean
emitMetadata: boolean
}

export interface RawDevServer {
hot: boolean
}

export interface RawEntryOptions {
name?: string
runtime?: string
Expand All @@ -771,7 +753,6 @@ export interface RawEntryPluginOptions {
}

export interface RawExperiments {
incrementalRebuild: RawIncrementalRebuild
newSplitChunks: boolean
topLevelAwait: boolean
rspackFuture: RawRspackFuture
Expand Down Expand Up @@ -864,11 +845,6 @@ export interface RawHttpExternalsRspackPluginOptions {
webAsync: boolean
}

export interface RawIncrementalRebuild {
make: boolean
emitAsset: boolean
}

export interface RawInfo {
immutable?: boolean
minimized?: boolean
Expand Down Expand Up @@ -1008,7 +984,6 @@ export interface RawOptions {
devtool: string
optimization: RawOptimizationOptions
stats: RawStatsOptions
devServer: RawDevServer
snapshot: RawSnapshotOptions
cache: RawCacheOptions
experiments: RawExperiments
Expand Down Expand Up @@ -1076,12 +1051,6 @@ export interface RawPluginImportConfig {
ignoreStyleComponent?: Array<string>
}

export interface RawPresetEnv {
targets: Array<string>
mode?: 'usage' | 'entry'
coreJs?: string
}

export interface RawProgressPluginOptions {
prefix: string
profile: boolean
Expand Down Expand Up @@ -1152,9 +1121,7 @@ export interface RawResolveTsconfigOptions {
}

export interface RawRspackFuture {
newResolver: boolean
newTreeshaking: boolean
disableTransformByDefault: boolean
}

export interface RawRuleSetCondition {
Expand Down
2 changes: 1 addition & 1 deletion crates/node_binding/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@rspack/binding",
"version": "0.4.5",
"version": "0.5.0",
"license": "MIT",
"description": "Node binding for rspack",
"main": "binding.js",
Expand Down
1 change: 0 additions & 1 deletion crates/rspack/tests/fixtures/simple-with-query/b.js

This file was deleted.

1 change: 0 additions & 1 deletion crates/rspack/tests/fixtures/simple-with-query/b.jsx

This file was deleted.

Loading