From 11abc070681d59eb3a519071aa596ef0f3d2515e Mon Sep 17 00:00:00 2001 From: "http4s-steward[bot]" <106843772+http4s-steward[bot]@users.noreply.github.com> Date: Wed, 3 Jan 2024 20:18:11 +0000 Subject: [PATCH 1/3] Update http4s-core, ... to 0.23.25 --- build.sbt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/build.sbt b/build.sbt index 142bfd4..a0eff6f 100644 --- a/build.sbt +++ b/build.sbt @@ -20,7 +20,7 @@ val Scala213Cond = s"matrix.scala == '$Scala213'" val catsV = "2.10.0" val catsEffectV = "3.5.2" val fs2V = "3.6.1" -val http4sV = "0.23.24" +val http4sV = "0.23.25" val munitCatsEffectV = "2.0.0-M4" // Projects From 9d65b40cc765f926f62367ceb66dfb82fd0301e0 Mon Sep 17 00:00:00 2001 From: danicheg Date: Fri, 5 Jan 2024 16:12:16 +0300 Subject: [PATCH 2/3] Update headers for the source files --- core/src/main/scala/org/http4s/session/SessionIdentifier.scala | 2 +- core/src/main/scala/org/http4s/session/SessionMiddleware.scala | 2 +- core/src/main/scala/org/http4s/session/SessionRoutes.scala | 2 +- core/src/main/scala/org/http4s/session/SessionStore.scala | 2 +- .../main/scala/org/http4s/session/VaultSessionMiddleware.scala | 2 +- core/src/main/scala/org/http4s/session/package.scala | 2 +- core/src/main/scala/org/http4s/session/syntax.scala | 2 +- 7 files changed, 7 insertions(+), 7 deletions(-) diff --git a/core/src/main/scala/org/http4s/session/SessionIdentifier.scala b/core/src/main/scala/org/http4s/session/SessionIdentifier.scala index 21d822f..cb28117 100644 --- a/core/src/main/scala/org/http4s/session/SessionIdentifier.scala +++ b/core/src/main/scala/org/http4s/session/SessionIdentifier.scala @@ -1,5 +1,5 @@ /* - * Copyright (c) 2023 http4s.org + * Copyright (c) 2024 http4s.org * * Permission is hereby granted, free of charge, to any person obtaining a copy of * this software and associated documentation files (the "Software"), to deal in diff --git a/core/src/main/scala/org/http4s/session/SessionMiddleware.scala b/core/src/main/scala/org/http4s/session/SessionMiddleware.scala index 62f65a5..d1c26e6 100644 --- a/core/src/main/scala/org/http4s/session/SessionMiddleware.scala +++ b/core/src/main/scala/org/http4s/session/SessionMiddleware.scala @@ -1,5 +1,5 @@ /* - * Copyright (c) 2023 http4s.org + * Copyright (c) 2024 http4s.org * * Permission is hereby granted, free of charge, to any person obtaining a copy of * this software and associated documentation files (the "Software"), to deal in diff --git a/core/src/main/scala/org/http4s/session/SessionRoutes.scala b/core/src/main/scala/org/http4s/session/SessionRoutes.scala index d145ed1..3b6a387 100644 --- a/core/src/main/scala/org/http4s/session/SessionRoutes.scala +++ b/core/src/main/scala/org/http4s/session/SessionRoutes.scala @@ -1,5 +1,5 @@ /* - * Copyright (c) 2023 http4s.org + * Copyright (c) 2024 http4s.org * * Permission is hereby granted, free of charge, to any person obtaining a copy of * this software and associated documentation files (the "Software"), to deal in diff --git a/core/src/main/scala/org/http4s/session/SessionStore.scala b/core/src/main/scala/org/http4s/session/SessionStore.scala index dd06aa4..6bcbd7e 100644 --- a/core/src/main/scala/org/http4s/session/SessionStore.scala +++ b/core/src/main/scala/org/http4s/session/SessionStore.scala @@ -1,5 +1,5 @@ /* - * Copyright (c) 2023 http4s.org + * Copyright (c) 2024 http4s.org * * Permission is hereby granted, free of charge, to any person obtaining a copy of * this software and associated documentation files (the "Software"), to deal in diff --git a/core/src/main/scala/org/http4s/session/VaultSessionMiddleware.scala b/core/src/main/scala/org/http4s/session/VaultSessionMiddleware.scala index 593e179..cea2cc8 100644 --- a/core/src/main/scala/org/http4s/session/VaultSessionMiddleware.scala +++ b/core/src/main/scala/org/http4s/session/VaultSessionMiddleware.scala @@ -1,5 +1,5 @@ /* - * Copyright (c) 2023 http4s.org + * Copyright (c) 2024 http4s.org * * Permission is hereby granted, free of charge, to any person obtaining a copy of * this software and associated documentation files (the "Software"), to deal in diff --git a/core/src/main/scala/org/http4s/session/package.scala b/core/src/main/scala/org/http4s/session/package.scala index 11ea5c1..0ce09d4 100644 --- a/core/src/main/scala/org/http4s/session/package.scala +++ b/core/src/main/scala/org/http4s/session/package.scala @@ -1,5 +1,5 @@ /* - * Copyright (c) 2023 http4s.org + * Copyright (c) 2024 http4s.org * * Permission is hereby granted, free of charge, to any person obtaining a copy of * this software and associated documentation files (the "Software"), to deal in diff --git a/core/src/main/scala/org/http4s/session/syntax.scala b/core/src/main/scala/org/http4s/session/syntax.scala index ee1b190..1828ad6 100644 --- a/core/src/main/scala/org/http4s/session/syntax.scala +++ b/core/src/main/scala/org/http4s/session/syntax.scala @@ -1,5 +1,5 @@ /* - * Copyright (c) 2023 http4s.org + * Copyright (c) 2024 http4s.org * * Permission is hereby granted, free of charge, to any person obtaining a copy of * this software and associated documentation files (the "Software"), to deal in From fbab177c4e2b7b4211bba0b2c82996d84b3ede7b Mon Sep 17 00:00:00 2001 From: danicheg Date: Fri, 5 Jan 2024 16:12:44 +0300 Subject: [PATCH 3/3] Update headers for the test files --- core/src/test/scala/org/http4s/session/MainSpec.scala | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/core/src/test/scala/org/http4s/session/MainSpec.scala b/core/src/test/scala/org/http4s/session/MainSpec.scala index cb59c7d..fd19bd2 100644 --- a/core/src/test/scala/org/http4s/session/MainSpec.scala +++ b/core/src/test/scala/org/http4s/session/MainSpec.scala @@ -1,5 +1,5 @@ /* - * Copyright (c) 2023 http4s.org + * Copyright (c) 2024 http4s.org * * Permission is hereby granted, free of charge, to any person obtaining a copy of * this software and associated documentation files (the "Software"), to deal in