Skip to content

Commit 60d89fe

Browse files
authored
Merge pull request #1116 from jobara/4.8.0-release
NOJIRA: 4.8.0 release related updates
2 parents ff1c537 + cbb8c44 commit 60d89fe

File tree

4 files changed

+43
-4
lines changed

4 files changed

+43
-4
lines changed

CHANGELOG.md

+26-1
Original file line numberDiff line numberDiff line change
@@ -21,6 +21,30 @@ Infusion from v2.0.0 onwards adheres to [Semantic Versioning](https://semver.org
2121

2222
### More Info
2323

24+
## [4.8.0] - 2025-01-15
25+
26+
### Added
27+
28+
* [FLUID-6783](https://issues.fluidproject.org/browse/FLUID-6783) Text highlight should be styled using
29+
contrast themes
30+
31+
### Fixed
32+
33+
* [FLUID-6782](https://issues.fluidproject.org/browse/FLUID-6782) Picking a contrast other than default
34+
will change the background of the separate panel to white before the styling should be applied
35+
* [FLUID-6772](https://issues.fluidproject.org/browse/FLUID-6772) Removal of UIO iframe in Infusion 4.5.0
36+
causes overflow issue
37+
* [FLUID-5098](https://issues.fluidproject.org/browse/FLUID-5098) TOC container is not well defined in demo
38+
39+
### Changed
40+
41+
* [FLUID-6784](https://issues.fluidproject.org/browse/FLUID-6784) Upgrade to the latest versions of jQuery
42+
and jQuery UI
43+
44+
### More Info
45+
46+
* [Changes in 4.8.0](https://github.com/fluid-project/infusion/compare/v4.7.1...v4.8.0)
47+
2448
## [4.7.1] - 2024-07-30
2549

2650
### Fixed
@@ -1039,7 +1063,8 @@ A pre-release of [0.3.0].
10391063
* [Issues addressed in 0.1.0](https://issues.fluidproject.org/projects/FLUID/versions/10000)
10401064
* [Changes in 0.1.0](https://github.com/fluid-project/infusion/commits/v0.1.0)
10411065

1042-
[Unreleased]: https://github.com/fluid-project/infusion/compare/v4.7.1...HEAD
1066+
[Unreleased]: https://github.com/fluid-project/infusion/compare/v4.8.0...HEAD
1067+
[4.8.0]: https://github.com/fluid-project/infusion/releases/tag/v4.8.0
10431068
[4.7.1]: https://github.com/fluid-project/infusion/releases/tag/v4.7.1
10441069
[4.7.0]: https://github.com/fluid-project/infusion/releases/tag/v4.7.0
10451070
[4.6.0]: https://github.com/fluid-project/infusion/releases/tag/v4.6.0

ReleaseNotes.md

+14
Original file line numberDiff line numberDiff line change
@@ -4,6 +4,20 @@
44

55
[Infusion Documentation](https://github.com/fluid-project/infusion-docs)
66

7+
## What's New in 4.8.0
8+
9+
* New features
10+
* [FLUID-6783](https://issues.fluidproject.org/browse/FLUID-6783) Text highlight should be styled using
11+
contrast themes
12+
* Resolves
13+
* [FLUID-6782](https://issues.fluidproject.org/browse/FLUID-6782) Picking a contrast other than default
14+
will change the background of the separate panel to white before the styling should be applied
15+
* [FLUID-6772](https://issues.fluidproject.org/browse/FLUID-6772) Removal of UIO iframe in Infusion 4.5.0
16+
causes overflow issue
17+
* [FLUID-5098](https://issues.fluidproject.org/browse/FLUID-5098) TOC container is not well defined in demo
18+
* [FLUID-6784](https://issues.fluidproject.org/browse/FLUID-6784) Upgrade to the latest versions of jQuery
19+
and jQuery UI
20+
721
## What's New in 4.7.1
822

923
* Maintenance release which resolves

package.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
{
22
"name": "infusion",
33
"description": "Infusion is an application framework for developing flexible stuff with JavaScript",
4-
"version": "4.7.1",
4+
"version": "4.8.0",
55
"author": "Fluid Project",
66
"bugs": "http://issues.fluidproject.org/browse/FLUID",
77
"homepage": "http://www.fluidproject.org/",

src/framework/core/js/Fluid.js

+2-2
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
/*!
2-
* Fluid Infusion v4.7.1
2+
* Fluid Infusion v4.8.0
33
*
44
* Infusion is distributed under the Educational Community License 2.0 and new BSD licenses:
55
* http://wiki.fluidproject.org/display/fluid/Fluid+Licensing
@@ -30,7 +30,7 @@ Underscore may be freely distributed under the MIT license.
3030

3131
var fluid = fluid || {}; // eslint-disable-line no-redeclare
3232

33-
fluid.version = "Infusion 4.7.1";
33+
fluid.version = "Infusion 4.8.0";
3434

3535
// Export this for use in environments like node.js, where it is useful for
3636
// configuring stack trace behaviour

0 commit comments

Comments
 (0)