Skip to content

Commit 019f5c9

Browse files
authored
Change wellknownendpoints to a ts file (for compatibility) (#329)
1 parent 63f8637 commit 019f5c9

File tree

4 files changed

+11
-2
lines changed

4 files changed

+11
-2
lines changed

.prettierignore

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -23,3 +23,4 @@ tsconfig.json
2323
.idea
2424
.mocharc.json
2525
**/test/data/**/*
26+
wellKnownKustoEndpoints.ts

CHANGELOG.md

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -5,6 +5,12 @@ All notable changes to this project will be documented in this file.
55
The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/),
66
and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html).
77

8+
## [7.0.0-alpha.3] - 2024-09-29
9+
10+
### Fixed
11+
12+
- Don't include json files in the package
13+
814
## [7.0.0-alpha.2] - 2024-09-22
915

1016
### Fixed

packages/azure-kusto-data/src/kustoTrustedEndpoints.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
// Licensed under the MIT License.
33

44
import { getStringTailLowerCase } from "./utils.js";
5-
import { default as endpointsData } from "./wellKnownKustoEndpoints.json";
5+
import { default as endpointsData } from "./wellKnownKustoEndpoints.js";
66

77
export class MatchRule {
88
constructor(

packages/azure-kusto-data/src/wellKnownKustoEndpoints.json renamed to packages/azure-kusto-data/src/wellKnownKustoEndpoints.ts

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,6 @@
1-
{
1+
// Copyright (c) Microsoft Corporation.
2+
// Licensed under the MIT License.
3+
export default {
24
"_Comments": [
35
"KWE .linkedin.com suffix is excluded from list pending a more specific suffix",
46
"LogAnalytics, AppInsigts & AzureMonitor are taken from https://msazure.visualstudio.com/One/_wiki/wikis/One.wiki/138095/Calling-the-ADX-Proxy following talk with Raz Ronen",

0 commit comments

Comments
 (0)