Skip to content

Commit

Permalink
Merge branch 'master' into feat/rn_version_upgrade
Browse files Browse the repository at this point in the history
  • Loading branch information
desusai7 authored May 7, 2024
2 parents 2be21ca + 02188a2 commit a4e628d
Show file tree
Hide file tree
Showing 65 changed files with 3,722 additions and 31,912 deletions.
12 changes: 6 additions & 6 deletions .github/workflows/npm-release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -32,17 +32,17 @@ jobs:

# Get the version from the branch name
- id: get_version
uses: ./get-version
uses: ./.github/actions/get-version

# Get the prerelease flag from the branch name
- id: get_prerelease
uses: ./get-prerelease
uses: ./.github/actions/get-prerelease
with:
version: ${{ steps.get_version.outputs.version }}

# Get the release notes
- id: get_release_notes
uses: ./get-release-notes
uses: ./.github/actions/get-release-notes
with:
token: ${{ secrets.github-token }}
version: ${{ steps.get_version.outputs.version }}
Expand All @@ -51,7 +51,7 @@ jobs:

# Check if the tag already exists
- id: tag_exists
uses: ./tag-exists
uses: ./.github/actions/tag-exists
with:
tag: ${{ steps.get_version.outputs.version }}
token: ${{ secrets.github-token }}
Expand All @@ -61,7 +61,7 @@ jobs:
run: exit 1

# Publish the release to our package manager
- uses: ./npm-publish
- uses: ./.github/actions/npm-publish
with:
node-version: ${{ inputs.node-version }}
require-build: ${{ inputs.require-build }}
Expand All @@ -70,7 +70,7 @@ jobs:
release-directory: ${{ inputs.release-directory }}

# Create a release for the tag
- uses: ./release-create
- uses: ./.github/actions/release-create
with:
token: ${{ secrets.github-token }}
name: ${{ steps.get_version.outputs.version }}
Expand Down
1 change: 1 addition & 0 deletions .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -19,6 +19,7 @@ jobs:
uses: ./.github/workflows/npm-release.yml
with:
node-version: 18
require-build: false
secrets:
npm-token: ${{ secrets.NPM_TOKEN }}
github-token: ${{ secrets.GITHUB_TOKEN }}
2 changes: 1 addition & 1 deletion .version
Original file line number Diff line number Diff line change
@@ -1 +1 @@
v3.1.0
v3.2.0
2 changes: 1 addition & 1 deletion A0Auth0.podspec
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@ Pod::Spec.new do |s|
s.requires_arc = true

s.dependency 'React-Core'
s.dependency 'Auth0', '2.5.0'
s.dependency 'Auth0', '2.7.0'
s.dependency 'JWTDecode', '3.1.0'
s.dependency 'SimpleKeychain', '1.1.0'
end
10 changes: 10 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,15 @@
# Change Log

## [v3.2.0](https://github.com/auth0/react-native-auth0/tree/v3.2.0) (2024-04-26)

[Full Changelog](https://github.com/auth0/react-native-auth0/compare/v3.1.0...v3.2.0)

**Added**

- Support for Apple's Privacy Manifest [\#887](https://github.com/auth0/react-native-auth0/pull/887) ([poovamraj](https://github.com/poovamraj))
- chore(deps-dev): bump @types/react from 17.0.71 to 17.0.73 [\#831](https://github.com/auth0/react-native-auth0/pull/831) ([dependabot[bot]](https://github.com/apps/dependabot))
- chore(deps-dev): bump react-native from 0.72.7 to 0.73.0 [\#823](https://github.com/auth0/react-native-auth0/pull/823) ([dependabot[bot]](https://github.com/apps/dependabot))

## [v3.1.0](https://github.com/auth0/react-native-auth0/tree/v3.1.0) (2023-12-05)

[Full Changelog](https://github.com/auth0/react-native-auth0/compare/v3.0.2...v3.1.0)
Expand Down
20 changes: 20 additions & 0 deletions docs/assets/icons.js

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

Loading

0 comments on commit a4e628d

Please sign in to comment.