jasmine-core 5.1.1 → 5.1.2

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
@@ -1,4 +1,5 @@
1
1
  Copyright (c) 2008-2019 Pivotal Labs
2
+ Copyright (c) 2008-2023 The Jasmine developers
2
3
 
3
4
  Permission is hereby granted, free of charge, to any person obtaining
4
5
  a copy of this software and associated documentation files (the
package/README.md CHANGED
@@ -1,8 +1,5 @@
1
1
  <a name="README">[<img src="https://rawgithub.com/jasmine/jasmine/main/images/jasmine-horizontal.svg" width="400px" />](http://jasmine.github.io)</a>
2
2
 
3
- [![Build Status](https://circleci.com/gh/jasmine/jasmine.svg?style=shield)](https://circleci.com/gh/jasmine/jasmine)
4
- [![Open Source Helpers](https://www.codetriage.com/jasmine/jasmine/badges/users.svg)](https://www.codetriage.com/jasmine/jasmine)
5
-
6
3
  # A JavaScript Testing Framework
7
4
 
8
5
  Jasmine is a Behavior Driven Development testing framework for JavaScript. It does not rely on browsers, DOM, or any JavaScript framework. Thus it's suited for websites, [Node.js](http://nodejs.org) projects, or anywhere that JavaScript can run.
@@ -33,9 +30,9 @@ Microsoft Edge) as well as Node.
33
30
  | Environment | Supported versions |
34
31
  |-------------------|---------------------|
35
32
  | Node | 18, 20 |
36
- | Safari | 15-16 |
33
+ | Safari | 15-17 |
37
34
  | Chrome | Evergreen |
38
- | Firefox | Evergreen, 102 |
35
+ | Firefox | Evergreen, 102, 115 |
39
36
  | Edge | Evergreen |
40
37
 
41
38
  For evergreen browsers, each version of Jasmine is tested against the version of the browser that is available to us
@@ -58,4 +55,6 @@ To find out what environments work with a particular Jasmine release, see the [r
58
55
  * [Christian Williams](mailto:antixian666@gmail.com)
59
56
  * Sheel Choksi
60
57
 
61
- Copyright (c) 2008-2022 Jasmine Maintainers. This software is licensed under the [MIT License](https://github.com/jasmine/jasmine/blob/main/MIT.LICENSE).
58
+ Copyright (c) 2008-2019 Pivotal Labs<br>
59
+ Copyright (c) 2008-2023 The Jasmine developers<br>
60
+ This software is licensed under the [MIT License](https://github.com/jasmine/jasmine/blob/main/LICENSE).
@@ -1,5 +1,6 @@
1
1
  /*
2
- Copyright (c) 2008-2023 Pivotal Labs
2
+ Copyright (c) 2008-2019 Pivotal Labs
3
+ Copyright (c) 2008-2024 The Jasmine developers
3
4
 
4
5
  Permission is hereby granted, free of charge, to any person obtaining
5
6
  a copy of this software and associated documentation files (the
@@ -1,5 +1,6 @@
1
1
  /*
2
- Copyright (c) 2008-2023 Pivotal Labs
2
+ Copyright (c) 2008-2019 Pivotal Labs
3
+ Copyright (c) 2008-2024 The Jasmine developers
3
4
 
4
5
  Permission is hereby granted, free of charge, to any person obtaining
5
6
  a copy of this software and associated documentation files (the
@@ -1,5 +1,6 @@
1
1
  /*
2
- Copyright (c) 2008-2023 Pivotal Labs
2
+ Copyright (c) 2008-2019 Pivotal Labs
3
+ Copyright (c) 2008-2024 The Jasmine developers
3
4
 
4
5
  Permission is hereby granted, free of charge, to any person obtaining
5
6
  a copy of this software and associated documentation files (the
@@ -1,5 +1,6 @@
1
1
  /*
2
- Copyright (c) 2008-2023 Pivotal Labs
2
+ Copyright (c) 2008-2019 Pivotal Labs
3
+ Copyright (c) 2008-2024 The Jasmine developers
3
4
 
4
5
  Permission is hereby granted, free of charge, to any person obtaining
5
6
  a copy of this software and associated documentation files (the
@@ -8308,7 +8309,7 @@ getJasmineRequireObj().interface = function(jasmine, env) {
8308
8309
  * @return {matchers}
8309
8310
  */
8310
8311
  throwUnlessAsync: function(actual) {
8311
- return env.throwUnless(actual);
8312
+ return env.throwUnlessAsync(actual);
8312
8313
  },
8313
8314
 
8314
8315
  /**
@@ -10812,5 +10813,5 @@ getJasmineRequireObj().UserContext = function(j$) {
10812
10813
  };
10813
10814
 
10814
10815
  getJasmineRequireObj().version = function() {
10815
- return '5.1.1';
10816
+ return '5.1.2';
10816
10817
  };
package/package.json CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "name": "jasmine-core",
3
3
  "license": "MIT",
4
- "version": "5.1.1",
4
+ "version": "5.1.2",
5
5
  "repository": {
6
6
  "type": "git",
7
7
  "url": "https://github.com/jasmine/jasmine.git"
@@ -27,7 +27,7 @@
27
27
  "homepage": "https://jasmine.github.io",
28
28
  "main": "./lib/jasmine-core.js",
29
29
  "files": [
30
- "MIT.LICENSE",
30
+ "LICENSE",
31
31
  "README.md",
32
32
  "images/*.{png,svg}",
33
33
  "lib/**/*.{js,css}",