Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
Show all changes
33 commits
Select commit Hold shift + click to select a range
f056fde
Bump tmp in /example in the npm_and_yarn group across 1 directory
dependabot[bot] Aug 6, 2025
6312a75
Bump rexml in /example in the bundler group across 1 directory
dependabot[bot] Sep 17, 2025
ad053a6
Merge pull request #129 from shipt/dependabot/bundler/example/bundler…
jkhusanov Feb 2, 2026
9bd3c19
Merge branch 'development' into dependabot/npm_and_yarn/example/npm_a…
jkhusanov Feb 2, 2026
4696d68
Merge pull request #128 from shipt/dependabot/npm_and_yarn/example/np…
jkhusanov Feb 2, 2026
0b537b0
Bump the npm_and_yarn group across 1 directory with 2 updates
dependabot[bot] Feb 2, 2026
3c6bf01
Merge pull request #130 from shipt/dependabot/npm_and_yarn/example/np…
jkhusanov Feb 2, 2026
c1f9ef1
update dependecy to fix Vulnerability
jkhusanov Feb 3, 2026
f457430
Merge pull request #131 from shipt/fix-dependency
jkhusanov Feb 3, 2026
5171640
update js-yaml
jkhusanov Feb 3, 2026
6be8c43
Merge pull request #132 from shipt/fix-js-yaml
jkhusanov Feb 3, 2026
e63333f
update on-headers'
jkhusanov Feb 3, 2026
e9e32c8
Update on-headers in main dir
jkhusanov Feb 3, 2026
3e4471f
Merge pull request #133 from shipt/fix-on-headers
jkhusanov Feb 3, 2026
14113d8
Update send
jkhusanov Feb 3, 2026
d03b66c
Merge pull request #134 from shipt/fix-send
jkhusanov Feb 3, 2026
88fa050
Update brace condition
jkhusanov Feb 4, 2026
d901355
Merge pull request #135 from shipt/brace-expansion
jkhusanov Feb 4, 2026
750872d
Pod update
jkhusanov Feb 5, 2026
e2792fa
Merge pull request #136 from shipt/pod
jkhusanov Feb 5, 2026
61e0004
Make the example project run only local changes
jkhusanov Feb 12, 2026
29737af
Merge pull request #137 from shipt/installation-upgrade
jkhusanov Feb 12, 2026
820c3e0
Update example App to latest React Native version (#139)
jkhusanov Feb 16, 2026
e3b7b78
Upgrade yarn to latest version (#140)
jkhusanov Feb 17, 2026
a178f2c
Bump the npm_and_yarn group across 2 directories with 2 updates (#146)
dependabot[bot] Feb 23, 2026
2758b23
Animation fix - support dynamic fillValue (#141)
jkhusanov Feb 25, 2026
76c9c6d
Update codeownsers (#147)
jkhusanov Feb 25, 2026
a385dbe
Bump the npm_and_yarn group across 2 directories with 1 update (#148)
dependabot[bot] Feb 27, 2026
d239006
Bump the npm_and_yarn group across 2 directories with 1 update (#149)
dependabot[bot] Feb 27, 2026
8cb4ae5
Update dependencies to resolve Dependabot alerts (#150)
jkhusanov Feb 27, 2026
32bb925
Update minmatch dependency (#151)
jkhusanov Feb 27, 2026
4804cbe
Bump version (#153)
jkhusanov Feb 27, 2026
4e417b5
Merge branch 'main' into development
jkhusanov Feb 27, 2026
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
30 changes: 13 additions & 17 deletions .circleci/config.yml
Original file line number Diff line number Diff line change
Expand Up @@ -3,29 +3,25 @@ version: 2.1
defaults: &defaults
working_directory: ~/segmented-arc-for-react-native
docker:
- image: cimg/node:18.15.0
- image: cimg/node:24.13.1

yarn_install: &yarn_install
run:
name: Install yarn
command: yarn install --frozen-lockfile
orbs:
node: circleci/node@7.2.1
commands:
yarn_install:
description: 'Install node and yarn packages'
steps:
- node/install-packages:
cache-version: v2
pkg-manager: yarn-berry
include-branch-in-cache-key: false

jobs:
test:
<<: *defaults
steps:
- checkout
- restore_cache:
name: Restore Yarn Package Cache
keys:
- yarn-v1-unit-tests-{{ arch }}-{{ checksum "yarn.lock" }}-{{ .Branch }}
- yarn-v1-unit-tests-{{ arch }}-{{ checksum "yarn.lock" }}-
- <<: *yarn_install
- save_cache:
name: Save Yarn Package Cache
key: yarn-v1-unit-tests-{{ arch }}-{{ checksum "yarn.lock" }}-{{ .Branch }}
paths:
- node_modules/
- yarn_install
- run:
name: Run unit tests
command: |
Expand All @@ -43,7 +39,7 @@ jobs:

workflows:
version: 2.1
-run_test:
run_test:
jobs:
- test
- deploy:
Expand Down
2 changes: 1 addition & 1 deletion .github/CODEOWNERS
Original file line number Diff line number Diff line change
@@ -1 +1 @@
* @jkhusanov @calebmackdavenport @rkyle35242 @chaceburnette @joshuakg @rykugur @kathrynnlester @taylorcore
* @jkhusanov @rkyle35242 @chaceburnette @arrozconcurry @crosenfrisk @justinzito @sbshipt @wdavis47
9 changes: 9 additions & 0 deletions .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -53,5 +53,14 @@ yarn-error.log
.npmrc
example/node_modules/

# yarn
.pnp.*
.yarn/*
!.yarn/patches
!.yarn/plugins
!.yarn/releases
!.yarn/sdks
!.yarn/versions

# Jest
coverage/
1 change: 1 addition & 0 deletions .nvmrc
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
24.13.1
4 changes: 4 additions & 0 deletions .yarnrc.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,4 @@
nodeLinker: node-modules
defaultSemverRangePrefix: ''
enableGlobalCache: false
enableScripts: false
29 changes: 0 additions & 29 deletions MAINTAINERS.md

This file was deleted.

2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -174,7 +174,7 @@ Please read our [CONTRIBUTING.md](./CONTRIBUTING.md) for details on our communit

## 🧑‍💻 Maintainers

To find out who our Maintainers are, check out [MAINTAINERS.md](MAINTAINERS.md).
To find out who our Maintainers are, check out [CODEOWNERS](.github/CODEOWNERS).

## 🚅 Versioning

Expand Down
6 changes: 6 additions & 0 deletions example/Gemfile
Original file line number Diff line number Diff line change
Expand Up @@ -8,3 +8,9 @@ gem 'cocoapods', '>= 1.13', '!= 1.15.0', '!= 1.15.1'
gem 'activesupport', '>= 6.1.7.5', '!= 7.1.0'
gem 'xcodeproj', '< 1.26.0'
gem 'concurrent-ruby', '< 1.3.4'

# Ruby 3.4.0 has removed some libraries from the standard library.
gem 'bigdecimal'
gem 'logger'
gem 'benchmark'
gem 'mutex_m'
44 changes: 22 additions & 22 deletions example/Gemfile.lock
Original file line number Diff line number Diff line change
@@ -1,11 +1,8 @@
GEM
remote: https://rubygems.org/
specs:
CFPropertyList (3.0.7)
base64
nkf
rexml
activesupport (7.2.2.1)
CFPropertyList (3.0.9)
activesupport (7.2.3)
base64
benchmark (>= 0.3)
bigdecimal
Expand All @@ -17,15 +14,15 @@ GEM
minitest (>= 5.1)
securerandom (>= 0.3)
tzinfo (~> 2.0, >= 2.0.5)
addressable (2.8.7)
public_suffix (>= 2.0.2, < 7.0)
addressable (2.8.8)
public_suffix (>= 2.0.2, < 8.0)
algoliasearch (1.27.5)
httpclient (~> 2.8, >= 2.8.3)
json (>= 1.5.1)
atomos (0.1.3)
base64 (0.2.0)
benchmark (0.4.0)
bigdecimal (3.1.9)
base64 (0.3.0)
benchmark (0.5.0)
bigdecimal (4.0.1)
claide (1.1.0)
cocoapods (1.15.2)
addressable (~> 2.8)
Expand Down Expand Up @@ -66,34 +63,33 @@ GEM
cocoapods-try (1.2.0)
colored2 (3.1.2)
concurrent-ruby (1.3.3)
connection_pool (2.5.0)
drb (2.2.1)
connection_pool (2.5.5)
drb (2.2.3)
escape (0.0.4)
ethon (0.16.0)
ethon (0.15.0)
ffi (>= 1.15.0)
ffi (1.17.1)
ffi (1.17.3)
fourflusher (2.3.1)
fuzzy_match (2.0.4)
gh_inspector (1.1.3)
httpclient (2.9.0)
mutex_m
i18n (1.14.7)
i18n (1.14.8)
concurrent-ruby (~> 1.0)
json (2.10.2)
logger (1.6.6)
minitest (5.25.4)
json (2.18.1)
logger (1.7.0)
minitest (5.27.0)
molinillo (0.8.0)
mutex_m (0.3.0)
nanaimo (0.3.0)
nap (1.1.0)
netrc (0.11.0)
nkf (0.2.0)
public_suffix (4.0.7)
rexml (3.4.1)
rexml (3.4.4)
ruby-macho (2.5.1)
securerandom (0.4.1)
typhoeus (1.4.1)
ethon (>= 0.9.0)
typhoeus (1.5.0)
ethon (>= 0.9.0, < 0.16.0)
tzinfo (2.0.6)
concurrent-ruby (~> 1.0)
xcodeproj (1.25.1)
Expand All @@ -109,8 +105,12 @@ PLATFORMS

DEPENDENCIES
activesupport (>= 6.1.7.5, != 7.1.0)
benchmark
bigdecimal
cocoapods (>= 1.13, != 1.15.1, != 1.15.0)
concurrent-ruby (< 1.3.4)
logger
mutex_m
xcodeproj (< 1.26.0)

RUBY VERSION
Expand Down
4 changes: 2 additions & 2 deletions example/android/app/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -19,9 +19,9 @@ react {

/* Variants */
// The list of variants to that are debuggable. For those we're going to
// skip the bundling of the JS bundle and the assets. By default is just 'debug'.
// skip the bundling of the JS bundle and the assets. Default is "debug", "debugOptimized".
// If you add flavors like lite, prod, etc. you'll have to list your debuggableVariants.
// debuggableVariants = ["liteDebug", "prodDebug"]
// debuggableVariants = ["liteDebug", "liteDebugOptimized", "prodDebug", "prodDebugOptimized"]

/* Bundling */
// A list containing the node command and its flags. Default is just 'node'.
Expand Down
9 changes: 0 additions & 9 deletions example/android/app/src/debug/AndroidManifest.xml

This file was deleted.

1 change: 1 addition & 0 deletions example/android/app/src/main/AndroidManifest.xml
Original file line number Diff line number Diff line change
Expand Up @@ -9,6 +9,7 @@
android:roundIcon="@mipmap/ic_launcher_round"
android:allowBackup="false"
android:theme="@style/AppTheme"
android:usesCleartextTraffic="${usesCleartextTraffic}"
android:supportsRtl="true">
<activity
android:name=".MainActivity"
Expand Down
41 changes: 12 additions & 29 deletions example/android/app/src/main/java/com/example/MainApplication.kt
Original file line number Diff line number Diff line change
Expand Up @@ -4,41 +4,24 @@ import android.app.Application
import com.facebook.react.PackageList
import com.facebook.react.ReactApplication
import com.facebook.react.ReactHost
import com.facebook.react.ReactNativeHost
import com.facebook.react.ReactPackage
import com.facebook.react.defaults.DefaultNewArchitectureEntryPoint.load
import com.facebook.react.ReactNativeApplicationEntryPoint.loadReactNative
import com.facebook.react.defaults.DefaultReactHost.getDefaultReactHost
import com.facebook.react.defaults.DefaultReactNativeHost
import com.facebook.react.soloader.OpenSourceMergedSoMapping
import com.facebook.soloader.SoLoader

class MainApplication : Application(), ReactApplication {

override val reactNativeHost: ReactNativeHost =
object : DefaultReactNativeHost(this) {
override fun getPackages(): List<ReactPackage> =
PackageList(this).packages.apply {
// Packages that cannot be autolinked yet can be added manually here, for example:
// add(MyReactNativePackage())
}

override fun getJSMainModuleName(): String = "index"

override fun getUseDeveloperSupport(): Boolean = BuildConfig.DEBUG

override val isNewArchEnabled: Boolean = BuildConfig.IS_NEW_ARCHITECTURE_ENABLED
override val isHermesEnabled: Boolean = BuildConfig.IS_HERMES_ENABLED
}

override val reactHost: ReactHost
get() = getDefaultReactHost(applicationContext, reactNativeHost)
override val reactHost: ReactHost by lazy {
getDefaultReactHost(
context = applicationContext,
packageList =
PackageList(this).packages.apply {
// Packages that cannot be autolinked yet can be added manually here, for example:
// add(MyReactNativePackage())
},
)
}

override fun onCreate() {
super.onCreate()
SoLoader.init(this, OpenSourceMergedSoMapping)
if (BuildConfig.IS_NEW_ARCHITECTURE_ENABLED) {
// If you opted-in for the New Architecture, we load the native entry point for this app.
load()
}
loadReactNative(this)
}
}
8 changes: 4 additions & 4 deletions example/android/build.gradle
Original file line number Diff line number Diff line change
@@ -1,11 +1,11 @@
buildscript {
ext {
buildToolsVersion = "35.0.0"
buildToolsVersion = "36.0.0"
minSdkVersion = 24
compileSdkVersion = 35
targetSdkVersion = 35
compileSdkVersion = 36
targetSdkVersion = 36
ndkVersion = "27.1.12297006"
kotlinVersion = "2.0.21"
kotlinVersion = "2.1.20"
}
repositories {
google()
Expand Down
5 changes: 5 additions & 0 deletions example/android/gradle.properties
Original file line number Diff line number Diff line change
Expand Up @@ -37,3 +37,8 @@ newArchEnabled=true
# Use this property to enable or disable the Hermes JS engine.
# If set to false, you will be using JSC instead.
hermesEnabled=true

# Use this property to enable edge-to-edge display support.
# This allows your app to draw behind system bars for an immersive UI.
# Note: Only works with ReactActivity and should not be used with custom Activity.
edgeToEdgeEnabled=false
Binary file modified example/android/gradle/wrapper/gradle-wrapper.jar
Binary file not shown.
2 changes: 1 addition & 1 deletion example/android/gradle/wrapper/gradle-wrapper.properties
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
distributionBase=GRADLE_USER_HOME
distributionPath=wrapper/dists
distributionUrl=https\://services.gradle.org/distributions/gradle-8.12-all.zip
distributionUrl=https\://services.gradle.org/distributions/gradle-9.0.0-bin.zip
networkTimeout=10000
validateDistributionUrl=true
zipStoreBase=GRADLE_USER_HOME
Expand Down
8 changes: 4 additions & 4 deletions example/android/gradlew

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

9 changes: 7 additions & 2 deletions example/android/gradlew.bat

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

Loading