From e42e3d9e0037a2d2618814dc2ff5b17006135853 Mon Sep 17 00:00:00 2001 From: Steve Gravrock Date: Sat, 11 Mar 2023 14:19:16 -0800 Subject: [PATCH 1/3] Pin sass to the last version that works on Node 12 --- package.json | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/package.json b/package.json index 092b3c66..a9a5c76e 100644 --- a/package.json +++ b/package.json @@ -48,7 +48,7 @@ "jsdom": "^19.0.0", "load-grunt-tasks": "^5.1.0", "prettier": "1.17.1", - "sass": "^1.45.1", + "sass": "^1.58.3", "shelljs": "^0.8.3", "temp": "^0.9.0" }, From ff237f4b668377132bce360b6c684048f2d90279 Mon Sep 17 00:00:00 2001 From: Steve Gravrock Date: Sat, 11 Mar 2023 14:26:22 -0800 Subject: [PATCH 2/3] Fixed sass version pinning --- package.json | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/package.json b/package.json index a9a5c76e..d4cade29 100644 --- a/package.json +++ b/package.json @@ -48,7 +48,7 @@ "jsdom": "^19.0.0", "load-grunt-tasks": "^5.1.0", "prettier": "1.17.1", - "sass": "^1.58.3", + "sass": "1.58.3", "shelljs": "^0.8.3", "temp": "^0.9.0" }, From f509078020af2445f36b4f699cf5f5d80ce7ba84 Mon Sep 17 00:00:00 2001 From: Steve Gravrock Date: Wed, 15 Mar 2023 17:21:27 -0700 Subject: [PATCH 3/3] Bump version to 4.6.0 --- lib/jasmine-core/boot0.js | 2 +- lib/jasmine-core/boot1.js | 2 +- lib/jasmine-core/jasmine.js | 2 +- lib/jasmine-core/node_boot.js | 2 +- package.json | 2 +- release_notes/4.6.0.md | 19 +++++++++++++++++++ 6 files changed, 24 insertions(+), 5 deletions(-) create mode 100644 release_notes/4.6.0.md diff --git a/lib/jasmine-core/boot0.js b/lib/jasmine-core/boot0.js index c773ba8e..b053af10 100644 --- a/lib/jasmine-core/boot0.js +++ b/lib/jasmine-core/boot0.js @@ -1,5 +1,5 @@ /* -Copyright (c) 2008-2022 Pivotal Labs +Copyright (c) 2008-2023 Pivotal Labs Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the diff --git a/lib/jasmine-core/boot1.js b/lib/jasmine-core/boot1.js index 5fe49e41..b06f7d8c 100644 --- a/lib/jasmine-core/boot1.js +++ b/lib/jasmine-core/boot1.js @@ -1,5 +1,5 @@ /* -Copyright (c) 2008-2022 Pivotal Labs +Copyright (c) 2008-2023 Pivotal Labs Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the diff --git a/lib/jasmine-core/jasmine.js b/lib/jasmine-core/jasmine.js index 3e77af64..5e4d359c 100644 --- a/lib/jasmine-core/jasmine.js +++ b/lib/jasmine-core/jasmine.js @@ -10484,5 +10484,5 @@ getJasmineRequireObj().UserContext = function(j$) { }; getJasmineRequireObj().version = function() { - return '4.4.0'; + return '4.6.0'; }; diff --git a/lib/jasmine-core/node_boot.js b/lib/jasmine-core/node_boot.js index c10ca360..bf6acdfe 100644 --- a/lib/jasmine-core/node_boot.js +++ b/lib/jasmine-core/node_boot.js @@ -1,5 +1,5 @@ /* -Copyright (c) 2008-2022 Pivotal Labs +Copyright (c) 2008-2023 Pivotal Labs Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the diff --git a/package.json b/package.json index d4cade29..5108ca60 100644 --- a/package.json +++ b/package.json @@ -1,7 +1,7 @@ { "name": "jasmine-core", "license": "MIT", - "version": "4.5.0", + "version": "4.6.0", "repository": { "type": "git", "url": "https://github.com/jasmine/jasmine.git" diff --git a/release_notes/4.6.0.md b/release_notes/4.6.0.md new file mode 100644 index 00000000..7772b1ec --- /dev/null +++ b/release_notes/4.6.0.md @@ -0,0 +1,19 @@ +# Jasmine Core 4.6.0 Release Notes + +## New Features + +* Report the ID of each suite/spec's parent +* Report the path/url of the file that the spec/suite was defined in + * Fixes [#1884](https://github.com/jasmine/jasmine/issues/1884) +* Added Firefox 102 (current ESR) to supported browsers + + +## Internal improvements + +* Pinned sass to 1.58.3 for compatibility with Node 12 +* Pinned eslint-plugin-compat to <4.1.0 for compatibility with Node 12 +* Pinned Grunt to <1.6.0 for compatibility with Node 12 + +------ + +_Release Notes generated with _[Anchorman](http://github.com/infews/anchorman)_