Skip to content

Commit

Permalink
chore(all): JSCAD Release V3 Alpha : 2025 JAN 05
Browse files Browse the repository at this point in the history
  • Loading branch information
z3dev authored Jan 3, 2025
2 parents 9e5123d + 0660b5c commit dd24838
Show file tree
Hide file tree
Showing 78 changed files with 487 additions and 249 deletions.
4 changes: 2 additions & 2 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -14,8 +14,8 @@
"graph": "lerna list --graph",
"list": "lerna ls",
"preversion": "pnpm run test && pnpm run test:tsd && pnpm run docs",
"publish": "lerna publish premajor --include-merged-tags --no-private --no-push --conventional-prerelease --dist-tag alpha --pre-dist-tag alpha",
"publish-dryrun": "lerna version premajor --include-merged-tags --no-push --conventional-prerelease"
"publish": "lerna publish prepatch --include-merged-tags --no-private --no-push --conventional-prerelease --dist-tag alpha --pre-dist-tag alpha",
"publish-dryrun": "lerna version prepatch --include-merged-tags --no-private --no-push --conventional-prerelease"
},
"contributors": [
{
Expand Down
13 changes: 13 additions & 0 deletions packages/cli/CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,19 @@
All notable changes to this project will be documented in this file.
See [Conventional Commits](https://conventionalcommits.org) for commit guidelines.

## [3.0.1-alpha.0](https://github.com/jscad/OpenJSCAD.org/compare/@jscad/[email protected]...@jscad/[email protected]) (2025-01-03)

### Bug Fixes

* **cli:** rework logic for generating blobs, both singular and multiple as parts ([f88669b](https://github.com/jscad/OpenJSCAD.org/commit/f88669b286d9564165f5c33944703fce730dfc1f))

### Features

* **3mf-deserializer:** initial version of 3MF deserializer and tests ([b22a27f](https://github.com/jscad/OpenJSCAD.org/commit/b22a27fa14c4f42b9160553cdd7b3c126ac72459))
* **cli:** reworked logic to use new io package exports and functions ([#1199](https://github.com/jscad/OpenJSCAD.org/issues/1199)) ([71a3d27](https://github.com/jscad/OpenJSCAD.org/commit/71a3d27a4cf416b1a9fea57a1fe40f5cfdaa905c))
* **modeling:** reworked exports to expose a flattened API ([8235238](https://github.com/jscad/OpenJSCAD.org/commit/8235238ad63d063f1e501478cae1208deb130a9c))
* **regl-renderer:** added rollup configuration to create ES6 bundle, adjusted imports and exports ([#1259](https://github.com/jscad/OpenJSCAD.org/issues/1259)) ([47a66bc](https://github.com/jscad/OpenJSCAD.org/commit/47a66bc07a137a748ce8571ea5d043ebaab9418d))

# [3.0.0-alpha.0](https://github.com/jscad/OpenJSCAD.org/compare/@jscad/[email protected]...@jscad/[email protected]) (2023-10-09)

### Bug Fixes
Expand Down
12 changes: 6 additions & 6 deletions packages/cli/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@jscad/cli",
"version": "3.0.0-alpha.0",
"version": "3.0.1-alpha.0",
"description": "Command Line Interface (CLI) for JSCAD",
"homepage": "https://openjscad.xyz/",
"repository": "https://github.com/jscad/OpenJSCAD.org",
Expand Down Expand Up @@ -36,11 +36,11 @@
],
"license": "MIT",
"dependencies": {
"@jscad/array-utils": "workspace:3.0.0-alpha.0",
"@jscad/core": "workspace:3.0.0-alpha.0",
"@jscad/io": "workspace:3.0.0-alpha.0",
"@jscad/io-utils": "workspace:3.0.0-alpha.0",
"@jscad/modeling": "workspace:3.0.0-alpha.0",
"@jscad/array-utils": "workspace:3.0.1-alpha.0",
"@jscad/core": "workspace:3.0.1-alpha.0",
"@jscad/io": "workspace:3.0.1-alpha.0",
"@jscad/io-utils": "workspace:3.0.1-alpha.0",
"@jscad/modeling": "workspace:3.0.1-alpha.0",
"jszip": "^3.10.1"
},
"devDependencies": {
Expand Down
7 changes: 7 additions & 0 deletions packages/core/CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,13 @@
All notable changes to this project will be documented in this file.
See [Conventional Commits](https://conventionalcommits.org) for commit guidelines.

## [3.0.1-alpha.0](https://github.com/jscad/OpenJSCAD.org/compare/@jscad/[email protected]...@jscad/[email protected]) (2025-01-03)

### Features

* **cli:** reworked logic to use new io package exports and functions ([#1199](https://github.com/jscad/OpenJSCAD.org/issues/1199)) ([71a3d27](https://github.com/jscad/OpenJSCAD.org/commit/71a3d27a4cf416b1a9fea57a1fe40f5cfdaa905c))
* **modeling:** reworked exports to expose a flattened API ([8235238](https://github.com/jscad/OpenJSCAD.org/commit/8235238ad63d063f1e501478cae1208deb130a9c))

# [3.0.0-alpha.0](https://github.com/jscad/OpenJSCAD.org/compare/@jscad/[email protected]...@jscad/[email protected]) (2023-10-09)

### Features
Expand Down
10 changes: 5 additions & 5 deletions packages/core/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@jscad/core",
"version": "3.0.0-alpha.0",
"version": "3.0.1-alpha.0",
"description": "Core functionality for JSCAD Applications",
"homepage": "https://openjscad.xyz/",
"repository": "https://github.com/jscad/OpenJSCAD.org",
Expand Down Expand Up @@ -36,10 +36,10 @@
],
"license": "MIT",
"dependencies": {
"@jscad/array-utils": "workspace:3.0.0-alpha.0",
"@jscad/io": "workspace:3.0.0-alpha.0",
"@jscad/io-utils": "workspace:3.0.0-alpha.0",
"@jscad/modeling": "workspace:3.0.0-alpha.0",
"@jscad/array-utils": "workspace:3.0.1-alpha.0",
"@jscad/io": "workspace:3.0.1-alpha.0",
"@jscad/io-utils": "workspace:3.0.1-alpha.0",
"@jscad/modeling": "workspace:3.0.1-alpha.0",
"json5": "2.2.3",
"strip-bom": "4.0.0"
},
Expand Down
8 changes: 8 additions & 0 deletions packages/io/3mf-deserializer/CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,14 @@
All notable changes to this project will be documented in this file.
See [Conventional Commits](https://conventionalcommits.org) for commit guidelines.

## 3.0.1-alpha.0 (2025-01-03)

### Features

* **3mf-deserializer:** initial version of 3MF deserializer and tests ([b22a27f](https://github.com/jscad/OpenJSCAD.org/commit/b22a27fa14c4f42b9160553cdd7b3c126ac72459))
* **modeling:** reworked exports to expose a flattened API ([8235238](https://github.com/jscad/OpenJSCAD.org/commit/8235238ad63d063f1e501478cae1208deb130a9c))
* **regl-renderer:** added rollup configuration to create ES6 bundle, adjusted imports and exports ([#1259](https://github.com/jscad/OpenJSCAD.org/issues/1259)) ([47a66bc](https://github.com/jscad/OpenJSCAD.org/commit/47a66bc07a137a748ce8571ea5d043ebaab9418d))

# 3.0.0-alpha.0 (2023-10-09)

### Features
Expand Down

Large diffs are not rendered by default.

Large diffs are not rendered by default.

6 changes: 3 additions & 3 deletions packages/io/3mf-deserializer/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@jscad/3mf-deserializer",
"version": "3.0.0-alpha.0",
"version": "3.0.1-alpha.0",
"description": "3MF Deserializer for JSCAD",
"homepage": "https://openjscad.xyz/",
"repository": "https://github.com/jscad/OpenJSCAD.org/",
Expand Down Expand Up @@ -32,8 +32,8 @@
"access": "public"
},
"dependencies": {
"@jscad/array-utils": "workspace:3.0.0-alpha.0",
"@jscad/modeling": "workspace:3.0.0-alpha.0",
"@jscad/array-utils": "workspace:3.0.1-alpha.0",
"@jscad/modeling": "workspace:3.0.1-alpha.0",
"fflate": "^0.7.3",
"saxes": "^6.0.0"
},
Expand Down
10 changes: 10 additions & 0 deletions packages/io/3mf-serializer/CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,16 @@
All notable changes to this project will be documented in this file.
See [Conventional Commits](https://conventionalcommits.org) for commit guidelines.

## [3.0.1-alpha.0](https://github.com/jscad/OpenJSCAD.org/compare/@jscad/[email protected]...@jscad/[email protected]) (2025-01-03)

### Bug Fixes

* **io:** fix io after V3 refactoring ([7a12bbd](https://github.com/jscad/OpenJSCAD.org/commit/7a12bbdb7b4b3df792a4c5b3c8b30a6a985a48f0))

### Features

* **modeling:** reworked exports to expose a flattened API ([8235238](https://github.com/jscad/OpenJSCAD.org/commit/8235238ad63d063f1e501478cae1208deb130a9c))

# [3.0.0-alpha.0](https://github.com/jscad/OpenJSCAD.org/compare/@jscad/[email protected]...@jscad/[email protected]) (2023-10-09)

### Bug Fixes
Expand Down
4 changes: 2 additions & 2 deletions packages/io/3mf-serializer/dist/jscad-3mf-serializer.es.js

Large diffs are not rendered by default.

4 changes: 2 additions & 2 deletions packages/io/3mf-serializer/dist/jscad-3mf-serializer.min.js

Large diffs are not rendered by default.

8 changes: 4 additions & 4 deletions packages/io/3mf-serializer/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@jscad/3mf-serializer",
"version": "3.0.0-alpha.0",
"version": "3.0.1-alpha.0",
"description": "3MF serializer for JSCAD project",
"homepage": "https://openjscad.xyz/",
"repository": "https://github.com/jscad/OpenJSCAD.org",
Expand Down Expand Up @@ -32,9 +32,9 @@
"access": "public"
},
"dependencies": {
"@jscad/array-utils": "workspace:3.0.0-alpha.0",
"@jscad/io-utils": "workspace:^3.0.0-alpha.0",
"@jscad/modeling": "workspace:3.0.0-alpha.0",
"@jscad/array-utils": "workspace:3.0.1-alpha.0",
"@jscad/io-utils": "workspace:^3.0.1-alpha.0",
"@jscad/modeling": "workspace:3.0.1-alpha.0",
"fflate": "^0.7.3",
"onml": "^1.2.0"
},
Expand Down
12 changes: 12 additions & 0 deletions packages/io/dxf-deserializer/CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,18 @@
All notable changes to this project will be documented in this file.
See [Conventional Commits](https://conventionalcommits.org) for commit guidelines.

## [3.0.1-alpha.0](https://github.com/jscad/OpenJSCAD.org/compare/@jscad/[email protected]...@jscad/[email protected]) (2025-01-03)

### Bug Fixes

* **io:** fix io after V3 refactoring ([7a12bbd](https://github.com/jscad/OpenJSCAD.org/commit/7a12bbdb7b4b3df792a4c5b3c8b30a6a985a48f0))

### Features

* **modeling:** renamed poly3 toVertices and fromVerticesAndPlane ([58621b9](https://github.com/jscad/OpenJSCAD.org/commit/58621b9d23d8e0905eff23faf8e9dddb2c4023fb))
* **modeling:** reworked exports to expose a flattened API ([8235238](https://github.com/jscad/OpenJSCAD.org/commit/8235238ad63d063f1e501478cae1208deb130a9c))
* **regl-renderer:** added rollup configuration to create ES6 bundle, adjusted imports and exports ([#1259](https://github.com/jscad/OpenJSCAD.org/issues/1259)) ([47a66bc](https://github.com/jscad/OpenJSCAD.org/commit/47a66bc07a137a748ce8571ea5d043ebaab9418d))

# [3.0.0-alpha.0](https://github.com/jscad/OpenJSCAD.org/compare/@jscad/[email protected]...@jscad/[email protected]) (2023-10-09)

### Bug Fixes
Expand Down

Large diffs are not rendered by default.

Large diffs are not rendered by default.

6 changes: 3 additions & 3 deletions packages/io/dxf-deserializer/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@jscad/dxf-deserializer",
"version": "3.0.0-alpha.0",
"version": "3.0.1-alpha.0",
"description": "DXF Deserializer for JSCAD",
"homepage": "https://openjscad.xyz/",
"repository": "https://github.com/jscad/OpenJSCAD.org",
Expand Down Expand Up @@ -33,8 +33,8 @@
],
"license": "MIT",
"dependencies": {
"@jscad/modeling": "workspace:3.0.0-alpha.0",
"@jscad/io-utils": "workspace:3.0.0-alpha.0"
"@jscad/io-utils": "workspace:3.0.1-alpha.0",
"@jscad/modeling": "workspace:3.0.1-alpha.0"
},
"devDependencies": {
"@rollup/plugin-node-resolve": "^15.2.1",
Expand Down
11 changes: 11 additions & 0 deletions packages/io/dxf-serializer/CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,17 @@
All notable changes to this project will be documented in this file.
See [Conventional Commits](https://conventionalcommits.org) for commit guidelines.

## [3.0.1-alpha.0](https://github.com/jscad/OpenJSCAD.org/compare/@jscad/[email protected]...@jscad/[email protected]) (2025-01-03)

### Bug Fixes

* **io:** fix io after V3 refactoring ([7a12bbd](https://github.com/jscad/OpenJSCAD.org/commit/7a12bbdb7b4b3df792a4c5b3c8b30a6a985a48f0))

### Features

* **modeling:** reworked exports to expose a flattened API ([8235238](https://github.com/jscad/OpenJSCAD.org/commit/8235238ad63d063f1e501478cae1208deb130a9c))
* **regl-renderer:** added rollup configuration to create ES6 bundle, adjusted imports and exports ([#1259](https://github.com/jscad/OpenJSCAD.org/issues/1259)) ([47a66bc](https://github.com/jscad/OpenJSCAD.org/commit/47a66bc07a137a748ce8571ea5d043ebaab9418d))

# [3.0.0-alpha.0](https://github.com/jscad/OpenJSCAD.org/compare/@jscad/[email protected]...@jscad/[email protected]) (2023-10-09)

### Bug Fixes
Expand Down
10 changes: 5 additions & 5 deletions packages/io/dxf-serializer/dist/jscad-dxf-serializer.es.js

Large diffs are not rendered by default.

10 changes: 5 additions & 5 deletions packages/io/dxf-serializer/dist/jscad-dxf-serializer.min.js

Large diffs are not rendered by default.

6 changes: 3 additions & 3 deletions packages/io/dxf-serializer/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@jscad/dxf-serializer",
"version": "3.0.0-alpha.0",
"version": "3.0.1-alpha.0",
"description": "DXF Serializer for JSCAD",
"homepage": "https://openjscad.xyz/",
"repository": "https://github.com/jscad/OpenJSCAD.org",
Expand Down Expand Up @@ -37,8 +37,8 @@
],
"license": "MIT",
"dependencies": {
"@jscad/array-utils": "workspace:3.0.0-alpha.0",
"@jscad/modeling": "workspace:3.0.0-alpha.0"
"@jscad/array-utils": "workspace:3.0.1-alpha.0",
"@jscad/modeling": "workspace:3.0.1-alpha.0"
},
"devDependencies": {
"@rollup/plugin-node-resolve": "^15.0.1",
Expand Down
6 changes: 6 additions & 0 deletions packages/io/io-utils/CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,12 @@
All notable changes to this project will be documented in this file.
See [Conventional Commits](https://conventionalcommits.org) for commit guidelines.

## [3.0.1-alpha.0](https://github.com/jscad/OpenJSCAD.org/compare/@jscad/[email protected]...@jscad/[email protected]) (2025-01-03)

### Bug Fixes

* **io:** fix io after V3 refactoring ([7a12bbd](https://github.com/jscad/OpenJSCAD.org/commit/7a12bbdb7b4b3df792a4c5b3c8b30a6a985a48f0))

# [3.0.0-alpha.0](https://github.com/jscad/OpenJSCAD.org/compare/@jscad/[email protected]...@jscad/[email protected]) (2023-10-09)

### Bug Fixes
Expand Down
4 changes: 2 additions & 2 deletions packages/io/io-utils/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@jscad/io-utils",
"version": "3.0.0-alpha.0",
"version": "3.0.1-alpha.0",
"description": "Utilities for JSCAD IO Packages",
"homepage": "https://openjscad.xyz/",
"repository": "https://github.com/jscad/OpenJSCAD.org",
Expand Down Expand Up @@ -34,7 +34,7 @@
],
"license": "MIT",
"devDependencies": {
"@jscad/modeling": "workspace:3.0.0-alpha.0",
"@jscad/modeling": "workspace:3.0.1-alpha.0",
"ava": "^4.3.3",
"c8": "^8.0.0"
},
Expand Down
13 changes: 13 additions & 0 deletions packages/io/io/CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,19 @@
All notable changes to this project will be documented in this file.
See [Conventional Commits](https://conventionalcommits.org) for commit guidelines.

## [3.0.1-alpha.0](https://github.com/jscad/OpenJSCAD.org/compare/@jscad/[email protected]...@jscad/[email protected]) (2025-01-03)

### Bug Fixes

* **io:** fix io after V3 refactoring ([7a12bbd](https://github.com/jscad/OpenJSCAD.org/commit/7a12bbdb7b4b3df792a4c5b3c8b30a6a985a48f0))

### Features

* **3mf-deserializer:** initial version of 3MF deserializer and tests ([b22a27f](https://github.com/jscad/OpenJSCAD.org/commit/b22a27fa14c4f42b9160553cdd7b3c126ac72459))
* **cli:** reworked logic to use new io package exports and functions ([#1199](https://github.com/jscad/OpenJSCAD.org/issues/1199)) ([71a3d27](https://github.com/jscad/OpenJSCAD.org/commit/71a3d27a4cf416b1a9fea57a1fe40f5cfdaa905c))
* **modeling:** reworked exports to expose a flattened API ([8235238](https://github.com/jscad/OpenJSCAD.org/commit/8235238ad63d063f1e501478cae1208deb130a9c))
* **regl-renderer:** added rollup configuration to create ES6 bundle, adjusted imports and exports ([#1259](https://github.com/jscad/OpenJSCAD.org/issues/1259)) ([47a66bc](https://github.com/jscad/OpenJSCAD.org/commit/47a66bc07a137a748ce8571ea5d043ebaab9418d))

# [3.0.0-alpha.0](https://github.com/jscad/OpenJSCAD.org/compare/@jscad/[email protected]...@jscad/[email protected]) (2023-10-09)

### Bug Fixes
Expand Down
36 changes: 18 additions & 18 deletions packages/io/io/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@jscad/io",
"version": "3.0.0-alpha.0",
"version": "3.0.1-alpha.0",
"description": "Meta Package for JSCAD IO Packages",
"homepage": "https://openjscad.xyz/",
"repository": "https://github.com/jscad/OpenJSCAD.org",
Expand Down Expand Up @@ -34,23 +34,23 @@
],
"license": "MIT",
"dependencies": {
"@jscad/3mf-deserializer": "workspace:3.0.0-alpha.0",
"@jscad/3mf-serializer": "workspace:3.0.0-alpha.0",
"@jscad/array-utils": "workspace:3.0.0-alpha.0",
"@jscad/dxf-deserializer": "workspace:3.0.0-alpha.0",
"@jscad/dxf-serializer": "workspace:3.0.0-alpha.0",
"@jscad/io-utils": "workspace:3.0.0-alpha.0",
"@jscad/json-deserializer": "workspace:3.0.0-alpha.0",
"@jscad/json-serializer": "workspace:3.0.0-alpha.0",
"@jscad/modeling": "workspace:3.0.0-alpha.0",
"@jscad/obj-deserializer": "workspace:3.0.0-alpha.0",
"@jscad/obj-serializer": "workspace:3.0.0-alpha.0",
"@jscad/stl-deserializer": "workspace:3.0.0-alpha.0",
"@jscad/stl-serializer": "workspace:3.0.0-alpha.0",
"@jscad/svg-deserializer": "workspace:3.0.0-alpha.0",
"@jscad/svg-serializer": "workspace:3.0.0-alpha.0",
"@jscad/x3d-deserializer": "workspace:3.0.0-alpha.0",
"@jscad/x3d-serializer": "workspace:3.0.0-alpha.0"
"@jscad/3mf-deserializer": "workspace:3.0.1-alpha.0",
"@jscad/3mf-serializer": "workspace:3.0.1-alpha.0",
"@jscad/array-utils": "workspace:3.0.1-alpha.0",
"@jscad/dxf-deserializer": "workspace:3.0.1-alpha.0",
"@jscad/dxf-serializer": "workspace:3.0.1-alpha.0",
"@jscad/io-utils": "workspace:3.0.1-alpha.0",
"@jscad/json-deserializer": "workspace:3.0.1-alpha.0",
"@jscad/json-serializer": "workspace:3.0.1-alpha.0",
"@jscad/modeling": "workspace:3.0.1-alpha.0",
"@jscad/obj-deserializer": "workspace:3.0.1-alpha.0",
"@jscad/obj-serializer": "workspace:3.0.1-alpha.0",
"@jscad/stl-deserializer": "workspace:3.0.1-alpha.0",
"@jscad/stl-serializer": "workspace:3.0.1-alpha.0",
"@jscad/svg-deserializer": "workspace:3.0.1-alpha.0",
"@jscad/svg-serializer": "workspace:3.0.1-alpha.0",
"@jscad/x3d-deserializer": "workspace:3.0.1-alpha.0",
"@jscad/x3d-serializer": "workspace:3.0.1-alpha.0"
},
"devDependencies": {
"ava": "^4.3.3",
Expand Down
11 changes: 11 additions & 0 deletions packages/io/json-deserializer/CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,17 @@
All notable changes to this project will be documented in this file.
See [Conventional Commits](https://conventionalcommits.org) for commit guidelines.

## [3.0.1-alpha.0](https://github.com/jscad/OpenJSCAD.org/compare/@jscad/[email protected]...@jscad/[email protected]) (2025-01-03)

### Bug Fixes

* **io:** fix io after V3 refactoring ([7a12bbd](https://github.com/jscad/OpenJSCAD.org/commit/7a12bbdb7b4b3df792a4c5b3c8b30a6a985a48f0))

### Features

* **modeling:** reworked exports to expose a flattened API ([8235238](https://github.com/jscad/OpenJSCAD.org/commit/8235238ad63d063f1e501478cae1208deb130a9c))
* **regl-renderer:** added rollup configuration to create ES6 bundle, adjusted imports and exports ([#1259](https://github.com/jscad/OpenJSCAD.org/issues/1259)) ([47a66bc](https://github.com/jscad/OpenJSCAD.org/commit/47a66bc07a137a748ce8571ea5d043ebaab9418d))

# [3.0.0-alpha.0](https://github.com/jscad/OpenJSCAD.org/compare/@jscad/[email protected]...@jscad/[email protected]) (2023-10-09)

### Bug Fixes
Expand Down

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

Loading

0 comments on commit dd24838

Please sign in to comment.