Release v2.1.0#223
Merged
Merged
Conversation
…such as android gradle version) (resolves #222)
Contributor
There was a problem hiding this comment.
Pull Request Overview
This is a major release (v2.1.0) adding platform-specific configuration support for the APM client. The changes enable packages to define platform-specific parameters (like Android gradle versions) and allow packages to specify which platforms their parameters apply to.
- Addition of platform-specific configuration parameters with proper validation and type checking
- Support for specifying target platforms for package parameters
- Extensive code restructuring with updated author information and formatting improvements
Reviewed Changes
Copilot reviewed 177 out of 177 changed files in this pull request and generated 6 comments.
Show a summary per file
| File | Description |
|---|---|
| version.config | Version bump from 2.0.0 to 2.1.0 |
| client/src/org/as3commons/lang/VectorUtils.as | New utility class for Vector operations with IEquals interface |
| client/src/org/as3commons/lang/ArrayUtils.as | Enhanced ArrayUtils with new merge and filter methods |
| client/src/com/apm/data/common/PlatformParameter.as | New class for platform-specific configuration parameters |
| client/src/com/apm/data/common/PlatformConfiguration.as | New class managing platform parameter collections |
| client/src/com/apm/data/common/Platform.as | Enhanced Platform class with IEquals interface and tvOS support |
| client/src/com/apm/data/packages/PackageParameter.as | Added platform targeting support for package parameters |
| client/src/com/apm/data/project/ProjectDefinition.as | Added platform configuration management methods |
| client/src/com/apm/data/project/ApplicationDescriptor.as | Added platform parameter injection into app descriptors |
| Multiple files | Updated author information and code formatting consistency |
Comments suppressed due to low confidence (1)
client/src/com/apm/data/common/PlatformParameter.as:75
- The stringArray variable is modified but never assigned back to the parameter value. The merged array should be converted back to a comma-separated string and assigned to existingParameter.value.
}
Co-authored-by: Copilot <175728472+Copilot@users.noreply.github.com>
Co-authored-by: Copilot <175728472+Copilot@users.noreply.github.com>
Co-authored-by: Copilot <175728472+Copilot@users.noreply.github.com>
Co-authored-by: Copilot <175728472+Copilot@users.noreply.github.com>
Co-authored-by: Copilot <175728472+Copilot@users.noreply.github.com>
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
feat: add ability to add platform specific configuration parameters (such as android gradle version) (resolves #222)
feat: add ability to specific platforms for package parameters (resolves #192)