10 Commits

Author SHA256 Message Date
d8e0f16213 Accepting request 1207458 from devel:languages:nodejs
OBS-URL: https://build.opensuse.org/request/show/1207458
OBS-URL: https://build.opensuse.org/package/show/openSUSE:Factory/typescript?expand=0&rev=29
2024-10-13 15:33:54 +00:00
517fa6d70b - Update to version 5.6.3
* fix automatic type acquisition
  * Don't issue implicit any when obtaining the implied type for 
    a binding pattern
  * Remove tsbuildInfo specification error

OBS-URL: https://build.opensuse.org/package/show/devel:languages:nodejs/typescript?expand=0&rev=57
2024-10-12 15:17:58 +00:00
303426fb77 Accepting request 1202134 from devel:languages:nodejs
OBS-URL: https://build.opensuse.org/request/show/1202134
OBS-URL: https://build.opensuse.org/package/show/openSUSE:Factory/typescript?expand=0&rev=28
2024-09-20 15:12:12 +00:00
7ddd88fc81 - Update to version 5.6.2
* fixed parseCommandLine fails with --build and --force
  * fixed Watch cannot handle large amount of file changes 
  * fixed tsc crash with Error: start < 0 in a specific config
  * allow use export = in .cts when module is esnext
  * fixed verbatimModuleSyntax + import of ambient const enum missing error
  * fixed Can't augment function overload is function is exported via export {}
  * fixed Crash when using a combination of a switch statement, optional 
    chaining, an implicit any array, and ts strict settings.
  * fixed Declaration emit change in 5.5 with exactOptionalPropertyTypes
  * fixed Duplicate exports.* = assignments in CommonJS output in some cases
  * fixed LiteralPropertyName should allow BigInt
  * fixed Ghost errors and inconsistencies in destructuring patterns
 
For the full changelog see https://devblogs.microsoft.com/typescript/announcing-typescript-5-6/

OBS-URL: https://build.opensuse.org/package/show/devel:languages:nodejs/typescript?expand=0&rev=55
2024-09-20 08:39:45 +00:00
4f3573f9f4 Accepting request 1189261 from devel:languages:nodejs
OBS-URL: https://build.opensuse.org/request/show/1189261
OBS-URL: https://build.opensuse.org/package/show/openSUSE:Factory/typescript?expand=0&rev=27
2024-07-25 13:38:33 +00:00
6e7f5b273c Accepting request 1189219 from home:amanzini:branches:devel:languages:nodejs
- Update to version 5.5.4
  * fixed Circular declarations cause infinite loops in getExportInfos since v5.5
  * fixed the return type of Int8Array::toReversed in es2023.array.d.ts is wrong
  * fixed Incorrect ES5 code emitted for closures in loops when noCheck is enabled
  * fixed Regression issue with React import when using "jsx": "react" compiler
  * fixed Scanner crash in services (TypeScript 5.5)
  * fixed TypeError: Cannot read properties of undefined (reading 'flags') 
    at needsNameFromDeclaration at getNameForExportedSymbol
  * perf: Node.getChildren speed regression in ts 5.5 when used at very large scale
For the full changelog see https://devblogs.microsoft.com/typescript/announcing-typescript-5-5/

OBS-URL: https://build.opensuse.org/request/show/1189219
OBS-URL: https://build.opensuse.org/package/show/devel:languages:nodejs/typescript?expand=0&rev=53
2024-07-23 13:00:02 +00:00
fa63356b94 Accepting request 1185074 from devel:languages:nodejs
OBS-URL: https://build.opensuse.org/request/show/1185074
OBS-URL: https://build.opensuse.org/package/show/openSUSE:Factory/typescript?expand=0&rev=26
2024-07-04 14:24:12 +00:00
717c82ae89 Accepting request 1185073 from home:amanzini:branches:devel:languages:nodejs
- Update to version 5.5.3
  * fixed #59032 JavaScript and TypeScript language service has been disabled 
    after crashing repeatedly
  * fixed #58955 @import JSDoc tag doesn't seem to account for resolution-mode 
    import attribute in TS v5.5.2
For the full changelog see https://devblogs.microsoft.com/typescript/announcing-typescript-5-5/

OBS-URL: https://build.opensuse.org/request/show/1185073
OBS-URL: https://build.opensuse.org/package/show/devel:languages:nodejs/typescript?expand=0&rev=51
2024-07-03 08:24:39 +00:00
10f9de1a89 Accepting request 1182739 from devel:languages:nodejs
OBS-URL: https://build.opensuse.org/request/show/1182739
OBS-URL: https://build.opensuse.org/package/show/openSUSE:Factory/typescript?expand=0&rev=25
2024-06-24 18:54:13 +00:00
0a6a475f40 - Update to version 5.5.2
* Inferred Type Predicates
  * Control Flow Narrowing for Constant Indexed Accesses
  * The JSDoc @import Tag
  * Regular Expression Syntax Checking
  * Support for New ECMAScript Set Methods
  * Isolated Declarations
  * The ${configDir} Template Variable for Configuration Files
  * Consulting package.json Dependencies for Declaration File Generation
  * Editor and Watch-Mode Reliability Improvements
  * Performance and Size Optimizations
  * Easier API Consumption from ECMAScript Modules
  * The transpileDeclaration API
  * Notable Behavioral Changes
    + Disabling Features Deprecated in TypeScript 5.0
    + lib.d.ts Changes
    + Stricter Parsing for Decorators
    + undefined is No Longer a Definable Type Name
    + Simplified Reference Directive Declaration Emit
For the full changelog see https://devblogs.microsoft.com/typescript/announcing-typescript-5-5/

OBS-URL: https://build.opensuse.org/package/show/devel:languages:nodejs/typescript?expand=0&rev=49
2024-06-23 08:52:31 +00:00
4 changed files with 83 additions and 4 deletions

View File

@@ -1,3 +0,0 @@
version https://git-lfs.github.com/spec/v1
oid sha256:154fae77169f04155ac52d521ac59abb07c9be29ea3744732adbf9f14abb2440
size 5825770

3
typescript-5.6.3.tgz Normal file
View File

@@ -0,0 +1,3 @@
version https://git-lfs.github.com/spec/v1
oid sha256:ef67f8d8ad895858024b7339d3e34bf112cae3c5db1f538c3079038b17ae30fa
size 4174590

View File

@@ -1,3 +1,82 @@
-------------------------------------------------------------------
Thu Oct 10 12:07:50 UTC 2024 - Andrea Manzini <andrea.manzini@suse.com>
- Update to version 5.6.3
* fix automatic type acquisition
* Don't issue implicit any when obtaining the implied type for
a binding pattern
* Remove tsbuildInfo specification error
-------------------------------------------------------------------
Sun Sep 15 15:14:16 UTC 2024 - Andrea Manzini <andrea.manzini@suse.com>
- Update to version 5.6.2
* fixed parseCommandLine fails with --build and --force
* fixed Watch cannot handle large amount of file changes
* fixed tsc crash with Error: start < 0 in a specific config
* allow use export = in .cts when module is esnext
* fixed verbatimModuleSyntax + import of ambient const enum missing error
* fixed Can't augment function overload is function is exported via export {}
* fixed Crash when using a combination of a switch statement, optional
chaining, an implicit any array, and ts strict settings.
* fixed Declaration emit change in 5.5 with exactOptionalPropertyTypes
* fixed Duplicate exports.* = assignments in CommonJS output in some cases
* fixed LiteralPropertyName should allow BigInt
* fixed Ghost errors and inconsistencies in destructuring patterns
For the full changelog see https://devblogs.microsoft.com/typescript/announcing-typescript-5-6/
-------------------------------------------------------------------
Tue Jul 23 09:43:12 UTC 2024 - Andrea Manzini <andrea.manzini@suse.com>
- Update to version 5.5.4
* fixed Circular declarations cause infinite loops in getExportInfos since v5.5
* fixed the return type of Int8Array::toReversed in es2023.array.d.ts is wrong
* fixed Incorrect ES5 code emitted for closures in loops when noCheck is enabled
* fixed Regression issue with React import when using "jsx": "react" compiler
* fixed Scanner crash in services (TypeScript 5.5)
* fixed TypeError: Cannot read properties of undefined (reading 'flags')
at needsNameFromDeclaration at getNameForExportedSymbol
* perf: Node.getChildren speed regression in ts 5.5 when used at very large scale
For the full changelog see https://devblogs.microsoft.com/typescript/announcing-typescript-5-5/
-------------------------------------------------------------------
Wed Jul 3 08:21:30 UTC 2024 - Andrea Manzini <andrea.manzini@suse.com>
- Update to version 5.5.3
* fixed #59032 JavaScript and TypeScript language service has been disabled
after crashing repeatedly
* fixed #58955 @import JSDoc tag doesn't seem to account for resolution-mode
import attribute in TS v5.5.2
For the full changelog see https://devblogs.microsoft.com/typescript/announcing-typescript-5-5/
-------------------------------------------------------------------
Sat Jun 22 16:14:51 UTC 2024 - Andrea Manzini <andrea.manzini@suse.com>
- Update to version 5.5.2
* Inferred Type Predicates
* Control Flow Narrowing for Constant Indexed Accesses
* The JSDoc @import Tag
* Regular Expression Syntax Checking
* Support for New ECMAScript Set Methods
* Isolated Declarations
* The ${configDir} Template Variable for Configuration Files
* Consulting package.json Dependencies for Declaration File Generation
* Editor and Watch-Mode Reliability Improvements
* Performance and Size Optimizations
* Easier API Consumption from ECMAScript Modules
* The transpileDeclaration API
* Notable Behavioral Changes
+ Disabling Features Deprecated in TypeScript 5.0
+ lib.d.ts Changes
+ Stricter Parsing for Decorators
+ undefined is No Longer a Definable Type Name
+ Simplified Reference Directive Declaration Emit
For the full changelog see https://devblogs.microsoft.com/typescript/announcing-typescript-5-5/
-------------------------------------------------------------------
Sun Apr 21 14:07:03 UTC 2024 - Andrea Manzini <andrea.manzini@suse.com>

View File

@@ -17,7 +17,7 @@
Name: typescript
Version: 5.4.5
Version: 5.6.3
Release: 0
Summary: A language for application scale JavaScript development
License: Apache-2.0