Skip to content

Commit

Permalink
Releases version v0.6.1
Browse files Browse the repository at this point in the history
  • Loading branch information
jwloka committed Jan 20, 2025
1 parent fb916a2 commit 4ac1ca9
Show file tree
Hide file tree
Showing 10 changed files with 39 additions and 11 deletions.
33 changes: 31 additions & 2 deletions Release-Notes.md
Original file line number Diff line number Diff line change
Expand Up @@ -12,10 +12,39 @@ Release notes follow the [keep a changelog](https://keepachangelog.com/en/1.0.0/

## [Unreleased]

### Added

- TBA

### Removed

- TBA

### Changed

- TBA

### Fixed

- TBA

## [0.6.1] - 2025-01-20

Bugfix release to address an issue with the webpack loader configuration and the websmith options to activate an addon.

### Fixed

- Fixes Issue 45 "Webpack loader requires 'addons' property in loader config and websmith options to activate an addon

### Changed

- Method calls for retrieving addons need to include a target parameter (e.g., getAvailableAddons())
- Refining the logic for handling targets, compilationConfig and loaderOptions in webpack override properties from config files.

### Added

- Adding documentation comments to explain the use of configuration options

## [0.6.0] - 2024-05-13

New package `@quatico/websmith-testing` for testing compiler customization and addons with Jest. The package simplifies compiler testing significantly. You can setup the typescript compiler, customize settings, add addons, and compile various projects within 5 lines of code.
Expand Down Expand Up @@ -108,15 +137,15 @@ In this version, we've improved the documentation of published packages. Most im
- README.md of compiler package to improve compiler usage documentation.
- README.md of api package to introduction to websmith api.
- README.md of webpack package to improve webpack usage documentation.
- README.md of core package to clearify the purpose of the package.
- README.md of core package to clarify the purpose of the package.

### Added

- README.md of examples package to provide an overview of working examples on how to write websmith addons for different use cases.

## [0.3.5] - 2023-02-1

With this version, the usage of the BrowserSystem (createBrowserSystem) is deprecated. It is planned to remove it with version 1.0.0 which will cease support for a system based virtual filesystem.
With this version, the usage of the BrowserSystem is deprecated. It is planned to remove it with version 1.0.0 which will cease support for a system based virtual filesystem.

### Changed

Expand Down
1 change: 0 additions & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,5 @@
{
"name": "@quatico/websmith",
"version": "1.0.0",
"description": "A compiler frontend for the TypeScript compiler",
"keywords": [
"typescript",
Expand Down
2 changes: 1 addition & 1 deletion packages/api/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@quatico/websmith-api",
"version": "0.6.0",
"version": "0.6.1",
"description": "Addon API library for the websmith compiler",
"author": "Quatico Solutions AG",
"license": "MIT",
Expand Down
2 changes: 1 addition & 1 deletion packages/compiler/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@quatico/websmith-compiler",
"version": "0.6.0",
"version": "0.6.1",
"description": "A CLI for the websmith compiler",
"author": "Quatico Solutions AG",
"license": "MIT",
Expand Down
2 changes: 1 addition & 1 deletion packages/core/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@quatico/websmith-core",
"version": "0.6.0",
"version": "0.6.1",
"description": "A frontend for the TypeScript compiler",
"author": "Quatico Solutions AG",
"license": "MIT",
Expand Down
2 changes: 1 addition & 1 deletion packages/examples/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@quatico/websmith-examples",
"version": "0.6.0",
"version": "0.6.1",
"description": "A library of example addons for the websmith compiler",
"author": "Quatico Solutions AG",
"license": "MIT",
Expand Down
2 changes: 1 addition & 1 deletion packages/test/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@quatico/websmith-test",
"version": "0.6.0",
"version": "0.6.1",
"description": "Am end-to-end test package for the websmith compiler",
"author": "Quatico Solutions AG",
"license": "MIT",
Expand Down
2 changes: 1 addition & 1 deletion packages/testing/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@quatico/websmith-testing",
"version": "0.6.0",
"version": "0.6.1",
"description": "Testing library for simplifying the testing of websmith addons",
"author": "Quatico Solutions AG",
"license": "MIT",
Expand Down
2 changes: 1 addition & 1 deletion packages/webpack-test/package.json
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
{
"name": "@quatico/websmith-webpack-test",
"description": "Webpack loader for @quatico/websmith-compiler",
"version": "0.6.0",
"version": "0.6.1",
"author": "Quatico Solutions AG",
"private": true,
"scripts": {
Expand Down
2 changes: 1 addition & 1 deletion packages/webpack/package.json
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
{
"name": "@quatico/websmith-webpack",
"description": "Webpack loader for @quatico/websmith-compiler",
"version": "0.6.0",
"version": "0.6.1",
"author": "Quatico Solutions AG",
"license": "MIT",
"main": "src/index.ts",
Expand Down

0 comments on commit 4ac1ca9

Please sign in to comment.