Skip to content

Commit

Permalink
Pull delivery scripts from monorepo
Browse files Browse the repository at this point in the history
  • Loading branch information
stee1 committed Jan 24, 2023
1 parent 87449d4 commit a1901d1
Show file tree
Hide file tree
Showing 19 changed files with 7,531 additions and 7,530 deletions.
5 changes: 3 additions & 2 deletions .github/workflows/github-ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,8 @@ jobs:
shell: bash
run: |
rm -rf script-delivery-ps
git clone ${{ secrets.SCRIPTS_DELIVERY_PS_GIT_URL }} script-delivery-ps
git clone ${{ secrets.SCRIPTS_DELIVERY_PS_GIT_URL }} eic-templates-cicd-ps
cp -r eic-templates-cicd-ps/script-delivery-ps script-delivery-ps
- name: Execute increment script
shell: bash
Expand Down Expand Up @@ -102,5 +103,5 @@ jobs:
- name: Execute measure script
env:
name: $(echo '${{ github.repository }}' | awk -F '/' '{print $2}')
run: ./script-delivery-ps/measure/measure.ps1 ${{ github.repository_owner }} ${{ env.name }} ${{ secrets.AWS_ACCESS_KEY_ID }} ${{ secrets.AWS_SECRET_ACCESS_KEY }} ${{ secrets.AWS_S3_BUCKET }} ${{ secrets.GITHUB_TOKEN }}
run: ./script-delivery-ps/measure/measure.ps1 ${{ github.repository_owner }} ${{ env.name }} ${{ secrets.AWS_ACCESS_KEY_ID }} ${{ secrets.AWS_SECRET_ACCESS_KEY }} ${{ secrets.AWS_S3_BUCKET }} ${{ secrets.AWS_S3_BUCKET_FOLDER }} ${{ secrets.GITHUB_TOKEN }}
shell: bash
8 changes: 4 additions & 4 deletions .gitignore
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
.DS_Store
/dist
go.sum
*.tmp
.DS_Store
/dist
go.sum
*.tmp
docker/id_rsa*
272 changes: 136 additions & 136 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,136 +1,136 @@
# <img src="https://uploads-ssl.webflow.com/5ea5d3315186cf5ec60c3ee4/5edf1c94ce4c859f2b188094_logo.svg" alt="Pip.Services Logo" width="200"> <br/> Remote Procedure Calls for Pip.Services in Go Changelog

## <a name="1.5.2"></a> 1.5.2 (2023-01-12)
### Bug fixing
- Fixed https connection validation

## <a name="1.5.1"></a> 1.5.1 (2023-01-12)
### Features
- Update dependencies

## <a name="1.5.0"></a> 1.5.0 (2021-10-18)
### Features
* Added regexp supporting to interceptor
Examples:
- the interceptor route **"/dummies"** corresponds to all of this routes **"/dummies"**, **"/dummies/check"**, **"/dummies/test"**
- the interceptor route **"/dummies$"** corresponds only for this route **"/dummies"**. The routes **"/dummies/check"**, **"/dummies/test"** aren't processing by interceptor
Please, don't forgot, route in interceptor always automaticaly concateneted with base route, like this **service_base_route + route_in_interceptor**.
For example, "/api/v1/" - service base route, "/dummies$" - interceptor route, in result will be next expression - "/api/v1/dummies$"
## <a name="1.4.4"></a> 1.4.4 (2021-08-30)
### Bug fixing
* Fix retry mechnaism in REST client

## <a name="1.4.3"></a> 1.4.3 (2021-08-23)
### Bug fixing
* Updated error propagation mechanism between client and services

## <a name="1.4.2"></a> 1.4.2 (2021-07-30)
### Features
* Add configuration parameters for CORS Headers in HttpEndpoint. Use *cors_headers* and *cors_origins*.
Example:
```yml
-cors_headers: "correlation_id, access_token, Accept, Content-Type, Content-Length, X-CSRF-Token"
-cors_origins: "*"
```
## <a name="1.4.1"></a> 1.4.1 (2021-07-26)
### Bug fixing
- Fix route checks in interceptors
## <a name="1.4.0"></a> 1.4.0 (2021-07-20)
### Features
* Add methods for controll CORS Headers in HttpEndpoint
* Add configuration parameters for CORS Headers in HttpEndpoint
## <a name="1.3.3"></a> 1.3.3 (2021-06-08)
### Features
* Update Instruments and added tracers
* Fix loggers
## <a name="1.3.2"></a> 1.3.2 (2021-05-06)
### Features
* **test** Refactor test services running
* Encode URL params
## <a name="1.3.1"></a> 1.3.1 (2021-04-23)
### Features
* Add InstrumentTiming
## <a name="1.3.0"></a> 1.3.0 (2021-04-23)
### Breaking Changes
* **test** Added TestRestClient
* **test** Added TestCommandableHttpClient
## <a name="1.2.0"></a> 1.2.0 (2021-04-04)
### Breaking Changes
* Introduced IRpcServiceOverrides
* Changed signature NewRpcService to InheritRpcService
* Changed signature NewCommandableRpcService to InheritRpcService
## <a name="1.1.3"></a> 1.1.3 (2021-03-15)
### Features
* **services** Added **correlation_id** and **access_token** to CORS headers
## <a name="1.1.0"></a> 1.1.0 (2021-02-21)
### Features
* **services** Added integration with Swagger UI
## <a name="1.0.13"></a> 1.0.13 (2020-12-10)
### Features
* Fix work with CorrelationID in RestService
* Update dependencies
## <a name="1.0.12"></a> 1.0.12 (2020-12-10)
### Features
* Fix headers in RestClient for properly work with others services
## <a name="1.0.8-1.0.11"></a> 1.0.8-1.0.11 (2020-12-02)
### Features
* Added helper methods to RestOperations
* Changed RegisterWithAuth methods
### Bug Fixes
* Fix authorizer
## <a name="1.0.7"></a> 1.0.7 (2020-11-20)
### Features
* Added swagger support
## <a name="1.0.5-1.0.6"></a> 1.0.5-1.0.6 (2020-11-13)
### Features
* Added helper methods
## <a name="1.0.3-1.0.4"></a> 1.0.3-1.0.4 (2020-11-12)
### Features
* Added helper methods in RestService
### Bug Fixes
* Fix signature CallCommand in CommandableHttpClient
## <a name="1.0.1-1.0.2"></a> 1.0.1-1.0.2 (2020-08-05)
### Features
* Added error handler in Call method of RestClient
### Bug Fixes
* Fix response error method
## <a name="1.0.0"></a> 1.0.0 (2020-01-28)
Initial public release
### Features
* **build** HTTP service factory
* **clients** mechanisms for retrieving connection settings
* **connect** helper module to retrieve connections services and clients
* **services** basic implementation of services for connecting
# <img src="https://uploads-ssl.webflow.com/5ea5d3315186cf5ec60c3ee4/5edf1c94ce4c859f2b188094_logo.svg" alt="Pip.Services Logo" width="200"> <br/> Remote Procedure Calls for Pip.Services in Go Changelog

## <a name="1.5.2"></a> 1.5.2 (2023-01-12)
### Bug fixing
- Fixed https connection validation

## <a name="1.5.1"></a> 1.5.1 (2023-01-12)
### Features
- Update dependencies

## <a name="1.5.0"></a> 1.5.0 (2021-10-18)
### Features
* Added regexp supporting to interceptor
Examples:
- the interceptor route **"/dummies"** corresponds to all of this routes **"/dummies"**, **"/dummies/check"**, **"/dummies/test"**
- the interceptor route **"/dummies$"** corresponds only for this route **"/dummies"**. The routes **"/dummies/check"**, **"/dummies/test"** aren't processing by interceptor
Please, don't forgot, route in interceptor always automaticaly concateneted with base route, like this **service_base_route + route_in_interceptor**.
For example, "/api/v1/" - service base route, "/dummies$" - interceptor route, in result will be next expression - "/api/v1/dummies$"
## <a name="1.4.4"></a> 1.4.4 (2021-08-30)
### Bug fixing
* Fix retry mechnaism in REST client

## <a name="1.4.3"></a> 1.4.3 (2021-08-23)
### Bug fixing
* Updated error propagation mechanism between client and services

## <a name="1.4.2"></a> 1.4.2 (2021-07-30)
### Features
* Add configuration parameters for CORS Headers in HttpEndpoint. Use *cors_headers* and *cors_origins*.
Example:
```yml
-cors_headers: "correlation_id, access_token, Accept, Content-Type, Content-Length, X-CSRF-Token"
-cors_origins: "*"
```
## <a name="1.4.1"></a> 1.4.1 (2021-07-26)
### Bug fixing
- Fix route checks in interceptors
## <a name="1.4.0"></a> 1.4.0 (2021-07-20)
### Features
* Add methods for controll CORS Headers in HttpEndpoint
* Add configuration parameters for CORS Headers in HttpEndpoint
## <a name="1.3.3"></a> 1.3.3 (2021-06-08)
### Features
* Update Instruments and added tracers
* Fix loggers
## <a name="1.3.2"></a> 1.3.2 (2021-05-06)
### Features
* **test** Refactor test services running
* Encode URL params
## <a name="1.3.1"></a> 1.3.1 (2021-04-23)
### Features
* Add InstrumentTiming
## <a name="1.3.0"></a> 1.3.0 (2021-04-23)
### Breaking Changes
* **test** Added TestRestClient
* **test** Added TestCommandableHttpClient
## <a name="1.2.0"></a> 1.2.0 (2021-04-04)
### Breaking Changes
* Introduced IRpcServiceOverrides
* Changed signature NewRpcService to InheritRpcService
* Changed signature NewCommandableRpcService to InheritRpcService
## <a name="1.1.3"></a> 1.1.3 (2021-03-15)
### Features
* **services** Added **correlation_id** and **access_token** to CORS headers
## <a name="1.1.0"></a> 1.1.0 (2021-02-21)
### Features
* **services** Added integration with Swagger UI
## <a name="1.0.13"></a> 1.0.13 (2020-12-10)
### Features
* Fix work with CorrelationID in RestService
* Update dependencies
## <a name="1.0.12"></a> 1.0.12 (2020-12-10)
### Features
* Fix headers in RestClient for properly work with others services
## <a name="1.0.8-1.0.11"></a> 1.0.8-1.0.11 (2020-12-02)
### Features
* Added helper methods to RestOperations
* Changed RegisterWithAuth methods
### Bug Fixes
* Fix authorizer
## <a name="1.0.7"></a> 1.0.7 (2020-11-20)
### Features
* Added swagger support
## <a name="1.0.5-1.0.6"></a> 1.0.5-1.0.6 (2020-11-13)
### Features
* Added helper methods
## <a name="1.0.3-1.0.4"></a> 1.0.3-1.0.4 (2020-11-12)
### Features
* Added helper methods in RestService
### Bug Fixes
* Fix signature CallCommand in CommandableHttpClient
## <a name="1.0.1-1.0.2"></a> 1.0.1-1.0.2 (2020-08-05)
### Features
* Added error handler in Call method of RestClient
### Bug Fixes
* Fix response error method
## <a name="1.0.0"></a> 1.0.0 (2020-01-28)
Initial public release
### Features
* **build** HTTP service factory
* **clients** mechanisms for retrieving connection settings
* **connect** helper module to retrieve connections services and clients
* **services** basic implementation of services for connecting
18 changes: 9 additions & 9 deletions component.json
Original file line number Diff line number Diff line change
@@ -1,10 +1,10 @@
{
"name": "pip-services3-rpc-go",
"type": "module",
"language": "go",
"version": "1.5.2",
"build": 0,
"registry": "pipservices",
"artifacts": [
]
{
"name": "pip-services3-rpc-go",
"type": "module",
"language": "go",
"version": "1.5.2",
"build": 0,
"registry": "pipservices",
"artifacts": [
]
}
Loading

0 comments on commit a1901d1

Please sign in to comment.