You are viewing a plain text version of this content. The canonical link for it is here.
Posted to dev@brooklyn.apache.org by GitBox <gi...@apache.org> on 2020/01/16 11:05:19 UTC

[GitHub] [brooklyn-docs] nakomis opened a new pull request #301: New release notes for 1.0.0

nakomis opened a new pull request #301: New release notes for 1.0.0
URL: https://github.com/apache/brooklyn-docs/pull/301
 
 
   

----------------------------------------------------------------
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.
 
For queries about this service, please contact Infrastructure at:
users@infra.apache.org


With regards,
Apache Git Services

[GitHub] [brooklyn-docs] grkvlt commented on a change in pull request #301: New release notes for 1.0.0

Posted by GitBox <gi...@apache.org>.
grkvlt commented on a change in pull request #301: New release notes for 1.0.0
URL: https://github.com/apache/brooklyn-docs/pull/301#discussion_r367397254
 
 

 ##########
 File path: guide/misc/release-notes.md
 ##########
 @@ -13,6 +13,108 @@ to Brooklyn's commercial users for funding much of this development.
 
 ### New Features
 
+1. In previous versions, the default behaviour was that the GO CLI would be built as part of the build. This behaviour could be disabled
+   by adding `-Dno-go-client` to the build command, e.g. `mvn clean install -Dno-go-client`. This added significant time to the build, 
+   and required that the GO distribution be installed. The default behaviour is now that the GO CLI will not be built, and can be enabled
+   by adding `-Dclient` to the build command, e.g. `mvn clean install -Dclient`.
+
+1. Similarly the deb, rpm, and Docker binaries were built by default. It was possible to disable the deb and rpm build by using
+   `-Dnp-rpm -Dno-deb`, and it was not possible to disable the Docker build. Now all three are disabled default and can be included
+   by adding `-Drpm -Ddeb -Ddocker`.
+
+
+1. The documentation has been updated to include a description of how to include an entity in the Quick Launch section of the UI
+
+1. Following a change to the latest version of openSSH, the process of generating an SSH key has changed, and the documentation
+   has been updated to reflect that change. SSH keys generated in previous versions of openSSH are not affected and will continue
+   to work.
+
+1. The WinRM documentation has been expanded to include additional troubleshooting information, and known limitations.
+
+1. Previously Brooklyn used logback for logging but this changed to be log4j when we moved to karaf. As Brooklyn now only supports
+   karaf most logging is now done using the log4j framework by default. The documentation has been updated to reflect this, and
+   now documents how to setup and configure log4j.
+
+1. ConfigKey constraints have been expanded to include the option to add `glob`, `urlExists`, `forbiddenIf`, `forbiddenUnless`,
+   `requiredIf`, `requiredUnless`, and additionally and Java Predicate can be used as a constraint.
+
+1. Updates have been made to the type coercions primatives in YAML to allow optional, nullable (`Maybe`) values.
+
+1. The REST API has been updated to include the icon url source on objects which contain one.
+
+1. The UI has been updated to allow parameters to be defined in both a field-based and JSON manner.
+
+1. The UI now allows greater zoom for large displays.
+
+1. For static assets (e.g. logos), the webconsole previously allowed passwordless access. This has been updated so that
+   login is now required to access static assets.
+
+1. The DSL editor now allows references to `brooklyn.parameters`.
+
+1. A new compact list view mode has been added to the UI.
+
+1. Add callback for customising yaml loading, allowing downstream projects to extend this behaviour
 
 Review comment:
   Change tense to match other items - A callback has been added...

----------------------------------------------------------------
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.
 
For queries about this service, please contact Infrastructure at:
users@infra.apache.org


With regards,
Apache Git Services

[GitHub] [brooklyn-docs] nakomis commented on issue #301: New release notes for 1.0.0

Posted by GitBox <gi...@apache.org>.
nakomis commented on issue #301: New release notes for 1.0.0
URL: https://github.com/apache/brooklyn-docs/pull/301#issuecomment-575143437
 
 
   @grkvlt Fixed and force-pushed

----------------------------------------------------------------
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.
 
For queries about this service, please contact Infrastructure at:
users@infra.apache.org


With regards,
Apache Git Services

[GitHub] [brooklyn-docs] grkvlt commented on a change in pull request #301: New release notes for 1.0.0

Posted by GitBox <gi...@apache.org>.
grkvlt commented on a change in pull request #301: New release notes for 1.0.0
URL: https://github.com/apache/brooklyn-docs/pull/301#discussion_r367397537
 
 

 ##########
 File path: guide/misc/release-notes.md
 ##########
 @@ -13,6 +13,108 @@ to Brooklyn's commercial users for funding much of this development.
 
 ### New Features
 
+1. In previous versions, the default behaviour was that the GO CLI would be built as part of the build. This behaviour could be disabled
+   by adding `-Dno-go-client` to the build command, e.g. `mvn clean install -Dno-go-client`. This added significant time to the build, 
+   and required that the GO distribution be installed. The default behaviour is now that the GO CLI will not be built, and can be enabled
+   by adding `-Dclient` to the build command, e.g. `mvn clean install -Dclient`.
+
+1. Similarly the deb, rpm, and Docker binaries were built by default. It was possible to disable the deb and rpm build by using
+   `-Dnp-rpm -Dno-deb`, and it was not possible to disable the Docker build. Now all three are disabled default and can be included
+   by adding `-Drpm -Ddeb -Ddocker`.
+
+
+1. The documentation has been updated to include a description of how to include an entity in the Quick Launch section of the UI
+
+1. Following a change to the latest version of openSSH, the process of generating an SSH key has changed, and the documentation
+   has been updated to reflect that change. SSH keys generated in previous versions of openSSH are not affected and will continue
+   to work.
+
+1. The WinRM documentation has been expanded to include additional troubleshooting information, and known limitations.
+
+1. Previously Brooklyn used logback for logging but this changed to be log4j when we moved to karaf. As Brooklyn now only supports
+   karaf most logging is now done using the log4j framework by default. The documentation has been updated to reflect this, and
+   now documents how to setup and configure log4j.
+
+1. ConfigKey constraints have been expanded to include the option to add `glob`, `urlExists`, `forbiddenIf`, `forbiddenUnless`,
+   `requiredIf`, `requiredUnless`, and additionally and Java Predicate can be used as a constraint.
+
+1. Updates have been made to the type coercions primatives in YAML to allow optional, nullable (`Maybe`) values.
+
+1. The REST API has been updated to include the icon url source on objects which contain one.
+
+1. The UI has been updated to allow parameters to be defined in both a field-based and JSON manner.
+
+1. The UI now allows greater zoom for large displays.
+
+1. For static assets (e.g. logos), the webconsole previously allowed passwordless access. This has been updated so that
+   login is now required to access static assets.
+
+1. The DSL editor now allows references to `brooklyn.parameters`.
+
+1. A new compact list view mode has been added to the UI.
+
+1. Add callback for customising yaml loading, allowing downstream projects to extend this behaviour
+
+1. A separable pallet/config panel has been introduced in the UI, which allows more flexibility when using the graphical
+   designer to design a blueprint. This supplements the existing functionality.
+
+1. When defining a relationship, it is now possible to include a `memberspec` as part of the relationship.
+
+1. Adds callback for customising catalog save configuration
+
 
 Review comment:
   Same tense change for this and next two

----------------------------------------------------------------
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.
 
For queries about this service, please contact Infrastructure at:
users@infra.apache.org


With regards,
Apache Git Services