Skip to content

Latest commit

 

History

History
146 lines (81 loc) · 3.83 KB

CHANGELOG.md

File metadata and controls

146 lines (81 loc) · 3.83 KB

Changelog

Based on Common Changelog.

2.7.4 - 2024-10-02

Changed

Updated CircleCI build pipeline to use updated Xcode and resource_class for Mac M1

2.6.3 - 2024-01-18

Fixed

Fixed the issue preventing imports from aliased directories from working.

Example:

import { something } from "@components/some-component";

Would error out with:

error: Error: Unable to resolve module @components/some-component from /home/user/your-project/file.js: @components/some-component could not be found within the project or in these directories: node_modules ../node_modules ../../../../node_modules

2.6.2 - 2023-11-28

Fixed

Prevent the root yarn.lock file from being gitignored (negate pattern).

2.6.1 - 2023-11-23

Fixed

Removed unused package.json files on sub-directories. Those had illegal names such as @modules that prevented running yarn add <library> on a module directory.

2.6.0 - 2023-11-14

Added

Added new helpers directory and @helpers alias on webpack.config.js and metro.config.js.

The index.js includes two new helper hooks for building responsive designs:

  • useComponentLayout - custom hook for the onLayout prop callback - useful for measuring individual elements on resize
  • useMatchMedia - custom hook that abstracts the window.matchMedia Web API

2.5.2 - 2023-11-02

Fixed

  • added @components alias to webpack.config.js- this alias was missing

2.5.1 - 2023-11-02

Fixed

  • added @store alias to metro.config.js- this alias was missing

2.5.0 - 2023-10-10

Added

  • added @components alias - better support for composition

2.4.0 - 2023-07-17

Changed

  • added support for react-native-paper in scaffold

2.3.0 - 2023-07-10

Changed

  • update the welcome screen, move styles to the index.js file
  • added into the index.html, at the header, some style to support 100% height of all screens

2.2.0 - 2023-06-20

Added

Introduced the ability to use Fastlane lanes from a shared repository fastlane-config

  • Added 'import_from_git' command to import the Fastfile from an external repository.
  • Added 'FASTLANE_CONFIG_VERSION' environment variable which refers to a tag on the fastlane-config repo.

Changed

Changed the Fastfile to use instance variables instead of local variables to pass to the inherited lanes.

2.1.1 - 2023-06-19

Fixed

  • Fixed web build issue with node_modules compilation.

2.1.0 - 2023-06-19

Added

  • Support for csrf token to the Django Web build version.

2.0.0 - 2023-05-31

If you are upgrading: please see scaffold-upgrade.md.

Added

Changed

  • Upgrade React Native to 0.71.7.
  • Upgrade React to 18.2.
  • Target Android SDK version 33, minimum level 21 - build.gradle.
  • Target iOS SDK minimum level set at 12.4 - Podfile.

1.2.0 - 2023-05-31

Added

  • Support for Appetize-only deployments (skipping store submissions/fastlane/fastflight).

Changed

  • Upgraded .python-version to 3.8.13.

Fixed

  • Removed unused code in the .circleci directory.

1.1.0 - 2022-06-01

Added

React Native Web support (#343) - include a Webpack configuration in the scaffold.

1.0.0 - 2021-04-07

First release.