Skip to content
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

Update repo with upstream changes #14

Merged
merged 27 commits into from
Feb 3, 2023
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
Show all changes
27 commits
Select commit Hold shift + click to select a range
107c6ee
[fix] Allow Pressable to be programmatically focused when disabled
necolas Aug 24, 2022
93b1d04
[fix] CheckBox supports readOnly on native control
necolas Aug 24, 2022
290cae2
[fix] Image throws error if packager asset isn't resolved
necolas Aug 24, 2022
bd409f6
0.18.8
necolas Aug 25, 2022
b6c8da8
Bump terser from 5.14.1 to 5.15.0
dependabot[bot] Aug 25, 2022
c764f96
[fix] Allow TextInput to dispatch 'submit' event
mdneyazahmad Aug 12, 2022
9766fe6
[fix] Export useLocaleContext as default export
Aug 30, 2022
dee258a
0.18.9
necolas Aug 30, 2022
0f692f2
[fix] Dimensions.get() should not call change listeners
necolas Nov 2, 2022
fa47f80
0.18.10
necolas Nov 2, 2022
c336e7c
Bump luxon from 2.4.0 to 2.5.2
dependabot[bot] Jan 9, 2023
cfa2625
Bump json5 from 2.2.1 to 2.2.3
dependabot[bot] Jan 8, 2023
18ea5cd
Bump engine.io from 6.2.0 to 6.2.1
dependabot[bot] Nov 22, 2022
56d287b
Bump loader-utils from 2.0.0 to 2.0.4
dependabot[bot] Nov 16, 2022
f34377d
Bump socket.io-parser from 4.0.4 to 4.0.5
dependabot[bot] Jan 11, 2023
ca15203
[fix] 'accessibilityRequired' sets correct 'required' value
necolas Jan 11, 2023
21b5d44
0.18.11
necolas Jan 24, 2023
ccfd936
[fix] iOS not firing `resize` event when keyboard opens/closes
rawalyogendra Nov 23, 2022
77f6fba
[fix] Avoid setting focus tabIndex on <body>
s77rt Jan 17, 2023
57e2482
0.18.12
necolas Jan 25, 2023
030023c
Bump ua-parser-js from 0.7.31 to 0.7.33
dependabot[bot] Jan 24, 2023
9e3efa7
Fix actions used in workflows
Simek Dec 30, 2022
e8098fd
Fix label workflow actions
necolas Jan 27, 2023
b42c006
Merge remote-tracking branch 'upstream/master' into rocio-UpdateFromU…
pecanoro Jan 27, 2023
f3f1708
Style
pecanoro Jan 27, 2023
b939448
Update package-lock
pecanoro Feb 1, 2023
c1e8314
package-lock.json
pecanoro Feb 1, 2023
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
2 changes: 1 addition & 1 deletion .github/CONTRIBUTING.md
Original file line number Diff line number Diff line change
Expand Up @@ -114,7 +114,7 @@ Thank you for contributing!
To commit, publish, and push a final version:

```
npm run release -- <version> --opt=<opt-code>
npm run release -- <version> --otp=<otp-code>
```

Release candidates or versions that you'd like to publish to npm, but do not want to produce a commit and push it to GitHub:
Expand Down
2 changes: 1 addition & 1 deletion .github/ISSUE_TEMPLATE/feature.yml
Original file line number Diff line number Diff line change
Expand Up @@ -16,6 +16,6 @@ body:
- type: textarea
attributes:
label: Describe the feature request
description: Please provide a concise description of the request, potential solutions, and addtional context.
description: Please provide a concise description of the request, potential solutions, and additional context.
validations:
required: true
18 changes: 12 additions & 6 deletions .github/workflows/labels.yml
Original file line number Diff line number Diff line change
@@ -1,16 +1,22 @@
name: labels

# This workflow is triggered when a label is added to an issue.
on:
issues:
types: labeled
types: [labeled, unlabeled]
pull_request:
types: [labeled, unlabeled]

permissions:
contents: read
issues: write
pull-requests: write

jobs:
label-actions:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- uses: hramos/label-actions@v1
- uses: actions/checkout@v3
- uses: dessant/label-actions@v3
with:
configuration-path: .github/labels-config.yml
repo-token: ${{ secrets.GITHUB_TOKEN }}
config-path: .github/labels-config.yml
github-token: ${{ github.token }}
2 changes: 1 addition & 1 deletion .github/workflows/performance.yml
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ jobs:
compressed-size:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- uses: actions/checkout@v3
- uses: necolas/compressed-size-action@master
with:
build-script: "compile"
Expand Down
6 changes: 3 additions & 3 deletions .github/workflows/react-integration.yml
Original file line number Diff line number Diff line change
Expand Up @@ -9,10 +9,10 @@ jobs:
react-next:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- uses: actions/setup-node@v1
- uses: actions/checkout@v3
- uses: actions/setup-node@v3
with:
node-version: '16.x'
node-version: 16
- run: npm install
# Update react-native-web to use react@next
- run: npm install react@next react-dom@next -w react-native-web
Expand Down
24 changes: 12 additions & 12 deletions .github/workflows/tests.yml
Original file line number Diff line number Diff line change
Expand Up @@ -11,39 +11,39 @@ jobs:
format:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- uses: actions/setup-node@v1
- uses: actions/checkout@v3
- uses: actions/setup-node@v3
with:
node-version: '16.x'
node-version: 16
- run: npm install
- run: npm run format

type-check:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- uses: actions/setup-node@v1
- uses: actions/checkout@v3
- uses: actions/setup-node@v3
with:
node-version: '16.x'
node-version: 16
- run: npm install
- run: npm run flow

lint:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- uses: actions/setup-node@v1
- uses: actions/checkout@v3
- uses: actions/setup-node@v3
with:
node-version: '16.x'
node-version: 16
- run: npm install
- run: npm run lint

unit-test:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- uses: actions/setup-node@v1
- uses: actions/checkout@v3
- uses: actions/setup-node@v3
with:
node-version: '16.x'
node-version: 16
- run: npm install
- run: npm run unit
Loading