Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Release v2.0.0 #866

Merged
merged 1 commit into from
Dec 10, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion .release-please-manifest.json
Original file line number Diff line number Diff line change
@@ -1,3 +1,3 @@
{
".": "2.0.0-SNAPSHOT"
".": "2.0.0"
}
35 changes: 35 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,40 @@
# Changelog

## [2.0.0](https://github.com/carlspring/s3fs-nio/compare/v1.0.6...v2.0.0) (2024-11-21)


### ⚠ BREAKING CHANGES

* `S3Path#setFileAttributes()` was removed.
* `S3FileSystem#getCache()` method was removed.
* `S3FileSystemProvider#getCache()` was removed.
* `S3FileSystemProvider#setCache()` was removed
* `S3OutputStream` constructor signatures changed.

### Features

* Improve file attribute caching ([#854](https://github.com/carlspring/s3fs-nio/issues/854)) ([596434b](https://github.com/carlspring/s3fs-nio/commit/596434bfcd05c68eea53032df5960c249d38ffc0))


### Deprecated

* Move `S3FileSystem#key2Parts` into `S3Utils`. ([9ea4d32](https://github.com/carlspring/s3fs-nio/commit/9ea4d329d649c5807bf64228a01815e17222dd5e))


### Dependencies

* **upgrade:** bump org.testcontainers:testcontainers from 1.20.3 to 1.20.4 ([#865](https://github.com/carlspring/s3fs-nio/issues/865)) ([871fff3](https://github.com/carlspring/s3fs-nio/commit/871fff3a686240b8361be754a0d01b3d985f2f86))
* **upgrade:** Upgrade AWS SDK to latest v2.29.9 ([#860](https://github.com/carlspring/s3fs-nio/pull/860)) ([03cd6fb](https://github.com/carlspring/s3fs-nio/commit/03cd6fbbd63e9a38816f1e1a67ce68ee5f07b060))

### Miscellaneous Chores

* **snapshot:** Prepare for v2.0.0 ([#864](https://github.com/carlspring/s3fs-nio/issues/864)) ([4946d83](https://github.com/carlspring/s3fs-nio/commit/4946d83e49e58706fcc951b12e071511dd73a946))


### Build System

* Move integration tests into separate test suite. ([e561e5c](https://github.com/carlspring/s3fs-nio/commit/e561e5c58c9ee70e9f349e161fd7c908915fe049))

## [1.0.6](https://github.com/carlspring/s3fs-nio/compare/v1.0.5...v1.0.6) (2024-11-20)


Expand Down
2 changes: 1 addition & 1 deletion docs/content/reference/configuration-options.md
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ A complete list of environment variables which can be set to configure the clien
| s3fs.secret.key | none | <small>AWS secret access key, used to authenticate the user interacting with AWS</small> |
| s3fs.request.metric.collector.class | TODO | <small>Fully-qualified class name to instantiate an AWS SDK request/response metric collector</small> |
| s3fs.cache.attributes.ttl | `60000` | <small>TTL for the cached file attributes (in millis)</small> |
| s3fs.cache.attributes.size | `5000` | <small>Total size of cached file attributes</small> |
| s3fs.cache.attributes.size | `30000` | <small>Total size of cached file attributes</small> |
| s3fs.connection.timeout | TODO | <small>Timeout (in milliseconds) for establishing a connection to a remote service</small> |
| s3fs.max.connections | TODO | <small>Maximum number of connections allowed in a connection pool</small> |
| s3fs.max.retry.error | TODO | <small>Maximum number of times that a single request should be retried, assuming it fails for a retryable error</small> |
Expand Down
2 changes: 1 addition & 1 deletion docs/mkdocs.yml
Original file line number Diff line number Diff line change
Expand Up @@ -131,7 +131,7 @@ extra:
POM_GROUP_ID: org.carlspring.cloud.aws
POM_ARTIFACT_ID: s3fs-nio
## {x-release-please-start-version}
POM_VERSION: "2.0.0-SNAPSHOT"
POM_VERSION: "2.0.0"
## {x-release-please-end}

nav:
Expand Down
2 changes: 1 addition & 1 deletion gradle.properties
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
## {x-release-please-start-version}
version=2.0.0-SNAPSHOT
version=2.0.0
## {x-release-please-end}

# Signature key id
Expand Down
Loading