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

Prepare for release v0.27.0 #982

Merged
merged 4 commits into from
Apr 9, 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.
Jump to
Jump to file
Failed to load files.
Diff view
Diff view
1 change: 1 addition & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -73,6 +73,7 @@ go test -tags pacific ....

| go-ceph version | Supported Ceph Versions | Deprecated Ceph Versions |
| --------------- | ------------------------| -------------------------|
| v0.27.0 | pacific, quincy, reef | nautilus, octopus |
| v0.26.0 | pacific, quincy, reef | nautilus, octopus |
| v0.25.0 | pacific, quincy, reef | nautilus, octopus |
| v0.24.0 | pacific, quincy, reef | nautilus, octopus |
Expand Down
30 changes: 15 additions & 15 deletions docs/api-status.json
Original file line number Diff line number Diff line change
Expand Up @@ -618,8 +618,8 @@
{
"name": "FSAdmin.FSQuiesce",
"comment": "FSQuiesce will quiesce the specified subvolumes in a volume.\nQuiescing a fs will prevent new writes to the subvolumes.\nSimilar To:\n\nceph fs quiesce <volume>\n",
"added_in_version": "$NEXT_RELEASE",
"expected_stable_version": "$NEXT_RELEASE_STABLE"
"added_in_version": "v0.27.0",
"expected_stable_version": "v0.29.0"
}
]
},
Expand Down Expand Up @@ -1923,20 +1923,20 @@
"comment": "LockRelease releases a lock on the image.\n\nImplements:\n\n\tint rbd_lock_release(rbd_image_t image);\n",
"added_in_version": "v0.22.0",
"became_stable_version": "v0.24.0"
}
],
"preview_api": [
},
{
"name": "Image.Resize2",
"comment": "Resize2 resizes an rbd image and allows configuration of allow_shrink and a callback function. The callback\nfunction will be called with the first argument as the progress, the second argument as the total, and the third\nargument as an opaque value that is passed to the Resize2 function's data argument in each callback execution.\nThe resize operation will be aborted if the progress callback returns a non-zero value.\n\nImplements:\n\n\tint rbd_resize2(rbd_image_t image, uint64_t size, allow_shrink bool, librbd_progress_fn_t cb, void *cbdata);\n",
"added_in_version": "v0.25.0",
"expected_stable_version": "v0.27.0"
},
"became_stable_version": "v0.27.0"
}
],
"preview_api": [
{
"name": "Image.GetSnapGroupNamespace",
"comment": "GetSnapGroupNamespace returns the SnapGroupNamespace of the snapshot which\nis part of a group. The caller should make sure that the snapshot ID passed\nin this function belongs to a snapshot that was taken as part of a group\nsnapshot.\n\nImplements:\n\n\t\tint rbd_snap_get_group_namespace(rbd_image_t image, uint64_t snap_id,\n\t rbd_snap_group_namespace_t *group_snap,\n\t size_t group_snap_size)\n",
"added_in_version": "$NEXT_RELEASE",
"expected_stable_version": "$NEXT_RELEASE_STABLE"
"added_in_version": "v0.27.0",
"expected_stable_version": "v0.29.0"
}
]
},
Expand Down Expand Up @@ -2014,12 +2014,6 @@
},
"rgw/admin": {
"preview_api": [
{
"name": "API.GetInfo",
"comment": "GetInfo - https://docs.ceph.com/en/latest/radosgw/adminops/#info\n",
"added_in_version": "v0.25.0",
"expected_stable_version": "v0.27.0"
},
{
"name": "API.GetBucketQuota",
"comment": "GetBucketQuota - https://docs.ceph.com/en/latest/radosgw/adminops/#get-bucket-quota\n",
Expand Down Expand Up @@ -2164,6 +2158,12 @@
"comment": "ListBucketsWithStat will return the list of all buckets with stat (system admin API only)\n",
"added_in_version": "v0.20.0",
"became_stable_version": "v0.22.0"
},
{
"name": "API.GetInfo",
"comment": "GetInfo - https://docs.ceph.com/en/latest/radosgw/adminops/#info\n",
"added_in_version": "v0.25.0",
"became_stable_version": "v0.27.0"
}
]
},
Expand Down
6 changes: 2 additions & 4 deletions docs/api-status.md
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ No Preview/Deprecated APIs found. All APIs are considered stable.

Name | Added in Version | Expected Stable Version |
---- | ---------------- | ----------------------- |
FSAdmin.FSQuiesce | $NEXT_RELEASE | $NEXT_RELEASE_STABLE |
FSAdmin.FSQuiesce | v0.27.0 | v0.29.0 |

## Package: rados

Expand All @@ -24,8 +24,7 @@ No Preview/Deprecated APIs found. All APIs are considered stable.

Name | Added in Version | Expected Stable Version |
---- | ---------------- | ----------------------- |
Image.Resize2 | v0.25.0 | v0.27.0 |
Image.GetSnapGroupNamespace | $NEXT_RELEASE | $NEXT_RELEASE_STABLE |
Image.GetSnapGroupNamespace | v0.27.0 | v0.29.0 |

### Deprecated APIs

Expand All @@ -45,7 +44,6 @@ No Preview/Deprecated APIs found. All APIs are considered stable.

Name | Added in Version | Expected Stable Version |
---- | ---------------- | ----------------------- |
API.GetInfo | v0.25.0 | v0.27.0 |
API.GetBucketQuota | v0.26.0 | v0.28.0 |
API.SetBucketQuota | v0.26.0 | v0.28.0 |

Expand Down
2 changes: 0 additions & 2 deletions rbd/resize.go
Original file line number Diff line number Diff line change
@@ -1,5 +1,3 @@
//go:build ceph_preview

package rbd

/*
Expand Down
2 changes: 0 additions & 2 deletions rbd/resize_test.go
Original file line number Diff line number Diff line change
@@ -1,5 +1,3 @@
//go:build ceph_preview

package rbd

import (
Expand Down
4 changes: 2 additions & 2 deletions rgw/admin/info.go
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
//go:build !(nautilus || octopus || pacific) && ceph_preview
// +build !nautilus,!octopus,!pacific,ceph_preview
//go:build !(nautilus || octopus || pacific)
// +build !nautilus,!octopus,!pacific

package admin

Expand Down
4 changes: 2 additions & 2 deletions rgw/admin/info_test.go
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
//go:build !(nautilus || octopus || pacific) && ceph_preview
// +build !nautilus,!octopus,!pacific,ceph_preview
//go:build !(nautilus || octopus || pacific)
// +build !nautilus,!octopus,!pacific

package admin

Expand Down