Skip to content

Commit 893fcbc

Browse files
authored
Merge pull request #610 from heremaps/v1_int
Rebase with v1_int
2 parents 354f77b + bac2fb9 commit 893fcbc

16 files changed

Lines changed: 53 additions & 41 deletions

File tree

.github/workflows/reusable-build-and-publish.yml

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -48,7 +48,7 @@ jobs:
4848
cp -p $SERVICE_JAR_DIR/xyz-hub-service.jar $CODEDEPLOY_DIR/contents/xyz-hub/
4949
- name: List CodeDeploy artifact content
5050
run: |
51-
ls -lR $CODEDEPLOY_DIR
51+
ls -lRa $CODEDEPLOY_DIR
5252
- name: Save pipeline artifact name
5353
id: save-artifact-name
5454
run: echo "name=${{ env.GITHUB_CODEDEPLOY_ARTIFACT_NAME }}" >> "$GITHUB_OUTPUT"
@@ -58,6 +58,7 @@ jobs:
5858
name: ${{ env.GITHUB_CODEDEPLOY_ARTIFACT_NAME }}
5959
path: ${{ env.CODEDEPLOY_DIR }}
6060
if-no-files-found: error
61+
include-hidden-files: true
6162
- name: Identify and save Application version
6263
id: save-app-version
6364
run: |

.github/workflows/reusable-s3-codedeploy-release.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -49,7 +49,7 @@ jobs:
4949
path: download
5050
- name: List CodeDeploy artifacts
5151
run: |
52-
ls -lR download/
52+
ls -lRa download/
5353
- name: Preparing S3 artifact name
5454
id: s3-artifact-name
5555
run: |

CHANGELOG.md

Lines changed: 13 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,18 @@
1+
## Naksha_1.1.5
2+
3+
- Improved DataSource cache refresh handling in txn-handler submodule to gracefully close active DB connections
4+
5+
## Naksha_1.1.4
6+
7+
- Increased header size limit to 24k
8+
9+
## Naksha_1.1.3
10+
11+
- Increased DB Pool size of Naksha Admin DB from 10 to 25 to allow additional sequencer/publisher jobs to run in parallel.
12+
113
## Naksha_1.1.2
214

3-
- Increased header size limit to 24K
15+
- Fixed batch-size failure issue for SNS publishing where one of the message fails during publish, then we optimize by continuing from that failure instead of re-processing entire batch
416

517
## Naksha_1.1.1
618

pom.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -41,7 +41,7 @@
4141

4242
<groupId>com.here.xyz</groupId>
4343
<artifactId>xyz-hub</artifactId>
44-
<version>1.1.2</version>
44+
<version>1.1.5</version>
4545
<packaging>pom</packaging>
4646

4747
<modules>

xyz-connectors/pom.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -25,7 +25,7 @@
2525
<groupId>com.here.xyz</groupId>
2626
<artifactId>xyz-hub</artifactId>
2727
<relativePath>../</relativePath>
28-
<version>1.1.2</version>
28+
<version>1.1.5</version>
2929
</parent>
3030

3131
<licenses>

xyz-hub-service/pom.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -25,7 +25,7 @@
2525
<groupId>com.here.xyz</groupId>
2626
<artifactId>xyz-hub</artifactId>
2727
<relativePath>../pom.xml</relativePath>
28-
<version>1.1.2</version>
28+
<version>1.1.5</version>
2929
</parent>
3030

3131
<licenses>

xyz-hub-test/pom.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -25,7 +25,7 @@
2525
<groupId>com.here.xyz</groupId>
2626
<artifactId>xyz-hub</artifactId>
2727
<relativePath>../</relativePath>
28-
<version>1.1.2</version>
28+
<version>1.1.5</version>
2929
</parent>
3030

3131
<licenses>

xyz-models/pom.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -25,7 +25,7 @@
2525
<groupId>com.here.xyz</groupId>
2626
<artifactId>xyz-hub</artifactId>
2727
<relativePath>../</relativePath>
28-
<version>1.1.2</version>
28+
<version>1.1.5</version>
2929
</parent>
3030

3131
<licenses>

xyz-psql-connector/pom.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -25,7 +25,7 @@
2525
<groupId>com.here.xyz</groupId>
2626
<artifactId>xyz-hub</artifactId>
2727
<relativePath>../</relativePath>
28-
<version>1.1.2</version>
28+
<version>1.1.5</version>
2929
</parent>
3030

3131
<licenses>

xyz-txn-handler/pom.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -25,7 +25,7 @@
2525
<groupId>com.here.xyz</groupId>
2626
<artifactId>xyz-hub</artifactId>
2727
<relativePath>../</relativePath>
28-
<version>1.1.2</version>
28+
<version>1.1.5</version>
2929
</parent>
3030

3131
<licenses>

0 commit comments

Comments
 (0)