Skip to content

Commit 432eb18

Browse files
srbalakrCopilot
andauthored
Search: update release date (#38719)
Update search-documents SKILL.md step 8 to require replacing the (Unreleased) placeholder with today's date in YYYY-MM-DD form when preparing a release commit. ### Packages impacted by this PR ### Issues associated with this PR ### Describe the problem that is addressed by this PR ### What are the possible designs available to address the problem? If there are more than one possible design, why was the one in this PR chosen? ### Are there test cases added in this PR? _(If not, why?)_ ### Provide a list of related PRs _(if any)_ ### Command used to generate this PR:**_(Applicable only to SDK release request PRs)_ ### Checklists - [ ] Added impacted package name to the issue description - [ ] Does this PR needs any fixes in the SDK Generator?** _(If so, create an Issue in the [Autorest/typescript](https://github.com/Azure/autorest.typescript) repository and link it here)_ - [ ] Added a changelog (if necessary) --------- Co-authored-by: Copilot <223556219+Copilot@users.noreply.github.com>
1 parent ba086b9 commit 432eb18

2 files changed

Lines changed: 2 additions & 4 deletions

File tree

sdk/search/search-documents/.github/skills/search-documents/SKILL.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -113,7 +113,7 @@ Before declaring a regeneration done, do a post-regeneration audit:
113113
5. **Add conversion functions** in `src/serviceUtils.ts` for every new request/response type that needs public ↔ generated translation. Simple pass-throughs can stay inline in the convenience client, but anything with field renames, enum widening, or polymorphic discrimination belongs in `serviceUtils.ts`.
114114
6. **Export every new public symbol** from `src/index.ts`. This file is intentionally skipped during the customization merge, so new exports are never added automatically. The `ae-forgotten-export` lint error catches the most obvious omissions; it does not catch missing operations or types that are never referenced internally.
115115
7. **Run `api-extractor`** (via `pnpm run extract-api` or the package build) and inspect `review/search-documents-node.api.md`. Cross-check that every new operation and every new model from steps 1–3 appears. **If a symbol isn't in the API report, it is not part of the public package, even if it compiles.**
116-
8. **Update the changelog** under `CHANGELOG.md``Features Added` (and `Breaking Changes` if applicable). Every new public symbol or method should be mentioned.
116+
8. **Update the changelog** under `CHANGELOG.md``Features Added` (and `Breaking Changes` if applicable). Every new public symbol or method should be mentioned. When preparing a release, replace the `(Unreleased)` placeholder next to the version heading with today's date in `YYYY-MM-DD` form (e.g. `## 13.1.0-beta.1 (2026-05-28)`); leave the placeholder in place for non-release commits.
117117

118118
Then add a public method per new operation:
119119

sdk/search/search-documents/CHANGELOG.md

Lines changed: 1 addition & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
# Release History
22

3-
## 13.1.0-beta.1 (Unreleased)
3+
## 13.1.0-beta.1 (2026-06-01)
44

55
### Features Added
66

@@ -33,8 +33,6 @@
3333

3434
- Fixed argument order in `SearchIndexClient.deleteKnowledgeSourceFile` so the underlying request now targets the correct file (previously the `name` and `fileId` arguments were swapped on the wire, causing deletes to silently no-op).
3535

36-
### Other Changes
37-
3836
## 13.0.0 (2026-05-01)
3937

4038
### Features Added

0 commit comments

Comments
 (0)