Skip to content

Commit

Permalink
Remove deprecated create_release (#588)
Browse files Browse the repository at this point in the history
  • Loading branch information
mokagio authored Sep 3, 2024
2 parents 354e71d + e281e0c commit 282ab68
Show file tree
Hide file tree
Showing 3 changed files with 2 additions and 12 deletions.
2 changes: 1 addition & 1 deletion CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -8,6 +8,7 @@

- Removed `build_gradle_path` parameter from `android_current_branch_is_hotfix`. [#579]
- Deleted `Fastlane::Helper::Android::GitHelper` and `Fastlane::Helper::Ios::GitHelper`. [#579]
- Renamed `create_release` to `create_github_release` for consistency. [#585, #588]
- Deleted the following deprecated actions: [#577, #579, #586]
- `android_betabuild_prechecks`
- `android_build_prechecks`
Expand Down Expand Up @@ -46,7 +47,6 @@
### Bug Fixes

- Fix `create_release_backmerge_pull_request_action` error when creating a backmerge to a branch not yet fetched locally. [#587]
- Deprecated the `create_release` action, now renamed to `create_github_release` for consistency. [#585]

### Internal Changes

Expand Down
1 change: 1 addition & 0 deletions MIGRATION.md
Original file line number Diff line number Diff line change
Expand Up @@ -6,6 +6,7 @@
- Various helper methods and actions to calculate version bumps have been deleted (see `CHANGELOG.md` for the full list). Use the `Versioning` module for any version computation or automation.
- `Fastlane::Helper:Android::GitHelper` and `Fastlane::Helper::Ios::GitHelper` have been removed. If you were using their respective `commit_version_bump` methods, you'll need to run the commit directly in your `Fastfile`, for example via Fastlane's `git_commit` action.
- `android_tag_build` and `ios_tag_build` have been removed. Our recommended workflow for tagging releases relies on GitHub creating a tag when a GitHub release is published.
- `create_release` has been removed. Use `create_github_release` instead.

## From `10.0.0` to `11.0.0`

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -98,16 +98,5 @@ def self.is_supported?(platform)
true
end
end

# For backwards compatibility
class CreateReleaseAction < CreateGithubReleaseAction
def self.category
:deprecated
end

def self.deprecated_notes
"This action has been renamed `#{superclass.action_name}`"
end
end
end
end

0 comments on commit 282ab68

Please sign in to comment.