Skip to content

Commit

Permalink
Merge pull request #1171 from koedame/release/v2.1.0
Browse files Browse the repository at this point in the history
Release/v2.1.0
  • Loading branch information
unchidev authored Jul 17, 2022
2 parents 7a91b1c + 7e9d3ec commit 02b9f31
Show file tree
Hide file tree
Showing 37 changed files with 1,903 additions and 1,573 deletions.
29 changes: 29 additions & 0 deletions CHANGELOGS.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,34 @@
# CHANGELOGS

## v2.1.0

### 変更

- 不要なパッケージを削除
- プロフィール編集機能追加
- プロフィール非公開のユーザー検索結果にプロフィール画像を表示
- ユーザー検索結果が正しく表示されるように修正
- 画面がクラッシュする不具合を修正

### 依存パッケージ

- @headlessui/react from 1.6.5 to 1.6.6
- @jest/expect-utils from 28.1.1 to 28.1.3
- @jest/globals from 28.1.2 to 28.1.3
- @swc/core from 1.2.210 to 1.2.215
- @tailwindcss/typography from 0.5.2 to 0.5.4
- @types/node from 18.0.3 to 18.0.5
- html-loader from 3.1.2 to 4.1.0
- i18next from 21.8.13 to 21.8.14
- jest-diff from 28.1.1 to 28.1.3
- jest-environment-jsdom from 28.1.2 to 28.1.3
- luxon from 2.4.0 to 3.0.1
- node from 18.4.0-alpine to 18.6.0-alpine
- postcss-loader from 7.0.0 to 7.0.1
- react-i18next from 11.18.0 to 11.18.1
- tailwindcss from 3.1.4 to 3.1.6
- ts-node from 10.8.2 to 10.9.1

## v2.0.6

### 変更
Expand Down
2 changes: 1 addition & 1 deletion Dockerfile
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
FROM node:18.4.0-alpine
FROM node:18.6.0-alpine

RUN mkdir /app
WORKDIR /app
Expand Down
2 changes: 1 addition & 1 deletion jest.config.js
Original file line number Diff line number Diff line change
Expand Up @@ -33,6 +33,6 @@ module.exports = {
'^.+\\.(t|j)sx?$': ['@swc/jest', swcConfig],
},
collectCoverage: true,
collectCoverageFrom: ['<rootDir>/src/lib/**/*.{js,jsx,ts,tsx}'],
collectCoverageFrom: ['<rootDir>/src/{lib,hooks}/**/*.{js,jsx,ts,tsx}'],
setupFilesAfterEnv: ['./jest.setup.ts'],
};
38 changes: 17 additions & 21 deletions package.json
Original file line number Diff line number Diff line change
@@ -1,30 +1,28 @@
{
"name": "syncroom-plus",
"version": "2.0.6",
"version": "2.1.0",
"description": "syncroom-plus",
"license": "MIT",
"private": true,
"scripts": {
"build": "NODE_ENV=production node utils/build.js",
"build-zip": "NODE_ENV=production node scripts/build-zip.js",
"start": "NODE_ENV=development node utils/webserver.js",
"prettier": "NODE_ENV=development prettier --write 'src/**/*.{js,jsx,ts,tsx,json,css,scss,md}'",
"prettier": "NODE_ENV=development prettier --write 'src/**/*.{js,jsx,ts,tsx,json,css,md}'",
"tsccheck": "NODE_ENV=development tsc --noEmit",
"test": "NODE_ENV=test jest --collect-coverage",
"test-watch": "NODE_ENV=test jest --collect-coverage --watch-all",
"test:coverage": "NODE_ENV=test jest --collect-coverage --silent --testLocationInResults --ci --json --outputFile=\"report.json\""
},
"dependencies": {
"@emotion/css": "^11.5.0",
"@headlessui/react": "^1.6.5",
"@headlessui/react": "^1.6.6",
"@heroicons/react": "^1.0.5",
"i18next": "^21.8.13",
"ky": "^0.31.0",
"luxon": "^2.1.1",
"i18next": "^21.8.14",
"luxon": "^3.0.1",
"react": "^17.0.2",
"react-dom": "^17.0.2",
"react-flip-toolkit": "^7.0.13",
"react-i18next": "^11.18.0",
"react-i18next": "^11.18.1",
"react-loading": "^2.0.3",
"react-qr-code": "^2.0.2",
"recoil": "^0.7.4",
Expand All @@ -36,19 +34,19 @@
"@babel/preset-env": "^7.18.6",
"@babel/preset-react": "^7.18.6",
"@hot-loader/react-dom": "^17.0.2",
"@jest/expect-utils": "^28.1.1",
"@jest/globals": "^28.1.2",
"@swc/core": "^1.2.210",
"@jest/expect-utils": "^28.1.3",
"@jest/globals": "^28.1.3",
"@swc/core": "^1.2.215",
"@swc/jest": "^0.2.21",
"@tailwindcss/aspect-ratio": "^0.4.0",
"@tailwindcss/forms": "^0.5.2",
"@tailwindcss/line-clamp": "^0.4.0",
"@tailwindcss/typography": "^0.5.0",
"@tailwindcss/typography": "^0.5.4",
"@testing-library/react-hooks": "^8.0.1",
"@types/chrome": "^0.0.193",
"@types/jest": "^28.1.4",
"@types/luxon": "^2.3.2",
"@types/node": "^18.0.3",
"@types/node": "^18.0.5",
"@types/react": "^17.0.33",
"@types/react-dom": "^17.0.10",
"@types/recoil": "^0.0.9",
Expand All @@ -64,25 +62,23 @@
"css-loader": "^6.5.0",
"file-loader": "^6.2.0",
"fs-extra": "^10.0.0",
"html-loader": "^3.1.2",
"html-loader": "^4.1.0",
"html-webpack-plugin": "^5.5.0",
"jest": "^28.1.2",
"jest-diff": "^28.1.1",
"jest-environment-jsdom": "^28.1.2",
"jest-diff": "^28.1.3",
"jest-environment-jsdom": "^28.1.3",
"mockzilla": "^0.13.0",
"mockzilla-webextension": "^0.14.0",
"node-sass": "^7.0.1",
"postcss": "^8.4.4",
"postcss-loader": "^7.0.0",
"postcss-loader": "^7.0.1",
"prettier": "^2.7.1",
"sass-loader": "^13.0.2",
"source-map-loader": "^4.0.0",
"style-loader": "^3.3.1",
"tailwindcss": "^3.1.4",
"tailwindcss": "^3.1.6",
"terser-webpack-plugin": "^5.2.4",
"ts-jest": "^28.0.5",
"ts-loader": "^9.3.1",
"ts-node": "^10.8.2",
"ts-node": "^10.9.1",
"typescript": "^4.7.4",
"webextension-polyfill": "^0.9.0",
"webpack": "^5.60.0",
Expand Down
Loading

0 comments on commit 02b9f31

Please sign in to comment.