Skip to content

Commit 76d4b5b

Browse files
authored
Merge pull request #187 from airbnb/release-v1.1.0
Release v1.1.0
2 parents 7dc5788 + c056ac6 commit 76d4b5b

File tree

12 files changed

+59
-25
lines changed

12 files changed

+59
-25
lines changed

CHANGELOG.md

+34
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,39 @@
11
# Change Log
22

3+
# v1.1.0 (2022-12-06)
4+
5+
### Features
6+
7+
- **webpack-plugin:** Enable wrapped input/textarea for baidu
8+
[\#165](https://github.com/airbnb/goji-js/pull/165)
9+
10+
- **webpack-plugin:** Refactored the data structure in template and `setData` JSON data.
11+
[\#180](https://github.com/airbnb/goji-js/pull/180)
12+
13+
- **webpack-plugin:** Refactor ComponentDesc [\#181](https://github.com/airbnb/goji-js/pull/181)
14+
15+
- **webpack-plugin:** Refactor wrapped component with `meta`
16+
[\#182](https://github.com/airbnb/goji-js/pull/182)
17+
18+
- **core:** Support NodeJS 18 [\#184](https://github.com/airbnb/goji-js/pull/184)
19+
20+
- **webpack-plugin:** Refactor template reuse & fix `getSubtreeId`
21+
[\#186](https://github.com/airbnb/goji-js/pull/186)
22+
23+
### Bugfixes
24+
25+
- **create-goji-app:** Remove default `libVersion` fields in `project.config.json`
26+
[\#164](https://github.com/airbnb/goji-js/pull/164)
27+
28+
- **cli:** Upgrade deps & fix missing linaria issue in create CLI template
29+
[\#175](https://github.com/airbnb/goji-js/pull/175)
30+
31+
### Misc.
32+
33+
- **docs:** Upgrade docs to docusaurus v2 [\#166](https://github.com/airbnb/goji-js/pull/166)
34+
35+
- **docs:** Add missing CNAME file for docs [\#170](https://github.com/airbnb/goji-js/pull/170)
36+
337
# v1.0.1 (2022-04-13)
438

539
### Features

packages/beemo-dev/configs/lerna.ts

+1-1
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ const config: LernaConfig = {
44
packages: ['packages/*', 'packages/goji.js.org/*'],
55
npmClient: 'yarn',
66
useWorkspaces: true,
7-
version: '1.0.1',
7+
version: '1.1.0',
88
};
99

1010
export default config;

packages/beemo-dev/package.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@goji/beemo-dev",
3-
"version": "1.0.1",
3+
"version": "1.1.0",
44
"description": "Beemo Config for GojiJS Development",
55
"main": "src/index.ts",
66
"repository": "https://github.com/airbnb/goji-js.git",

packages/cli/package.json

+3-3
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@goji/cli",
3-
"version": "1.0.1",
3+
"version": "1.1.0",
44
"description": "GojiJS CLI",
55
"main": "dist/cjs/index.js",
66
"bin": {
@@ -23,7 +23,7 @@
2323
"@babel/preset-env": "^7.16.5",
2424
"@babel/preset-react": "^7.16.5",
2525
"@babel/preset-typescript": "^7.16.5",
26-
"@goji/webpack-plugin": "^1.0.1",
26+
"@goji/webpack-plugin": "^1.1.0",
2727
"babel-loader": "^8.2.1",
2828
"babel-plugin-macros": "^3.1.0",
2929
"css-loader": "^6.5.1",
@@ -49,7 +49,7 @@
4949
"yargs": "^17.1.0"
5050
},
5151
"devDependencies": {
52-
"@goji/core": "^1.0.1",
52+
"@goji/core": "^1.1.0",
5353
"@types/yargs": "^17.0.2"
5454
},
5555
"peerDependencies": {

packages/core/package.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@goji/core",
3-
"version": "1.0.1",
3+
"version": "1.1.0",
44
"description": "GojiJS Core",
55
"main": "dist/cjs/index.js",
66
"module": "dist/esm/index.js",

packages/create-goji-app/package.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "create-goji-app",
3-
"version": "1.0.1",
3+
"version": "1.1.0",
44
"description": "Create GojiJS App",
55
"main": "index.js",
66
"repository": "https://github.com/airbnb/goji-js",

packages/demo-todomvc-linaria/package.json

+4-4
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "demo-todomvc-linaria",
3-
"version": "1.0.1",
3+
"version": "1.1.0",
44
"description": "GojiJS Linaria Example",
55
"main": "index.js",
66
"repository": "git+https://github.com/airbnb/goji.git",
@@ -13,7 +13,7 @@
1313
"build": "goji build"
1414
},
1515
"dependencies": {
16-
"@goji/core": "^1.0.1",
16+
"@goji/core": "^1.1.0",
1717
"classnames": "^2.2.6",
1818
"core-js": "^3.16.0",
1919
"linaria": "^2.3.0",
@@ -23,8 +23,8 @@
2323
"tslib": "^2.3.0"
2424
},
2525
"devDependencies": {
26-
"@goji/cli": "^1.0.1",
27-
"@goji/testing-library": "^1.0.1",
26+
"@goji/cli": "^1.1.0",
27+
"@goji/testing-library": "^1.1.0",
2828
"@types/classnames": "^2.2.10",
2929
"@types/css-modules": "^1.0.0",
3030
"@types/react": "^17.0.31",

packages/demo-todomvc/package.json

+6-6
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "demo-todomvc",
3-
"version": "1.0.1",
3+
"version": "1.1.0",
44
"description": "GojiJS TodoMVC Example",
55
"main": "index.js",
66
"repository": "git+https://github.com/airbnb/goji.git",
@@ -13,8 +13,8 @@
1313
"build": "goji build"
1414
},
1515
"dependencies": {
16-
"@goji/core": "^1.0.1",
17-
"@goji/macro": "^1.0.1",
16+
"@goji/core": "^1.1.0",
17+
"@goji/macro": "^1.1.0",
1818
"classnames": "^2.2.6",
1919
"core-js": "^3.16.0",
2020
"linaria": "^2.3.0",
@@ -24,9 +24,9 @@
2424
"tslib": "^2.3.0"
2525
},
2626
"devDependencies": {
27-
"@goji/beemo-dev": "^1.0.1",
28-
"@goji/cli": "^1.0.1",
29-
"@goji/testing-library": "^1.0.1",
27+
"@goji/beemo-dev": "^1.1.0",
28+
"@goji/cli": "^1.1.0",
29+
"@goji/testing-library": "^1.1.0",
3030
"@types/classnames": "^2.2.10",
3131
"@types/css-modules": "^1.0.0",
3232
"@types/react": "^17.0.31",

packages/goji.js.org/package.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "goji-js-org",
3-
"version": "1.0.1",
3+
"version": "1.1.0",
44
"private": true,
55
"scripts": {
66
"crowdin": "crowdin",

packages/macro/package.json

+3-3
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@goji/macro",
3-
"version": "1.0.1",
3+
"version": "1.1.0",
44
"description": "GojiJS binding for babel-plugin-macros",
55
"main": "dist/cjs/index.js",
66
"module": "dist/esm/index.js",
@@ -25,8 +25,8 @@
2525
"tslib": "^2.3.0"
2626
},
2727
"devDependencies": {
28-
"@goji/core": "^1.0.1",
29-
"@goji/webpack-plugin": "^1.0.1",
28+
"@goji/core": "^1.1.0",
29+
"@goji/webpack-plugin": "^1.1.0",
3030
"@types/babel-plugin-macros": "^2.8.5",
3131
"react": "^17.0.2"
3232
},

packages/testing-library/package.json

+2-2
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@goji/testing-library",
3-
"version": "1.0.1",
3+
"version": "1.1.0",
44
"description": "GojiJS Testing Library",
55
"main": "dist/cjs/index.js",
66
"scripts": {
@@ -24,7 +24,7 @@
2424
"react": "*"
2525
},
2626
"devDependencies": {
27-
"@goji/core": "^1.0.1",
27+
"@goji/core": "^1.1.0",
2828
"@types/lodash": "^4.14.172",
2929
"@types/react-test-renderer": "^17.0.1",
3030
"react": "^17.0.2"

packages/webpack-plugin/package.json

+2-2
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@goji/webpack-plugin",
3-
"version": "1.0.1",
3+
"version": "1.1.0",
44
"description": "GojiJS Webpack Plugin",
55
"main": "dist/cjs/index.js",
66
"module": "dist/esm/index.js",
@@ -14,7 +14,7 @@
1414
"prepublishOnly": "npm run build"
1515
},
1616
"devDependencies": {
17-
"@goji/core": "^1.0.1",
17+
"@goji/core": "^1.1.0",
1818
"@types/common-tags": "^1.8.1",
1919
"@types/enhanced-resolve": "^3.0.7",
2020
"@types/find-cache-dir": "^3.2.1",

0 commit comments

Comments
 (0)