Thanks to visit codestin.com
Credit goes to github.com

Skip to content
This repository was archived by the owner on Jul 16, 2024. It is now read-only.

Releases: target/grease

Encoding is so much fun!

10 May 14:35
9586413

Choose a tag to compare

Another minor patch of your automation platform of choice is officially released today! @chollinger did some great code review and found an edge case with encoding during inserts into MongoDB. This has been addressed in #78

Threaded Scanning Released!

30 Mar 13:38
f2b3bff

Choose a tag to compare

In this latest release:

  • we fix #73 where commands were logging the base class for commands; Now we will show the correct command class that throws the exception and the correct line number.
  • Scanning is now threaded! Your cluster requires no changes but you should see performance improvements in your scan nodes. We saw some latency in HTTP based source implementations and took notice. Now a slow HTTP URL monitor won't slow down your other environment probes!

PR: #74

Command Execution Failure Improvements

22 Mar 13:54
378d11f

Choose a tag to compare

To help our administrators of GREASE this release addresses the issue of logs being too minimal when a command experiences an exception. Previously logs would appear like:

0000-01-01 12:00:00.000000::ERROR::2319048732afhjskiwelrho23::Failed to execute [help] execute got exception!

This release provides further tracing information for administrators to be able to provide feedback to command authors with logs like:

0000-01-01 12:00:00.000000::ERROR::2319048732afhjskiwelrho23::Failed to execute [help] execute got exception!::{'file': 'myFile.py', 'type': 'ValueError', 'line': 44}

PR: #72

Deduplication Namespace Patch

25 Jan 12:27
077d28a

Choose a tag to compare

In 2.1.0 we had a call to get the name of the configuration. The field name was incorrect causing all deduplication to occur in one namespace. This patch addresses this bug.

Actions

Rebuild the Dedup_Sourcing collection in your MongoDB instance if this effected you

The DeDuplication Multiverse

24 Jan 19:54
e965951

Choose a tag to compare

This is not a breaking change release

Changes

  • Added a "4th dimension" to deduplication. This prevents two configurations monitoring the exact same source for different results.

Administrator Notes

  • For best results clear the Source_Dedup collection in MongoDB to prevent bloat after installation

Fixing `hWaitStop` crashes on Windows

24 Jan 15:08
9137975

Choose a tag to compare

Patch access to parameter set in constructor to windows service causing windows service crashes

Windows Services Patch

24 Jan 12:51
d129a3b

Choose a tag to compare

This release fixes a bug where the GREASE daemon service was not responding to windows system calls.

Addressing IoC Injection Mandate in Central Scheduling

16 Jan 15:55
538f622

Choose a tag to compare

This release is very minor addressing #58 via #59

It changes the initialize for Central Scheduling to support dependency injection but not force it.

Slack Integration for Notifications!

12 Jan 20:12
d471e95

Choose a tag to compare

Adding Slack!

This releases adds the ability to send slack notifications to a channel from GREASE.

Changes:

  • Add slack to notification routing
  • Add default configuration item in default for slack channel

Role Assignment from the CLI!

02 Jan 23:31
717032d

Choose a tag to compare

Role Assignment from the CLI

This release adds the feature to add roles to a node (local & remote) via the grease bridge assign command and unassigning via grease bridge unassign. Just add --role:<YOUR-ROLE-NAME> to get started designing your clusters all from the CLI.

Changes:

  • Added role support to action_assign in management.Model.BridgeCommand
  • Added role support to action_unassign in management.Model.BridgeCommand
  • Refactored SQL Tests for cleaner test DB management
  • Bumped failure case tests for SQL and URL up to 6 hours & 10 minutes to account for time stangeness sometimes found in the build environment