Skip to content
Draft
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

This file was deleted.

This file was deleted.

This file was deleted.

7 changes: 0 additions & 7 deletions .chronus/changes/fix-NRE-generate-model-2026-0-19-9-51-29.md

This file was deleted.

This file was deleted.

This file was deleted.

This file was deleted.

7 changes: 0 additions & 7 deletions .chronus/changes/python-fix-nightly-2026-0-20-15-4-26.md

This file was deleted.

141 changes: 71 additions & 70 deletions eng/tsp-core/pipelines/publish.yml
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,7 @@ trigger:
branches:
include:
- main
- test/vscode-e2e-repro
# For patch releases
- release/*
paths:
Expand Down Expand Up @@ -39,73 +40,73 @@ extends:
parameters:
azLogin: true

- stage: publish_npm
displayName: Publish Npm Packages
dependsOn: build
condition: or(eq('true', dependencies.build.outputs['build.pack_npm_packages_stable.PUBLISH_PKG_ANY']), eq('true', dependencies.build.outputs['build.pack_npm_packages_next.PUBLISH_PKG_ANY']))

pool:
name: $(LINUXPOOL)
image: $(LINUXVMIMAGE)
os: linux

jobs:
- template: /eng/tsp-core/pipelines/jobs/publish-npm.yml
parameters:
artifactName: npm-packages-stable
tag: latest
condition: eq('true', stageDependencies.build.build.outputs['pack_npm_packages_stable.PUBLISH_PKG_ANY'])

- template: /eng/tsp-core/pipelines/jobs/publish-npm.yml
parameters:
dependsOn: publish_npm_latest
artifactName: npm-packages-next
tag: next
condition: eq('true', stageDependencies.build.build.outputs['pack_npm_packages_next.PUBLISH_PKG_ANY'])

- template: /eng/tsp-core/pipelines/jobs/create-github-release.yml
parameters:
dependsOn: publish_npm_latest
artifactName: npm-packages-stable

- stage: publish_vscode
displayName: Publish VSCode extension
dependsOn: build
jobs:
- template: /eng/tsp-core/pipelines/jobs/publish-vscode.yml

- stage: publish_vs
displayName: Publish VS extension
dependsOn: build
jobs:
- template: /eng/tsp-core/pipelines/jobs/publish-vs.yml

- template: /eng/tsp-core/pipelines/stages/sign-publish-tsp-cli.yml@self

- stage: docker
displayName: Docker
dependsOn: []
jobs:
- job: docker
displayName: Build and publish
variables:
imageName: "azsdkengsys.azurecr.io/typespec"
pool:
name: $(LINUXPOOL)
image: $(LINUXVMIMAGE)
os: linux
steps:
- task: Docker@1
displayName: login
inputs:
azureSubscriptionEndpoint: "AzureSDKEngKeyVault Secrets"
azureContainerRegistry: azsdkengsys.azurecr.io
command: login

- script: |
docker build -f ./docker/Dockerfile \
-t $(imageName):latest \
.
displayName: "Build"
- script: docker push $(imageName) --all-tags
displayName: "Push"
# - stage: publish_npm
# displayName: Publish Npm Packages
# dependsOn: build
# condition: or(eq('true', dependencies.build.outputs['build.pack_npm_packages_stable.PUBLISH_PKG_ANY']), eq('true', dependencies.build.outputs['build.pack_npm_packages_next.PUBLISH_PKG_ANY']))

# pool:
# name: $(LINUXPOOL)
# image: $(LINUXVMIMAGE)
# os: linux

# jobs:
# - template: /eng/tsp-core/pipelines/jobs/publish-npm.yml
# parameters:
# artifactName: npm-packages-stable
# tag: latest
# condition: eq('true', stageDependencies.build.build.outputs['pack_npm_packages_stable.PUBLISH_PKG_ANY'])

# - template: /eng/tsp-core/pipelines/jobs/publish-npm.yml
# parameters:
# dependsOn: publish_npm_latest
# artifactName: npm-packages-next
# tag: next
# condition: eq('true', stageDependencies.build.build.outputs['pack_npm_packages_next.PUBLISH_PKG_ANY'])

# - template: /eng/tsp-core/pipelines/jobs/create-github-release.yml
# parameters:
# dependsOn: publish_npm_latest
# artifactName: npm-packages-stable

# - stage: publish_vscode
# displayName: Publish VSCode extension
# dependsOn: build
# jobs:
# - template: /eng/tsp-core/pipelines/jobs/publish-vscode.yml

# - stage: publish_vs
# displayName: Publish VS extension
# dependsOn: build
# jobs:
# - template: /eng/tsp-core/pipelines/jobs/publish-vs.yml

# - template: /eng/tsp-core/pipelines/stages/sign-publish-tsp-cli.yml@self

# - stage: docker
# displayName: Docker
# dependsOn: []
# jobs:
# - job: docker
# displayName: Build and publish
# variables:
# imageName: "azsdkengsys.azurecr.io/typespec"
# pool:
# name: $(LINUXPOOL)
# image: $(LINUXVMIMAGE)
# os: linux
# steps:
# - task: Docker@1
# displayName: login
# inputs:
# azureSubscriptionEndpoint: "AzureSDKEngKeyVault Secrets"
# azureContainerRegistry: azsdkengsys.azurecr.io
# command: login

# - script: |
# docker build -f ./docker/Dockerfile \
# -t $(imageName):latest \
# .
# displayName: "Build"
# - script: docker push $(imageName) --all-tags
# displayName: "Push"
4 changes: 4 additions & 0 deletions packages/asset-emitter/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,9 @@
# Changelog - @typespec/asset-emitter

## 0.79.0

No changes, version bump only.

## 0.78.0

### Bump dependencies
Expand Down
2 changes: 1 addition & 1 deletion packages/asset-emitter/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@typespec/asset-emitter",
"version": "0.78.0",
"version": "0.79.0",
"author": "Microsoft Corporation",
"description": "TypeSpec Asset Emitter, this is to be replaced by the new emitter framework",
"homepage": "https://typespec.io",
Expand Down
7 changes: 7 additions & 0 deletions packages/compiler/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,12 @@
# Change Log - @typespec/compiler

## 1.9.0

### Bug Fixes

- [#9342](https://github.com/microsoft/typespec/pull/9342) Ensuring ignore-deprecated gets resolved.


## 1.8.0

### Features
Expand Down
2 changes: 1 addition & 1 deletion packages/compiler/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@typespec/compiler",
"version": "1.8.0",
"version": "1.9.0",
"description": "TypeSpec Compiler Preview",
"author": "Microsoft Corporation",
"license": "MIT",
Expand Down
6 changes: 3 additions & 3 deletions packages/compiler/templates/scaffolding.json
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
"rest": {
"title": "Generic REST API",
"description": "Create a project representing a generic REST API service.",
"compilerVersion": "1.8.0",
"compilerVersion": "1.9.0",
"libraries": [
"@typespec/http",
"@typespec/rest",
Expand Down Expand Up @@ -70,7 +70,7 @@
"target": "library",
"title": "TypeSpec library",
"description": "Build your own TypeSpec library with custom types, decorators or linters.",
"compilerVersion": "1.8.0",
"compilerVersion": "1.9.0",
"libraries": [],
"files": [
{
Expand Down Expand Up @@ -147,7 +147,7 @@
"target": "library",
"title": "TypeSpec emitter",
"description": "Create a new package that emits artifacts from TypeSpec.",
"compilerVersion": "1.8.0",
"compilerVersion": "1.9.0",
"libraries": [],
"files": [
{
Expand Down
4 changes: 4 additions & 0 deletions packages/emitter-framework/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,9 @@
# Changelog - @typespec/emitter-framework

## 0.16.0

No changes, version bump only.

## 0.15.0

### Features
Expand Down
2 changes: 1 addition & 1 deletion packages/emitter-framework/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@typespec/emitter-framework",
"version": "0.15.0",
"version": "0.16.0",
"type": "module",
"main": "dist/index.js",
"repository": {
Expand Down
4 changes: 4 additions & 0 deletions packages/eslint-plugin-typespec/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,9 @@
# Change Log - @typespec/eslint-plugin

## 0.79.0

No changes, version bump only.

## 0.78.0

### Bump dependencies
Expand Down
2 changes: 1 addition & 1 deletion packages/eslint-plugin-typespec/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@typespec/eslint-plugin",
"version": "0.78.0",
"version": "0.79.0",
"author": "Microsoft Corporation",
"description": "Eslint plugin providing set of rules to be used in the JS/TS code of TypeSpec libraries",
"homepage": "https://typespec.io",
Expand Down
4 changes: 4 additions & 0 deletions packages/events/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,9 @@
# Changelog - @typespec/events

## 0.79.0

No changes, version bump only.

## 0.78.0

### Bump dependencies
Expand Down
2 changes: 1 addition & 1 deletion packages/events/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@typespec/events",
"version": "0.78.0",
"version": "0.79.0",
"author": "Microsoft Corporation",
"description": "TypeSpec library providing events bindings",
"homepage": "https://typespec.io",
Expand Down
4 changes: 4 additions & 0 deletions packages/html-program-viewer/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,9 @@
# Change Log - @typespec/html-program-viewer

## 0.79.0

No changes, version bump only.

## 0.78.0

### Bump dependencies
Expand Down
2 changes: 1 addition & 1 deletion packages/html-program-viewer/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@typespec/html-program-viewer",
"version": "0.78.0",
"version": "0.79.0",
"author": "Microsoft Corporation",
"description": "TypeSpec library for emitting an html view of the program.",
"homepage": "https://typespec.io",
Expand Down
4 changes: 4 additions & 0 deletions packages/http-canonicalization/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,9 @@
# Changelog - @typespec/http-canonicalization

## 0.16.0

No changes, version bump only.

## 0.15.0

### Breaking Changes
Expand Down
2 changes: 1 addition & 1 deletion packages/http-canonicalization/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@typespec/http-canonicalization",
"version": "0.15.0",
"version": "0.16.0",
"type": "module",
"main": "dist/src/index.js",
"repository": {
Expand Down
4 changes: 4 additions & 0 deletions packages/http-client-js/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,9 @@
# Changelog - @typespec/http-client-js

## 0.14.0

No changes, version bump only.

## 0.13.0

### Bump dependencies
Expand Down
2 changes: 1 addition & 1 deletion packages/http-client-js/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@typespec/http-client-js",
"version": "0.13.0",
"version": "0.14.0",
"type": "module",
"homepage": "https://typespec.io",
"readme": "https://github.com/microsoft/typespec/blob/main/packages/http-client-js/README.md",
Expand Down
Loading
Loading