Skip to content

Release v1.1.0 #187

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

Merged
merged 1 commit into from
Dec 6, 2022
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
34 changes: 34 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,39 @@
# Change Log

# v1.1.0 (2022-12-06)

### Features

- **webpack-plugin:** Enable wrapped input/textarea for baidu
[\#165](https://github.com/airbnb/goji-js/pull/165)

- **webpack-plugin:** Refactored the data structure in template and `setData` JSON data.
[\#180](https://github.com/airbnb/goji-js/pull/180)

- **webpack-plugin:** Refactor ComponentDesc [\#181](https://github.com/airbnb/goji-js/pull/181)

- **webpack-plugin:** Refactor wrapped component with `meta`
[\#182](https://github.com/airbnb/goji-js/pull/182)

- **core:** Support NodeJS 18 [\#184](https://github.com/airbnb/goji-js/pull/184)

- **webpack-plugin:** Refactor template reuse & fix `getSubtreeId`
[\#186](https://github.com/airbnb/goji-js/pull/186)

### Bugfixes

- **create-goji-app:** Remove default `libVersion` fields in `project.config.json`
[\#164](https://github.com/airbnb/goji-js/pull/164)

- **cli:** Upgrade deps & fix missing linaria issue in create CLI template
[\#175](https://github.com/airbnb/goji-js/pull/175)

### Misc.

- **docs:** Upgrade docs to docusaurus v2 [\#166](https://github.com/airbnb/goji-js/pull/166)

- **docs:** Add missing CNAME file for docs [\#170](https://github.com/airbnb/goji-js/pull/170)

# v1.0.1 (2022-04-13)

### Features
Expand Down
2 changes: 1 addition & 1 deletion packages/beemo-dev/configs/lerna.ts
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ const config: LernaConfig = {
packages: ['packages/*', 'packages/goji.js.org/*'],
npmClient: 'yarn',
useWorkspaces: true,
version: '1.0.1',
version: '1.1.0',
};

export default config;
2 changes: 1 addition & 1 deletion packages/beemo-dev/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@goji/beemo-dev",
"version": "1.0.1",
"version": "1.1.0",
"description": "Beemo Config for GojiJS Development",
"main": "src/index.ts",
"repository": "https://github.com/airbnb/goji-js.git",
Expand Down
6 changes: 3 additions & 3 deletions packages/cli/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@goji/cli",
"version": "1.0.1",
"version": "1.1.0",
"description": "GojiJS CLI",
"main": "dist/cjs/index.js",
"bin": {
Expand All @@ -23,7 +23,7 @@
"@babel/preset-env": "^7.16.5",
"@babel/preset-react": "^7.16.5",
"@babel/preset-typescript": "^7.16.5",
"@goji/webpack-plugin": "^1.0.1",
"@goji/webpack-plugin": "^1.1.0",
"babel-loader": "^8.2.1",
"babel-plugin-macros": "^3.1.0",
"css-loader": "^6.5.1",
Expand All @@ -49,7 +49,7 @@
"yargs": "^17.1.0"
},
"devDependencies": {
"@goji/core": "^1.0.1",
"@goji/core": "^1.1.0",
"@types/yargs": "^17.0.2"
},
"peerDependencies": {
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": "@goji/core",
"version": "1.0.1",
"version": "1.1.0",
"description": "GojiJS Core",
"main": "dist/cjs/index.js",
"module": "dist/esm/index.js",
Expand Down
2 changes: 1 addition & 1 deletion packages/create-goji-app/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "create-goji-app",
"version": "1.0.1",
"version": "1.1.0",
"description": "Create GojiJS App",
"main": "index.js",
"repository": "https://github.com/airbnb/goji-js",
Expand Down
8 changes: 4 additions & 4 deletions packages/demo-todomvc-linaria/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "demo-todomvc-linaria",
"version": "1.0.1",
"version": "1.1.0",
"description": "GojiJS Linaria Example",
"main": "index.js",
"repository": "git+https://github.com/airbnb/goji.git",
Expand All @@ -13,7 +13,7 @@
"build": "goji build"
},
"dependencies": {
"@goji/core": "^1.0.1",
"@goji/core": "^1.1.0",
"classnames": "^2.2.6",
"core-js": "^3.16.0",
"linaria": "^2.3.0",
Expand All @@ -23,8 +23,8 @@
"tslib": "^2.3.0"
},
"devDependencies": {
"@goji/cli": "^1.0.1",
"@goji/testing-library": "^1.0.1",
"@goji/cli": "^1.1.0",
"@goji/testing-library": "^1.1.0",
"@types/classnames": "^2.2.10",
"@types/css-modules": "^1.0.0",
"@types/react": "^17.0.31",
Expand Down
12 changes: 6 additions & 6 deletions packages/demo-todomvc/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "demo-todomvc",
"version": "1.0.1",
"version": "1.1.0",
"description": "GojiJS TodoMVC Example",
"main": "index.js",
"repository": "git+https://github.com/airbnb/goji.git",
Expand All @@ -13,8 +13,8 @@
"build": "goji build"
},
"dependencies": {
"@goji/core": "^1.0.1",
"@goji/macro": "^1.0.1",
"@goji/core": "^1.1.0",
"@goji/macro": "^1.1.0",
"classnames": "^2.2.6",
"core-js": "^3.16.0",
"linaria": "^2.3.0",
Expand All @@ -24,9 +24,9 @@
"tslib": "^2.3.0"
},
"devDependencies": {
"@goji/beemo-dev": "^1.0.1",
"@goji/cli": "^1.0.1",
"@goji/testing-library": "^1.0.1",
"@goji/beemo-dev": "^1.1.0",
"@goji/cli": "^1.1.0",
"@goji/testing-library": "^1.1.0",
"@types/classnames": "^2.2.10",
"@types/css-modules": "^1.0.0",
"@types/react": "^17.0.31",
Expand Down
2 changes: 1 addition & 1 deletion packages/goji.js.org/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "goji-js-org",
"version": "1.0.1",
"version": "1.1.0",
"private": true,
"scripts": {
"crowdin": "crowdin",
Expand Down
6 changes: 3 additions & 3 deletions packages/macro/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@goji/macro",
"version": "1.0.1",
"version": "1.1.0",
"description": "GojiJS binding for babel-plugin-macros",
"main": "dist/cjs/index.js",
"module": "dist/esm/index.js",
Expand All @@ -25,8 +25,8 @@
"tslib": "^2.3.0"
},
"devDependencies": {
"@goji/core": "^1.0.1",
"@goji/webpack-plugin": "^1.0.1",
"@goji/core": "^1.1.0",
"@goji/webpack-plugin": "^1.1.0",
"@types/babel-plugin-macros": "^2.8.5",
"react": "^17.0.2"
},
Expand Down
4 changes: 2 additions & 2 deletions packages/testing-library/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@goji/testing-library",
"version": "1.0.1",
"version": "1.1.0",
"description": "GojiJS Testing Library",
"main": "dist/cjs/index.js",
"scripts": {
Expand All @@ -24,7 +24,7 @@
"react": "*"
},
"devDependencies": {
"@goji/core": "^1.0.1",
"@goji/core": "^1.1.0",
"@types/lodash": "^4.14.172",
"@types/react-test-renderer": "^17.0.1",
"react": "^17.0.2"
Expand Down
4 changes: 2 additions & 2 deletions packages/webpack-plugin/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@goji/webpack-plugin",
"version": "1.0.1",
"version": "1.1.0",
"description": "GojiJS Webpack Plugin",
"main": "dist/cjs/index.js",
"module": "dist/esm/index.js",
Expand All @@ -14,7 +14,7 @@
"prepublishOnly": "npm run build"
},
"devDependencies": {
"@goji/core": "^1.0.1",
"@goji/core": "^1.1.0",
"@types/common-tags": "^1.8.1",
"@types/enhanced-resolve": "^3.0.7",
"@types/find-cache-dir": "^3.2.1",
Expand Down