Merge branch '4.x'
# Conflicts: # components/bower.json # components/handlebars.js.nuspec # components/package.json # package.json
This commit is contained in:
@@ -5,7 +5,7 @@ import { registerDefaultDecorators } from './decorators';
|
|||||||
import logger from './logger';
|
import logger from './logger';
|
||||||
import { resetLoggedProperties } from './internal/proto-access';
|
import { resetLoggedProperties } from './internal/proto-access';
|
||||||
|
|
||||||
export const VERSION = '4.7.2';
|
export const VERSION = '4.7.3';
|
||||||
export const COMPILER_REVISION = 8;
|
export const COMPILER_REVISION = 8;
|
||||||
export const LAST_COMPATIBLE_COMPILER_REVISION = 7;
|
export const LAST_COMPATIBLE_COMPILER_REVISION = 7;
|
||||||
|
|
||||||
|
|||||||
+2
-1
@@ -111,7 +111,8 @@
|
|||||||
"print-script",
|
"print-script",
|
||||||
"release-notes.md",
|
"release-notes.md",
|
||||||
"runtime.js",
|
"runtime.js",
|
||||||
"types/*.d.ts"
|
"types/*.d.ts",
|
||||||
|
"runtime.d.ts"
|
||||||
],
|
],
|
||||||
"husky": {
|
"husky": {
|
||||||
"hooks": {
|
"hooks": {
|
||||||
|
|||||||
+19
-1
@@ -2,7 +2,25 @@
|
|||||||
|
|
||||||
## Development
|
## Development
|
||||||
|
|
||||||
[Commits](https://github.com/wycats/handlebars.js/compare/v4.7.2...master)
|
[Commits](https://github.com/wycats/handlebars.js/compare/v4.7.3...master)
|
||||||
|
|
||||||
|
## v4.7.3 - February 5th, 2020
|
||||||
|
|
||||||
|
Chore/Housekeeping:
|
||||||
|
|
||||||
|
- [#1644](https://github.com/wycats/handlebars.js/issues/1644) - Download links to aws broken on handlebarsjs.com - access denied ([@Tea56](https://api.github.com/users/Tea56))
|
||||||
|
- Fix spelling and punctuation in changelog - d78cc73
|
||||||
|
|
||||||
|
Bugfixes:
|
||||||
|
|
||||||
|
- Add Type Definition for Handlebars.VERSION, Fixes #1647 - 4de51fe
|
||||||
|
- Include Type Definition for runtime.js in Package - a32d05f
|
||||||
|
|
||||||
|
Compatibility notes:
|
||||||
|
|
||||||
|
- No incompatibilities are to be expected
|
||||||
|
|
||||||
|
[Commits](https://github.com/wycats/handlebars.js/compare/v4.7.2...v4.7.3)
|
||||||
|
|
||||||
## v4.7.2 - January 13th, 2020
|
## v4.7.2 - January 13th, 2020
|
||||||
|
|
||||||
|
|||||||
@@ -59,10 +59,10 @@ module.exports = function(grunt) {
|
|||||||
'handlebars.runtime.js',
|
'handlebars.runtime.js',
|
||||||
'handlebars.runtime.min.js'
|
'handlebars.runtime.min.js'
|
||||||
];
|
];
|
||||||
const publishPromises = filenames.map(filename => {
|
const publishPromises = filenames.map(async filename => {
|
||||||
const nameInBucket = getNameInBucket(filename, suffix);
|
const nameInBucket = getNameInBucket(filename, suffix);
|
||||||
const localFile = getLocalFile(filename);
|
const localFile = getLocalFile(filename);
|
||||||
uploadToBucket(localFile, nameInBucket);
|
await uploadToBucket(localFile, nameInBucket);
|
||||||
grunt.log.writeln(
|
grunt.log.writeln(
|
||||||
`Published ${localFile} to build server (${nameInBucket})`
|
`Published ${localFile} to build server (${nameInBucket})`
|
||||||
);
|
);
|
||||||
|
|||||||
Vendored
+2
@@ -88,6 +88,8 @@ declare namespace Handlebars {
|
|||||||
// TODO: replace Function with actual signature
|
// TODO: replace Function with actual signature
|
||||||
export const decorators: { [name: string]: Function };
|
export const decorators: { [name: string]: Function };
|
||||||
|
|
||||||
|
export const VERSION: string;
|
||||||
|
|
||||||
export function noConflict(): typeof Handlebars;
|
export function noConflict(): typeof Handlebars;
|
||||||
|
|
||||||
export class Exception {
|
export class Exception {
|
||||||
|
|||||||
@@ -252,3 +252,7 @@ function testProtoAccessControlControlOptions() {
|
|||||||
}
|
}
|
||||||
);
|
);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
function testHandlebarsVersion() {
|
||||||
|
let version: string = Handlebars.VERSION;
|
||||||
|
}
|
||||||
|
|||||||
Reference in New Issue
Block a user