-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Browse files
Browse the repository at this point in the history
- Loading branch information
1 parent
6fd60ea
commit 54fcfb7
Showing
27 changed files
with
835 additions
and
429 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Oops, something went wrong.
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,27 @@ | ||
# Extension Manager 0.5.3, released 2023-??-?? | ||
|
||
Code name: Speedup listing extensions | ||
|
||
## Summary | ||
|
||
This release speeds up listing extensions, especially when there are many files in BucketFS. | ||
|
||
**Notes:** Starting with this release EM is tested against Exasol version 8 instead of 7.1. This means that integration tests using `extension-manager-integration-test-java` will also need to run with Exasol 8. | ||
|
||
## Bugfix | ||
|
||
* #147: Improved speed of listing available extensions | ||
|
||
## Dependency Updates | ||
|
||
### Extension-manager | ||
|
||
#### Compile Dependency Updates | ||
|
||
* Updated `github.com/exasol/exasol-driver-go:v1.0.2` to `v1.0.3` | ||
|
||
### Extension Integration Tests Library | ||
|
||
#### Compile Dependency Updates | ||
|
||
* Updated `com.exasol:extension-manager-client-java:0.5.2` to `0.5.3` |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,27 @@ | ||
package context | ||
|
||
import ( | ||
"github.com/stretchr/testify/mock" | ||
) | ||
|
||
type BucketFsContextMock struct { | ||
mock.Mock | ||
} | ||
|
||
func CreateBucketFsContextMock() *BucketFsContextMock { | ||
//nolint:exhaustruct // Empty struct is OK for Mock | ||
return &BucketFsContextMock{} | ||
} | ||
|
||
func (mock *BucketFsContextMock) SimulateResolvePath(fileName string, result string) { | ||
mock.On("ResolvePath", fileName).Return(result) | ||
} | ||
|
||
func (mock *BucketFsContextMock) SimulateResolvePathPanics(fileName string, panicMessage string) { | ||
mock.On("ResolvePath", fileName).Panic(panicMessage) | ||
} | ||
|
||
func (mock *BucketFsContextMock) ResolvePath(fileName string) string { | ||
mockArgs := mock.Called(fileName) | ||
return mockArgs.String(0) | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.