Integrate 3.26.3 release notes and update download links#362
Merged
Conversation
jeroenterheerdt
requested changes
Jul 10, 2026
|
Azure Static Web Apps: Your stage site is ready! Visit it here: https://delightful-mud-081affe03-362.westeurope.azurestaticapps.net |
1 similar comment
|
Azure Static Web Apps: Your stage site is ready! Visit it here: https://delightful-mud-081affe03-362.westeurope.azurestaticapps.net |
jeroenterheerdt
approved these changes
Jul 10, 2026
|
Azure Static Web Apps: Your stage site is ready! Visit it here: https://delightful-mud-081affe03-362.westeurope.azurestaticapps.net |
greggyb
pushed a commit
that referenced
this pull request
Jul 15, 2026
* Integrate 3.26.3 release notes and update download links * Update 3_26_3.md * Update 3_26_3.md
greggyb
added a commit
that referenced
this pull request
Jul 16, 2026
* update dlls and xmldocs for 3.26.2 release
* Add `Fields`-`Dimensions` clarification doc
Regarding Databricks's new standard usage of the keyword `fields` in
metric view yaml.
* semantic bridge: update sample metric view
Use v1.1 and more new supported features for translation
Remove deserialization include, and switch to a tabbed interface to
allow a user to download and load or copy and deserialize.
Shift to a single source of truth for the sample YAML in
sample-metricview.yaml, which is transitively included through sample-metricview.md
* Remove auto-generated _site/staticwebapp.config.json from git
This file is automatically generated and only creates noise by being
checked in.
* Update metric view object model doc
Include v1.1 properties and translation notes.
* Semantic Bridge: split up object model, core, and translation
- semantic-bridge.md: now a generic feature intro.
- semantic-bridge-metric-view-object-model.md: covers the object model
only, but not validation or translation notes
- semantic-bridge-metric-view-tabular-translation.md: new,
specifically covers all translation details
* Semantic bridge: update validation docs
- Include back-reference doc in object model.
- Update validation to use a new example for a contextual rule (old
duplicate name is now invalid)
- Update toc
* Final prose and naming pass for features/semantic-bridge*
- General clean up
- rename semantic-bridge-fields-and-dimensions to
semantic-bridge-metric-view-fields-and-dimensions (file and uid)
- add additional references to feature docs
- update toc
* Update how-to docs for semantic bridge: prose and source only
Still need to update script outputs
* Doc cleanup pass for semantic bridge
Check all docs against source and databricks
* Update code block outputs
Add annotations for WIP code runner, update all output blocks.
* Update semantic bridge screenshots
* Fix up learn.microsoft links, standardize to "Metric View spec/docs"
All semantic bridge docs have standardized to talk about "Metric View"
spec or "Metric View" docs, rather than "Databricks", to avoid
confusion when we then link to learn.microsoft.com docs.
All learn.microsoft.com links have had the culture (/en-us/...)
stripped out, so that these don't default to english, just because I
do.
Confirm no 'learn.microsoft.com/en-us/' in semantic bridge:
```shell
# empty result means no culture portion
rg -ni -g 'content/**/semantic-bri*md' 'learn\.microsoft\.com/[a-z]{2,3}-[a-z]{2,4}/'
# empty result means no lines saying databricks doc
rg -ni -g 'content/**/semantic-bri*md' 'databricks.*doc'
# empty result means no lines saying databricks spec; one false positive
rg -ni -g 'content/**/semantic-bri*md' 'databricks.*spec'
```
* Add GitHub Flow and Octopus Merge pattern article (#358)
* Add GitHub Flow and Octopus Merge pattern article
Introduces github-flow.md, a companion to the parallel development
guide covering day-to-day GitHub Flow usage and a reference CI/CD
pipeline implementing the Octopus Merge pattern for keeping a shared
test environment in sync with all open pull requests. Cross-links
between the two articles, fixes broken/placeholder links in
parallel-development.md, and adds Mermaid diagrams for the branching
model, merge flow, job dependencies, and end-to-end workflow.
Co-Authored-By: Claude Opus 4.8 <noreply@anthropic.com>
* Potential fix for pull request finding
Co-authored-by: Copilot Autofix powered by AI <175728472+Copilot@users.noreply.github.com>
* Potential fix for pull request finding
Co-authored-by: Copilot Autofix powered by AI <175728472+Copilot@users.noreply.github.com>
* Potential fix for pull request finding
Co-authored-by: Copilot Autofix powered by AI <175728472+Copilot@users.noreply.github.com>
* Potential fix for pull request finding
Co-authored-by: Copilot Autofix powered by AI <175728472+Copilot@users.noreply.github.com>
* Fix CI build failure from unresolved BPA/AS CI-CD cross references
DocFX only raises UidNotFound for the explicit [text](xref:uid) link
form, not the @uid shorthand — and content/todo/{powerbi-cicd,as-cicd}
aren't part of the published build, so those two xrefs never resolve.
The explicit form used here (unlike the shorthand already used
elsewhere for the same pages) triggered the warning, and the build
script treats any DocFX warning in the English build as fatal.
Co-Authored-By: Claude Opus 4.8 <noreply@anthropic.com>
* Potential fix for pull request finding
Co-authored-by: Copilot Autofix powered by AI <175728472+Copilot@users.noreply.github.com>
---------
Co-authored-by: Just Blindbæk <just@justB.dk>
Co-authored-by: Claude Opus 4.8 <noreply@anthropic.com>
Co-authored-by: Daniel Otykier <otykier@users.noreply.github.com>
Co-authored-by: Copilot Autofix powered by AI <175728472+Copilot@users.noreply.github.com>
* Update docs tooling (#360)
* build-docs.py: add iterative development conveniences
* add standalone dead link checker
* Add csharp_doctest tooling and fixtures
* parallelize csharp_doctest.py
* fix exception handling in csharp_doctest.py
* streamline and filter last script output for csharp build scripts
* Document the build scripts for validation
* Boost parallelism and drop github parallel requests
* check_links.py: harden and add C-t, C-c, C-\ handling
- Error handling for workers so they can't hang
- siginfo, sigquit, sigbreak (C-t, C-\, and C-break) give a status
update while running
- sigint (C-c) prints stats and exits cleanly
* Update reporting for urls and stats
* Update README for check_links reporting
* Update README with usage and contribution notes
* use `python3` in shebang
Co-authored-by: Copilot Autofix powered by AI <175728472+Copilot@users.noreply.github.com>
* clarify README and comments about stdour/stderr
* check_links.py: do not hard-code docs site; use shared config
config_loader.py already parses shared config and provides the live
site URL.
Update check_links.py to import and use config_loader. This requires
moving from global shared state to a URL base that gets passed around
to appropriate functions. It also changes the dispatch pattern,
because command functions have different signatures now.
Additionally, update config_loader.py to conform to the `mypy
--strict` used in check_links.py.
* Integrate 3.26.3 release notes and update download links (#362)
* Integrate 3.26.3 release notes and update download links
* Update 3_26_3.md
* Update 3_26_3.md
* New Crowdin updates (#352)
* New translations table-groups.md (Spanish)
[ci skip]
* New translations tom-explorer-view.md (Spanish)
[ci skip]
* New translations downloads.md (Spanish)
[ci skip]
* New translations release-history.md (Spanish)
[ci skip]
* New translations whats-new.md (Spanish)
[ci skip]
* New translations udfs.md (Spanish)
[ci skip]
* New translations ai-assistant.md (Spanish)
[ci skip]
* New translations 3_26_2.md (Spanish)
[ci skip]
* New translations table-groups.md (Chinese Simplified)
[ci skip]
* New translations tom-explorer-view.md (Chinese Simplified)
[ci skip]
* New translations refresh-preview-query.md (Chinese Simplified)
[ci skip]
* New translations downloads.md (Chinese Simplified)
[ci skip]
* New translations release-history.md (Chinese Simplified)
[ci skip]
* New translations whats-new.md (Chinese Simplified)
[ci skip]
* New translations udfs.md (Chinese Simplified)
[ci skip]
* New translations ai-assistant.md (Chinese Simplified)
[ci skip]
* New translations 3_26_2.md (Chinese Simplified)
[ci skip]
* New translations 3_26_2.md (Spanish)
[ci skip]
* New translations 3_26_2.md (Chinese Simplified)
[ci skip]
* New translations 3_26_2.md (Spanish)
[ci skip]
* New translations 3_26_2.md (Chinese Simplified)
[ci skip]
* New translations te-cli-commands.md (Spanish)
[ci skip]
* New translations te-cli-config.md (Spanish)
[ci skip]
* New translations te-cli-limitations.md (Spanish)
[ci skip]
* New translations te-cli-preview-notice.md (Spanish)
[ci skip]
* New translations te-cli-automation.md (Spanish)
[ci skip]
* New translations te-cli-cicd.md (Spanish)
[ci skip]
* New translations te-cli-install.md (Spanish)
[ci skip]
* New translations te-cli-interactive.md (Spanish)
[ci skip]
* New translations te-cli-migrate.md (Spanish)
[ci skip]
* New translations te-cli.md (Spanish)
[ci skip]
* New translations te-cli-commands.md (Chinese Simplified)
[ci skip]
* New translations te-cli-config.md (Chinese Simplified)
[ci skip]
* New translations te-cli-limitations.md (Chinese Simplified)
[ci skip]
* New translations te-cli-preview-notice.md (Chinese Simplified)
[ci skip]
* New translations te-cli-automation.md (Chinese Simplified)
[ci skip]
* New translations te-cli-cicd.md (Chinese Simplified)
[ci skip]
* New translations te-cli-install.md (Chinese Simplified)
[ci skip]
* New translations te-cli-interactive.md (Chinese Simplified)
[ci skip]
* New translations te-cli-migrate.md (Chinese Simplified)
[ci skip]
* New translations te-cli.md (Chinese Simplified)
[ci skip]
* New translations te-cli-commands.md (Spanish)
[ci skip]
* New translations te-cli-config.md (Spanish)
[ci skip]
* New translations te-cli-interactive.md (Spanish)
[ci skip]
* New translations te-cli.md (Spanish)
[ci skip]
* New translations te-cli-commands.md (Chinese Simplified)
[ci skip]
* New translations te-cli-config.md (Chinese Simplified)
[ci skip]
* New translations te-cli-interactive.md (Chinese Simplified)
[ci skip]
* New translations te-cli.md (Chinese Simplified)
[ci skip]
* New translations parallel-development.md (Spanish)
[ci skip]
* New translations github-flow.md (Spanish)
[ci skip]
* New translations parallel-development.md (Chinese Simplified)
[ci skip]
* New translations github-flow.md (Chinese Simplified)
[ci skip]
* New translations downloads.md (Spanish)
[ci skip]
* New translations release-history.md (Spanish)
[ci skip]
* New translations 3_26_3.md (Spanish)
[ci skip]
* New translations downloads.md (Chinese Simplified)
[ci skip]
* New translations release-history.md (Chinese Simplified)
[ci skip]
* New translations 3_26_3.md (Chinese Simplified)
[ci skip]
* New translations te-cli-commands.md (Chinese Simplified)
[ci skip]
* New translations te-cli-config.md (Chinese Simplified)
[ci skip]
* New translations te-cli-limitations.md (Chinese Simplified)
[ci skip]
* New translations te-cli-automation.md (Chinese Simplified)
[ci skip]
* New translations te-cli-cicd.md (Chinese Simplified)
[ci skip]
* New translations te-cli-install.md (Chinese Simplified)
[ci skip]
* New translations te-cli-interactive.md (Chinese Simplified)
[ci skip]
* New translations te-cli-migrate.md (Chinese Simplified)
[ci skip]
* New translations te-cli.md (Chinese Simplified)
[ci skip]
* New translations parallel-development.md (Chinese Simplified)
[ci skip]
* New translations github-flow.md (Chinese Simplified)
[ci skip]
* New translations downloads.md (Chinese Simplified)
[ci skip]
* New translations release-history.md (Chinese Simplified)
[ci skip]
* New translations 3_26_3.md (Chinese Simplified)
[ci skip]
* New translations te-cli-commands.md (Spanish)
[ci skip]
* New translations te-cli-config.md (Spanish)
[ci skip]
* New translations te-cli-limitations.md (Spanish)
[ci skip]
* New translations te-cli-automation.md (Spanish)
[ci skip]
* New translations te-cli-cicd.md (Spanish)
[ci skip]
* New translations te-cli-install.md (Spanish)
[ci skip]
* New translations te-cli-interactive.md (Spanish)
[ci skip]
* New translations te-cli-migrate.md (Spanish)
[ci skip]
* New translations te-cli.md (Spanish)
[ci skip]
* New translations parallel-development.md (Spanish)
[ci skip]
* New translations github-flow.md (Spanish)
[ci skip]
* New translations downloads.md (Spanish)
[ci skip]
* New translations release-history.md (Spanish)
[ci skip]
* New translations 3_26_3.md (Spanish)
[ci skip]
* Simplify dimensions and fields serialization prose
Introduce a table to cover all cases of versions and `fields` and
`dimensions` keys.
* update xml docs source
---------
Co-authored-by: Just Blindbæk <31723659+justBlindbaek@users.noreply.github.com>
Co-authored-by: Just Blindbæk <just@justB.dk>
Co-authored-by: Claude Opus 4.8 <noreply@anthropic.com>
Co-authored-by: Daniel Otykier <otykier@users.noreply.github.com>
Co-authored-by: Copilot Autofix powered by AI <175728472+Copilot@users.noreply.github.com>
Co-authored-by: David Bojsen <david.bojsen@gmail.com>
This file contains hidden or 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
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
No description provided.