Skip to content

Commit

Permalink
release 1.3.0
Browse files Browse the repository at this point in the history
  • Loading branch information
malash committed Nov 14, 2023
1 parent 035ff0c commit 17ce8e4
Show file tree
Hide file tree
Showing 12 changed files with 54 additions and 25 deletions.
29 changes: 29 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,34 @@
# Change Log

# v.1.3.0 (2023-11-14)

### Bugfixes

- **core:** Use `event.timestamp` as an alist for `event.timeStamp`
[\#209](https://github.com/airbnb/goji-js/pull/209)

- **webpack-plugin:** Remove bugfix for \#160 [\#211](https://github.com/airbnb/goji-js/pull/211)

- **webpack-plugin:** Enable wrapper for \<scroll-view\> on Baidu
[\#212](https://github.com/airbnb/goji-js/pull/212)

- **webpack-plugin:** Prevent using `<include>` in `<template>` to fix \#140 on Alipay
[\#213](https://github.com/airbnb/goji-js/pull/213)

- **create-goji-app** Disable code protect option for wechat and qq
[\#217](https://github.com/airbnb/goji-js/pull/217)

### Features

- **testing-library** support fire load and error event in test library
[\#214](https://github.com/airbnb/goji-js/pull/214) ([race604](https://github.com/race604))

- **webpack-plugin:** Enable `nohoist` by default
[\#223](https://github.com/airbnb/goji-js/pull/223)

- **webpack-plugin:** Add `parallel` option in goji.config.js
[\#224](https://github.com/airbnb/goji-js/pull/224)

# v.1.2.0 (2023-07-11)

### Bugfixes
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.1.1',
version: '1.3.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.2.0",
"version": "1.3.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.2.0",
"version": "1.3.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.2.0",
"@goji/webpack-plugin": "^1.3.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.2.0",
"@goji/core": "^1.3.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.2.0",
"version": "1.3.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.2.0",
"version": "1.3.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.2.0",
"version": "1.3.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.2.0",
"@goji/core": "^1.3.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.2.0",
"@goji/testing-library": "^1.2.0",
"@goji/cli": "^1.3.0",
"@goji/testing-library": "^1.3.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.2.0",
"version": "1.3.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.2.0",
"@goji/macro": "^1.2.0",
"@goji/core": "^1.3.0",
"@goji/macro": "^1.3.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.2.0",
"@goji/cli": "^1.2.0",
"@goji/testing-library": "^1.2.0",
"@goji/beemo-dev": "^1.3.0",
"@goji/cli": "^1.3.0",
"@goji/testing-library": "^1.3.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.2.0",
"version": "1.3.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.2.0",
"version": "1.3.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.2.0",
"@goji/webpack-plugin": "^1.2.0",
"@goji/core": "^1.3.0",
"@goji/webpack-plugin": "^1.3.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.2.0",
"version": "1.3.0",
"description": "GojiJS Testing Library",
"main": "dist/cjs/index.js",
"scripts": {
Expand All @@ -24,7 +24,7 @@
"react": "*"
},
"devDependencies": {
"@goji/core": "^1.2.0",
"@goji/core": "^1.3.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.2.0",
"version": "1.3.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.2.0",
"@goji/core": "^1.3.0",
"@types/common-tags": "^1.8.1",
"@types/enhanced-resolve": "^3.0.7",
"@types/find-cache-dir": "^3.2.1",
Expand Down

0 comments on commit 17ce8e4

Please sign in to comment.