<?xml version="1.0"?>
<?xml-stylesheet type="text/xsl" href="/rss.xsl.xml"?>
<rss version="2.0" xmlns:dc="http://purl.org/dc/elements/1.1/">
<channel>
    <title>Changes in src</title>
    <description></description>
    <language>en</language>
    <copyright>Copyright 2015</copyright>
    <generator>Java</generator><item>
        <title>01430c5e - [tools] Allow for package-specific transforms in versioning script (#23227)</title>
        <link>http://172.16.0.5:8080/history/expo/tools/src/#01430c5e</link>
        <description>[tools] Allow for package-specific transforms in versioning script (#23227)

            List of files:
            /expo/tools/src/versioning/ios/transforms/expoModulesTransforms.ts/expo/tools/src/versioning/ios/types.ts/expo/tools/src/versioning/ios/versionExpoModules.ts</description>
        <pubDate>Fri, 30 Jun 2023 17:00:00 +0000</pubDate>
        <dc:creator>Tomasz Sapeta &lt;tomasz.sapeta@swmansion.com&gt;</dc:creator>
    </item>
<item>
        <title>ae642c8a - Remove face detector from iOS Expo Go (#22619)</title>
        <link>http://172.16.0.5:8080/history/expo/tools/src/#ae642c8a</link>
        <description>Remove face detector from iOS Expo Go (#22619)Co-authored-by: Expo Bot &lt;34669131+expo-bot@users.noreply.github.com&gt;

            List of files:
            /expo/tools/src/versioning/ios/unversionablePackages.json</description>
        <pubDate>Thu, 25 May 2023 16:00:00 +0000</pubDate>
        <dc:creator>aleqsio &lt;mikucki@gmail.com&gt;</dc:creator>
    </item>
<item>
        <title>453643fe - [ios][core][tools] fix expo go versioning issues on ios (#23012)</title>
        <link>http://172.16.0.5:8080/history/expo/tools/src/#453643fe</link>
        <description>[ios][core][tools] fix expo go versioning issues on ios (#23012)# Whyfix expo-go ios versioning for sdk 49close ENG-8955# How- a lot of mess transform rules update mainly for react-native 0.72 and reanimated v3- [core] rename `ExpoRuntime -&gt; EXRuntime` in objc for versioning- [updates] force casting for the `UpdatesConfig` (i&apos;ll leave comment for this)- [react-native-lab] add correct dependencies to make versioned code build passed# Test Plan`et add-sdk -p ios -s 49.0.0` + ios versioned expo-go + sdk49 ncl

            List of files:
            /expo/tools/src/versioning/ios/transforms/podspecTransforms.ts/expo/tools/src/versioning/ios/transforms/postTransforms.ts/expo/tools/src/versioning/ios/transforms/vendoredModulesTransforms.ts/expo/tools/src/versioning/ios/versionHermes.ts</description>
        <pubDate>Thu, 22 Jun 2023 06:00:00 +0000</pubDate>
        <dc:creator>Kudo Chien &lt;kudo@expo.dev&gt;</dc:creator>
    </item>
<item>
        <title>941f41af - [tools] Rewrite versioning expo modules (#13881)</title>
        <link>http://172.16.0.5:8080/history/expo/tools/src/#941f41af</link>
        <description>[tools] Rewrite versioning expo modules (#13881)

            List of files:
            /expo/tools/src/versioning/ios/utils.ts</description>
        <pubDate>Wed, 04 Aug 2021 15:00:00 +0000</pubDate>
        <dc:creator>Tomasz Sapeta &lt;tomasz.sapeta@swmansion.com&gt;</dc:creator>
    </item>
<item>
        <title>c88b85cf - [ios] Bump deployment target to 13.0 (#18873)</title>
        <link>http://172.16.0.5:8080/history/expo/tools/src/#c88b85cf</link>
        <description>[ios] Bump deployment target to 13.0 (#18873)

            List of files:
            /expo/tools/src/versioning/ios/versionExpoModulesProvider.ts</description>
        <pubDate>Wed, 14 Sep 2022 07:00:00 +0000</pubDate>
        <dc:creator>Tomasz Sapeta &lt;tomasz.sapeta@swmansion.com&gt;</dc:creator>
    </item>
<item>
        <title>5bd1be93 - [tools] Fix the review bot complaining about changes in the root changelog (#21209)</title>
        <link>http://172.16.0.5:8080/history/expo/tools/src/#5bd1be93</link>
        <description>[tools] Fix the review bot complaining about changes in the root changelog (#21209)

            List of files:
            /expo/tools/src/versioning/ios/versionVendoredModules.ts</description>
        <pubDate>Sun, 19 Mar 2023 21:00:00 +0000</pubDate>
        <dc:creator>Tomasz Sapeta &lt;tomasz.sapeta@swmansion.com&gt;</dc:creator>
    </item>
<item>
        <title>71ea6032 - [android][tools] fix expo go versioning issues on android (#22950)</title>
        <link>http://172.16.0.5:8080/history/expo/tools/src/#71ea6032</link>
        <description>[android][tools] fix expo go versioning issues on android (#22950)# Whyfix expo-go android versioning for sdk 49close ENG-8955# How- [tools] fix for react-native monorepo changes- [tools] update manifest-merger because the original one doesn&apos;t support java 17. since the new manifest-merger has kotlin runtime and the jar takes about 35MB. rather than committing a prebuilt jar, now we build manifest-merger from source.- [tools] since #22609 we don&apos;t have `package` in libraries&apos; AndroidManifest.xml, the manifest-merger still requires the `package`, so we have to temporarily put the `package` back during manifest merging. (the `package` name is generated from `namespace` in build.gradle)- [tools] the original jarjar uses outdated [ASM](https://asm.ow2.io/) and it doesn&apos;t support bytecode generated by kotlin. react-native now has some kotlin code, and the original jarjar cannot transform package name from those kotlin classes. i&apos;ve tried to rebuild a jarjar from [this revision](https://github.com/google/jarjar/commit/e11d5636aa45664271c8f1603067527b2520f591). this requires some manual steps like updating ASM libs and install ant builder. so i still commit the prebuilt jarjar in this pr.- [updates] force casting for `UpdateEntity` to deal with kotlin smart casting from versioned to unversioned kernel class. (i&apos;ll leave inline comment for this)- [expo-modules-core&apos;s `android-annotation`] the project stays in a place that does not support versioning yet. in this pr i just keep it as an unversionable project. cc @lukmccall # Test Plan`et add-sdk -p android -s 49.0.0` + android versioned expo-go + sdk 49 NCL smoke test

            List of files:
            /expo/tools/src/versioning/android/expoModulesTransforms.ts/expo/tools/src/versioning/android/index.ts/expo/tools/src/versioning/android/jarFiles.ts/expo/tools/src/versioning/android/jarjar-e11d5636.jar/expo/tools/src/versioning/android/libraries.ts/expo/tools/src/versioning/android/versionCxx/patches/expo-av.patch/expo/tools/src/versioning/android/versionCxx/patches/expo-gl.patch/expo/tools/src/versioning/android/versionCxx/patches/expo-modules-core.patch/expo/tools/src/versioning/android/versionReactNative.ts/expo/tools/src/versioning/android/versionVendoredModules.ts</description>
        <pubDate>Thu, 22 Jun 2023 05:00:00 +0000</pubDate>
        <dc:creator>Kudo Chien &lt;kudo@expo.dev&gt;</dc:creator>
    </item>
<item>
        <title>895fafd4 - chore: update react-native to 0.72.1 (#23262)</title>
        <link>http://172.16.0.5:8080/history/expo/tools/src/#895fafd4</link>
        <description>chore: update react-native to 0.72.1 (#23262)# Whyupdate react-native 0.72.1 for sdk 49# How- bump react-native to 0.72.1- re-version android/ios sdk 49 code- [react-native-lab] cherry-pick necessary commits between 0.72.0..0.72.1# Test Plan- ci passed- bare-expo- versioned expo go

            List of files:
            /expo/tools/src/versioning/ios/index.ts</description>
        <pubDate>Mon, 03 Jul 2023 14:00:00 +0000</pubDate>
        <dc:creator>Kudo Chien &lt;kudo@expo.dev&gt;</dc:creator>
    </item>
<item>
        <title>3a16b4e2 - [tools][ios] Fix transforming RCTAppearance in EXAppViewController</title>
        <link>http://172.16.0.5:8080/history/expo/tools/src/#3a16b4e2</link>
        <description>[tools][ios] Fix transforming RCTAppearance in EXAppViewController

            List of files:
            /expo/tools/src/versioning/ios/transforms/kernelFilesTransforms.ts</description>
        <pubDate>Tue, 22 Jun 2021 06:00:00 +0000</pubDate>
        <dc:creator>Tomasz Sapeta &lt;tsapeta@users.noreply.github.com&gt;</dc:creator>
    </item>
<item>
        <title>a272999e - [tools] add and hook up lint setup, remove `module-scripts` (#16974)</title>
        <link>http://172.16.0.5:8080/history/expo/tools/src/#a272999e</link>
        <description>[tools] add and hook up lint setup, remove `module-scripts` (#16974)

            List of files:
            /expo/tools/src/versioning/ios/transforms/index.ts</description>
        <pubDate>Mon, 11 Apr 2022 11:00:00 +0000</pubDate>
        <dc:creator>Bartosz Kaszubowski &lt;gosimek@gmail.com&gt;</dc:creator>
    </item>
<item>
        <title>53169f11 - [ios][expo-notifications] Fix accidentally-versioned constant in EXServerRegistrationModule (#14576) (#14593)</title>
        <link>http://172.16.0.5:8080/history/expo/tools/src/#53169f11</link>
        <description>[ios][expo-notifications] Fix accidentally-versioned constant in EXServerRegistrationModule (#14576) (#14593)

            List of files:
            /expo/tools/src/versioning/ios/transforms/injectMacros.ts</description>
        <pubDate>Thu, 30 Sep 2021 16:00:00 +0000</pubDate>
        <dc:creator>Will Schurman &lt;wschurman@gmail.com&gt;</dc:creator>
    </item>
<item>
        <title>4440fb50 - [go] add android sdk49 versioned code (#23110)</title>
        <link>http://172.16.0.5:8080/history/expo/tools/src/#4440fb50</link>
        <description>[go] add android sdk49 versioned code (#23110)# Whyfor sdk 49# How- [go] add android sdk 49 versioned code- [tools] minor fix for android versioning# Test Planci passed

            List of files:
            /expo/tools/src/versioning/android/packagesConfig.ts/expo/tools/src/versioning/android/transforms/vendoredModulesTransforms.ts</description>
        <pubDate>Tue, 27 Jun 2023 02:00:00 +0000</pubDate>
        <dc:creator>Kudo Chien &lt;kudo@expo.dev&gt;</dc:creator>
    </item>
<item>
        <title>6239b2d0 - [tools] Update android versioning script for sdk 47 (#19518)</title>
        <link>http://172.16.0.5:8080/history/expo/tools/src/#6239b2d0</link>
        <description>[tools] Update android versioning script for sdk 47 (#19518)# Whyupdate android versioning script for sdk 47# How- [android] update gradle wrapper version to 7.5.1, which aligned with react-native 0.70- [localization] fix compileSdkVersion 33 build error- [tools] update versioning script  - remove `renameHermesEngine` which is deprecated patchelf based hermes versioning  - replace duplicated runReactNativeCodegenAndroidAsync with `Codegen.runReactNativeCodegenAsync`  - update versioning script to support building in-place from react-native-lab  - update for react-native 0.70  - update versionCxx for expo-modules-core  - support other new style vendoring modules    - @react-native-community/slider    - react-native-gesture-handler (with cxx files but they&apos;re only for new architecture)    - react-native-screens (with cxx files but they&apos;re only for new architecture)    - react-native-svg    - react-native-reanimated (with cxx files)  - remove old reanimated versioning scripts # Test Plan```$ et add-sdk -p android -s 47.0.0$ cd android &amp;&amp; ./gradlew :app:installVersionedDebug# smoke test on sdk 47 NCL```

            List of files:
            /expo/tools/src/versioning/android/transforms/expoviewTransforms.ts</description>
        <pubDate>Fri, 21 Oct 2022 16:00:00 +0000</pubDate>
        <dc:creator>Kudo Chien &lt;kudo@expo.dev&gt;</dc:creator>
    </item>
<item>
        <title>5064f84b - [tools] fix hermes inspector error from versioning</title>
        <link>http://172.16.0.5:8080/history/expo/tools/src/#5064f84b</link>
        <description>[tools] fix hermes inspector error from versioning

            List of files:
            /expo/tools/src/versioning/android/reactNativeTransforms.ts</description>
        <pubDate>Mon, 24 Jul 2023 18:00:00 +0000</pubDate>
        <dc:creator>Kudo Chien &lt;kudo@expo.dev&gt;</dc:creator>
    </item>
<item>
        <title>f194f574 - [versioning][android] Support react-native 69 (#18032)</title>
        <link>http://172.16.0.5:8080/history/expo/tools/src/#f194f574</link>
        <description>[versioning][android] Support react-native 69 (#18032)* [skip ci] suppoort rn69* version expo-modules-core* review feedback + small cleanup

            List of files:
            /expo/tools/src/versioning/android/utils.ts</description>
        <pubDate>Tue, 05 Jul 2022 10:00:00 +0000</pubDate>
        <dc:creator>Wojciech Kozyra &lt;wojciech.kozyra@swmansion.com&gt;</dc:creator>
    </item>
<item>
        <title>1a8a11e6 - [expo-tools] Check for unused transforms for vendored code. (#22938)</title>
        <link>http://172.16.0.5:8080/history/expo/tools/src/#1a8a11e6</link>
        <description>[expo-tools] Check for unused transforms for vendored code. (#22938)

            List of files:
            /expo/tools/src/versioning/android/versionCxx/index.ts</description>
        <pubDate>Fri, 07 Jul 2023 15:00:00 +0000</pubDate>
        <dc:creator>aleqsio &lt;mikucki@gmail.com&gt;</dc:creator>
    </item>
<item>
        <title>ab91dd02 - [expo-modules] Create local create-expo-module template (#21460)</title>
        <link>http://172.16.0.5:8080/history/expo/tools/src/#ab91dd02</link>
        <description>[expo-modules] Create local create-expo-module template (#21460)

            List of files:
            /expo/tools/src/versioning/android/unversionablePackages.json</description>
        <pubDate>Wed, 22 Mar 2023 12:00:00 +0000</pubDate>
        <dc:creator>aleqsio &lt;mikucki@gmail.com&gt;</dc:creator>
    </item>
<item>
        <title>eeffdb10 - [tools] Move tools/expotools one folder up (#11410)</title>
        <link>http://172.16.0.5:8080/history/expo/tools/src/#eeffdb10</link>
        <description>[tools] Move tools/expotools one folder up (#11410)

            List of files:
            /expo/tools/src/versioning/android/android-packages-to-rename.txt</description>
        <pubDate>Mon, 21 Dec 2020 18:00:00 +0000</pubDate>
        <dc:creator>Tomasz Sapeta &lt;1714764+tsapeta@users.noreply.github.com&gt;</dc:creator>
    </item>
</channel>
</rss>
