-
Notifications
You must be signed in to change notification settings - Fork 10
Update for security #37
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Open
craig8
wants to merge
13
commits into
develop
Choose a base branch
from
update-for-security
base: develop
Could not load branches
Branch not found: {{ refName }}
Loading
Could not load tags
Nothing to show
Loading
Are you sure you want to change the base?
Some commits from the old base branch may be removed from the timeline,
and old review comments may become outdated.
Open
Conversation
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
- Updated SecurityManagerRealmHandler to log activation and manage realm registration more effectively. - Improved GossLDAPRealm with enhanced configuration handling, LDAP server connectivity checks, and detailed logging. - Refactored PropertyBasedRealm to include activation logging and improved property handling. - Modified GridOpticsServer to ensure proper configuration handling and added support for optional WebSocket transport. - Introduced scripts for managing GOSS artifact versions and pushing them to the repository, including version extraction and validation. - Added a Python script for pushing built JARs to the GOSS-Repository with detailed logging and dry-run capabilities. - Created a version management script to show, release, and snapshot versions of GOSS bundles.
…, security-propertyfile, and testutil - Added maven-metadata.xml files for new version 11.0.0 in pnnl.goss.core.runner, security-ldap, security-propertyfile, and testutil. - Introduced new JAR files for version 11.0.0 for pnnl.goss.core.runner, security-ldap, and security-propertyfile. - Removed outdated JAR files for versions 2.0.5, 2.0.6, 3.0.0 in pnnl.goss.core.runner and 1.0.5, 1.0.6, 2.0.0 in security-ldap. - Updated bundle versions in bnd files across various modules to 11.0.0. - Added a new script `check-api.py` for detecting API changes and suggesting version bumps. - Enhanced `version.py` script with commands for bumping versions (major, minor, patch) and managing snapshots.
12 tasks
- Added GossCli class for command-line interface to subscribe and publish messages. - Implemented support for both QUEUE and TOPIC destination types in the GOSS client. - Updated Client interface to include methods for handling different destination types. - Enhanced GossClient to manage subscriptions and publications based on destination type. - Modified build.gradle to include new CLI task for creating the goss-cli executable. - Removed outdated maven-metadata.xml files for various modules. - Updated security manager configuration to improve authorization caching. - Added unit tests for DESTINATION_TYPE enum to ensure correct behavior and stability. - Updated push-to-local-goss-repository.py script for better user feedback on JAR updates.
…ory to .gitignore
…d PropertyBasedRealm
- Updated classpath entries in .classpath to reflect new output directories and added additional source paths for annotation processing. - Added new dependencies in bnd.bnd for httpcore to ensure compatibility with existing components. - Updated goss-core-security.bnd to require the FileInstall bundle for proper configuration management. - Refactored GossLDAPRealm to extend DefaultLdapRealm instead of JndiLdapRealm, improving LDAP integration and functionality.
…cessary dependencies - Updated output paths for source entries from 'build/classes/java/test' to 'bin/test' and 'build/classes/java/main' to 'bin/main'. - Removed multiple redundant classpath entries for libraries and annotation processors. - Added gradle_scope and gradle_used_by_scope attributes to main source entry. - Retained necessary JRE and Gradle classpath container entries.
- Added index.xml.sha for release repository. - Introduced new JAR files for the following components: - pnnl.goss.core.core-api - pnnl.goss.core.goss-client - pnnl.goss.core.goss-core-commands - pnnl.goss.core.goss-core-exceptions - pnnl.goss.core.goss-core-security - pnnl.goss.core.goss-core-server-api - pnnl.goss.core.goss-core-server-registry - pnnl.goss.core.goss-core-server-web - pnnl.goss.core.goss-core-server - pnnl.goss.core.itests - pnnl.goss.core.runner - pnnl.goss.core.security-ldap - pnnl.goss.core.security-propertyfile - pnnl.goss.core.testutil
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.
This pull request introduces major improvements to build and release automation for GOSS, modernizes project documentation, and removes legacy configuration files. The most significant changes are the addition of a comprehensive
Makefilefor build/version management, an extensive update to theREADME.mdwith clear instructions and project structure, and the removal of obsolete Karaf/ActiveMQ configuration files.Build and Release Automation:
Makefileproviding targets for version management, release workflows, API change detection, code formatting, and publishing artifacts to a local repository. This replaces previous shell scripts and streamlines developer operations.Documentation and Project Structure:
README.mdto include modern build status, detailed semantic versioning guidelines, API change detection instructions, release workflow steps, project structure, technology stack, related repositories, and contribution guidelines. [1] [2] [3]Removal of Legacy Configuration:
build/config/features.xml,build/config/LDAPLogin.xml, andbuild/config/pnnl-goss-activemq-broker-nosecurity.xml, reflecting the migration away from older deployment methods. [1] [2] [3]