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

Skip to content

Tags: sequence-sh/Core

Tags

v0.18.0

Toggle v0.18.0's commit message
## Summary of Changes

- Sequence has a new home: https://gitlab.com/sequence
- The namespace has been updated from `Reductech.Sequence` to `Sequence`

### Steps

- Added `EntityValidateRelations`
- Added `Flatten`

### Other Changes

Major performance improvements.

For more details see the changelog: https://gitlab.com/sequence/core/-/blob/v0.18.0/CHANGELOG.md

v0.17.0

Toggle v0.17.0's commit message
## Summary of Changes

- `EntityFormat` step now accepts arrays as input
- Using empty blocks with `StringInterpolate` no longer throws errors
- Updated `JsonSchema.Net` to `3.2.0`

For more details see the changelog: https://gitlab.com/reductech/sequence/core/-/blob/v0.17.0/CHANGELOG.md

v0.16.0

Toggle v0.16.0's commit message

v0.15.0

Toggle v0.15.0's commit message
## Summary of Changes

### Sequence Configuration Language

- You can now use `"""` to indicate a multiline string with no escapes.
```scl
"""
{
  "Json" : "Value"
}
"""
```
- Entity Properties can now be accessed using dot notation
```scl
- <entity> = (foo: (bar: 1, baz: 2))
- Print <entity>.foo.bar
# Returns: 1
```

- Added code completion for entity property access by dot notation
- Entity type references now optionally have an associated schema which can be set by the steps which create entities and checked by steps which use those entities.
- SCL like `(foo: 1)['bar']` now results in an error when the SCL is validated, rather than when it's running

For more details see the changelog: https://gitlab.com/reductech/sequence/core/-/blob/v0.15.0/CHANGELOG.md

v0.14.0

Toggle v0.14.0's commit message
## Summary of Changes

### Steps

- `Transform` can now round doubles to integers. This can be controlled with the `RoundingPrecision` parameter.
- Added `Round` Step to round doubles
- `GenerateDocumentation` now takes a `RootUri` parameter.

### Sequence Configuration Language

Steps whose outputs can be determined at compile time can now be folded into constants.

### Core SDK

- Step Parameters can now have any number of `[MetadataAttribute]` which allows you to designate custom metadata about the step.
- Added an extension method to get all step parameters and values in a sequence which will allow users to check the values being passed to marked parameters in a compiled sequence.
- Environment Variables can now be injected to sequences before compiling / running.
- Added a new `Reductech.Sequence.LanguageServer` project with Language Server features

For more details see the changelog: https://gitlab.com/reductech/sequence/core/-/blob/v0.14.0/CHANGELOG.md

v0.13.0

Toggle v0.13.0's commit message
EDR is now Sequence. The following has changed:

- The GitLab group has moved to https://gitlab.com/reductech/sequence
- The root namespace is now `Reductech.Sequence`
- The documentation site has moved to https://sequence.sh

Everything else is still the same - automation, simplified.

The project has now been updated to use .NET 6.

## Summary of Changes

### Core SDK

- Step input and output types now have a base type of `ISCLObject`
    - This enforces that all inputs and outputs are one of the following types:
    - Unit
    - SCLNull
    - StringStream
    - SCLBool
    - SCLInt
    - SCLDouble
    - SCLDateTime
    - SCLEnum
    - SCLOneOf of ISCLObjects
    - Array of ISCLObject

### Steps

- `ArrayMap` can now map elements of one type to elements of another type.

For more details see the changelog: https://gitlab.com/reductech/sequence/core/-/blob/v0.13.0/CHANGELOG.md

v0.12.0

Toggle v0.12.0's commit message

v0.11.0

Toggle v0.11.0's commit message
## Summary of Changes

### Sequence Configuration Language

- Added new lambda syntax for steps which take a function as a parameter.

  Instead of writing `Foreach [1,2,3] (Log <x>) <x>` you now write `Foreach [1,2,3] (<x> => Log <x>) ` or `Foreach [1,2,3] (Log <>) `

- Allowed Step Parameters to be Discriminated Unions. This allows a parameter to be e.g. either a name or an Id.

- When accessing entity properties you can now use a dot to indicate a nested property

  Instead of `(a:(b: 1))['a']['b']` you can now write `(a:(b: 1))['a.b']`

For more details see the changelog: https://gitlab.com/reductech/edr/core/-/blob/v0.11.0/CHANGELOG.md

v0.10.0

Toggle v0.10.0's commit message
## Summary of Changes

### Steps

- Added `ArrayGroupBy` Step

### Sequence Configuration Language

- Added the automatic variable `<>` which can be used instead of `Entity`

### Logging and Monitoring

- Added `WithCheckLogLevel` extension method to `ICaseThatExecutes` allowing the verbosity
  of the test log messages to be changed

For more details see the changelog: https://gitlab.com/reductech/edr/core/-/blob/v0.10.0/CHANGELOG.md

v0.9.0

Toggle v0.9.0's commit message
### Steps

- Added
  - `EvaluateArray`
  - `RunSCL`

Steps that that work with the file system and with structured data have been
moved to separate connectors:

- Moved to the [FileSystem](https://gitlab.com/reductech/edr/connectors/filesystem) Connector

  - `DirectoryCopy`
  - `DirectoryExists`
  - `DirectoryMove`
  - `CreateDirectory`
  - `FileCopy`
  - `FileExists`
  - `FileExtract`
  - `FileMove`
  - `FileRead`
  - `FileWrite`
  - `DeleteItem`
  - `PathCombine`

- Moved to the [StructuredData](https://gitlab.com/reductech/edr/connectors/structureddata) Connector
  - `FromConcordance`
  - `FromCSV`
  - `FromIDX`
  - `FromJson`
  - `FromJsonArray`
  - `ToConcordance`
  - `ToCSV`
  - `ToIDX`
  - `ToJson`
  - `ToJsonArray`

### Core SDK

- `ToJson` now formats output by default. This can be overriden by setting `FormatOutput` to false
- `ToJsonArray` now formats output by default. This can be overriden by setting `FormatOutput` to false

### Connector Updates

- Connectors can be dynamically loaded at runtime
- Connector Settings now support plugins

### Data Interchange Format

- `Schema.AllowExtraProperties` changed to `Schema.ExtraProperties` which can take `Allow`, `Warn`, `Remove`, or `Fail`

For more details see the changelog: https://gitlab.com/reductech/edr/core/-/blob/v0.9.0/CHANGELOG.md