Skip to content

Commit 6c35f04

Browse files
committed
🚀: Publish 2024.10
1 parent 19acc91 commit 6c35f04

File tree

209 files changed

+9996
-10514
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

209 files changed

+9996
-10514
lines changed

.azure-pipelines/deploy.yaml

+13-13
Original file line numberDiff line numberDiff line change
@@ -36,20 +36,20 @@ stages:
3636
- job: build_${{environment.name}}
3737
displayName: 'build ${{environment.name}}'
3838
pool:
39-
# https://github.com/actions/runner-images/blob/main/images/macos/macos-13-Readme.md
40-
vmImage: macOS-13
39+
# https://github.com/actions/runner-images/blob/main/images/macos/macos-14-Readme.md
40+
vmImage: macOS-14
4141
steps:
4242
- task: UseRubyVersion@0
4343
inputs:
44-
versionSpec: '3.1.4'
44+
versionSpec: '3.1'
4545
addToPath: true
4646
- task: NodeTool@0
47-
displayName: 'Use Node.js 18.15.0'
47+
displayName: 'Use Node.js 20.17.0'
4848
inputs:
49-
versionSpec: '18.15.0'
49+
versionSpec: '20.17.0'
5050
- task: JavaToolInstaller@0
5151
inputs:
52-
versionSpec: '11'
52+
versionSpec: '17'
5353
jdkArchitectureOption: 'x64'
5454
jdkSourceOption: 'PreInstalled'
5555
- task: Cache@2
@@ -134,12 +134,12 @@ stages:
134134
- job: build_${{environment.name}}
135135
displayName: 'build ${{environment.name}}'
136136
pool:
137-
# https://github.com/actions/runner-images/blob/main/images/macos/macos-13-Readme.md
138-
vmImage: macOS-13
137+
# https://github.com/actions/runner-images/blob/main/images/macos/macos-14-Readme.md
138+
vmImage: macOS-14
139139
steps:
140140
- task: UseRubyVersion@0
141141
inputs:
142-
versionSpec: '3.1.4'
142+
versionSpec: '3.1'
143143
addToPath: true
144144
- task: InstallAppleCertificate@2
145145
displayName: 'Install an Apple certificate for ${{environment.name}}'
@@ -160,13 +160,13 @@ stages:
160160
inputs:
161161
provProfileSecureFile: $(${{environment.name}}_AppleDistributionProvisioningProfileSecureFileName)
162162
- task: CmdLine@2
163-
displayName: 'Use Xcode 14.2'
163+
displayName: 'Use Xcode 15.4'
164164
inputs:
165-
script: 'sudo xcode-select --switch /Applications/Xcode_14.2.app'
165+
script: 'sudo xcode-select --switch /Applications/Xcode_15.4.app'
166166
- task: NodeTool@0
167-
displayName: 'Use Node.js 18.15.0'
167+
displayName: 'Use Node.js 20.17.0'
168168
inputs:
169-
versionSpec: '18.15.0'
169+
versionSpec: '20.17.0'
170170
- task: Cache@2
171171
displayName: Cache npm
172172
inputs:

.github/renovate.json5

+2-2
Original file line numberDiff line numberDiff line change
@@ -38,6 +38,7 @@
3838
enabled: false,
3939
matchPackageNames: [
4040
'@babel/core',
41+
'@expo/config-plugins',
4142
'@react-native-async-storage/async-storage',
4243
'@react-native-community/datetimepicker',
4344
'@react-native-community/netinfo',
@@ -46,6 +47,7 @@
4647
'@types/react',
4748
'babel-preset-expo',
4849
'expo',
50+
'expo-application',
4951
'expo-build-properties',
5052
'expo-crypto',
5153
'expo-dev-client',
@@ -76,8 +78,6 @@
7678
groupName: 'Depends on Expo version',
7779
enabled: false,
7880
matchPackageNames: [
79-
// expo -> @expo/cli
80-
'@expo/config-plugins',
8181
// jest-expo -> jest
8282
'@types/jest',
8383
// react, jest-expo -> react-test-renderer

.github/workflows/app.yaml

+4-4
Original file line numberDiff line numberDiff line change
@@ -33,21 +33,21 @@ on:
3333
jobs:
3434
lint-and-test:
3535
name: (${{ github.workflow }}) Lints, Tests
36-
# https://github.com/actions/runner-images/blob/main/images/macos/macos-13-Readme.md
37-
runs-on: macos-13
36+
# https://github.com/actions/runner-images/blob/main/images/macos/macos-14-Readme.md
37+
runs-on: macos-14
3838
env:
3939
REVIEWDOG_GITHUB_API_TOKEN: ${{ secrets.GITHUB_TOKEN }}
4040
steps:
4141
- name: Checkout
42-
uses: actions/checkout@8ade135a41bc03ea155e62e844d188df1ea18608 # v4
42+
uses: actions/checkout@692973e3d937129bcbf40652eb9f2f61becf3332 # v4
4343
with:
4444
submodules: true
4545
fetch-depth: 0
4646

4747
- name: Setup Node.js
4848
uses: actions/setup-node@v3
4949
with:
50-
node-version: '18.15.0'
50+
node-version: '20.17.0'
5151

5252
# Cache '.npm' to speed up clean-install when package-lock.json is updated.
5353
# Loosened up the restore-keys a bit, as it doesn't have to match the contents of package-lock.json exactly.

.github/workflows/gh-pages-deploy.yaml

+2-2
Original file line numberDiff line numberDiff line change
@@ -12,8 +12,8 @@ on:
1212
jobs:
1313
deploy-pages:
1414
name: Deploy Pages
15-
# https://github.com/actions/runner-images/blob/main/images/macos/macos-13-Readme.md
16-
runs-on: macos-13
15+
# https://github.com/actions/runner-images/blob/main/images/macos/macos-14-Readme.md
16+
runs-on: macos-14
1717
if: >
1818
${{ github.event.workflow_run.conclusion == 'success' }}
1919
steps:

.github/workflows/gh-pages.yaml

+5-5
Original file line numberDiff line numberDiff line change
@@ -22,21 +22,21 @@ on:
2222
jobs:
2323
lint:
2424
name: (${{ github.workflow }}) Lints
25-
# https://github.com/actions/runner-images/blob/main/images/macos/macos-13-Readme.md
26-
runs-on: macos-13
25+
# https://github.com/actions/runner-images/blob/main/images/macos/macos-14-Readme.md
26+
runs-on: macos-14
2727
env:
2828
REVIEWDOG_GITHUB_API_TOKEN: ${{ secrets.GITHUB_TOKEN }}
2929
steps:
3030
- name: Checkout
31-
uses: actions/checkout@8ade135a41bc03ea155e62e844d188df1ea18608 # v4
31+
uses: actions/checkout@692973e3d937129bcbf40652eb9f2f61becf3332 # v4
3232
with:
3333
submodules: true
3434
fetch-depth: 0
3535

3636
- name: Setup Node.js
3737
uses: actions/setup-node@v3
3838
with:
39-
node-version: '18.15.0'
39+
node-version: '20.17.0'
4040

4141
# Cache '.npm' to speed up clean-install when package-lock.json is updated.
4242
# Loosened up the restore-keys a bit, as it doesn't have to match the contents of package-lock.json exactly.
@@ -102,7 +102,7 @@ jobs:
102102
runs-on: ubuntu-22.04
103103
steps:
104104
- name: Checkout
105-
uses: actions/checkout@8ade135a41bc03ea155e62e844d188df1ea18608 # v4
105+
uses: actions/checkout@692973e3d937129bcbf40652eb9f2f61becf3332 # v4
106106
with:
107107
submodules: true
108108
fetch-depth: 0

.tool-versions

+3-3
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,3 @@
1-
nodejs 18.15.0
2-
java zulu-11.62.17
3-
ruby 3.1.4
1+
nodejs 20.17.0
2+
java zulu-17.52.17
3+
ruby 3.1.6

example-app/SantokuApp/.eslintrc.js

+7
Original file line numberDiff line numberDiff line change
@@ -98,6 +98,13 @@ module.exports = {
9898
'src/features/sandbox/apis/**/*.ts',
9999
'src/features/acknowledgements/constants/ThirdPartyDependencies.ts',
100100
'config/plugin/build/**',
101+
'.bundle',
102+
'.expo',
103+
'android',
104+
'ios',
105+
'node_modules',
106+
'patches',
107+
'prebuild',
101108
],
102109
rules: {
103110
'strict-dependencies/strict-dependencies': [

example-app/SantokuApp/.script/check-licenses.js

+4-3
Original file line numberDiff line numberDiff line change
@@ -4,6 +4,7 @@ const listDependencies = require("./list-dependencies");
44
const licenseWhitelist = [
55
'0BSD', // [パーミッシブ・ライセンス] = BSDスタイルライセンス
66
'Apache-2.0', // [パーミッシブ・ライセンス]
7+
'BlueOak-1.0.0', // [パーミッシブ・ライセンス]
78
'BSD-2-Clause', // 二条項BSDライセンス [パーミッシブ・ライセンス]
89
'BSD-3-Clause', // 三条項BSDライセンス [パーミッシブ・ライセンス]
910
'CC-BY-4.0', // クリエイティブ・コモンズ
@@ -20,9 +21,9 @@ const licenseWhitelist = [
2021
];
2122

2223
/**
23-
*
24+
*
2425
* @param {string} target ライセンス文字列. example: 'MIT', '(MIT OR Apache-2.0)', ...
25-
* @param {string[]} licenseList
26+
* @param {string[]} licenseList
2627
* @returns {boolean}
2728
*/
2829
const includeLicenses = (target, licenseList) => {
@@ -62,7 +63,7 @@ listDependencies().then(dependencies => {
6263
const suspiciousLicenseFileList = dependencies.filter(d => String(d.licenseFile).match(/README/i));
6364
if (suspiciousLicenseFileList.length) {
6465
const message = 'licenseFile is README!!!!';
65-
// errors.push(message); // TODO: managed-license.js で管理するようにしたらコメントアウトを外す
66+
// errors.push(message); // TODO: managed-license.js で管理するようにしたらコメントアウトを外す
6667
console.warn('[WARN]', message, Object.fromEntries(suspiciousLicenseFileList.map(({id, licenseFile}) => ([id, licenseFile]))));
6768
}
6869

example-app/SantokuApp/.script/list-dependencies.js

+6-2
Original file line numberDiff line numberDiff line change
@@ -25,6 +25,9 @@ const normalizeLicense = (() => {
2525
'Apache 2.0',
2626
'Apache-2',
2727
],
28+
'BlueOak-1.0.0': [
29+
'Blue Oak Model License',
30+
],
2831
'BSD-2-Clause': [
2932
'Simplified BSD License', // https://opensource.org/license/bsd-license-php/
3033
],
@@ -33,6 +36,7 @@ const normalizeLicense = (() => {
3336
'BSD 3-Clause',
3437
],
3538
'BSL-1.0': [
39+
'Boost Software License'
3640
],
3741
'CC-BY-4.0': [
3842
],
@@ -146,7 +150,7 @@ class PodfileParser {
146150
return [name, version];
147151
});
148152
this._versionMap = Object.fromEntries(versionList);
149-
153+
150154
const checksumList = [
151155
...lockFileText.matchAll(/^ ([^:]+): ([a-z0-9]+)$/mg),
152156
].map(([_all, name, version]) => {
@@ -300,7 +304,7 @@ const listAndroidDependencies = () => {
300304
*/
301305

302306
/**
303-
*
307+
*
304308
* @returns {Promise<Dependency[]>} dependencies
305309
*/
306310
module.exports = function listDependencies() {

example-app/SantokuApp/.script/managed-license.js

+20-61
Original file line numberDiff line numberDiff line change
@@ -23,66 +23,38 @@ module.exports = function () {
2323
* build に使用される cli でのみ使用されているためアプリには使用されていないため除外OK
2424
* !WARNING! ライブラリ変更時、"@react-native-community/cli-plugin-metro"("@react-native-community/cli") 以外で使用されていないかの確認が必要
2525
*/
26-
exclude: true,
26+
exclude: true,
2727
},
2828
'[email protected]': { // https://www.npmjs.com/package/valid-url
2929
licenseName: 'MIT',
3030
licenseUrl: 'https://github.com/ogt/valid-url/blob/v1.0.9/LICENSE',
3131
},
32-
'@react-native/assets-registry@0.72.0': { // https://github.com/facebook/react-native/blob/v0.72.0/packages/assets/package.json
33-
licenseUrl: 'https://github.com/facebook/react-native/blob/v0.72.0/packages/react-native/LICENSE', // ライセンスファイルが同梱されていないため、同じMITライセンスのpackages/react-nativeのライセンスファイルを流用する
32+
'@react-native/metro-babel-transformer@0.74.87': { // https://github.com/facebook/react-native/blob/v0.74.5/packages/react-native-babel-transformer/package.json
33+
licenseUrl: 'https://github.com/facebook/react-native/blob/v0.74.5/LICENSE',
3434
},
35-
'@react-native/[email protected]': { // https://github.com/facebook/react-native/blob/v0.71.0/packages/normalize-color/package.json
36-
licenseUrl: 'https://github.com/facebook/react-native/blob/v0.71.0/LICENSE',
35+
'[email protected]': { // https://github.com/facebook/metro/blob/v0.80.12/packages/metro-babel-transformer/package.json
36+
licenseUrl: 'https://github.com/facebook/metro/blob/v0.80.12/LICENSE',
3737
},
38-
'@react-native/normalize-colors@0.72.0': { // https://github.com/facebook/react-native/blob/v0.72.0/packages/normalize-color/package.json
39-
licenseUrl: 'https://github.com/facebook/react-native/blob/v0.72.0/packages/react-native/LICENSE', // ライセンスファイルが同梱されていないため、同じMITライセンスのpackages/react-nativeのライセンスファイルを流用する
38+
'metro-cache-key@0.80.12': { // https://github.com/facebook/metro/blob/v0.80.12/packages/metro-cache-key/package.json
39+
licenseUrl: 'https://github.com/facebook/metro/blob/v0.80.12/LICENSE',
4040
},
41-
'@react-native/js-polyfills@0.72.1': { // https://github.com/facebook/react-native/blob/v0.72.1/packages/polyfills/package.json
42-
licenseUrl: 'https://github.com/facebook/react-native/blob/v0.72.1/packages/react-native/LICENSE', // ライセンスファイルが同梱されていないため、同じMITライセンスのpackages/react-nativeのライセンスファイルを流用する
41+
'metro-cache@0.80.12': { // https://github.com/facebook/metro/blob/v0.80.12/packages/metro-cache/package.json
42+
licenseUrl: 'https://github.com/facebook/metro/blob/v0.80.12/LICENSE',
4343
},
44-
'@react-native/virtualized-lists@0.72.8': { // https://github.com/facebook/react-native/blob/v0.72.4/packages/virtualized-lists/package.json
45-
licenseUrl: 'https://github.com/facebook/react-native/blob/v0.72.4/packages/react-native/LICENSE', // ライセンスファイルが同梱されていないため、同じMITライセンスのpackages/react-nativeのライセンスファイルを流用する
44+
'metro-minify-terser@0.80.12': { // https://github.com/facebook/metro/blob/v0.80.12/packages/metro-minify-terser/package.json
45+
licenseUrl: 'https://github.com/facebook/metro/blob/v0.80.12/LICENSE',
4646
},
47-
'metro-babel-transformer@0.76.7': { // https://github.com/facebook/metro/blob/v0.76.7/packages/metro-babel-transformer/package.json
48-
licenseUrl: 'https://github.com/facebook/metro/blob/v0.76.7/LICENSE',
47+
'metro-runtime@0.80.12': { // https://github.com/facebook/metro/blob/v0.80.12/packages/metro-runtime/package.json
48+
licenseUrl: 'https://github.com/facebook/metro/blob/v0.80.12/LICENSE',
4949
},
50-
'metro-cache-key@0.76.7': { // https://github.com/facebook/metro/blob/v0.76.7/packages/metro-cache-key/package.json
51-
licenseUrl: 'https://github.com/facebook/metro/blob/v0.76.7/LICENSE',
50+
'metro-symbolicate@0.80.12': { // https://github.com/facebook/metro/blob/v0.80.12/packages/metro-symbolicate/package.json
51+
licenseUrl: 'https://github.com/facebook/metro/blob/v0.80.12/LICENSE',
5252
},
53-
'metro-cache@0.76.7': { // https://github.com/facebook/metro/blob/v0.76.7/packages/metro-cache/package.json
54-
licenseUrl: 'https://github.com/facebook/metro/blob/v0.76.7/LICENSE',
53+
'metro-transform-plugins@0.80.12': { // https://github.com/facebook/metro/blob/v0.80.12/packages/metro-transform-plugins/package.json
54+
licenseUrl: 'https://github.com/facebook/metro/blob/v0.80.12/LICENSE',
5555
},
56-
'[email protected]': { // https://github.com/facebook/metro/blob/v0.76.7/packages/metro-inspector-proxy/package.json
57-
licenseUrl: 'https://github.com/facebook/metro/blob/v0.76.7/LICENSE',
58-
},
59-
'[email protected]': { // https://github.com/facebook/metro/blob/v0.76.7/packages/metro-minify-terser/package.json
60-
licenseUrl: 'https://github.com/facebook/metro/blob/v0.76.7/LICENSE',
61-
},
62-
'[email protected]': { // https://github.com/facebook/metro/blob/v0.76.7/packages/metro-minify-uglify/package.json
63-
licenseUrl: 'https://github.com/facebook/metro/blob/v0.76.7/LICENSE',
64-
},
65-
'[email protected]': { // https://github.com/facebook/metro/blob/v0.76.7/packages/metro-react-native-babel-transformer/package.json
66-
licenseUrl: 'https://github.com/facebook/metro/blob/v0.76.7/LICENSE',
67-
},
68-
'[email protected]': { // https://github.com/facebook/metro/blob/v0.76.7/packages/metro-runtime/package.json
69-
licenseUrl: 'https://github.com/facebook/metro/blob/v0.76.7/LICENSE',
70-
},
71-
// metro v0.76.8 は hotfix リリースだからかタグが存在しないためhash指定
72-
'[email protected]': { // https://github.com/facebook/metro/blob/2aa1abf680a5d78154feb9e3d65986f794d56eef/packages/metro-runtime/package.json
73-
licenseUrl: 'https://github.com/facebook/metro/blob/2aa1abf680a5d78154feb9e3d65986f794d56eef/LICENSE',
74-
},
75-
'[email protected]': { // https://github.com/facebook/metro/blob/v0.76.7/packages/metro-symbolicate/package.json
76-
licenseUrl: 'https://github.com/facebook/metro/blob/v0.76.7/LICENSE',
77-
},
78-
'[email protected]': { // https://github.com/facebook/metro/blob/2aa1abf680a5d78154feb9e3d65986f794d56eef/packages/metro-symbolicate/package.json
79-
licenseUrl: 'https://github.com/facebook/metro/blob/2aa1abf680a5d78154feb9e3d65986f794d56eef/LICENSE',
80-
},
81-
'[email protected]': { // https://github.com/facebook/metro/blob/v0.76.7/packages/metro-transform-plugins/package.json
82-
licenseUrl: 'https://github.com/facebook/metro/blob/v0.76.7/LICENSE',
83-
},
84-
'[email protected]': { // https://github.com/facebook/metro/blob/v0.76.7/packages/metro-transform-worker/package.json
85-
licenseUrl: 'https://github.com/facebook/metro/blob/v0.76.7/LICENSE',
56+
'[email protected]': { // https://github.com/facebook/metro/blob/v0.80.12/packages/metro-transform-worker/package.json
57+
licenseUrl: 'https://github.com/facebook/metro/blob/v0.80.12/LICENSE',
8658
},
8759
'[email protected]': { // https://github.com/jsdom/tr46/tree/0.0.3
8860
licenseUrl: 'https://github.com/jsdom/tr46/blob/3a6f29721e7063b9ffd421e461a54beae6170001/LICENSE.md', // v0.0.3 の次の commit で追加されている
@@ -92,25 +64,12 @@ module.exports = function () {
9264
'com.parse.bolts:bolts-tasks:1.4.0': { // https://github.com/BoltsFramework/Bolts-Android
9365
licenseName: 'BSD-3-Clause', // 名称だけ厳密にする(元: BSD License: https://github.com/BoltsFramework/Bolts-Android/blob/1.4.0/LICENSE)
9466
},
95-
'app.notifee:core:202108261754': { // https://github.com/invertase/notifee/tree/%40notifee/react-native%405.7.0/packages/react-native/android/libs/app/notifee/core/202108261754
96-
licenseName: 'Apache-2.0',
97-
licenseUrl: 'https://github.com/invertase/notifee/blob/%40notifee/react-native%405.7.0/LICENSE', // https://notifee.app/license-terms/
98-
},
9967
},
10068
cocoapods: {
101-
'[email protected]': { // https://github.com/boostorg/boost
102-
licenseName: 'BSL-1.0', // 名称だけ SPDX 形式に変更する (元: Boost Software License)
103-
},
10469
'[email protected]': { // https://github.com/google/glog
10570
licenseName: 'BSD-3-Clause', // https://code.google.com/archive/p/google-glog/ (元: "Google" https://github.com/facebook/react-native/blob/v0.70.5/third-party-podspecs/glog.podspec#L9)
10671
},
107-
108-
licenseName: 'Apache-2.0', // 名称だけ SPDX 形式に変更する (元: Apache)
109-
},
110-
'GoogleUtilities@13e2c67ede716b8741c7989e26893d151b2b2084': {
111-
licenseName: 'Apache-2.0', // 名称だけ SPDX 形式に変更する (元: Apache)
112-
},
113-
'[email protected]': { // https://github.com/facebookincubator/SocketRocket/blob/0.6.1/LICENSE
72+
'[email protected]': { // https://github.com/facebookincubator/SocketRocket/blob/0.7.0/LICENSE
11473
licenseName: 'BSD-3-Clause', // 名称だけ SPDX 形式に変更する (元: BSD)
11574
},
11675
},

example-app/SantokuApp/Gemfile

+1-1
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ source "https://rubygems.org"
44

55
git_source(:github) {|repo_name| "https://github.com/#{repo_name}" }
66

7-
gem "cocoapods", "1.11.3"
7+
gem "cocoapods", "1.15.2"
88

99
gem "rexml", "~> 3.2"
1010

0 commit comments

Comments
 (0)